  /* ════════════════════════════════════════════════════════════════════
     ALGORISER v5 — Dark-hero, light-body premium fintech
     Inspired by: Zerodha Kite, Sensibull, Linear, Vercel
  ════════════════════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #0F172A; background: #FAFAFA;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  button { font: inherit; cursor: pointer; border: none; background: none; }

  /* ── Tokens ── */
  :root {
    --g: #10B981; --gd: #059669; --gl: #34D399;
    --glow: rgba(16,185,129,.15);
    --ink: #0F172A; --ink2: #1E293B; --ink3: #334155;
    --muted: #64748B; --subtle: #94A3B8;
    --bd: #E2E8F0; --bds: #F1F5F9;
    --bg: #FAFAFA; --bg2: #F8FAFC; --card: #FFFFFF;
    --mono: 'JetBrains Mono', monospace;
    --display: 'Outfit', sans-serif;
  }

  /* ══ HERO WRAPPER — Seamless unified gradient for Top, Nav, & Hero ═══ */
  .hero-bg-wrap {
    background: linear-gradient(175deg, #0B1222 0%, #0D162A 40%, #09101E 75%, #060B16 100%);
    position: relative; overflow: hidden;
  }
  /* ══ NAV — Clean Transparent Header directly on Hero Background ══════ */
  .nav {
    position: relative; z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-i {
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    height: 66px; display: flex; align-items: center; gap: 6px;
  }
  /* Brand */
  .nav-brand {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    font-family: var(--display); font-weight: 800; font-size: .98rem;
    color: #fff; letter-spacing: -.01em;
  }
  .nav-logo { width: 30px; height: 30px; border-radius: 7px; overflow: hidden; box-shadow: 0 0 14px rgba(16,185,129,.35); }
  .nav-logo img { width: 100%; height: 100%; object-fit: contain; }
  .nav-divider {
    width: 1px; height: 22px; background: rgba(255,255,255,.14);
    margin: 0 8px; flex-shrink: 0;
    display: none;
  }
  /* Center links */
  .nav-links {
    display: none; align-items: center; gap: 4px;
    flex: 1; justify-content: center;
  }
  .nav-link {
    padding: 7px 14px; border-radius: 8px;
    font-size: .83rem; font-weight: 600; color: #CBD5E1;
    transition: all .18s; white-space: nowrap;
  }
  .nav-link:hover { color: #fff; background: rgba(16,185,129,.16); box-shadow: 0 0 12px rgba(16,185,129,.2) inset; }
  /* Right actions */
  .nav-actions { display: none; align-items: center; gap: 10px; flex-shrink: 0; }
  .nav-login {
    padding: 8px 16px; border-radius: 9px;
    font-size: .8rem; font-weight: 600;
    color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22);
    transition: all .18s;
  }
  .nav-login:hover { color: #34D399; border-color: rgba(16,185,129,.5); background: rgba(16,185,129,.12); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px; border-radius: 9px;
    font-size: .83rem; font-weight: 700; letter-spacing: -.01em;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #fff;
    box-shadow: 0 4px 18px rgba(16,185,129,.38);
    transition: all .18s;
    white-space: nowrap; border: 1px solid rgba(255,255,255,.15);
  }
  .nav-cta:hover { background: linear-gradient(135deg, #34D399 0%, #10B981 100%); transform: translateY(-1px); box-shadow: 0 6px 26px rgba(16,185,129,.55); }
  .nav-cta-arrow { font-size: .78rem; opacity: .9; }
  /* Price badge in CTA */
  .nav-cta-price {
    display: inline-block; padding: 2px 7px; border-radius: 5px;
    background: #04070D; font-size: .68rem; font-weight: 800; color: #fff;
    letter-spacing: .01em; border: 1px solid rgba(255,255,255,.18);
  }
  /* Hamburger */
  .nav-ham {
    display: flex; flex-direction: column; gap: 4.5px; align-items: center;
    justify-content: center; width: 40px; height: 40px;
    border-radius: 9px; border: 1px solid rgba(255,255,255,.2);
    margin-left: auto; transition: background .2s; flex-shrink: 0;
  }
  .nav-ham:hover { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.35); }
  .nav-ham span {
    display: block; width: 15px; height: 1.5px;
    background: #fff; border-radius: 2px;
    transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s, width .2s;
  }
  .nav-ham span:nth-child(2) { width: 11px; margin-left: -4px; }
  .nav-ham.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 15px; }
  .nav-ham.open span:nth-child(2) { opacity: 0; }
  .nav-ham.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 15px; }
  /* Drawer */
  .nav-drawer {
    position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
    background: #0B1222; border-bottom: 1px solid rgba(16,185,129,.22);
    padding: 12px 20px 20px; box-shadow: 0 16px 40px rgba(0,0,0,.5);
    transform: translateY(-108%); opacity: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s;
    pointer-events: none;
  }
  .nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-drawer .nav-link {
    display: block; padding: 13px 14px; font-size: .92rem;
    border-radius: 9px; color: #E2E8F0;
  }
  .nav-drawer-cta {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 8px; padding: 14px; border-radius: 10px;
    font-size: .9rem; font-weight: 700;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #fff;
    box-shadow: 0 4px 16px rgba(16,185,129,.35);
  }
  .nav-drawer-login {
    display: flex; align-items: center; justify-content: center;
    padding: 11px; border-radius: 10px; font-size: .88rem; font-weight: 600;
    color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05);
    margin-bottom: 4px;
  }
  /* Responsive */
  @media(min-width:768px) {
    .nav-ham { display: none; }
    .nav-drawer { display: none !important; }
    .nav-links { display: flex; }
    .nav-actions { display: flex; }
    .nav-divider { display: block; }
  }
  /* Section CTA block */
  .sec-cta-block {
    text-align: center; margin-top: 44px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .sec-cta-note { font-size: .74rem; color: var(--subtle); }
  .sec-cta-note-inv { color: rgba(255,255,255,.3); }

  /* ══ HERO — Deep Terminal, cinematic ═════════════════════════════════ */
  .hero {
    background: transparent;
    padding: 48px 24px 0; position: relative;
    text-align: center;
  }
  /* Grid overlay */
  .hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(16,185,129,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16,185,129,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  }
  /* Glow orb */
  .hero-orb {
    position: absolute; width: 700px; height: 400px;
    top: -180px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(16,185,129,.12), transparent 70%);
    filter: blur(60px); pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

  /* Pill */
  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 6px 5px 14px; border-radius: 99px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.5);
    margin-bottom: 28px;
    animation: fadeUp .7s .2s both;
  }
  .hero-pill-chip {
    padding: 3px 10px; border-radius: 99px;
    background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.25);
    color: #34D399; font-size: .62rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px; letter-spacing: .03em;
  }
  .pulse-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--gl);
    animation: pulseDot 1.5s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
    50% { box-shadow: 0 0 0 5px rgba(52,211,153,0); }
  }

  /* Headline */
  .hero-h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 8.5vw, 5.2rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -.05em;
    color: #fff; margin-bottom: 20px;
    animation: fadeUp .8s .4s both;
  }
  .hero-h1 em { font-style: normal; color: var(--g); }
  .hero-sub {
    font-size: clamp(.95rem, 2.2vw, 1.15rem);
    line-height: 1.75; color: rgba(255,255,255,.5);
    max-width: 560px; margin: 0 auto 36px;
    animation: fadeUp .8s .6s both;
  }
  .hero-sub strong { color: rgba(255,255,255,.8); font-weight: 600; }

  /* CTA row */
  .hero-ctas {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    animation: fadeUp .8s .8s both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 36px; border-radius: 12px;
    font-size: 1rem; font-weight: 700; font-family: 'Inter', sans-serif;
    background: var(--g); color: #fff;
    box-shadow: 0 4px 24px rgba(16,185,129,.35), 0 0 0 0 rgba(16,185,129,.3);
    transition: background .2s, transform .2s, box-shadow .2s;
    width: 100%; max-width: 360px;
  }
  .btn-primary:hover {
    background: var(--gd); transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16,185,129,.45);
  }
  .btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 15px 28px; border-radius: 12px;
    font-size: .92rem; font-weight: 600; font-family: 'Inter', sans-serif;
    background: transparent; color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.12);
    transition: color .2s, border-color .2s, background .2s;
    width: 100%; max-width: 360px;
  }
  .btn-outline:hover { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
  @media(min-width:480px) {
    .hero-ctas { flex-direction: row; justify-content: center; }
    .btn-primary, .btn-outline { width: auto; max-width: none; }
  }

  /* Social proof */
  .hero-proof {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 24px; font-size: .76rem; color: rgba(255,255,255,.35);
    flex-wrap: wrap;
    animation: fadeUp .8s 1s both;
  }
  .avatars { display: flex; }
  .av {
    width: 30px; height: 30px; border-radius: 50%;
    background: #0B1222; border: 2px solid #0D162A;
    margin-left: -10px; object-fit: cover;
    box-shadow: 0 0 0 1px rgba(16,185,129,.35), 0 4px 8px rgba(0,0,0,.5);
  }
  .av:first-child { margin-left: 0; }
  .proof-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); }

  /* Browser mockup */
  .hero-mockup {
    max-width: 1040px; width: 100%; margin: 52px auto 0; padding: 0 20px;
    animation: fadeUp 1s 1.2s both;
  }
  .mockup-frame {
    border-radius: 16px 16px 0 0; overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-bottom: none;
    box-shadow: 0 -4px 60px rgba(0,0,0,.4), 0 0 120px rgba(16,185,129,.04);
  }
  .mockup-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .m-dots { display: flex; gap: 5px; }
  .m-dot { width: 9px; height: 9px; border-radius: 50%; }
  .m-dot-r { background: rgba(255,95,87,.7); }
  .m-dot-y { background: rgba(255,189,46,.7); }
  .m-dot-g { background: rgba(40,200,64,.7); }
  .m-url {
    flex: 1; max-width: 260px; padding: 4px 10px; border-radius: 5px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
    font-family: var(--mono); font-size: .62rem; color: rgba(255,255,255,.3);
    display: flex; align-items: center; gap: 5px;
  }
  .mockup-frame img { display: block; width: 100%; height: auto; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ══ TICKER STRIP ════════════════════════════════════════════════════ */
  .ticker-strip {
    background: transparent; border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden; height: 38px; display: flex; align-items: center;
  }
  .ticker-inner {
    display: flex; gap: 0; white-space: nowrap;
    animation: scrollTick 30s linear infinite;
    width: max-content;
  }
  @keyframes scrollTick {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .tick-item {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 0 24px; font-family: var(--mono); font-size: .72rem;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .tick-name { color: #94A3B8; font-weight: 600; letter-spacing: .02em; }
  .tick-val { color: #fff; font-weight: 700; }
  .tick-chg { font-weight: 700; display: inline-flex; align-items: center; padding: 1px 5px; border-radius: 4px; font-size: .68rem; }
  .tick-chg.up { color: #34D399; background: rgba(16,185,129,.12); }
  .tick-chg.dn { color: #F87171; background: rgba(248,113,113,.12); }

  /* ══ CONTAINER ═══════════════════════════════════════════════════════ */
  .w { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  /* ══ SECTIONS ════════════════════════════════════════════════════════ */
  .sec { padding: 80px 0; background: #eef9f4; }
  .sec-alt { background: var(--card); }
  .sec-dark { background: var(--ink); color: #fff; }
  .sec-top { text-align: center; margin-bottom: 48px; }
  .sec-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .64rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--g); margin-bottom: 14px;
  }
  .sec-label::before { content: ''; width: 20px; height: 1.5px; background: var(--g); }
  .sec-h2 {
    font-family: var(--display); font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1.1;
    margin-bottom: 12px;
  }
  .sec-h2 em { font-style: normal; color: var(--g); }
  .sec-h2-inv { color: #fff; }
  .sec-sub { font-size: .92rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
  .sec-sub-inv { color: rgba(255,255,255,.45); }

  @media(min-width:768px) { .sec { padding: 100px 0; } }

  /* ══ STATS ═══════════════════════════════════════════════════════════ */
  .stats-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--bd); border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
  }
  .stat { background: var(--card); padding: 24px 20px; text-align: center; }
  .stat-label { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 6px; }
  .stat-val { font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--ink); line-height: 1; }
  .stat-sub { font-size: .64rem; color: var(--subtle); margin-top: 4px; }
  @media(min-width:768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stat { padding: 32px 24px; }
  }

  /* ══ HOW IT WORKS ════════════════════════════════════════════════════ */
  .steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .step {
    background: var(--card); border: 1px solid var(--bd);
    border-radius: 16px; padding: 28px 24px;
    display: flex; align-items: flex-start; gap: 18px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
  }
  .step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.07); border-color: rgba(16,185,129,.25); }
  .step-num {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--g), #34D399);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-size: 1.1rem; font-weight: 800;
    box-shadow: 0 4px 12px rgba(16,185,129,.3);
  }
  .step-title { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
  .step-desc { font-size: .84rem; color: var(--muted); line-height: 1.6; }
  @media(min-width:768px) {
    .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .step { flex-direction: column; align-items: center; text-align: center; padding: 36px 28px; }
  }

  /* ══ FEATURE SHOWCASE — Dark section ════════════════════════════════ */
  .features-dark { background: #080D1A; padding: 80px 0; }
  .features-tabs {
    display: flex; justify-content: center; gap: 8px; overflow-x: auto; margin-bottom: 28px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
  }
  .features-tabs::-webkit-scrollbar { display: none; }
  .ftab {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 10px; flex-shrink: 0;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.4);
    transition: all .2s;
  }
  .ftab:hover { color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
  .ftab.active { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: #34D399; }
  .fpanel { display: none; animation: fadeSlide .4s cubic-bezier(.4,0,.2,1) both; }
  .fpanel.active { display: block; }
  @keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  .fcard {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    background: rgba(255,255,255,.02);
  }
  .fcard-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px; background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.6);
  }
  .fcard-bar svg { color: var(--g); }
  .live-chip {
    margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 99px;
    background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.2);
    color: #34D399; font-family: var(--mono); font-size: .58rem; font-weight: 700;
  }
  .fcard img { width: 100%; display: block; height: auto; }

  /* Feature pills below showcase */
  .feat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
  .feat-pill {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6);
    transition: border-color .2s, color .2s;
  }
  .feat-pill:hover { border-color: rgba(16,185,129,.25); color: rgba(255,255,255,.85); }
  .feat-pill span { color: var(--g); }

  /* ══ PRICING ═════════════════════════════════════════════════════════ */
  .pricing-grid {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    max-width: 900px; margin: 0 auto;
  }
  .price-card {
    background: var(--card); border: 1px solid var(--bd);
    border-radius: 20px; padding: 32px 28px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
  .price-card.trial-featured {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-color: #10B981;
    color: #fff;
    box-shadow: 0 16px 40px rgba(16,185,129,.35);
  }
  .price-card.trial-featured .price-tier { color: rgba(255,255,255,.8); }
  .price-card.trial-featured .price-num { color: #fff; }
  .price-card.trial-featured .price-curr { color: rgba(255,255,255,.75); }
  .price-card.trial-featured .price-per { color: rgba(255,255,255,.8); }
  .price-card.trial-featured .price-desc { color: rgba(255,255,255,.85); }
  .price-card.trial-featured .price-feats li { color: #fff; }
  .price-card.trial-featured .price-feats li svg { color: #fff; }
  .price-card.trial-featured .price-btn {
    background: #fff; color: #059669; border-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
  }
  .price-card.trial-featured .price-btn:hover { background: #f0fdf4; }
  .price-card.trial-featured .price-trial { color: rgba(255,255,255,.7); }
  
  .price-card.monthly-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-color: #E2E8F0;
  }
  
  .price-card.annual-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #ECFDF5 100%);
    border-color: #A7F3D0;
    box-shadow: 0 4px 24px rgba(16,185,129,.06);
  }

  .price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; border-radius: 99px;
    background: #0F172A; color: #fff;
    font-size: .66rem; font-weight: 700; white-space: nowrap;
    letter-spacing: .04em; text-transform: uppercase;
  }
  .price-tier { font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 10px; }
  .price-amount {
    display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
  }
  .price-curr { font-family: var(--mono); font-size: 1.2rem; font-weight: 700; color: var(--muted); }
  .price-num { font-family: var(--mono); font-size: 3.2rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
  .price-per { font-size: .8rem; color: var(--subtle); font-weight: 500; }
  .price-save {
    display: inline-block; padding: 2px 7px; border-radius: 5px;
    background: #ECFDF5; color: var(--g);
    font-size: .6rem; font-weight: 700; letter-spacing: .02em;
    text-transform: uppercase; margin-left: 6px;
    vertical-align: middle;
  }
  .price-desc { font-size: .84rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
  .price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: var(--ink3); }
  .price-feats li svg { color: var(--g); flex-shrink: 0; margin-top: 2px; }
  .price-btn {
    display: block; width: 100%; padding: 14px;
    border-radius: 12px; font-size: .92rem; font-weight: 700;
    text-align: center; transition: all .2s;
    background: var(--bds); color: var(--ink);
    border: 1px solid var(--bd);
  }
  .price-btn:hover { background: var(--bd); }
  .price-btn.featured-btn {
    background: var(--g); color: #fff; border-color: var(--g);
    box-shadow: 0 4px 16px rgba(16,185,129,.3);
  }
  .price-btn.featured-btn:hover { background: var(--gd); }
  .price-trial {
    display: block; text-align: center; font-size: .72rem;
    color: var(--subtle); margin-top: 12px;
  }
  .price-guarantee {
    text-align: center; margin-top: 28px; padding: 16px 24px;
    border-radius: 12px; background: var(--bds); border: 1px solid var(--bd);
    font-size: .8rem; color: var(--muted);
  }
  .price-guarantee strong { color: var(--ink); }
  @media(min-width:768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ══ COMPARISON TABLE ════════════════════════════════════════════════ */
  .compare-wrap { max-width: 780px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid var(--bd); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
  .compare-wrap table { width: 100%; border-collapse: collapse; font-size: .82rem; }
  .compare-wrap th { padding: 14px 20px; text-align: left; background: var(--bds); border-bottom: 1px solid var(--bd); font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--subtle); }
  .compare-wrap th:last-child { color: var(--g); background: #ECFDF5; }
  .compare-wrap td { padding: 13px 20px; border-bottom: 1px solid rgba(0,0,0,.04); color: var(--ink3); }
  .compare-wrap td:first-child { font-weight: 600; color: var(--ink); }
  .compare-wrap td:last-child { font-weight: 700; color: var(--g); }
  .compare-wrap tr:last-child td { border-bottom: none; }

  /* ══ REVIEWS ═════════════════════════════════════════════════════════ */
  .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .review-card {
    background: var(--card); border: 1px solid var(--bd);
    border-radius: 16px; padding: 24px; position: relative;
    transition: transform .3s, box-shadow .3s;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.07); }
  .review-stars { color: #F59E0B; font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
  .review-text { font-size: .86rem; color: var(--ink3); line-height: 1.7; margin-bottom: 16px; }
  .review-author { display: flex; align-items: center; gap: 10px; }
  .review-av {
    width: 40px; height: 40px; border-radius: 50%;
    background: #ECFDF5; color: var(--g); display: flex;
    align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 800; font-family: var(--display);
    object-fit: cover; border: 2px solid #E2E8F0;
  }
  .review-name { font-size: .82rem; font-weight: 600; color: var(--ink); }
  .review-role { font-size: .68rem; color: var(--subtle); }
  @media(min-width:768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

  /* ══ TRUST BAR ═══════════════════════════════════════════════════════ */
  .trust-bar {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 20px; margin-top: 36px; padding: 18px 28px;
    border-radius: 14px; background: var(--card); border: 1px solid var(--bd);
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
  }
  .trust-item { display: flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 600; color: var(--muted); }
  .trust-item svg { color: var(--g); flex-shrink: 0; }

  /* ══ FAQ ═════════════════════════════════════════════════════════════ */
  .faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
  .faq-item { background: var(--card); border: 1px solid var(--bd); border-radius: 12px; overflow: hidden; }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 20px; font-size: .9rem; font-weight: 600; color: var(--ink);
    text-align: left; transition: background .2s;
  }
  .faq-q:hover { background: var(--bds); }
  .faq-q svg { flex-shrink: 0; color: var(--subtle); transition: transform .3s; }
  .faq-item.open .faq-q svg { transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a-inner { padding: 0 20px 16px; font-size: .86rem; color: var(--muted); line-height: 1.75; }

  /* ══ FINAL CTA ════════════════════════════════════════════════════════ */
  .final-cta {
    padding: 80px 24px; text-align: center;
    background: linear-gradient(175deg, #080D1A 0%, #0F172A 50%, #0B1628 100%);
    position: relative; overflow: hidden;
  }
  .final-cta-orb {
    position: absolute; width: 600px; height: 400px;
    bottom: -200px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(16,185,129,.1), transparent 70%);
    filter: blur(80px); pointer-events: none;
  }
  .final-cta-inner { position: relative; z-index: 1; }
  .final-h { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.05em; color: #fff; margin-bottom: 14px; }
  .final-h em { font-style: normal; color: var(--g); }
  .final-sub { font-size: .92rem; color: rgba(255,255,255,.45); max-width: 440px; margin: 0 auto 36px; line-height: 1.7; }
  .final-checks { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
  .final-ck { display: flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.4); }
  .final-ck svg { color: var(--g); }
  .final-badge {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
    padding: 10px 20px; border-radius: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    font-size: .76rem; color: rgba(255,255,255,.4);
  }
  .final-badge strong { color: #34D399; }



  /* ══ 2026 FLOATING DYNAMIC CAPSULE (Sticky Bar) ══════════════════════ */
  .sticky-bar {
    position: fixed; bottom: 24px; left: 50%; z-index: 999;
    transform: translate(-50%, 150%);
    width: max-content; max-width: calc(100vw - 32px);
    background: rgba(11, 18, 36, 0.88);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 32px rgba(16, 185, 129, 0.18), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease, border-color .3s ease;
  }
  .sticky-bar.show { transform: translate(-50%, 0); }
  .sticky-bar:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 24px 60px -8px rgba(0, 0, 0, 0.8), 0 0 44px rgba(16, 185, 129, 0.28), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  }
  .sticky-bar-inner {
    padding: 7px 8px 7px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
  }
  .sticky-live {
    display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
    padding: 4px 11px; border-radius: 999px;
    background: #040811; border: 1px solid rgba(16,185,129,.28);
    font-family: var(--mono); font-size: .66rem; font-weight: 800; color: #34D399;
    letter-spacing: .03em; box-shadow: 0 2px 8px rgba(0,0,0,.4);
  }
  .sticky-text {
    font-size: .8rem; color: #94A3B8; font-weight: 500;
    display: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .sticky-text strong { color: #F8FAFC; font-weight: 700; }
  .sticky-btn {
    display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
    padding: 9px 20px; border-radius: 999px;
    font-size: .82rem; font-weight: 800; font-family: var(--display);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
    transition: all .2s cubic-bezier(.16, 1, .3, 1);
  }
  .sticky-btn:hover {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    transform: scale(1.03); box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);
  }
  @media(min-width:640px) {
    .sticky-text { display: inline-block; }
    .sticky-bar-inner { padding: 8px 10px 8px 16px; gap: 18px; }
  }

  /* ══ SCROLL REVEAL ═══════════════════════════════════════════════════ */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* ══ SCROLL PROGRESS ═════════════════════════════════════════════════ */
  .scroll-bar { position: fixed; top: 0; left: 0; z-index: 500; height: 2px; width: 0; background: linear-gradient(90deg, var(--g), #34D399); transition: none; }


/* Extracted Inline Styles */
.text-muted-white { color: rgba(255, 255, 255, .7); }
.pt-0 { padding-top: 0; }
.btn-max-width { max-width: 380px; }
.text-green { color: #34D399; }
.sec-label.text-green::before { background: #34D399; }
.mt-36 { margin-top: 36px; }
.btn-primary-alt { max-width: 380px; background: var(--g); box-shadow: 0 4px 24px rgba(16, 185, 129, .35); }
.mb-20 { margin-bottom: 20px; }
.price-tier-flex { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px; }
.text-red-muted { color: #EF4444; opacity: .7; }
.link-green-underline { color: var(--g); text-decoration: underline; }
.flex-center-gap { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 18px; }
.brand-text { font-family: var(--display); font-size: .92rem; font-weight: 800; color: #fff; }
.btn-final { max-width: 360px; margin: 0 auto; }
.arrow-icon { font-size: .85em; opacity: .9; }


/* ══ META PRICING (FROM PROTO) ════════════════════════════════ */
.meta-pricing { background: #ffffff; padding: 72px 24px; }

.meta-pricing-inner { max-width: 720px; margin: 0px auto; text-align: center; }

.meta-price-featured { background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%); border-radius: 20px; padding: 40px 32px; box-shadow: rgba(16, 185, 129, 0.4) 0px 20px 60px; color: rgb(255, 255, 255); position: relative; margin: 36px 0px 20px; }

.meta-price-badge-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: rgb(15, 23, 42); color: rgb(255, 255, 255); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 18px; border-radius: 99px; white-space: nowrap; }

.meta-price-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); margin-bottom: 6px; }

.meta-price-amount { display: flex; align-items: baseline; gap: 4px; justify-content: center; margin-bottom: 8px; }

.meta-price-curr { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; color: rgba(255, 255, 255, 0.75); }

.meta-price-num { font-family: var(--mono); font-size: 4rem; font-weight: 800; letter-spacing: -0.04em; color: rgb(255, 255, 255); line-height: 1; }

.meta-price-sub { font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; }

.meta-price-feats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; margin-bottom: 28px; }

@media (max-width: 479px) {
  .meta-price-feats { grid-template-columns: 1fr; }
}

.meta-price-feats li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.9); }

.meta-price-feats li svg { color: rgba(255, 255, 255, 0.75); flex-shrink: 0; }

.meta-price-cta { display: block; width: 100%; padding: 16px; border-radius: 12px; font-size: 0.96rem; font-weight: 800; text-align: center; background: rgb(255, 255, 255); color: rgb(5, 150, 105); border-width: medium; border-style: none; border-color: currentcolor; border-image: none; box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px; transition: 0.2s; }

.meta-price-cta:hover { background: rgb(240, 253, 244); transform: translateY(-1px); box-shadow: rgba(0, 0, 0, 0.22) 0px 6px 28px; }

.meta-price-guarantee { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); margin-top: 12px; }

.meta-other-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }

@media (max-width: 479px) {
  .meta-other-plans { grid-template-columns: 1fr; }
}

.meta-plan-card { background: var(--card); border: 1px solid var(--bd); border-radius: 14px; padding: 20px 18px; text-align: left; transition: transform 0.2s, border-color 0.2s; }

.meta-plan-card:hover { border-color: rgba(16, 185, 129, 0.3); transform: translateY(-2px); }

.meta-plan-name { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 6px; }

.meta-plan-price { font-family: var(--mono); font-size: 1.6rem; font-weight: 800; color: var(--ink); }

.meta-plan-desc { font-size: 0.76rem; color: var(--muted); margin-top: 4px; }

.meta-plan-link { display: block; text-align: center; margin-top: 10px; padding: 10px; border-radius: 9px; font-size: 0.8rem; font-weight: 700; background: var(--bds); color: var(--ink); border: 1px solid var(--bd); transition: 0.2s; }

.meta-plan-link:hover { background: var(--bd); }

.meta-faq { background: var(--card); padding: 72px 24px; }

.meta-faq-inner { max-width: 680px; margin: 0px auto; }

.meta-final { padding: 80px 24px; text-align: center; background: linear-gradient(175deg, rgb(8, 13, 26) 0%, rgb(15, 23, 42) 60%, rgb(11, 22, 40) 100%); position: relative; overflow: hidden; }

.meta-final-orb { position: absolute; width: 700px; height: 500px; bottom: -260px; left: 50%; transform: translateX(-50%); background: radial-gradient(rgba(16, 185, 129, 0.12), transparent 70%); filter: blur(80px); pointer-events: none; }

.meta-final-inner { position: relative; z-index: 1; max-width: 620px; margin: 0px auto; }

.meta-final-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px 5px 8px; border-radius: 99px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); font-size: 0.7rem; font-weight: 600; color: rgb(52, 211, 153); margin-bottom: 22px; }

.meta-final-dot { width: 6px; height: 6px; border-radius: 50%; background: rgb(52, 211, 153); animation: 1.5s ease-in-out 0s infinite normal none running pulseDot; }

.meta-final-h { font-family: var(--display); font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.05em; color: rgb(255, 255, 255); margin-bottom: 14px; }

.meta-final-h em { font-style: normal; color: var(--g); }

.meta-final-sub { font-size: 0.9rem; color: rgba(255, 255, 255, 0.42); max-width: 440px; margin: 0px auto 32px; line-height: 1.7; }

.meta-final-cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 18px 44px; border-radius: 14px; font-size: 1.05rem; font-weight: 800; font-family: Inter, sans-serif; background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%); color: rgb(255, 255, 255); box-shadow: rgba(16, 185, 129, 0.5) 0px 8px 36px; transition: 0.2s; width: 100%; max-width: 400px; }

.meta-final-cta:hover { background: linear-gradient(135deg, rgb(52, 211, 153), rgb(16, 185, 129)); transform: translateY(-2px); box-shadow: rgba(16, 185, 129, 0.65) 0px 12px 48px; }

.meta-final-checks { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 18px; }

.meta-final-ck { display: flex; align-items: center; gap: 5px; font-size: 0.74rem; font-weight: 600; color: rgba(255, 255, 255, 0.35); }

.meta-final-ck svg { color: var(--g); }

.meta-footer { background: rgb(6, 10, 18); padding: 28px 24px; text-align: center; font-size: 0.68rem; color: rgba(255, 255, 255, 0.2); }

.meta-footer a { color: rgba(255, 255, 255, 0.35); }

.meta-footer a:hover { color: rgba(255, 255, 255, 0.65); }

.meta-sticky { position: fixed; bottom: 0px; left: 0px; right: 0px; z-index: 999; background: rgba(6, 10, 18, 0.95); backdrop-filter: blur(20px); border-top: 1px solid rgba(16, 185, 129, 0.2); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

.meta-sticky.show { transform: translateY(0px); }

.meta-sticky-text { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); font-weight: 500; display: none; }

.meta-sticky-text strong { color: rgb(255, 255, 255); }

@media (min-width: 540px) {
  .meta-sticky-text { display: block; }
}

.meta-sticky-btn { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; padding: 12px 22px; border-radius: 10px; font-size: 0.86rem; font-weight: 800; font-family: Inter, sans-serif; background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%); color: rgb(255, 255, 255); box-shadow: rgba(16, 185, 129, 0.4) 0px 4px 18px; border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.2s; }

.meta-sticky-btn:hover { background: linear-gradient(135deg, rgb(52, 211, 153), rgb(16, 185, 129)); transform: scale(1.02); }

.meta-price-featured .btn-primary {
  background: #ffffff;
  color: rgb(5, 150, 105);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.meta-price-featured .btn-primary:hover {
  background: rgb(240, 253, 244);
  color: rgb(5, 150, 105);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #080f1e 0%, #0b1627 45%, #060e1b 100%);
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Ambient glow orbs */
.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.footer-orb-l {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(16,185,129,.13) 0%, transparent 70%);
  top: -120px; left: -100px;
}
.footer-orb-r {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}

.footer-inner {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 28px 40px;
}

/* ── Top row ── */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: flex-start;
}

/* ── Brand column ── */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(16,185,129,.4);
  flex-shrink: 0;
}
.footer-logo img {
  width: 100%; height: 100%; object-fit: contain;
}
.footer-brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -.02em;
}
.footer-tagline {
  font-size: .82rem;
  line-height: 1.65;
  color: #64748B;
}

/* Trust badges */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 600;
  color: #34D399;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  white-space: nowrap;
  letter-spacing: .01em;
}
.footer-badge svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Email button */
.footer-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #94A3B8;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
  width: fit-content;
}
.footer-email-btn:hover {
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.3);
  color: #34D399;
}

/* ── Nav columns ── */
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-self: center;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav-heading {
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #10B981;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: .8rem;
  color: #64748B;
  text-decoration: none;
  transition: color .18s;
  line-height: 1.4;
}
.footer-nav-list a:hover {
  color: #E2E8F0;
}

/* ── Divider ── */
.footer-divider {
  margin: 48px 0 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1) 30%, rgba(16,185,129,.2) 50%, rgba(255,255,255,.1) 70%, transparent);
}

/* ── Bottom row ── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy {
  font-size: .78rem;
  color: #475569;
  font-weight: 500;
}
.footer-disclaimer {
  font-size: .7rem;
  color: #334155;
  line-height: 1.7;
  max-width: 820px;
  padding: 12px 16px;
  background: rgba(255,255,255,.02);
  border-left: 3px solid rgba(16,185,129,.3);
  border-radius: 0 6px 6px 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    padding: 52px 20px 32px;
  }
  .footer-nav-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    gap: 14px;
  }
}

