:root {
    --navy: #0D1B2A;
    --orange: #FF6B2B;
    --orange-light: #FF8C55;
    --orange-pale: rgba(255,107,43,0.1);
    --mint: #13C47A;
    --mint-pale: rgba(19,196,122,0.1);
    --cream: #FFF8F2;
    --warm-white: #FFFCFA;
    --text: #1a2b3c;
    --muted: #6B7B8D;
    --border: rgba(13,27,42,0.08);
    --card-shadow: 0 2px 20px rgba(13,27,42,0.07);
    --card-hover-shadow: 0 8px 40px rgba(13,27,42,0.13);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,252,250,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .logo-mark {
    width: 38px; height: 38px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.5px;
  }
  .logo-text span { color: var(--orange); }

  .nav-links {
    display: flex; align-items: center; gap: 32px;
  }
  .nav-links a {
    text-decoration: none; color: var(--muted);
    font-size: 14px; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta {
    background: var(--navy) !important;
    color: white !important;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--orange) !important; transform: translateY(-1px); }

  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .nav-hamburger span {
    width: 22px; height: 2px; background: var(--navy);
    border-radius: 2px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 24px 80px;
  }

  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,43,0.25) 0%, transparent 70%);
    top: -100px; right: -100px;
  }
  .hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(19,196,122,0.15) 0%, transparent 70%);
    bottom: -80px; left: -80px;
  }
  .hero-blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 70%);
    top: 40%; left: 20%;
  }

  /* Subtle grid pattern */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-inner {
    position: relative; z-index: 2;
    max-width: 720px;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,43,0.15);
    border: 1px solid rgba(255,107,43,0.3);
    color: #FF8C55;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 36px;
  }
  .pulse {
    width: 7px; height: 7px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulseAnim 1.8s ease-in-out infinite;
  }
  @keyframes pulseAnim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: white;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--orange);
  }
  .hero-h1 .line-accent {
    position: relative;
    display: inline-block;
  }
  .hero-h1 .line-accent::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: var(--mint);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineIn 0.6s ease 0.8s forwards;
  }
  @keyframes underlineIn { to { transform: scaleX(1); } }

  .hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.65);
    font-weight: 300; line-height: 1.7;
    max-width: 520px; margin: 0 auto 36px;
  }

  .hero-langs {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .hero-lang {
    font-size: 13px; color: rgba(255,255,255,0.35);
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: default;
    transition: all 0.4s ease;
  }
  .hero-lang.active {
    color: white;
    background: rgba(255,107,43,0.18);
    border-color: rgba(255,107,43,0.4);
  }
  .lang-dot { color: rgba(255,255,255,0.2); }

  .hero-cta-group {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--orange);
    color: white; border: none; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(255,107,43,0.4);
  }
  .btn-primary:hover { background: #ff5a15; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,43,0.5); }

  .btn-secondary {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer; font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: 100px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.13);
    color: white;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--orange);
    padding: 20px 24px;
  }
  .stats-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; justify-content: center;
    gap: 0;
  }
  .stat-item {
    flex: 1; text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .stat-item:last-child { border-right: none; }
  .stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 900;
    color: white; line-height: 1.1;
  }
  .stat-lbl {
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* ── SECTIONS ── */
  section { padding: 96px 24px; }

  .section-inner {
    max-width: 1100px; margin: 0 auto;
  }

  .eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--orange); }
  .section-title.light { color: white; }
  .section-title.light em { color: var(--mint); }

  .section-sub {
    font-size: 17px; color: var(--muted);
    max-width: 560px; line-height: 1.7;
    font-weight: 300;
    margin-bottom: 64px;
  }

  /* ── REGISTRATION ── */
  .registration-section {
    background: var(--cream);
    padding: 96px 24px;
  }

  .reg-wrapper {
    max-width: 680px; margin: 0 auto;
  }

  .tab-selector {
    display: flex; gap: 8px;
    background: white;
    padding: 6px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 32px;
    border: 1px solid var(--border);
  }
  .tab-btn {
    flex: 1; padding: 12px 20px;
    border: none; border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    transition: all 0.25s;
  }
  .tab-btn.active {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 16px rgba(13,27,42,0.2);
  }

  .reg-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(13,27,42,0.1);
    border: 1px solid var(--border);
  }

  .form-panel { display: none; }
  .form-panel.active { display: block; }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 900;
    color: var(--navy); margin-bottom: 6px;
  }
  .form-sub {
    font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6;
  }

  .vendor-perks {
    display: flex; flex-direction: column; gap: 8px;
    background: var(--mint-pale);
    border: 1px solid rgba(19,196,122,0.2);
    border-radius: 12px; padding: 16px 20px;
    margin-bottom: 24px;
  }
  .vendor-perk {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; font-weight: 500; color: var(--navy);
  }
  .vp-icon { color: var(--mint); font-weight: 700; }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 16px;
  }
  .field { margin-bottom: 16px; }
  .field label {
    display: block; font-size: 12px; font-weight: 700;
    color: var(--navy); letter-spacing: 0.04em;
    text-transform: uppercase; margin-bottom: 7px;
  }
  .field input, .field select {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; color: var(--text);
    background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
  }
  .field input:focus, .field select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-pale);
    background: white;
  }
  .field input::placeholder { color: #b0bec5; }

  .notify-row {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
  }
  .notify-check {
    width: 18px; height: 18px;
    accent-color: var(--orange);
    cursor: pointer; border-radius: 4px;
  }
  .notify-label { font-size: 13px; color: var(--muted); line-height: 1.4; cursor: pointer; }

  .submit-btn {
    width: 100%; padding: 16px;
    border: none; border-radius: 14px; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.2s;
    position: relative;
  }
  .submit-btn.customer {
    background: var(--orange); color: white;
    box-shadow: 0 4px 20px rgba(255,107,43,0.35);
  }
  .submit-btn.customer:hover:not(:disabled) {
    background: #ff5a15; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,43,0.45);
  }
  .submit-btn.vendor {
    background: var(--navy); color: white;
    box-shadow: 0 4px 20px rgba(13,27,42,0.25);
  }
  .submit-btn.vendor:hover:not(:disabled) {
    background: #162e47; transform: translateY(-2px);
  }
  .submit-btn:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }

  .spinner {
    display: none;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .form-note {
    text-align: center; font-size: 12px; color: var(--muted);
    margin-top: 14px; font-style: italic;
  }

  .success-msg {
    display: none;
    text-align: center; padding: 40px 20px;
  }
  .success-icon { font-size: 52px; margin-bottom: 16px; }
  .success-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 900;
    color: var(--navy); margin-bottom: 12px;
  }
  .success-text { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 380px; margin: 0 auto; }

  /* ── FOR SECTION ── */
  .for-section { background: white; }

  .user-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-top: 56px;
  }

  .user-card {
    border-radius: 24px; padding: 40px;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border);
  }
  .user-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
  .user-card.customer {
    background: linear-gradient(135deg, var(--cream) 0%, white 60%);
  }
  .user-card.vendor {
    background: var(--navy);
    color: white;
  }
  .user-card.vendor .user-card-title { color: white; }
  .user-card.vendor .user-card-sub { color: rgba(255,255,255,0.5); }
  .user-card.vendor li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }

  .user-card-icon {
    font-size: 40px; margin-bottom: 20px;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: var(--orange-pale);
    border-radius: 16px;
  }
  .user-card.vendor .user-card-icon { background: rgba(255,107,43,0.15); }

  .user-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 900;
    color: var(--navy); margin-bottom: 4px;
  }
  .user-card-sub {
    font-size: 12px; font-weight: 600;
    color: var(--muted); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 24px;
  }
  .user-card ul {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 32px;
  }
  .user-card li {
    font-size: 14px; color: var(--text);
    display: flex; align-items: flex-start; gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .user-card li:last-child { border-bottom: none; padding-bottom: 0; }
  .user-card li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

  .user-card-cta {
    width: 100%; padding: 13px;
    border: none; border-radius: 12px; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 700;
    transition: all 0.2s;
  }
  .user-card.customer .user-card-cta {
    background: var(--navy); color: white;
  }
  .user-card.customer .user-card-cta:hover { background: var(--orange); }
  .user-card.vendor .user-card-cta {
    background: var(--orange); color: white;
    box-shadow: 0 4px 16px rgba(255,107,43,0.35);
  }
  .user-card.vendor .user-card-cta:hover { background: #ff5a15; }

  /* ── HOW IT WORKS ── */
  .how-section { background: var(--cream); }

  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 16px;
    counter-reset: steps;
  }
  .step {
    background: white; border-radius: 20px; padding: 36px;
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .step:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
  .step::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--orange);
  }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px; font-weight: 900;
    color: var(--orange-pale);
    line-height: 1; margin-bottom: 20px;
    filter: opacity(0.6);
  }
  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--navy); margin-bottom: 12px;
  }
  .step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── WHY NAMACART ── */
  .why-section { background: var(--navy); }

  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }

  .why-section .eyebrow { color: var(--mint); }
  .why-section .section-title { color: white; }
  .why-section .section-title em { color: var(--orange); }

  .why-section p {
    font-size: 15px; color: rgba(255,255,255,0.55);
    line-height: 1.8; margin-bottom: 12px;
  }

  .why-list {
    list-style: none; display: flex; flex-direction: column; gap: 20px;
    margin-top: 32px;
  }
  .why-list li {
    display: flex; align-items: flex-start; gap: 16px;
  }
  .why-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
    background: rgba(255,255,255,0.06);
  }
  .why-item-title {
    font-size: 15px; font-weight: 700;
    color: white; margin-bottom: 3px;
  }
  .why-item-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

  /* KPI Cards */
  .kpi-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-bottom: 20px;
  }
  .kpi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
  }
  .kpi-card:hover { border-color: rgba(255,107,43,0.4); }
  .kpi-val {
    font-family: 'Playfair Display', serif;
    font-size: 34px; font-weight: 900;
    color: var(--orange); line-height: 1;
    margin-bottom: 6px;
  }
  .kpi-lbl { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

  .thesis-block {
    background: rgba(255,107,43,0.12);
    border: 1px solid rgba(255,107,43,0.25);
    border-left: 3px solid var(--orange);
    border-radius: 12px; padding: 20px 24px;
    margin-top: 14px;
  }
  .thesis-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 10px;
  }
  .thesis-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-style: italic;
    color: rgba(255,255,255,0.8); line-height: 1.6;
  }

  /* ── VENDOR STRIP ── */
  .vendor-strip { background: white; }
  .vendor-strip .eyebrow { color: var(--mint); display: block; text-align: center; }

  .vbenefit-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 16px;
  }
  .vbenefit {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 32px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .vbenefit:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
  .vb-icon { font-size: 32px; margin-bottom: 16px; }
  .vb-title {
    font-size: 16px; font-weight: 700;
    color: var(--navy); margin-bottom: 10px;
  }
  .vb-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--cream); }

  .testi-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-top: 16px;
  }
  .testi-card {
    background: white; border-radius: 20px; padding: 36px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
  .testi-card::before {
    content: '"';
    position: absolute; top: 16px; right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 100px; line-height: 1;
    color: var(--orange-pale);
    pointer-events: none;
  }
  .testi-stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-text {
    font-size: 15px; color: var(--text); line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
    position: relative; z-index: 1;
  }
  .testi-author {
    font-size: 15px; font-weight: 700; color: var(--navy);
  }
  .testi-role { font-size: 12px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }

  .testi-disclaimer {
    text-align: center; margin-top: 28px;
    font-size: 11px; color: var(--muted); font-style: italic;
  }

  /* ── TIMELINE ── */
  .timeline-section { background: white; }

  .timeline-list {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 48px; position: relative;
  }
  .timeline-list::before {
    content: '';
    position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: var(--border);
  }

  .tl-item {
    display: flex; align-items: flex-start; gap: 28px;
    padding: 0 0 40px 0; position: relative;
  }
  .tl-item:last-child { padding-bottom: 0; }

  .tl-dot {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800;
    flex-shrink: 0; z-index: 1; position: relative;
  }
  .tl-dot.tl-b { background: var(--orange); color: white; font-size: 18px; }
  .tl-dot.tl-g { background: var(--navy); color: white; font-size: 12px; font-family: 'Outfit', sans-serif; }
  .tl-dot.tl-o { background: var(--mint); color: white; font-size: 18px; }

  .tl-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    margin-bottom: 8px;
  }
  .tl-badge.b { background: var(--orange-pale); color: var(--orange); }
  .tl-badge.g { background: rgba(13,27,42,0.06); color: var(--navy); }
  .tl-badge.o { background: var(--mint-pale); color: #0a8050; }

  .tl-title {
    font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
  }
  .tl-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 56px 24px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px;
  }
  .footer-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 900;
    color: white; letter-spacing: -0.5px;
    margin-bottom: 8px;
  }
  .footer-wordmark span { color: var(--orange); }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }

  .footer-links {
    display: flex; gap: 24px; flex-wrap: wrap;
    margin-bottom: 12px; justify-content: flex-end;
  }
  .footer-links a {
    text-decoration: none; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: white; }
  .footer-meta { font-size: 11px; color: rgba(255,255,255,0.25); text-align: right; }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .user-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .vbenefit-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; }
    .footer-links { justify-content: flex-start; }
    .footer-meta { text-align: left; }
  }
  @media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .vbenefit-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .reg-form { padding: 24px; }
    .nav-links { 
      display: flex; flex-direction: column; gap: 0; 
      position: absolute; top: 66px; left: 0; right: 0; 
      background: white; border-bottom: 1px solid var(--border); 
      padding: 16px 0;
      opacity: 0; visibility: hidden; transform: translateY(-10px);
      transition: all 0.3s ease;
    }
    .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-links a { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 15px; }
    .nav-links a:last-child { border-bottom: none; margin: 12px 24px; text-align: center; }
    .nav-hamburger { display: flex; }
    .stats-inner { flex-direction: column; gap: 16px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 12px 0; }
    .stat-item:last-child { border-bottom: none; }
    .hero-cta-group { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .why-grid { gap: 48px; }
    .tl-item { gap: 16px; }
  }