/* NexusShop Landing Page — Complete Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #0f172a; --bg-light: #131c31; --bg-card: #1e293b; --bg-card-hover: #263548;
    --text: #e2e8f0; --text-secondary: #94a3b8; --text-muted: #64748b;
    --border: #334155; --border-light: rgba(51,65,85,0.5);
    --primary: #6366f1; --primary-hover: #818cf8; --primary-dim: rgba(99,102,241,0.15);
    --gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-subtle: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    --success: #10b981; --danger: #ef4444;
    --radius: 12px; --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 60px rgba(99,102,241,0.15);
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: var(--primary-hover); }

/* ============ NAVBAR ============ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; background: rgba(15,23,42,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-light); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo i { font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); width: 40px; height: 40px; border-radius: 8px; cursor: pointer; font-size: 16px; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s; }
.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(99,102,241,0.35); }
.btn-outline { border: 1px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-hover); background: var(--primary-dim); }
.btn-nav { padding: 8px 20px; font-size: 13px; background: var(--gradient); color: white; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero { padding: 140px 0 80px; text-align: center; position: relative; }
.hero-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--primary-dim); color: var(--primary-hover); border-radius: 24px; font-size: 13px; font-weight: 600; margin-bottom: 28px; border: 1px solid rgba(99,102,241,0.2); }
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; letter-spacing: -0.02em; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 19px; color: var(--text-secondary); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 48px; justify-content: center; padding-top: 48px; border-top: 1px solid var(--border-light); }
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 28px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stats .stat span { font-size: 13px; color: var(--text-muted); }

.hero-small { padding: 140px 0 60px; }
.hero-small h1 { font-size: 42px; margin-bottom: 16px; }

/* ============ SECTIONS ============ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.section-header p { color: var(--text-secondary); font-size: 18px; }

/* ============ FEATURES ============ */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.feature-icon { width: 48px; height: 48px; background: var(--gradient); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ============ HOW IT WORKS ============ */
.how-it-works { padding: 80px 0; background: var(--bg-light); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; }
.step-number { width: 64px; height: 64px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(99,102,241,0.3); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ============ PRICING ============ */
.pricing { padding: 80px 0; }
.pricing-full { padding-top: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; transition: all 0.3s; }
.price-card:hover { border-color: rgba(99,102,241,0.5); }
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow-glow); transform: scale(1.05); z-index: 2; }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: white; padding: 4px 18px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.price-header { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.price-header h3 { font-size: 22px; margin-bottom: 8px; }
.price { font-size: 48px; font-weight: 800; }
.price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.price-features li i { color: var(--success); width: 16px; flex-shrink: 0; }
.price-features li.disabled { opacity: 0.4; }
.price-features li.disabled i { color: var(--text-muted); }
.pricing-note { text-align: center; margin-top: 32px; color: var(--text-muted); font-size: 14px; }
.pricing-note i { color: var(--primary-hover); margin-right: 6px; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 80px 0; background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(99,102,241,0.3); }
.testimonial-stars { color: #fbbf24; font-size: 14px; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card > p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ============ CTA SECTION ============ */
.cta-section { padding: 80px 0; }
.cta-box { background: var(--gradient-subtle); border: 1px solid rgba(99,102,241,0.2); border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at center, rgba(99,102,241,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-box h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; position: relative; }
.cta-box p { color: var(--text-secondary); font-size: 18px; margin-bottom: 28px; position: relative; }
.cta-box .btn { position: relative; }

/* ============ REGISTRATION ============ */
.hero-register { text-align: left; padding: 120px 0 80px; }
.register-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.register-info h1 { font-size: 38px; margin-bottom: 16px; line-height: 1.2; }
.register-info > p { font-size: 18px; color: var(--text-secondary); margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li { padding: 8px 0; font-size: 15px; display: flex; align-items: center; gap: 12px; }
.check-list li i { color: var(--success); width: 18px; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); padding: 6px 12px; background: rgba(30,41,59,0.5); border: 1px solid var(--border); border-radius: 6px; }
.trust-badge i { color: var(--primary-hover); font-size: 11px; }

.register-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.register-form-card h2 { font-size: 24px; margin-bottom: 4px; }
.form-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-note a { color: var(--primary-hover); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* Plan Selector */
.plan-selector { margin-bottom: 20px; }
.plan-selector > label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.plan-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.plan-option { display: flex; flex-direction: column; align-items: center; padding: 10px 8px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.2s; text-align: center; }
.plan-option:hover { border-color: rgba(99,102,241,0.4); }
.plan-option.active { border-color: var(--primary); background: var(--primary-dim); }
.plan-option input { display: none; }
.plan-name { font-size: 13px; font-weight: 600; color: var(--text); }
.plan-price { font-size: 11px; color: var(--text-muted); }

/* Messages */
.error-msg { background: rgba(127,29,29,0.5); color: #fca5a5; padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(239,68,68,0.2); }
.success-msg { text-align: center; padding: 40px 20px; }
.success-icon { width: 64px; height: 64px; background: rgba(16,185,129,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon i { font-size: 32px; color: var(--success); }
.success-msg h3 { font-size: 22px; margin-bottom: 10px; }
.success-msg p { color: var(--text-secondary); font-size: 15px; }
.success-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* ============ FEATURES DETAIL (features page) ============ */
.features-detail { padding: 40px 0 80px; }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary-hover); margin-bottom: 12px; padding: 4px 12px; background: var(--primary-dim); border-radius: 6px; }
.feature-block h2 { font-size: 30px; font-weight: 700; margin-bottom: 16px; }
.feature-block > .feature-block-content > p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.feature-list { list-style: none; }
.feature-list li { padding: 6px 0; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.feature-list li i { color: var(--success); font-size: 13px; }

/* Visual Previews */
.code-preview { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; font-family: 'Courier New', monospace; font-size: 14px; }
.code-line { padding: 6px 0; color: var(--text-secondary); }
.code-user { color: var(--primary-hover); font-weight: 600; }
.code-system { color: var(--success); }
.code-system i { margin-right: 6px; }

.messenger-preview { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.msg { padding: 10px 16px; border-radius: 16px; font-size: 14px; max-width: 85%; line-height: 1.5; }
.msg-bot { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.2); align-self: flex-start; }
.msg-user { background: var(--bg); border: 1px solid var(--border); align-self: flex-end; }
.msg .btn { margin-top: 4px; }

.browser-preview { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.browser-bar { padding: 10px 16px; display: flex; gap: 6px; border-bottom: 1px solid var(--border); }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.browser-bar span:first-child { background: #ef4444; }
.browser-bar span:nth-child(2) { background: #fbbf24; }
.browser-bar span:nth-child(3) { background: #10b981; }
.browser-content { padding: 20px; }
.bp-block { height: 60px; background: var(--gradient-subtle); border-radius: 8px; margin-bottom: 16px; border: 1px solid rgba(99,102,241,0.1); }
.bp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bp-card { height: 80px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }

/* ============ FAQ ============ */
.faq-section { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.faq-item h4 { font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.faq-item h4 i { color: var(--primary-hover); font-size: 14px; }
.faq-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* ============ ABOUT ============ */
.about-content { padding: 40px 0 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.about-text h2 { font-size: 30px; margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.value-icon { width: 44px; height: 44px; background: var(--gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; flex-shrink: 0; }
.value-card h3 { font-size: 16px; margin-bottom: 4px; }
.value-card p { color: var(--text-secondary); font-size: 13px; }

/* ============ CONTACT ============ */
.contact-content { padding: 40px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
.contact-card:hover { border-color: rgba(99,102,241,0.3); }
.contact-icon { width: 44px; height: 44px; background: var(--gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; flex-shrink: 0; }
.contact-card h3 { font-size: 16px; margin-bottom: 4px; }
.contact-card p { margin-bottom: 2px; }
.contact-card p a { color: var(--text); text-decoration: none; font-size: 15px; }
.contact-card p a:hover { color: var(--primary-hover); }
.contact-card span { font-size: 12px; color: var(--text-muted); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-card h2 { font-size: 22px; margin-bottom: 24px; }

/* ============ FOOTER ============ */
.footer { padding: 60px 0 24px; border-top: 1px solid var(--border); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 20px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.footer-logo i { font-size: 16px; }
.footer-grid > div > p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.footer-grid h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.footer-grid a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color 0.2s; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 32px; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,23,42,0.97); backdrop-filter: blur(16px); flex-direction: column; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .nav-links .btn-nav { width: 100%; text-align: center; }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }

    .features-grid, .steps-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid-4 { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }

    .register-grid { grid-template-columns: 1fr; gap: 32px; }
    .register-info { text-align: center; }
    .check-list li { justify-content: center; }
    .trust-badges { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .plan-options { grid-template-columns: repeat(2, 1fr); }

    .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .hero-small h1 { font-size: 30px; }
    .section-header h2 { font-size: 28px; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 24px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .plan-options { grid-template-columns: 1fr 1fr; }
    .register-form-card { padding: 24px; }
}

/* ============ SLUG PREVIEW ============ */
.slug-preview {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-top: 8px; padding: 10px 14px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
    font-size: 13px; transition: border-color 0.3s;
}
.slug-preview.available { border-color: var(--success); }
.slug-preview.taken { border-color: var(--danger); }
.slug-label { color: var(--text-muted); white-space: nowrap; }
.slug-url { color: var(--primary-hover); font-weight: 600; font-family: 'Courier New', monospace; font-size: 14px; }
.slug-status { margin-left: auto; font-size: 12px; font-weight: 600; white-space: nowrap; }
.slug-status.available { color: var(--success); }
.slug-status.taken { color: var(--danger); }
.slug-status.checking { color: var(--text-muted); }

/* ============ PASSWORD FIELD ============ */
.password-wrapper {
    position: relative; display: flex; align-items: center;
}
.password-wrapper input { padding-right: 44px !important; }
.pw-toggle {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-muted); cursor: pointer;
    padding: 8px 10px; font-size: 14px; transition: color 0.2s;
}
.pw-toggle:hover { color: var(--primary-hover); }

.pw-strength {
    display: none; height: 4px; background: var(--border); border-radius: 4px;
    margin-top: 6px; overflow: hidden;
}
.pw-bar { height: 100%; width: 0; border-radius: 4px; transition: width 0.3s, background 0.3s; }

.pw-match-msg { font-size: 12px; margin-top: 4px; font-weight: 500; }
.pw-match-msg.match { color: var(--success); }
.pw-match-msg.nomatch { color: var(--danger); }

/* Form group label icons */
.form-group label i { color: var(--primary-hover); margin-right: 4px; font-size: 12px; }
.plan-selector > label i { color: var(--primary-hover); margin-right: 4px; font-size: 12px; }
