    /* Global Lucide SVG overrides */
    svg.lucide { stroke-width: 1.75; display: block; }
    /* ========== RESET & BASE ========== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: #FAFAF8;
      color: #0F172A;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; }
    button { font-family: inherit; }

    /* ========== REVEAL ANIMATIONS ========== */
    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
      will-change: opacity, transform;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
    }
    /* directional + scale variants (note: .visible below resets them) */
    .reveal.from-left  { transform: translateX(-40px); }
    .reveal.from-right { transform: translateX(40px); }
    .reveal.from-scale { transform: scale(.96); }
    .reveal.from-left.visible, .reveal.from-right.visible, .reveal.from-scale.visible { transform: translateY(0) translateX(0) scale(1); }
    /* auto-stagger children of a [data-stagger] container */
    [data-stagger] > .reveal { transition-delay: calc(var(--i, 0) * 90ms); }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 64px;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      z-index: 1000;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      height: 100%;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    @keyframes dot-heartbeat {
      0%   { transform: scale(1);    box-shadow: 0 0 12px rgba(16,185,129,0.7); }
      14%  { transform: scale(1.45); box-shadow: 0 0 18px rgba(16,185,129,0.95); }
      28%  { transform: scale(1);    box-shadow: 0 0 12px rgba(16,185,129,0.7); }
      42%  { transform: scale(1.3);  box-shadow: 0 0 16px rgba(16,185,129,0.85); }
      56%  { transform: scale(1);    box-shadow: 0 0 12px rgba(16,185,129,0.7); }
      100% { transform: scale(1);    box-shadow: 0 0 12px rgba(16,185,129,0.7); }
    }
    .nav-logo {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
    }
    .nav-logo::after { display: none; }
    .nav-logo-img {
      height: 28px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: #94A3B8;
      transition: color 180ms ease;
    }
    .nav-links a:hover { color: #fff; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .nav-signin {
      font-size: 14px;
      color: #94A3B8;
      transition: color 180ms ease;
    }
    .nav-signin:hover { color: #fff; }
    .nav-cta {
      background: #10B981;
      color: #fff;
      border-radius: 8px;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
      transition: background 180ms ease, box-shadow 180ms ease;
      white-space: nowrap;
    }
    .nav-cta:hover {
      background: #059669;
      box-shadow: 0 4px 24px rgba(16, 185, 129, 0.45);
    }

    /* Hamburger */
    #hamburger-cb { display: none; }
    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
    .hamburger-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: #94A3B8;
      border-radius: 2px;
      transition: 200ms ease;
    }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: rgba(15, 23, 42, 0.98);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 8px 24px 20px;
      z-index: 999;
      flex-direction: column;
    }
    #hamburger-cb:checked ~ .mobile-nav { display: flex; }
    .mobile-nav a {
      font-size: 15px;
      color: #94A3B8;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: block;
      transition: color 180ms ease;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: #fff; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-signin { display: none; }
      .hamburger-btn { display: flex; }
    }

    /* ========== HERO ========== */
    /* ===== HERO (dark, matches .page-hero on inner pages) ===== */
    .hero {
      --h-accent:#34D399; --h-accent-strong:#10B981; --h-saffron:#D9822B;
      --h-ink:#FFFFFF; --h-ink-soft:#CBD5E1; --h-muted:#94A3B8;
      --h-surface:#0F172A; --h-neutral:#1E293B; --h-line:rgba(255,255,255,0.10);
      position:relative; overflow:hidden; background:linear-gradient(180deg,var(--h-surface) 0%,var(--h-neutral) 100%);
    }
    .hero::before{content:"";position:absolute;top:-160px;right:-120px;width:620px;height:620px;z-index:0;background:radial-gradient(circle,rgba(16,185,129,.22) 0%,rgba(16,185,129,0) 68%);pointer-events:none;}
    .hero-glyphs{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;}
    .hero-glyph{position:absolute;font-weight:700;color:var(--h-ink);opacity:.05;white-space:nowrap;line-height:1;}
    .hero-glyph.s{color:var(--h-saffron);opacity:.07;}
    .hero-glyph.e{color:var(--h-accent-strong);opacity:.07;}
    .hero-glyphs::after{content:"";position:absolute;inset:0;background:radial-gradient(70% 70% at 40% 45%,var(--h-surface) 8%,transparent 65%);}

    .hero-in{position:relative;z-index:2;max-width:1320px;margin:0 auto;padding:118px 24px 76px;display:grid;grid-template-columns:.95fr 1.15fr;gap:56px;align-items:center;}

    .hero .h1{font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;font-size:clamp(38px,4.9vw,58px);line-height:1.05;letter-spacing:-.032em;color:var(--h-ink);margin:0 0 14px;}
    .hero .hl{font-family:'Playfair Display',serif;font-style:italic;font-weight:700;color:var(--h-accent);letter-spacing:-.005em;}
    .hero .hero-tw{margin-left:.22em;}
    .hero .tw-cursor{display:inline-block;width:3px;margin-left:2px;background:var(--h-accent);height:.82em;vertical-align:-.08em;animation:tw-blink 1s steps(1) infinite;}
    @keyframes tw-blink{0%,50%{opacity:1;}50.01%,100%{opacity:0;}}
    @media (prefers-reduced-motion: reduce){.hero .tw-cursor{animation:none;opacity:1;}}
    .hero .sub{font-size:16.5px;line-height:1.6;color:var(--h-muted);max-width:498px;margin-bottom:16px;}
    .hero .sub b{color:var(--h-ink);font-weight:600;}

    .hero .feats{list-style:none;display:flex;flex-direction:column;gap:8px;margin:0 0 20px;padding:0;}
    .hero .feats li{display:flex;align-items:flex-start;gap:10px;font-size:14px;line-height:1.5;color:var(--h-ink-soft);font-weight:500;}
    .hero .feats svg{width:18px;height:18px;margin-top:2px;stroke:var(--h-accent-strong);stroke-width:2.4;fill:none;flex-shrink:0;}
    .hero .feats b{color:var(--h-ink);font-weight:600;}

    .hero .cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px;align-items:center;}
    .hero .btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--h-accent);color:#fff;border-radius:11px;padding:15px 26px;font-weight:700;font-size:15.5px;box-shadow:0 6px 18px rgba(15,169,104,.26);transition:transform .16s,box-shadow .16s,background .16s;}
    .hero .btn-primary:hover{transform:translateY(-2px);background:var(--h-accent-strong);box-shadow:0 10px 26px rgba(15,169,104,.34);}
    .hero .btn-ghost{display:inline-flex;align-items:center;gap:8px;color:var(--h-ink);font-weight:600;font-size:15.5px;padding:15px 10px;border-bottom:2px solid transparent;transition:border-color .16s;}
    .hero .btn-ghost:hover{border-color:var(--h-ink);}

    .hero-proof{display:flex;align-items:center;gap:14px;font-size:13.5px;color:var(--h-muted);flex-wrap:wrap;}
    .hero-proof .num{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;color:var(--h-ink);}
    .hero-proof .dot{width:4px;height:4px;border-radius:50%;background:var(--h-muted);opacity:.5;}

    .browser-wrap{position:relative;display:flex;justify-content:center;}
    .browser-wrap::before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:460px;height:340px;border-radius:50%;background:radial-gradient(circle,rgba(15,169,104,.10),transparent 68%);filter:blur(28px);}
    .browser{position:relative;z-index:1;width:100%;max-width:560px;background:#fff;border-radius:16px;box-shadow:0 34px 64px rgba(23,23,18,.20),0 2px 6px rgba(23,23,18,.06);overflow:hidden;}
    .br-bar{display:flex;align-items:center;gap:6px;height:38px;padding:0 14px;background:#F1F1EC;border-bottom:1px solid rgba(23,23,18,.07);}
    .br-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0;}
    .br-dot.r{background:#FF5F57;}
    .br-dot.y{background:#FEBC2E;}
    .br-dot.g{background:#28C840;}
    .br-url{display:flex;align-items:center;gap:6px;margin:0 auto;background:#fff;border:1px solid rgba(23,23,18,.08);border-radius:999px;padding:5px 16px;font-size:11.5px;color:#6E6E62;max-width:220px;}
    .br-url svg{width:11px;height:11px;stroke:#8A8A80;stroke-width:2;fill:none;flex-shrink:0;}
    .br-site{position:relative;background:#FBFAF7;padding:24px 26px 32px;min-height:460px;}
    .br-nav{display:flex;align-items:center;gap:10px;padding-bottom:16px;margin-bottom:24px;border-bottom:1px solid rgba(23,23,18,.08);}
    .br-nav-logo{font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;font-size:13px;color:#171712;margin-right:auto;}
    .br-nav-link{width:28px;height:6px;border-radius:3px;background:#E4E4DE;}
    .br-hero{max-width:280px;}
    .br-line{height:11px;border-radius:5px;background:#E2E2DA;margin-bottom:10px;}
    .br-line.w70{width:74%;height:17px;background:#D6D6CC;}
    .br-line.w50{width:56%;}
    .br-line.w40{width:42%;}
    .br-line.muted{background:#ECECE5;}
    .br-cta{width:106px;height:28px;border-radius:8px;background:linear-gradient(135deg,var(--h-accent),var(--h-accent-strong));margin-top:16px;}
    .widget{position:absolute;right:20px;bottom:88px;width:262px;border-radius:16px;overflow:hidden;background:#fff;box-shadow:0 20px 46px -14px rgba(23,23,18,.35),0 2px 10px rgba(23,23,18,.08);z-index:2;}
    .widget-bubble{position:absolute;right:24px;bottom:24px;width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,var(--h-accent),var(--h-accent-strong));display:grid;place-items:center;box-shadow:0 10px 26px -6px rgba(15,169,104,.55);z-index:1;}
    .widget-bubble svg{width:23px;height:23px;stroke:#fff;stroke-width:2;fill:none;}
    .p-top{display:flex;align-items:center;gap:10px;padding:14px 14px 12px;background:var(--h-accent);}
    .p-ava{width:30px;height:30px;border-radius:9px;background:rgba(255,255,255,.20);display:grid;place-items:center;flex-shrink:0;}
    .p-ava svg{width:17px;height:17px;stroke:#fff;stroke-width:2;fill:none;}
    .p-name{font-size:13px;font-weight:700;color:#fff;line-height:1.2;}
    .p-status{font-size:10.5px;color:#D6F5E7;font-weight:600;display:flex;align-items:center;gap:5px;}
    .p-status .d{width:6px;height:6px;border-radius:50%;background:#fff;box-shadow:0 0 0 3px rgba(255,255,255,.25);}
    .p-tabs{position:relative;display:flex;gap:6px;padding:9px 11px;background:#fff;border-bottom:1px solid rgba(23,23,18,0.10);overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;}
    .p-tabs::-webkit-scrollbar{display:none;}
    .p-tab{font-size:11px;font-weight:600;color:#42423A;padding:4px 10px;border-radius:999px;border:1px solid rgba(23,23,18,0.10);background:#F4F3EF;cursor:pointer;white-space:nowrap;transition:all .15s;}
    .p-tab.active{background:var(--h-accent);color:#fff;border-color:var(--h-accent);}
    .p-chat{background:#F5F3EE;padding:13px 12px;display:flex;flex-direction:column;gap:9px;height:238px;overflow-y:auto;}
    .hero .pane{display:none;flex-direction:column;gap:10px;}
    .hero .pane.active{display:flex;animation:heroRot 300ms ease;}
    .hero .msg{max-width:84%;padding:10px 14px;font-size:13.5px;line-height:1.5;border-radius:16px;}
    .hero .msg.v{background:var(--h-accent);color:#fff;border-bottom-right-radius:5px;align-self:flex-end;box-shadow:0 1px 2px rgba(15,169,104,.25);}
    .hero .msg.b{background:#fff;color:#171712;border:1px solid rgba(23,23,18,0.10);border-bottom-left-radius:5px;align-self:flex-start;box-shadow:0 1px 2px rgba(23,23,18,.04);}
    .hero .typing{display:flex;gap:5px;padding:12px 14px;background:#fff;border:1px solid rgba(23,23,18,0.10);border-radius:16px;border-bottom-left-radius:5px;align-self:flex-start;}
    .hero .typing i{width:7px;height:7px;background:var(--h-accent);border-radius:50%;animation:heroTb 1.2s ease-in-out infinite;}
    .hero .typing i:nth-child(2){animation-delay:.2s;}
    .hero .typing i:nth-child(3){animation-delay:.4s;}
    @keyframes heroTb{0%,80%,100%{transform:translateY(0);opacity:.5;}40%{transform:translateY(-6px);opacity:1;}}
    @keyframes heroRot{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
    .lead-chip{position:absolute;bottom:20px;left:-26px;z-index:5;background:#171712;color:#fff;border-radius:14px;padding:11px 14px;box-shadow:0 16px 34px rgba(23,23,18,.28);display:flex;align-items:center;gap:11px;max-width:238px;}
    .lead-chip .ic{width:32px;height:32px;border-radius:9px;background:rgba(15,169,104,.22);display:grid;place-items:center;flex-shrink:0;}
    .lead-chip .ic svg{width:17px;height:17px;stroke:#6EE7B7;stroke-width:2.4;fill:none;}
    .lead-chip .lt{font-size:12.5px;font-weight:700;line-height:1.25;}
    .lead-chip .ls{font-size:11px;color:#b9b9ae;}

    @media (max-width:900px){
      .hero-in{grid-template-columns:1fr;gap:44px;text-align:center;padding-top:96px;}
      .hero .sub{margin-left:auto;margin-right:auto;}
      .hero .feats{display:inline-flex;text-align:left;margin:0 auto 28px;}
      .hero .cta-row,.hero-proof{justify-content:center;}
      .lead-chip{left:auto;right:8px;bottom:14px;}
    }
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 28px 24px 44px;
      width: 100%;
      display: grid;
      grid-template-columns: 55% 45%;
      align-items: center;
      gap: 40px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(180deg, rgba(16,185,129,0.12), rgba(16,185,129,0.045));
      border: 1px solid rgba(16, 185, 129, 0.28);
      color: #6EE7B7;
      border-radius: 9999px;
      padding: 7px 15px 7px 9px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      white-space: nowrap;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 18px rgba(16,185,129,0.10);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
    }
    .hb-flag {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(180deg, #FF9933 0 33%, #ffffff 33% 66%, #138808 66% 100%);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.45);
    }
    .hb-text { color: #6EE7B7; }
    .hb-sep {
      width: 1px;
      height: 12px;
      background: rgba(148,163,184,0.32);
      flex-shrink: 0;
    }
    .hb-muted { color: #94A3B8; font-weight: 500; }
    .hb-muted strong { color: #fff; font-weight: 700; }
    .hero-badge::after {
      content: '';
      position: absolute;
      top: 0;
      left: -60%;
      width: 40%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
      transform: skewX(-20deg);
      animation: hbSheen 5.5s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes hbSheen {
      0%, 68% { left: -60%; }
      100% { left: 135%; }
    }
    .hero-headline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(36px, 5vw, 66px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 16px;
    }
    .gradient-text {
      background: linear-gradient(135deg, #10B981, #34D399);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtext {
      font-size: 16px;
      color: #94A3B8;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 24px;
    }
    .hero-cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .btn-hero-primary {
      display: inline-block;
      background: #10B981;
      color: #fff;
      border-radius: 8px;
      padding: 16px 32px;
      font-weight: 700;
      font-size: 16px;
      box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
      transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }
    .btn-hero-primary:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    }
    .btn-hero-secondary {
      display: inline-block;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #94A3B8;
      border-radius: 8px;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 500;
      transition: border-color 180ms ease, color 180ms ease;
    }
    .btn-hero-secondary:hover { border-color: #fff; color: #fff; }
    .hero-trust {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 13px;
      color: #64748B;
      align-items: center;
    }

    /* Phone mockup */
    .hero-phone-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .phone-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129,0.15), transparent 70%);
      border-radius: 50%;
      filter: blur(40px);
      pointer-events: none;
    }
    .phone-frame {
      width: 280px;
      height: 560px;
      background: #1E293B;
      border-radius: 40px;
      border: 8px solid #334155;
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
      overflow: hidden;
      position: relative;
      z-index: 1;
      animation: phoneFloat 3s ease-in-out infinite;
    }
    @keyframes phoneFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .phone-topbar {
      height: 40px;
      background: #0F172A;
      display: flex;
      align-items: center;
      padding: 0 14px;
      gap: 8px;
      flex-shrink: 0;
    }
    .online-dot {
      width: 8px;
      height: 8px;
      background: #10B981;
      border-radius: 50%;
    }
    .phone-topbar-title {
      flex: 1;
      text-align: center;
      font-size: 13px;
      color: #fff;
      font-weight: 500;
      margin-right: 16px;
    }
    .phone-chat {
      background: #0F172A;
      height: calc(100% - 40px);
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .bubble {
      max-width: 82%;
      padding: 10px 14px;
      font-size: 13px;
      line-height: 1.5;
    }
    .bubble.visitor {
      background: #10B981;
      color: #fff;
      border-radius: 18px 18px 4px 18px;
      align-self: flex-end;
    }
    .bubble.bot {
      background: #1E293B;
      color: #CBD5E1;
      border-radius: 18px 18px 18px 4px;
      align-self: flex-start;
    }
    .typing-pill {
      display: flex;
      gap: 5px;
      padding: 12px 14px;
      background: #1E293B;
      border-radius: 18px 18px 18px 4px;
      align-self: flex-start;
      width: fit-content;
    }
    .t-dot {
      width: 7px;
      height: 7px;
      background: #10B981;
      border-radius: 50%;
      animation: tBounce 1.2s ease-in-out infinite;
    }
    .t-dot:nth-child(2) { animation-delay: 0.2s; }
    .t-dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes tBounce {
      0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
      40% { transform: translateY(-6px); opacity: 1; }
    }

    .scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .scroll-chevron {
      width: 18px;
      height: 18px;
      border-right: 2px solid #10B981;
      border-bottom: 2px solid #10B981;
      transform: rotate(45deg);
      display: block;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    @media (max-width: 768px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px 80px;
      }
      .hero-phone-wrap { display: none; }
      .hero-badge { margin: 0 auto 24px; }
      .hero-subtext { margin-left: auto; margin-right: auto; }
      .hero-cta-row { justify-content: center; }
      .hero-trust { justify-content: center; }
    }

    /* ========== LIVE ACTIVITY MARQUEE ========== */
    .live-marquee {
      background: #0A0E1A;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      overflow: hidden;
      padding: 22px 0 24px;
      position: relative;
    }
    .lm-wrap {
      display: flex;
      align-items: stretch;
      gap: 0;
      position: relative;
    }
    .lm-fixed {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 20px 0 28px;
      flex-shrink: 0;
      z-index: 3;
      position: relative;
    }
    .lm-fixed::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -1px;
      transform: translateY(-50%);
      width: 1px;
      height: 60%;
      background: #1E293B;
    }
    .lm-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 9999px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: #10B981;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      flex-shrink: 0;
      font-family: 'DM Sans', sans-serif;
    }
    .lm-live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
      animation: lm-pulse 1.8s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes lm-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
      70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
      100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }
    .lm-fixed-label {
      font-size: 12px;
      color: #64748B;
      font-weight: 500;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }
    .lm-tracks {
      flex: 1;
      overflow: hidden;
      position: relative;
      min-width: 0;
      padding-left: 24px;
    }
    .lm-tracks::before, .lm-tracks::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 64px;
      z-index: 2;
      pointer-events: none;
    }
    .lm-tracks::before { left: 0; background: linear-gradient(90deg, #0A0E1A, rgba(10, 14, 26, 0)); }
    .lm-tracks::after  { right: 0; background: linear-gradient(270deg, #0A0E1A, rgba(10, 14, 26, 0)); }
    .lm-row {
      display: flex;
      white-space: nowrap;
      align-items: center;
      font-family: 'DM Sans', sans-serif;
    }
    .lm-row-top { font-size: 14px; }
    .lm-row-bot {
      margin-top: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #475569;
    }
    .lm-track {
      display: inline-flex;
      align-items: center;
      gap: 28px;
      padding-right: 28px;
      will-change: transform;
    }
    .lm-track-left  { animation: lm-scroll-l 55s linear infinite; }
    .lm-track-right { animation: lm-scroll-r 40s linear infinite; }
    .lm-track:hover { animation-play-state: paused; }
    @keyframes lm-scroll-l {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes lm-scroll-r {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    .lm-event {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .lm-icon-wrap {
      width: 26px; height: 26px;
      border-radius: 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .lm-icon-emerald { background: rgba(16, 185, 129, 0.13); color: #10B981; }
    .lm-icon-blue    { background: rgba(37, 99, 235, 0.13);  color: #2563EB; }
    .lm-icon-amber   { background: rgba(217, 119, 6, 0.15);  color: #D97706; }
    .lm-icon-purple  { background: rgba(124, 58, 237, 0.13); color: #7C3AED; }
    .lm-time {
      color: #64748B;
      font-variant-numeric: tabular-nums;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .lm-biz {
      color: #fff;
      font-weight: 600;
      letter-spacing: -0.005em;
    }
    .lm-action { color: #94A3B8; }
    .lm-dot-sep {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: #334155;
      flex-shrink: 0;
    }
    .lm-chip { color: #64748B; }
    .lm-chip-dot { color: #1E293B; }

    @media (max-width: 900px) {
      .lm-fixed { padding: 0 14px 0 20px; gap: 8px; }
      .lm-fixed-label { display: none; }
      .lm-row-top { font-size: 13px; }
      .lm-track { gap: 20px; padding-right: 20px; }
      .lm-tracks { padding-left: 16px; }
    }
    @media (max-width: 600px) {
      .lm-action { display: none; }
      .lm-row-bot { font-size: 10px; letter-spacing: 0.18em; }
    }

    /* ========== SHARED SECTION HELPERS ========== */
    .section-pad { padding: 120px 24px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #10B981;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(32px, 4vw, 52px);
      color: #171712;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 64px;
    }

    /* ========== PROBLEM ========== */
    .problem { background: #FAFAF8; }
    .problem-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 80px;
      align-items: start;
    }
    .problem-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-style: italic;
      font-size: 13px;
      color: #10B981;
      margin-bottom: 24px;
    }
    .problem-quote {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 4vw, 52px);
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #0F172A;
    }
    .problem-body {
      font-size: 17px;
      color: #64748B;
      line-height: 1.8;
      margin-top: 24px;
    }
    .pain-stack { display: flex; flex-direction: column; gap: 16px; }
    .pain-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-left: 3px solid #10B981;
      border-radius: 12px;
      padding: 20px;
    }
    .pain-icon { font-size: 22px; margin-bottom: 8px; }
    .pain-title { font-weight: 600; font-size: 15px; color: #0F172A; margin-bottom: 4px; }
    .pain-body { font-size: 14px; color: #64748B; line-height: 1.6; }

    /* ── Missed inbox visual ── */
    .miss-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 48px -16px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.04);
      position: relative;
    }
    .miss-card::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.4) 100%);
      mix-blend-mode: overlay;
    }
    .miss-head {
      background: #0F172A;
      color: #fff;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .miss-head-left {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .miss-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(220,38,38,0.16);
      color: #FCA5A5;
      padding: 4px 10px;
      border-radius: 9999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .miss-status::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #DC2626;
    }
    .miss-row {
      padding: 16px 20px;
      border-bottom: 1px solid #F1F5F9;
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
    }
    .miss-row::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: #FECACA;
    }
    .miss-row-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .miss-row-name { font-weight: 600; color: #0F172A; font-size: 14px; }
    .miss-row-time { color: #94A3B8; font-variant-numeric: tabular-nums; font-size: 12px; font-weight: 500; }
    .miss-msg { font-size: 14px; color: #334155; line-height: 1.5; }
    .miss-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #FEF2F2;
      color: #DC2626;
      border: 1px solid #FECACA;
      padding: 3px 10px;
      border-radius: 9999px;
      font-size: 11px;
      font-weight: 600;
      margin-top: 2px;
      width: fit-content;
    }
    .miss-foot {
      padding: 18px 20px 20px;
      background: linear-gradient(180deg, #F8FAFC, #F1F5F9);
      border-top: 1px solid #E2E8F0;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .miss-foot-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #E2E8F0;
      display: flex; align-items: center; justify-content: center;
      color: #DC2626;
      flex-shrink: 0;
    }
    .miss-foot-stat {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 17px;
      color: #0F172A;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    .miss-foot-sub { font-size: 12px; color: #64748B; margin-top: 4px; line-height: 1.45; }

    @media (max-width: 900px) {
      .problem-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ========== HOW IT WORKS — redesigned ========== */
    .hiw { background: #F6F8FB; }

    /* common step 01 at top */
    .hiw-common {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 0;
    }
    .hiw-common .step-card {
      max-width: 360px;
      width: 100%;
      text-align: left;
    }
    .hiw-v-connector {
      width: 2px;
      height: 44px;
      background: linear-gradient(to bottom, rgba(16,185,129,0.55), rgba(16,185,129,0.10));
      margin: 10px 0;
      flex-shrink: 0;
      border-radius: 2px;
    }

    /* track toggle */
    .hiw-track-selector {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      margin-bottom: 36px;
    }
    .hiw-toggle {
      display: inline-flex;
      background: #F1F5F9;
      border: 1px solid #E2E8F0;
      border-radius: 9999px;
      padding: 4px;
      gap: 2px;
    }
    .hiw-toggle-btn {
      background: transparent;
      border: none;
      padding: 9px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #64748B;
      border-radius: 9999px;
      cursor: pointer;
      font-family: inherit;
      transition: all 200ms ease;
      white-space: nowrap;
    }
    .hiw-toggle-btn.active {
      background: #0F172A;
      color: #fff;
      box-shadow: 0 2px 8px rgba(15,23,42,0.18);
    }
    .hiw-toggle-btn.active .hiw-toggle-accent { color: #10B981; }

    /* track panels */
    .hiw-track { display: none; }
    .hiw-track.active { display: block; }

    /* 2-column steps grid */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .steps-grid-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 760px;
      margin: 0 auto;
    }

    .step-card {
      position: relative;
      padding: 30px 26px 28px;
      background: #fff;
      border: 1px solid #E6EBF1;
      border-radius: 16px;
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
      overflow: hidden;
      transition: transform 300ms cubic-bezier(.22,.61,.36,1), box-shadow 300ms ease, border-color 300ms ease;
    }
    .step-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #10B981, #34D399);
      transform: scaleX(0);
      transform-origin: 0 50%;
      transition: transform 360ms cubic-bezier(.22,.61,.36,1);
    }
    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 44px -22px rgba(15,23,42,0.30);
      border-color: rgba(16,185,129,0.40);
    }
    .step-card:hover::before { transform: scaleX(1); }
    .step-card .step-icon { transition: transform 300ms cubic-bezier(.34,1.56,.64,1), background 300ms ease; }
    .step-card:hover .step-icon { transform: scale(1.1) rotate(-4deg); background: rgba(16,185,129,0.16); }
    .step-bg-num {
      position: absolute;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 118px;
      color: rgba(16, 185, 129, 0.10);
      bottom: -26px;
      right: -4px;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    .step-icon {
      width: 48px;
      height: 48px;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      position: relative;
      z-index: 1;
    }
    .step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: #0F172A;
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }
    .step-body {
      font-size: 15px;
      color: #64748B;
      line-height: 1.7;
      margin-top: 8px;
      position: relative;
      z-index: 1;
    }
    /* Dashed connector between steps (horizontal) */
    .steps-grid > .step-card:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 100%;
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, rgba(16,185,129,0.55), rgba(16,185,129,0.15));
      z-index: 1;
    }

    /* footer line */
    .hiw-footer-line {
      text-align: center;
      margin-top: 48px;
      font-size: 15px;
      color: #64748B;
      line-height: 1.6;
    }
    .hiw-footer-line a {
      color: #10B981;
      font-weight: 600;
      margin-left: 6px;
      transition: color 180ms ease;
    }
    .hiw-footer-line a:hover { color: #059669; }

    @media (max-width: 768px) {
      .steps-grid, .steps-grid-2 { grid-template-columns: 1fr; }
      .step-card:not(:last-child)::after { display: none; }
      .hiw-toggle-btn { padding: 8px 16px; font-size: 13px; }
    }

    /* ========== COMMAND CENTER (Dashboard) ========== */
    .cc {
      background: #0F172A;
      padding: 120px 24px;
      position: relative;
      overflow: hidden;
    }
    .cc::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(16,185,129,0.10), transparent 60%);
      pointer-events: none;
    }
    .cc::after {
      content: '';
      position: absolute;
      bottom: -300px; left: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(16,185,129,0.06), transparent 60%);
      pointer-events: none;
    }
    .cc-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .cc-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
    .cc-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #10B981;
      font-weight: 700;
      margin-bottom: 20px;
      padding: 6px 14px;
      background: rgba(16,185,129,0.1);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: 9999px;
    }
    .cc-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(32px, 4.4vw, 56px);
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin-bottom: 20px;
    }
    .accent { color: #0FA968; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; letter-spacing: -0.005em; }
    .cc-sub {
      font-size: 18px;
      color: #94A3B8;
      line-height: 1.7;
    }

    /* Dashboard mockup */
    .cc-dash {
      background: #0B1220;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
      display: grid;
      grid-template-columns: 224px 1fr;
      min-height: 560px;
    }
    /* Sidebar */
    .cc-side {
      background: #070C16;
      border-right: 1px solid rgba(255,255,255,0.05);
      padding: 20px 14px;
      display: flex;
      flex-direction: column;
    }
    .cc-side-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #fff;
      letter-spacing: -0.02em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 8px 22px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      margin-bottom: 18px;
    }
    .cc-side-logo::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 10px rgba(16,185,129,0.7);
    }
    .cc-side-section {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #475569;
      font-weight: 700;
      padding: 0 10px;
      margin: 14px 0 8px;
    }
    .cc-side-section:first-of-type { margin-top: 0; }
    .cc-nav-item {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 9px 10px;
      border-radius: 8px;
      font-size: 13.5px;
      color: #94A3B8;
      font-weight: 500;
      margin-bottom: 2px;
      position: relative;
      cursor: default;
    }
    .cc-nav-item svg { width: 16px; height: 16px; stroke-width: 1.75; flex-shrink: 0; color: #64748B; }
    .cc-nav-item.active {
      background: rgba(16,185,129,0.12);
      color: #fff;
    }
    .cc-nav-item.active svg { color: #10B981; }
    .cc-nav-item.active::before {
      content: '';
      position: absolute;
      left: -14px; top: 8px; bottom: 8px;
      width: 3px;
      border-radius: 0 3px 3px 0;
      background: #10B981;
    }
    .cc-nav-badge {
      margin-left: auto;
      font-size: 10px;
      font-weight: 700;
      background: #10B981;
      color: #fff;
      padding: 2px 7px;
      border-radius: 9999px;
      letter-spacing: 0.02em;
    }
    .cc-nav-badge.muted { background: rgba(255,255,255,0.08); color: #94A3B8; }
    .cc-side-foot {
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cc-avatar {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10B981, #34D399);
      color: #062;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 12px;
      flex-shrink: 0;
    }
    .cc-avatar.indigo { background: linear-gradient(135deg, #6366F1, #8B5CF6); color: #fff; }
    .cc-avatar.amber  { background: linear-gradient(135deg, #F59E0B, #FBBF24); color: #422006; }
    .cc-avatar.rose   { background: linear-gradient(135deg, #F43F5E, #FB7185); color: #fff; }
    .cc-avatar.sky    { background: linear-gradient(135deg, #0EA5E9, #38BDF8); color: #03263c; }
    .cc-avatar.plum   { background: linear-gradient(135deg, #A855F7, #C084FC); color: #fff; }
    .cc-user-name { font-size: 13px; color: #fff; font-weight: 600; line-height: 1.2; }
    .cc-user-role { font-size: 11px; color: #64748B; margin-top: 2px; }

    /* Main panel */
    .cc-main { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 20px; }
    .cc-topbar {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .cc-greet-h { font-size: 18px; color: #fff; font-weight: 600; line-height: 1.2; }
    .cc-greet-s { font-size: 12px; color: #64748B; margin-top: 3px; }
    .cc-search {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      padding: 7px 12px;
      width: 220px;
      color: #64748B;
      font-size: 12.5px;
    }
    .cc-search svg { width: 14px; height: 14px; flex-shrink: 0; }
    .cc-kbd {
      margin-left: auto;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 4px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      color: #475569;
      font-family: 'DM Sans', sans-serif;
    }
    .cc-icon-btn {
      width: 34px; height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: #94A3B8;
      position: relative;
    }
    .cc-icon-btn svg { width: 15px; height: 15px; }
    .cc-icon-btn .cc-bell-dot {
      position: absolute;
      top: 6px; right: 7px;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 0 2px #0B1220;
    }

    /* Stat cards */
    .cc-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .cc-stat {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 12px;
      padding: 14px 16px;
      position: relative;
    }
    .cc-stat-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px;
    }
    .cc-stat-lbl { font-size: 11px; color: #94A3B8; font-weight: 500; letter-spacing: 0.02em; }
    .cc-stat-icon {
      width: 26px; height: 26px;
      border-radius: 7px;
      background: rgba(16,185,129,0.12);
      color: #10B981;
      display: flex; align-items: center; justify-content: center;
    }
    .cc-stat-icon svg { width: 14px; height: 14px; }
    .cc-stat-icon.blue   { background: rgba(56,189,248,0.12);  color: #38BDF8; }
    .cc-stat-icon.amber  { background: rgba(245,158,11,0.13);  color: #FBBF24; }
    .cc-stat-icon.purple { background: rgba(168,85,247,0.12);  color: #C084FC; }
    .cc-stat-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 24px;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }
    .cc-stat-delta {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      font-weight: 600;
      margin-top: 4px;
      color: #10B981;
    }
    .cc-stat-delta.down { color: #FB7185; }
    .cc-stat-delta svg { width: 11px; height: 11px; }

    /* Chart + recent leads row */
    .cc-row {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 12px;
      flex: 1;
    }
    .cc-panel {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 12px;
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
    }
    .cc-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }
    .cc-panel-title { font-size: 13px; color: #fff; font-weight: 600; }
    .cc-panel-sub { font-size: 11px; color: #64748B; margin-top: 2px; }
    .cc-chip-row { display: inline-flex; gap: 4px; padding: 3px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; }
    .cc-chip {
      font-size: 10.5px;
      padding: 3px 9px;
      border-radius: 4px;
      color: #64748B;
      font-weight: 500;
    }
    .cc-chip.active { background: rgba(255,255,255,0.07); color: #fff; }

    /* Mini chart (SVG) */
    .cc-chart-wrap { flex: 1; position: relative; min-height: 170px; }
    .cc-chart-legend {
      display: flex;
      gap: 16px;
      margin-bottom: 8px;
      font-size: 11px;
      color: #94A3B8;
    }
    .cc-legend-item { display: inline-flex; align-items: center; gap: 6px; }
    .cc-legend-dot { width: 8px; height: 8px; border-radius: 2px; background: #10B981; }
    .cc-legend-dot.alt { background: #38BDF8; }
    .cc-chart-svg { width: 100%; height: 170px; display: block; }
    .cc-chart-tooltip {
      position: absolute;
      top: 14px; right: 8px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 11px;
      color: #fff;
      backdrop-filter: blur(8px);
    }
    .cc-chart-tooltip .tt-lbl { color: #64748B; font-weight: 500; }
    .cc-chart-tooltip .tt-val { color: #10B981; font-weight: 700; font-variant-numeric: tabular-nums; }

    /* Source breakdown panel (right of chart) */
    .cc-src-list { display: flex; flex-direction: column; gap: 13px; flex: 1; }
    .cc-src-row { display: flex; flex-direction: column; gap: 5px; }
    .cc-src-top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
    .cc-src-name { color: #CBD5E1; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
    .cc-src-name svg { width: 13px; height: 13px; color: #64748B; }
    .cc-src-val { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
    .cc-src-bar { height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
    .cc-src-fill { height: 100%; background: linear-gradient(90deg, #10B981, #34D399); border-radius: 3px; }
    .cc-src-fill.blue   { background: linear-gradient(90deg, #38BDF8, #7DD3FC); }
    .cc-src-fill.amber  { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
    .cc-src-fill.purple { background: linear-gradient(90deg, #A855F7, #C084FC); }

    /* Leads table */
    .cc-table-panel { padding: 0; overflow: hidden; }
    .cc-table-head-row { padding: 16px 18px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .cc-table-actions { display: inline-flex; gap: 6px; }
    .cc-mini-btn {
      font-size: 11px;
      padding: 5px 10px;
      border-radius: 6px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      color: #94A3B8;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .cc-mini-btn svg { width: 11px; height: 11px; }
    .cc-mini-btn.primary { background: #10B981; color: #fff; border-color: #10B981; }
    .cc-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12.5px;
    }
    .cc-table thead th {
      text-align: left;
      padding: 9px 18px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #475569;
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      white-space: nowrap;
    }
    .cc-table tbody td {
      padding: 11px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      color: #CBD5E1;
      vertical-align: middle;
    }
    .cc-table tbody tr:last-child td { border-bottom: none; }
    .cc-table tbody tr:hover td { background: rgba(255,255,255,0.015); }
    .cc-lead-cell { display: flex; align-items: center; gap: 10px; }
    .cc-lead-name { font-weight: 600; color: #fff; font-size: 13px; line-height: 1.2; }
    .cc-lead-meta { font-size: 11px; color: #64748B; margin-top: 2px; }
    .cc-table .num { font-variant-numeric: tabular-nums; color: #94A3B8; }
    .cc-table .time { font-variant-numeric: tabular-nums; color: #64748B; font-size: 11.5px; }

    /* Status badges */
    .cc-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10.5px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 9999px;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .cc-badge::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
    }
    .cc-badge.hot      { background: rgba(244, 63, 94, 0.13);  color: #FB7185; }
    .cc-badge.warm     { background: rgba(251, 146, 60, 0.13); color: #FB923C; }
    .cc-badge.booked   { background: rgba(16, 185, 129, 0.13); color: #34D399; }
    .cc-badge.new      { background: rgba(56, 189, 248, 0.13); color: #38BDF8; }
    .cc-badge.contact  { background: rgba(168, 85, 247, 0.13); color: #C084FC; }

    .cc-row-actions { display: inline-flex; gap: 4px; opacity: 0.6; }
    .cc-row-actions span {
      width: 22px; height: 22px;
      border-radius: 5px;
      background: rgba(255,255,255,0.04);
      display: inline-flex; align-items: center; justify-content: center;
      color: #94A3B8;
    }
    .cc-row-actions svg { width: 12px; height: 12px; }

    /* Feature highlight grid */
    .cc-feats {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .cc-feat {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
    }
    .cc-feat:hover {
      transform: translateY(-3px);
      border-color: rgba(16,185,129,0.35);
      background: rgba(255,255,255,0.035);
    }
    .cc-feat-icon {
      width: 42px; height: 42px;
      border-radius: 11px;
      background: rgba(16,185,129,0.12);
      border: 1px solid rgba(16,185,129,0.2);
      color: #10B981;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .cc-feat-icon svg { width: 20px; height: 20px; }
    .cc-feat-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }
    .cc-feat-body {
      font-size: 13.5px;
      color: #94A3B8;
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
      .cc-dash { grid-template-columns: 1fr; min-height: 0; }
      .cc-side { flex-direction: row; flex-wrap: wrap; align-items: center; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 14px 16px; gap: 8px; }
      .cc-side-logo { border-bottom: none; padding: 0 6px 0 0; margin: 0; border-right: 1px solid rgba(255,255,255,0.05); }
      .cc-side-section, .cc-side-foot { display: none; }
      .cc-nav-item { padding: 6px 10px; margin-bottom: 0; font-size: 12.5px; }
      .cc-nav-item.active::before { display: none; }
      .cc-row { grid-template-columns: 1fr; }
      .cc-feats { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 720px) {
      .cc-stats { grid-template-columns: repeat(2, 1fr); }
      .cc-search, .cc-kbd { display: none; }
      .cc-main { padding: 18px; }
      .cc-feats { grid-template-columns: 1fr; }
      .cc-table thead th:nth-child(3),
      .cc-table tbody td:nth-child(3),
      .cc-table thead th:nth-child(5),
      .cc-table tbody td:nth-child(5) { display: none; }
    }
    @media (max-width: 540px) {
      .cc-topbar { flex-wrap: wrap; gap: 10px; }
      .cc-topbar > *:last-child { display: none; }
      .cc-greet-s { display: none; }
      .cc-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .cc-stat { padding: 12px; }
      .cc-stat-val { font-size: 22px; }
      .cc-table-panel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      /* at 540px hide phone + captured columns, keep lead / status / action */
      .cc-table thead th:nth-child(2),
      .cc-table tbody td:nth-child(2),
      .cc-table thead th:nth-child(6),
      .cc-table tbody td:nth-child(6) { display: none; }
      .cc-row { gap: 12px; }
    }

    /* ========== FEATURES ========== */
    .features { background: #F8FAFC; }
    .feature-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 96px;
    }
    .feature-block:last-child { margin-bottom: 0; }
    .feature-block.flip > *:first-child { order: 2; }
    .feature-block.flip > *:last-child  { order: 1; }
    .feat-eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #64748B;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .feat-flagship-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: #059669;
      padding: 6px 12px;
      border-radius: 9999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .feature-block.flagship .feat-title {
      font-size: 38px;
      line-height: 1.1;
    }
    @media (max-width: 900px) {
      .feature-block.flagship .feat-title { font-size: 30px; }
    }
    .feat-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 32px;
      color: #171712;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .feat-body {
      font-size: 16px;
      color: #64748B;
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .feat-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .feat-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: #0F172A;
      font-weight: 500;
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .feature-block { grid-template-columns: 1fr; gap: 40px; }
      .feature-block.flip > *:first-child,
      .feature-block.flip > *:last-child { order: 0; }
      .lang-mock { max-width: 100%; overflow: hidden; }
      .lang-pane { margin: 6px; }
    }

    /* ── Browser mockup (Feature 1) ── */
    .browser-mock {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      overflow: hidden;
    }
    .bm-bar {
      background: #F1F5F9;
      height: 40px;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 12px;
      border-bottom: 1px solid #E2E8F0;
    }
    .bm-dots { display: flex; gap: 6px; }
    .bm-dot { width: 10px; height: 10px; border-radius: 50%; }
    .bm-dot.r { background: #FC615D; }
    .bm-dot.y { background: #FDBC40; }
    .bm-dot.g { background: #34C749; }
    .bm-url {
      flex: 1;
      height: 24px;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 4px;
      display: flex;
      align-items: center;
      padding: 0 10px;
      font-size: 11px;
      color: #94A3B8;
    }
    .bm-body { padding: 20px; }
    .kb-row { margin-bottom: 12px; }
    .kb-lbl {
      font-size: 10px;
      font-weight: 600;
      color: #64748B;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .kb-field {
      width: 100%;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      padding: 0 10px;
      display: flex;
      align-items: center;
      font-size: 12px;
      color: #94A3B8;
    }
    .kb-field.sm { height: 34px; }
    .kb-field.md { height: 52px; padding: 8px 10px; align-items: flex-start; }
    .kb-gen {
      display: inline-block;
      background: #10B981;
      color: #fff;
      border-radius: 6px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      margin-top: 8px;
    }

    /* ── Laptop / page builder mockup (Feature 2) ── */
    .laptop-mock {
      background: #1E293B;
      border-radius: 16px;
      padding: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .laptop-screen {
      background: #0F172A;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      display: flex;
      flex-direction: column;
    }
    .ls-topbar {
      background: #1E293B;
      height: 32px;
      display: flex;
      align-items: center;
      padding: 0 10px;
      gap: 6px;
      border-bottom: 1px solid #334155;
      flex-shrink: 0;
    }
    .ls-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 11px; color: #10B981; }
    .ls-tab {
      font-size: 9px;
      padding: 2px 7px;
      border-radius: 3px;
      background: rgba(255,255,255,0.06);
      color: #94A3B8;
    }
    .ls-pub {
      margin-left: auto;
      font-size: 9px;
      padding: 2px 9px;
      border-radius: 3px;
      background: #10B981;
      color: #fff;
      font-weight: 600;
    }
    .ls-panels { display: flex; flex: 1; overflow: hidden; }
    .ls-left {
      width: 24%;
      background: #1E293B;
      border-right: 1px solid #334155;
      padding: 6px;
    }
    .ls-item {
      height: 18px;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 4px;
      border-radius: 3px;
      margin-bottom: 3px;
    }
    .ls-dot { width: 7px; height: 7px; border-radius: 50%; background: #10B981; flex-shrink: 0; }
    .ls-dot.off { background: #334155; }
    .ls-bar { height: 4px; background: #334155; border-radius: 2px; flex: 1; }
    .ls-center { flex: 1; background: #fff; display: flex; flex-direction: column; }
    .ls-hero {
      height: 42%;
      background: linear-gradient(135deg, #0F172A, #1E293B);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }
    .ls-hero-line { height: 5px; border-radius: 2px; background: rgba(255,255,255,0.15); }
    .ls-hero-line.w60 { width: 60%; }
    .ls-hero-line.w35 { width: 35%; }
    .ls-hero-btn {
      margin-top: 4px;
      height: 14px;
      width: 52px;
      background: #10B981;
      border-radius: 2px;
    }
    .ls-cards {
      flex: 1;
      padding: 5px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px;
    }
    .ls-card { background: #F8FAFC; border-radius: 2px; border: 1px solid #E2E8F0; }
    .ls-right {
      width: 27%;
      background: #1E293B;
      border-left: 1px solid #334155;
      padding: 6px;
    }
    .ls-rlbl { height: 4px; width: 55%; background: #334155; border-radius: 2px; margin-bottom: 6px; }
    .ls-rfield { height: 15px; background: rgba(255,255,255,0.04); border: 1px solid #334155; border-radius: 3px; margin-bottom: 5px; }

    /* ── WhatsApp mockup (Feature 3) ── */
    .wa-phone {
      width: 280px;
      height: 500px;
      background: #1E293B;
      border-radius: 36px;
      border: 7px solid #334155;
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
      overflow: hidden;
      margin: 0 auto;
    }
    .wa-head {
      background: #25D366;
      height: 56px;
      display: flex;
      align-items: center;
      padding: 0 14px;
      gap: 10px;
    }
    .wa-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }
    .wa-name { font-size: 14px; font-weight: 600; color: #fff; }
    .wa-status { font-size: 11px; color: rgba(255,255,255,0.75); }
    .wa-chat {
      background: #ECE5DD;
      height: calc(100% - 56px);
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .wa-card {
      background: #fff;
      border-radius: 8px;
      padding: 12px 14px;
      max-width: 92%;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
      font-size: 12px;
      color: #0F172A;
      line-height: 1.7;
    }
    .wa-card-title { font-weight: 700; font-size: 13px; color: #25D366; margin-bottom: 6px; }
    .wa-time { font-size: 10px; color: #94A3B8; margin-top: 6px; text-align: right; }

    /* ========== PAGE BUILDER SHOWCASE ========== */
    .pb-showcase {
      background: #0F172A;
      padding: 120px 24px;
      text-align: center;
    }
    .pb-showcase .eyebrow { color: #10B981; }
    .pb-showcase .section-title { color: #fff; margin-bottom: 16px; }
    .pb-sub {
      font-size: 18px;
      color: #94A3B8;
      max-width: 560px;
      margin: 0 auto 64px;
      line-height: 1.7;
    }
    /* ===== Page-builder editor mock ===== */
    .wide-mock {
      max-width: 960px;
      margin: 0 auto 40px;
      background: #0B1220;
      border: 1px solid #1E293B;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
      --wmTxt: #94A3B8;
      --wmBorder: #1E293B;
    }
    .wide-mock svg { width: 14px; height: 14px; stroke-width: 2; flex-shrink: 0; }
    .wide-mock .wm-tile svg { width: 15px; height: 15px; }
    .wide-mock .wm-grip svg { width: 13px; height: 13px; }
    .wide-mock .wm-arrows svg { width: 11px; height: 11px; }

    /* top bar */
    .wm-topbar {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      background: #0F172A;
      border-bottom: 1px solid var(--wmBorder);
      padding: 0 14px;
      height: 46px;
    }
    .wm-tb-grp { display: flex; align-items: center; gap: 8px; min-width: 0; }
    .wm-tb-center { gap: 7px; }
    .wm-back {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11.5px; font-weight: 600; color: #CBD5E1;
    }
    .wm-ico {
      display: inline-flex; align-items: center; justify-content: center;
      width: 24px; height: 24px; border-radius: 6px; color: #64748B;
    }
    .wm-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 15px; color: #10B981; margin-left: 2px;
    }
    .wm-crumb { font-size: 11.5px; font-weight: 600; color: #E2E8F0; margin-left: 6px; }
    .wm-crumb .muted { color: #64748B; font-weight: 500; }
    .wm-seg {
      display: inline-flex; align-items: center; gap: 2px;
      background: #1E293B; border: 1px solid #28344A; border-radius: 8px; padding: 3px;
    }
    .wm-seg-i {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 600; color: #94A3B8;
      padding: 4px 9px; border-radius: 6px; white-space: nowrap;
    }
    .wm-seg-i.active { background: #0B1220; color: #E2E8F0; }
    .wm-devs .wm-seg-i { padding: 5px 7px; }
    .wm-devs .wm-seg-i.active { color: #38BDF8; }
    .wm-tbtn {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11.5px; font-weight: 600; color: #CBD5E1;
      border: 1px solid #28344A; border-radius: 8px; padding: 6px 11px;
    }
    .wm-tbtn.pub { background: #10B981; border-color: #10B981; color: #042F22; }

    /* body */
    .wm-panels { display: flex; height: 548px; }

    /* left rail */
    .wm-left {
      width: 25%; min-width: 200px;
      background: #0F172A; border-right: 1px solid var(--wmBorder);
      padding: 12px 10px; overflow: hidden;
    }
    .wm-left-h {
      font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
      color: #64748B; font-weight: 700; margin-bottom: 8px;
    }
    .wm-search {
      display: flex; align-items: center; gap: 6px;
      background: #0B1220; border: 1px solid #28344A; border-radius: 8px;
      padding: 7px 9px; font-size: 11px; color: #64748B; margin-bottom: 12px;
    }
    .wm-group-lbl {
      font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase;
      color: #475569; font-weight: 700; margin: 0 2px 6px;
    }
    .wm-sec {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 6px; border-radius: 9px; margin-bottom: 4px;
    }
    .wm-sec.active { background: rgba(16,185,129,0.10); border: 1px solid rgba(16,185,129,0.30); padding: 6px 5px; }
    .wm-grip { color: #475569; display: inline-flex; flex-shrink: 0; }
    .wm-tile {
      width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
      display: inline-flex; align-items: center; justify-content: center;
      background: #1E293B; color: #94A3B8;
    }
    .wm-sec.active .wm-tile { background: rgba(16,185,129,0.18); color: #34D399; }
    .wm-sec-txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
    .wm-sec-txt b { font-size: 12px; font-weight: 700; color: #E2E8F0; }
    .wm-sec.active .wm-sec-txt b { color: #6EE7B7; }
    .wm-sec-txt i {
      font-style: normal; font-size: 10px; color: #64748B;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .wm-always { font-size: 9.5px; color: #475569; font-weight: 600; flex-shrink: 0; }
    .wm-toggle {
      width: 30px; height: 17px; border-radius: 9999px; background: #334155;
      position: relative; flex-shrink: 0; transition: background .2s;
    }
    .wm-toggle.on { background: #10B981; }
    .wm-knob {
      position: absolute; top: 2px; left: 2px; width: 13px; height: 13px;
      border-radius: 50%; background: #fff; transition: left .2s;
    }
    .wm-toggle.on .wm-knob { left: 15px; }
    .wm-arrows { display: flex; flex-direction: column; color: #475569; flex-shrink: 0; }
    .wm-arrows { line-height: 0; }

    /* center preview */
    .wm-center { flex: 1; background: #0B1220; padding: 14px; display: flex; }
    .wm-center > * { width: 100%; }
    .wm-center {
      flex-direction: column;
      background:
        radial-gradient(circle at 30% 20%, rgba(16,185,129,0.06), transparent 60%),
        #0B1220;
    }
    .wm-urlbar {
      display: flex; align-items: center; gap: 10px;
      background: #1B2435; border: 1px solid #28344A;
      border-radius: 10px 10px 0 0; border-bottom: none;
      padding: 9px 12px;
    }
    .wm-dots { display: flex; gap: 6px; }
    .wm-dot { width: 10px; height: 10px; border-radius: 50%; }
    .wm-url {
      flex: 1; text-align: center; font-size: 11px; color: #94A3B8;
      font-family: 'DM Mono', ui-monospace, monospace;
    }
    .wm-url-refresh {
      display: inline-flex; align-items: center; justify-content: center;
      width: 22px; height: 22px; border-radius: 6px; background: #28344A; color: #94A3B8;
    }
    .wm-preview {
      flex: 1; background: #fff; border-radius: 0 0 10px 10px; overflow: hidden;
      display: flex; flex-direction: column;
    }
    .wm-pv-nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 18px; border-bottom: 1px solid #EEF2F6;
    }
    .wm-pv-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 15px; color: #BE4A75; letter-spacing: -0.01em;
    }
    .wm-pv-right { display: flex; align-items: center; gap: 10px; }
    .wm-pv-cta {
      background: linear-gradient(135deg, #C9527E, #9F3A60); color: #fff; font-size: 11px; font-weight: 700;
      padding: 7px 14px; border-radius: 8px;
    }
    .wm-pv-burger {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 26px; border: 1px solid #E2E8F0; border-radius: 7px; color: #475569;
    }
    .wm-pv-body {
      flex: 1; display: flex; flex-direction: column; align-items: center;
      justify-content: center; text-align: center; gap: 12px; padding: 16px 26px;
      background:
        radial-gradient(125% 85% at 50% 0%, rgba(190,74,117,0.10), transparent 62%),
        linear-gradient(180deg, #FFFCFB, #FBF2EF);
    }
    .wm-pv-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: #FBEAF0; color: #B5476B; font-size: 10.5px; font-weight: 700;
      padding: 5px 12px; border-radius: 9999px;
    }
    .wm-pv-pdot { width: 6px; height: 6px; border-radius: 50%; background: #BE4A75; }
    .wm-pv-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 31px; color: #2A2126; letter-spacing: -0.02em; line-height: 1.04;
    }
    .wm-pv-sub {
      font-size: 12px; color: #64748B; line-height: 1.55; max-width: 360px; margin: 0;
    }
    .wm-pv-btns { display: flex; gap: 10px; margin-top: 4px; }
    .wm-pv-b1 { background: linear-gradient(135deg, #C9527E, #9F3A60); color: #fff; font-size: 11.5px; font-weight: 700; padding: 9px 20px; border-radius: 9px; box-shadow: 0 8px 20px -6px rgba(159,58,96,0.55); }
    .wm-pv-b2 { color: #B5476B; font-size: 11.5px; font-weight: 700; padding: 8px 20px; border-radius: 9px; border: 1.5px solid #E7B3C4; background: #fff; }
    .wm-pv-h1 .wm-pv-em { background: linear-gradient(120deg, #BE4A75, #E08A5F); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .wm-pv-trust { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #64748B; font-weight: 600; margin-top: 4px; }
    .wm-pv-trust b { color: #0F172A; }
    .wm-pv-stars { color: #F59E0B; letter-spacing: 1.5px; font-size: 12px; }

    /* right inspector */
    .wm-right {
      width: 26%; min-width: 210px;
      background: #0F172A; border-left: 1px solid var(--wmBorder);
      padding: 14px 13px; overflow: hidden;
    }
    .wm-r-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .wm-r-title { font-size: 14px; font-weight: 700; color: #F1F5F9; }
    .wm-editing { font-size: 9.5px; font-weight: 700; color: #34D399; background: rgba(16,185,129,0.12); padding: 3px 8px; border-radius: 9999px; }
    .wm-rtabs { display: flex; gap: 18px; border-bottom: 1px solid var(--wmBorder); margin-bottom: 14px; }
    .wm-rtabs span { font-size: 11.5px; font-weight: 600; color: #64748B; padding-bottom: 8px; }
    .wm-rtabs span.active { color: #34D399; box-shadow: inset 0 -2px 0 #34D399; }
    .wm-r-lbl { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: #64748B; font-weight: 700; margin: 0 0 7px; }
    .wm-r-seg3, .wm-r-seg2 { display: grid; gap: 6px; margin-bottom: 14px; }
    .wm-r-seg3 { grid-template-columns: repeat(3, 1fr); }
    .wm-r-seg2 { grid-template-columns: repeat(2, 1fr); }
    .wm-r-seg3 span, .wm-r-seg2 span {
      display: flex; align-items: center; justify-content: center;
      height: 30px; border: 1px solid #28344A; border-radius: 8px;
      color: #94A3B8; font-size: 11px; font-weight: 600;
    }
    .wm-r-seg2 span { height: 42px; }
    .wm-r-seg3 span.active, .wm-r-seg2 span.active {
      border-color: #10B981; background: rgba(16,185,129,0.10); color: #34D399;
    }
    .wm-r-chips { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; margin-bottom: 14px; }
    .wm-r-chips span {
      display: flex; align-items: center; justify-content: center;
      height: 28px; border: 1px solid #28344A; border-radius: 8px;
      color: #94A3B8; font-size: 10.5px; font-weight: 600;
    }
    .wm-swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-bottom: 12px; }
    .wm-sw { aspect-ratio: 1; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
    .wm-sw.sel { box-shadow: 0 0 0 2px #0F172A, 0 0 0 4px #fff; }
    .wm-hex { display: flex; align-items: center; gap: 8px; border: 1px solid #28344A; border-radius: 8px; padding: 7px 9px; }
    .wm-hex-sw { width: 18px; height: 18px; border-radius: 5px; }
    .wm-hex-val { font-size: 11.5px; color: #CBD5E1; font-family: 'DM Mono', ui-monospace, monospace; }

    /* Trim secondary top-bar chrome before it can overflow the card */
    @media (max-width: 1040px) {
      .wm-crumb, .wm-ico, .wm-devs { display: none; }
    }

    @media (max-width: 760px) {
      .wm-tb-center, .wm-back, .wm-crumb, .wm-tbtn span, .wm-ico { display: none; }
      .wm-tbtn.pub { display: inline-flex; }
      .wm-tbtn { padding: 6px 8px; }
      .wm-panels { height: auto; flex-direction: column; }
      .wm-left, .wm-right { width: 100%; min-width: 0; }
      .wm-left { display: none; }
      .wm-center { min-height: 320px; }
    }

    .pb-pills {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .pb-pill {
      border: 1px solid #334155;
      color: #94A3B8;
      border-radius: 9999px;
      padding: 8px 20px;
      font-size: 14px;
    }

    /* ========== VERTICAL SHOWCASE ========== */
    .verticals { background: #fff; }
    .vselector {
      display: inline-flex;
      gap: 4px;
      margin: 0 auto 56px;
      padding: 6px;
      border-radius: 16px;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      overflow-x: auto;
      scrollbar-width: none;
      width: fit-content;
      max-width: 100%;
    }
    .vselector-wrap {
      display: flex;
      justify-content: center;
    }
    .vselector::-webkit-scrollbar { display: none; }
    .vcard {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 10px;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #64748B;
      white-space: nowrap;
      position: relative;
    }
    .vcard svg { transition: color 180ms ease; color: #94A3B8; }
    .vcard:hover {
      color: #0F172A;
      background: rgba(255,255,255,0.6);
    }
    .vcard:hover svg { color: #475569; }
    .vcard.active {
      background: #fff;
      color: #0F172A;
      border-color: #E2E8F0;
      box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 6px 16px rgba(15,23,42,0.06);
    }
    .vcard.active svg { color: #10B981; }
    .tab-pane { display: none; }
    .tab-pane.active {
      display: grid;
      grid-template-columns: minmax(0, 480px) 400px;
      gap: 56px;
      justify-content: center;
      align-items: start;
    }
    .vtab-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 28px;
      color: #0F172A;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .vtab-tagline {
      font-family: 'DM Sans', sans-serif;
      font-style: italic;
      font-size: 16px;
      color: #64748B;
      margin-bottom: 28px;
    }
    .vtab-items { display: flex; flex-direction: column; gap: 16px; }
    .vtab-item { display: flex; align-items: flex-start; gap: 12px; }
    .vtab-item-icon {
      width: 36px;
      height: 36px;
      background: #D1FAE5;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .vtab-item-text { font-size: 15px; color: #0F172A; font-weight: 500; line-height: 1.4; }
    .vtab-item-sub { font-size: 13px; color: #64748B; line-height: 1.5; margin-top: 2px; }
    .chat-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      overflow: hidden;
    }
    .chat-card-head {
      background: #10B981;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .chat-avatar {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .chat-bot-name { font-size: 14px; font-weight: 600; color: #fff; }
    .chat-online { display: flex; align-items: center; gap: 4px; font-size: 11px; color: rgba(255,255,255,0.85); margin-top: 2px; }
    .chat-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; display: inline-block; }
    .chat-messages {
      background: #F8FAFC;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 120px;
    }
    .cmsg {
      padding: 10px 14px;
      font-size: 13px;
      line-height: 1.5;
      max-width: 85%;
    }
    .cmsg.v {
      background: #10B981;
      color: #fff;
      border-radius: 16px 16px 4px 16px;
      align-self: flex-end;
    }
    .cmsg.b {
      background: #fff;
      border: 1px solid #E2E8F0;
      color: #0F172A;
      border-radius: 16px 16px 16px 4px;
      align-self: flex-start;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .chat-footer {
      background: #fff;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid #F1F5F9;
    }
    .chat-input-mock {
      flex: 1;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 9999px;
      padding: 8px 16px;
      font-size: 13px;
      color: #94A3B8;
    }
    .chat-send-btn {
      width: 36px;
      height: 36px;
      background: #10B981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .tab-pane.active { grid-template-columns: 1fr; gap: 32px; }
    }

    /* ========== PRICING ========== */
    .pricing { background: #F8FAFC; }
    .pricing-subtitle {
      font-size: 16px;
      color: #64748B;
      margin-top: 0;
      margin-bottom: 48px;
    }
    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 880px;
      margin: 0 auto;
      align-items: start;
    }
    .pc {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 20px;
      padding: 40px 32px;
      position: relative;
    }
    .pc.pop {
      border: 2px solid #10B981;
      box-shadow: 0 20px 60px rgba(16, 185, 129,0.15);
    }
    .pc-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #10B981;
      color: #fff;
      border-radius: 9999px;
      padding: 4px 16px;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
    }
    .pc-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #0F172A;
      margin-bottom: 4px;
    }
    .pc-sub { font-size: 13px; color: #64748B; margin-bottom: 20px; }
    .pc-price {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 40px;
      color: #0F172A;
      line-height: 1;
      margin-bottom: 4px;
    }
    .pc-price span { font-size: 15px; font-weight: 500; color: #64748B; }
    .pc-feats {
      list-style: none;
      margin: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .pc-feats li {
      font-size: 14px;
      color: #0F172A;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5;
    }
    .pc-feats li.off { color: #94A3B8; }
    .ci { color: #10B981; flex-shrink: 0; }
    .cx { color: #CBD5E1; flex-shrink: 0; }
    .pc-cta {
      display: block;
      width: 100%;
      text-align: center;
      border-radius: 8px;
      padding: 12px;
      font-weight: 600;
      font-size: 15px;
      transition: background 180ms ease, border-color 180ms ease;
    }
    .pc-cta.starter {
      background: #F8FAFC;
      border: 1.5px solid #E2E8F0;
      color: #0F172A;
    }
    .pc-cta.starter:hover { background: #F1F5F9; border-color: #CBD5E1; }
    .pc-cta.growth {
      background: #10B981;
      color: #fff;
      border: 1.5px solid #10B981;
      box-shadow: 0 4px 16px rgba(16, 185, 129,0.3);
    }
    .pc-cta.growth:hover { background: #059669; border-color: #059669; }
    .pricing-note {
      text-align: center;
      font-size: 14px;
      color: #64748B;
      margin-top: 40px;
    }

    @media (max-width: 640px) {
      .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    }

    /* ========== FAQ ========== */
    .faq { background: #fff; }
    .faq-inner { max-width: 720px; margin: 0 auto; }
    details { border-bottom: 1px solid #F1F5F9; }
    summary {
      font-size: 17px;
      font-weight: 600;
      color: #0F172A;
      padding: 20px 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '';
      width: 14px;
      height: 14px;
      border-right: 2px solid #94A3B8;
      border-bottom: 2px solid #94A3B8;
      transform: rotate(45deg);
      flex-shrink: 0;
      transition: transform 200ms ease;
      margin-top: -6px;
    }
    details[open] summary::after {
      transform: rotate(-135deg);
      margin-top: 4px;
    }
    .faq-ans {
      font-size: 15px;
      color: #64748B;
      line-height: 1.8;
      padding: 0 24px 20px 0;
    }

    /* ========== FINAL CTA ========== */
    .final-cta {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      padding: 120px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-wm {
      position: absolute;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(100px, 16vw, 220px);
      color: rgba(255,255,255,0.02);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      letter-spacing: -0.02em;
    }
    .final-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }
    .final-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(36px, 5vw, 64px);
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      margin-top: 24px;
    }
    .final-sub {
      font-size: 18px;
      color: #94A3B8;
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .btn-final {
      display: inline-block;
      background: #10B981;
      color: #fff;
      border-radius: 8px;
      padding: 18px 48px;
      font-size: 18px;
      font-weight: 700;
      box-shadow: 0 8px 40px rgba(16, 185, 129,0.4);
      transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }
    .btn-final:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 12px 48px rgba(16, 185, 129,0.55);
    }
    .final-trust {
      font-size: 13px;
      color: #64748B;
      margin-top: 16px;
    }

    /* ========== FOOTER ========== */
    .site-footer {
      background: #0F172A;
      position: relative;
      overflow: hidden;
      padding: 0;
    }
    .site-footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(60% 50% at 50% 105%, rgba(16,185,129,0.10), transparent 65%),
        linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.6) 100%);
      pointer-events: none;
      z-index: 0;
    }
    /* Status bar */
    .footer-status-bar {
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 14px 24px;
      position: relative;
      z-index: 2;
    }
    .footer-status-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
    }
    .fs-left { display: inline-flex; align-items: center; gap: 10px; color: #94A3B8; }
    .fs-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
      animation: lm-pulse 1.8s ease-in-out infinite;
      flex-shrink: 0;
    }
    .fs-divider { color: #334155; }
    .fs-uptime { color: #64748B; }
    .fs-right { color: #64748B; }
    .fs-right a { color: #fff; font-weight: 500; transition: color 180ms ease; }
    .fs-right a:hover { color: #10B981; }

    /* Main */
    .footer-main {
      padding: 80px 24px 64px;
      position: relative;
      z-index: 2;
    }
    .footer-cols {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.7fr 1fr;
      gap: 56px;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 18px; }
    .footer-logo {
      display: inline-flex;
      align-items: center;
      width: fit-content;
    }
    .footer-logo::after { display: none; }
    .footer-logo-img {
      height: 30px;
      width: auto;
      display: block;
    }
    .footer-pitch {
      font-size: 14px;
      color: #94A3B8;
      line-height: 1.7;
      max-width: 360px;
    }
    .footer-news { margin-top: 4px; }
    .fn-lbl {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #fff;
      margin-bottom: 10px;
    }
    .fn-row {
      display: flex;
      gap: 6px;
      max-width: 380px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 5px;
      transition: border-color 180ms ease, background 180ms ease;
    }
    .fn-row:focus-within { border-color: rgba(16,185,129,0.6); background: rgba(16,185,129,0.04); }
    .fn-row input {
      flex: 1;
      min-width: 0;
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: inherit;
      font-size: 14px;
      padding: 8px 10px;
    }
    .fn-row input::placeholder { color: #475569; }
    .fn-row button {
      background: #10B981;
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 9px 16px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: background 180ms ease, box-shadow 180ms ease;
      white-space: nowrap;
    }
    .fn-row button:hover { background: #059669; box-shadow: 0 4px 14px rgba(16,185,129,0.35); }

    .footer-col-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #fff;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; }
    .footer-links-horiz {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 28px;
    }
    .footer-links a {
      font-size: 14px;
      color: #94A3B8;
      line-height: 2.2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 180ms ease;
    }
    .footer-links a:hover { color: #fff; }
    .lnk-pill {
      font-size: 9px;
      background: rgba(16,185,129,0.18);
      color: #10B981;
      padding: 2px 7px;
      border-radius: 9999px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .lnk-new {
      font-size: 9px;
      background: rgba(37,99,235,0.18);
      color: #60A5FA;
      padding: 2px 7px;
      border-radius: 9999px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Big wordmark */
    .footer-wordmark {
      position: absolute;
      left: 50%;
      bottom: -22%;
      transform: translateX(-50%);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(180px, 30vw, 440px);
      line-height: 0.85;
      color: transparent;
      background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(16,185,129,0.06) 70%, transparent 100%);
      -webkit-background-clip: text;
      background-clip: text;
      letter-spacing: -0.04em;
      user-select: none;
      pointer-events: none;
      z-index: 0;
      white-space: nowrap;
    }

    /* Bottom row */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 20px 24px;
      position: relative;
      z-index: 2;
      background: rgba(15,23,42,0.6);
      backdrop-filter: blur(6px);
    }
    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .fb-left {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .footer-copy { font-size: 13px; color: #64748B; }
    .fb-divider { color: #334155; }
    .fb-region {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #94A3B8;
    }
    .fb-region .flag {
      width: 18px; height: 13px;
      border-radius: 2px;
      overflow: hidden;
      display: inline-block;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
    }
    .fb-region .flag .saffron { background: #FF9933; height: 33.33%; }
    .fb-region .flag .white   { background: #fff;    height: 33.33%; position: relative; }
    .fb-region .flag .green   { background: #138808; height: 33.34%; }
    .fb-region .flag .white::after {
      content: '';
      position: absolute;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #000080;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
    }
    .footer-socials { display: flex; gap: 6px; align-items: center; }
    .footer-socials a {
      width: 34px; height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9px;
      color: #64748B;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
    }
    .footer-socials a:hover {
      color: #10B981;
      border-color: rgba(16,185,129,0.4);
      background: rgba(16,185,129,0.08);
    }

    @media (max-width: 960px) {
      .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
    }
    @media (max-width: 640px) {
      .footer-cols { grid-template-columns: 1fr; gap: 32px 24px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
      .footer-status-inner { font-size: 12px; }
      .fs-right { width: 100%; }
    }

    /* text-center util */
    .tc { text-align: center; }

    /* ========== TRUST STRIP (between hero & problem) ========== */
    .trust-strip {
      background: #0A0E1A;
      padding: 56px 24px 64px;
      border-top: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 56px;
      align-items: center;
    }
    .trust-lead {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #94A3B8;
      font-weight: 600;
      line-height: 1.5;
    }
    .trust-lead span { color: #10B981; }
    .trust-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .tstat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(32px, 3.5vw, 44px);
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .tstat-num sup { font-size: 0.5em; color: #10B981; font-weight: 700; }
    .tstat-lbl {
      font-size: 12px;
      color: #94A3B8;
      margin-top: 8px;
      line-height: 1.4;
    }
    .trust-cats {
      grid-column: 1 / -1;
      margin-top: 8px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      flex-wrap: wrap;
      gap: 8px 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #475569;
    }
    .trust-cats span.dot { color: #334155; }
    @media (max-width: 800px) {
      .trust-inner { grid-template-columns: 1fr; gap: 28px; }
      .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials { background: #FAFAF8; }
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .test-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .test-quote {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 1.35;
      color: #0F172A;
      letter-spacing: -0.01em;
      flex: 1;
    }
    .test-quote::before {
      content: '\201C';
      font-size: 48px;
      line-height: 0;
      color: #10B981;
      vertical-align: -8px;
      margin-right: 4px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .test-foot {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid #F1F5F9;
    }
    .test-avi {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10B981, #34D399);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .test-name { font-size: 14px; font-weight: 600; color: #0F172A; line-height: 1.3; }
    .test-role { font-size: 12px; color: #64748B; margin-top: 2px; }
    @media (max-width: 900px) {
      .test-grid { grid-template-columns: 1fr; }
    }

    /* ========== PRICING TOGGLE ========== */
    .price-toggle {
      display: inline-flex;
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 9999px;
      padding: 4px;
      margin: 0 auto 40px;
      gap: 2px;
    }
    .price-toggle button {
      background: transparent;
      border: none;
      padding: 8px 20px;
      font-size: 13px;
      font-weight: 600;
      color: #64748B;
      border-radius: 9999px;
      cursor: pointer;
      transition: all 180ms ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .price-toggle button.active {
      background: #0F172A;
      color: #fff;
    }
    .price-save-pill {
      font-size: 10px;
      background: #10B981;
      color: #fff;
      padding: 2px 7px;
      border-radius: 9999px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }
    .price-toggle button.active .price-save-pill { background: #fff; color: #10B981; }
    .pricing-cards { grid-template-columns: 1fr 1fr !important; max-width: 880px !important; }
    .pc-price .yr { display: none; }
    .pricing-cards.yearly .pc-price .mo { display: none; }
    .pricing-cards.yearly .pc-price .yr { display: inline; }
    @media (max-width: 900px) {
      .pricing-cards { grid-template-columns: 1fr !important; max-width: 420px !important; }
    }

    /* ========== MULTILINGUAL FEATURE (mock) ========== */
    .lang-mock {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      padding: 6px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      overflow: hidden;
    }
    .lang-tabs {
      display: flex;
      gap: 2px;
      padding: 8px 8px 0;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .lang-tabs::-webkit-scrollbar { display: none; }
    .lang-tab {
      background: transparent;
      border: 1px solid transparent;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 600;
      color: #64748B;
      border-radius: 9999px;
      cursor: pointer;
      font-family: inherit;
      transition: all 180ms ease;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .lang-tab:hover { color: #0F172A; }
    .lang-tab.active {
      background: #0F172A;
      color: #fff;
    }
    .lang-tab .glyph {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      margin-right: 4px;
      opacity: 0.65;
    }
    .lang-tab.active .glyph { opacity: 1; color: #34D399; }
    .lang-pane {
      display: none;
      padding: 16px;
      background: #F8FAFC;
      border-radius: 12px;
      margin: 10px;
      flex-direction: column;
      gap: 10px;
      min-height: 220px;
    }
    .lang-pane.active { display: flex; }
    .lang-pane .cmsg { overflow-wrap: break-word; word-break: break-word; }
    .lang-pane .cmsg.v { background: #10B981; color: #fff; }
    .lang-pane .cmsg.b { background: #fff; border: 1px solid #E2E8F0; color: #0F172A; }
    .lang-foot {
      padding: 0 16px 16px;
      font-size: 12px;
      color: #64748B;
      text-align: center;
      line-height: 1.5;
      overflow-wrap: break-word;
      word-break: break-word;
    }
    .lang-foot strong { color: #0F172A; font-weight: 600; }

    /* ========== NAV — Features dropdown ========== */
    .nav-dd {
      position: relative;
    }
    .nav-dd-trigger {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      font-weight: 500;
      color: #94A3B8;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
      transition: color 180ms ease;
    }
    .nav-dd-trigger:hover,
    .nav-dd:hover .nav-dd-trigger { color: #fff; }
    .nav-dd-caret {
      width: 10px; height: 10px;
      transition: transform 180ms ease;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .nav-dd:hover .nav-dd-caret { transform: rotate(180deg); }
    .nav-dd-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 240px;
      background: #0F172A;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 8px;
      box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(16,185,129,0.06);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
      z-index: 1100;
    }
    .nav-dd-menu::before {
      content: '';
      position: absolute;
      top: -16px;
      left: 0; right: 0;
      height: 18px;
    }
    .nav-dd:hover .nav-dd-menu,
    .nav-dd:focus-within .nav-dd-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
      transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
    }
    .nav-dd-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      font-size: 14px;
      color: #CBD5E1;
      font-weight: 500;
      transition: background 160ms ease, color 160ms ease;
    }
    .nav-dd-item:hover { background: rgba(16,185,129,0.10); color: #fff; }
    .nav-dd-item .nav-dd-ico {
      width: 28px; height: 28px;
      border-radius: 7px;
      background: rgba(16,185,129,0.10);
      border: 1px solid rgba(16,185,129,0.18);
      color: #10B981;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-dd-item .nav-dd-ico svg { width: 14px; height: 14px; }
    .nav-dd-item .nav-dd-lbl { line-height: 1.2; }
    .nav-dd-item .nav-dd-sub {
      display: block;
      font-size: 11px;
      color: #64748B;
      margin-top: 2px;
      font-weight: 400;
    }

    /* Mobile sub-list inside hamburger */
    .mobile-nav .mn-section {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #475569;
      font-weight: 700;
      padding: 14px 0 6px;
    }
    .mobile-nav .mn-sub {
      font-size: 14px;
      color: #94A3B8;
      padding: 10px 0 10px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: block;
    }
    .mobile-nav .mn-cta {
      display: block;
      margin-top: 16px;
      background: #10B981;
      color: #fff;
      border-radius: 8px;
      padding: 12px 18px;
      font-weight: 600;
      font-size: 14px;
      text-align: center;
      border: none;
    }
    .mobile-nav .mn-cta:hover { background: #059669; color: #fff; }

    @media (max-width: 768px) {
      .nav-cta { padding: 9px 14px; font-size: 13px; }
      .nav-right { gap: 10px; }
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
      max-width: 560px;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      color: #94A3B8;
      padding: 6px 11px;
      border-radius: 9999px;
      font-size: 12px;
      font-weight: 500;
      transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
      white-space: nowrap;
      cursor: pointer;
    }
    .hero-pill .hp-ico {
      color: #10B981;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 13px; height: 13px;
    }
    .hero-pill:hover {
      color: #fff;
      border-color: rgba(16,185,129,0.4);
      background: rgba(16,185,129,0.07);
      box-shadow: 0 0 20px -4px rgba(16,185,129,0.35), inset 0 0 0 1px rgba(16,185,129,0.08);
      transform: translateY(-1px);
    }
    @media (max-width: 768px) {
      .hero-pills { justify-content: center; margin-left: auto; margin-right: auto; }
    }

    /* ========== PRICING — improved row contrast ========== */
    .pc-feats {
      gap: 4px !important;
      margin: 28px 0 !important;
    }
    .pc-feats li {
      padding: 9px 10px;
      border-radius: 8px;
      align-items: center !important;
      transition: background 180ms ease;
    }
    .pc-feats li:not(.off) {
      background: rgba(16,185,129,0.05);
      color: #0F172A !important;
      font-weight: 500;
    }
    .pc-feats li:not(.off) .ci {
      width: 18px !important;
      height: 18px !important;
      color: #fff !important;
      background: #10B981;
      border-radius: 50%;
      padding: 3px;
    }
    .pc-feats li.off {
      color: #CBD5E1 !important;
      text-decoration: line-through;
      text-decoration-color: rgba(148,163,184,0.45);
      text-decoration-thickness: 1px;
      opacity: 0.75;
      font-weight: 400;
    }
    .pc-feats li.off .cx {
      width: 18px !important;
      height: 18px !important;
      color: #CBD5E1 !important;
      background: #F1F5F9;
      border-radius: 50%;
      padding: 3px;
    }
    /* Popular plan: slightly stronger emerald wash on included rows */
    .pc.pop .pc-feats li:not(.off) {
      background: rgba(16,185,129,0.09);
    }

    /* ========== WhatsApp mockup — redesigned phone notification ========== */
    .wa-phone-v2 {
      width: 320px;
      height: 580px;
      background: #0B0F19;
      border-radius: 44px;
      border: 9px solid #1E293B;
      box-shadow:
        0 40px 80px -20px rgba(0,0,0,0.55),
        0 12px 30px -8px rgba(16,185,129,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.04);
      overflow: hidden;
      margin: 0 auto;
      position: relative;
      background-image:
        radial-gradient(circle at 30% 20%, rgba(16,185,129,0.18), transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(37,211,102,0.12), transparent 55%),
        linear-gradient(160deg, #0B0F19 0%, #0F172A 60%, #1E293B 100%);
    }
    .wa-notch {
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 110px;
      height: 28px;
      background: #000;
      border-radius: 9999px;
      z-index: 4;
    }
    .wa-status-bar {
      position: relative;
      z-index: 2;
      padding: 18px 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'DM Sans', sans-serif;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
    }
    .wa-status-icons {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .wa-status-icons svg { width: 14px; height: 14px; }
    .wa-battery {
      width: 22px;
      height: 11px;
      border: 1.2px solid #fff;
      border-radius: 3px;
      position: relative;
      padding: 1px;
    }
    .wa-battery::after {
      content: '';
      position: absolute;
      right: -3px;
      top: 50%;
      transform: translateY(-50%);
      width: 2px;
      height: 5px;
      background: #fff;
      border-radius: 0 1px 1px 0;
    }
    .wa-battery-fill {
      width: 80%;
      height: 100%;
      background: #fff;
      border-radius: 1px;
    }
    .wa-date {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-top: 36px;
      color: rgba(255,255,255,0.92);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .wa-time-big {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 300;
      font-size: 76px;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-top: 4px;
      font-variant-numeric: tabular-nums;
      text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }
    .wa-notif {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 92px;
      background: rgba(28, 34, 49, 0.78);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 12px 14px 14px;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.4);
      z-index: 3;
      animation: waNotifIn 700ms cubic-bezier(.2,.9,.3,1.2) 200ms both;
    }
    @keyframes waNotifIn {
      0%   { opacity: 0; transform: translateY(20px) scale(0.96); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    .wa-notif-head {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-family: 'DM Sans', sans-serif;
    }
    .wa-notif-logo {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #fff;
    }
    .wa-notif-logo svg { width: 14px; height: 14px; }
    .wa-notif-app {
      font-size: 11.5px;
      color: rgba(255,255,255,0.85);
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }
    .wa-notif-time {
      margin-left: auto;
      font-size: 11px;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
    }
    .wa-notif-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      letter-spacing: -0.005em;
    }
    .wa-notif-body {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      line-height: 1.45;
    }
    .wa-notif-body .lead {
      font-weight: 600;
      color: #fff;
    }
    .wa-notif-meta {
      display: flex;
      gap: 14px;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .wa-notif-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11.5px;
      color: rgba(255,255,255,0.72);
      font-weight: 500;
    }
    .wa-notif-meta-item svg {
      width: 12px; height: 12px;
      color: #25D366;
    }
    .wa-notif-actions {
      display: flex;
      gap: 6px;
      margin-top: 10px;
    }
    .wa-notif-btn {
      flex: 1;
      text-align: center;
      padding: 7px 8px;
      border-radius: 8px;
      font-size: 11.5px;
      font-weight: 600;
      background: rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.9);
    }
    .wa-notif-btn.primary {
      background: #25D366;
      color: #fff;
    }
    /* Stacked-notification ghost behind primary one */
    .wa-notif-ghost {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 78px;
      height: 22px;
      background: rgba(28, 34, 49, 0.55);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 2;
    }
    .wa-home-indicator {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: rgba(255,255,255,0.45);
      border-radius: 2px;
      z-index: 4;
    }

    /* ========== DEMO SECTION ========== */
    .demo-section {
      background: #FAFAF8;
      padding: 120px 24px;
      position: relative;
      overflow: hidden;
    }
    .demo-inner {
      max-width: 1100px;
      margin: 0 auto;
      background: #0F172A;
      border-radius: 24px;
      padding: 80px 56px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      align-items: center;
      gap: 56px;
      box-shadow: 0 40px 80px -20px rgba(15,23,42,0.25);
    }
    .demo-inner::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(16,185,129,0.20), transparent 60%);
      pointer-events: none;
    }
    .demo-inner::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 60%);
      pointer-events: none;
    }
    .demo-left { position: relative; z-index: 1; }
    .demo-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #10B981;
      font-weight: 700;
      margin-bottom: 18px;
      padding: 6px 14px;
      background: rgba(16,185,129,0.10);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: 9999px;
    }
    .demo-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: clamp(34px, 4.4vw, 54px);
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 18px;
    }
    .demo-sub {
      font-size: 17px;
      color: #94A3B8;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 480px;
    }
    .demo-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #10B981;
      color: #fff;
      border: none;
      cursor: pointer;
      font-family: inherit;
      border-radius: 10px;
      padding: 18px 32px;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 12px 32px rgba(16,185,129,0.4);
      transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }
    .demo-cta:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(16,185,129,0.55);
    }
    .demo-cta-arrow { transition: transform 220ms ease; }
    .demo-cta:hover .demo-cta-arrow { transform: translateX(4px); }
    .demo-meta {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 13px;
      color: #64748B;
    }
    .demo-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .demo-meta-item svg { width: 14px; height: 14px; color: #10B981; }
    .demo-right {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
    }
    .demo-cal-card {
      width: 100%;
      max-width: 340px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 22px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    }
    .demo-cal-card:hover {
      transform: translateY(-4px);
      border-color: rgba(16,185,129,0.25);
      box-shadow: 0 28px 60px rgba(0,0,0,0.38);
    }
    .demo-cal-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 16px;
    }
    .demo-cal-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10B981, #34D399);
      color: #0F172A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 15px;
      flex-shrink: 0;
    }
    .demo-cal-name { color: #fff; font-weight: 600; font-size: 14px; line-height: 1.2; }
    .demo-cal-role { color: #94A3B8; font-size: 12px; margin-top: 3px; }
    .demo-cal-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      font-size: 13px;
      color: #CBD5E1;
    }
    .demo-cal-row svg { width: 15px; height: 15px; color: #10B981; flex-shrink: 0; }
    .demo-cal-row strong { color: #fff; font-weight: 600; }
    .demo-cal-slots-label {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #64748B;
    }
    .demo-cal-slots {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 10px;
    }
    .demo-cal-slot {
      display: block;
      width: 100%;
      text-align: center;
      padding: 9px 4px;
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      color: #CBD5E1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 7px;
      font-variant-numeric: tabular-nums;
      transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
    }
    button.demo-cal-slot { cursor: pointer; }
    button.demo-cal-slot:hover {
      background: rgba(16,185,129,0.16);
      border-color: rgba(16,185,129,0.45);
      color: #6EE7B7;
      transform: translateY(-1px);
    }
    button.demo-cal-slot:active { transform: translateY(0); }
    button.demo-cal-slot:focus-visible {
      outline: 2px solid rgba(16,185,129,0.7);
      outline-offset: 2px;
    }
    .demo-cal-slot.taken {
      color: #475569;
      text-decoration: line-through;
      background: transparent;
      cursor: not-allowed;
    }
    .demo-cal-slot.hot {
      background: rgba(16,185,129,0.15);
      border-color: rgba(16,185,129,0.4);
      color: #34D399;
    }
    button.demo-cal-slot.hot:hover {
      background: rgba(16,185,129,0.26);
      border-color: rgba(16,185,129,0.6);
      color: #A7F3D0;
    }
    @media (max-width: 900px) {
      .demo-inner {
        grid-template-columns: 1fr;
        padding: 56px 32px;
        gap: 40px;
      }
      .demo-right { display: none; }
    }
    @media (max-width: 600px) {
      .demo-section { padding: 80px 16px; }
      .demo-inner { padding: 48px 24px; border-radius: 18px; }
      .demo-cta { padding: 16px 24px; font-size: 15px; width: 100%; justify-content: center; }
    }

    /* ========== UTILITIES ========== */
    .text-accent { color: #10B981; font-weight: 600; }


    /* ========== NAV: Book a Demo pill (distinct amber) ========== */
    .nav-links a.nav-demo {
      color: #34D399;
      border: 1px solid rgba(16,185,129,0.45);
      border-radius: 9999px;
      padding: 7px 16px;
      font-weight: 600;
      white-space: nowrap;
      line-height: 1;
      transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }
    .nav-links a.nav-demo:hover {
      color: #fff;
      background: rgba(16,185,129,0.16);
      border-color: #10B981;
      box-shadow: 0 4px 18px rgba(16,185,129,0.28);
      transform: translateY(-1px);
    }
    .mobile-nav a.mn-demo {
      color: #34D399;
      font-weight: 700;
    }


    /* ===================== PAGE-WIDE MOTION ===================== */
    /* scroll progress bar */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 100%;
      transform: scaleX(0);
      transform-origin: 0 50%;
      background: linear-gradient(90deg, #10B981, #34D399);
      z-index: 2000;
      will-change: transform;
    }

    /* navbar reacts to scroll */
    .navbar {
      transition: background 280ms ease, box-shadow 280ms ease, border-color 280ms ease, height 280ms ease;
    }
    .navbar.scrolled {
      height: 58px;
      background: rgba(11, 18, 32, 0.86);
      box-shadow: 0 10px 30px -12px rgba(0,0,0,0.55);
      border-bottom-color: rgba(255,255,255,0.10);
    }

    /* animated underline on plain nav links */
    .nav-links > li > a:not(.nav-demo) {
      position: relative;
    }
    .nav-links > li > a:not(.nav-demo)::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 2px;
      background: #10B981;
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: 0 50%;
      transition: transform 240ms cubic-bezier(.22,.61,.36,1);
    }
    .nav-links > li > a:not(.nav-demo):hover::after { transform: scaleX(1); }

    /* hero aurora */
    .hero-aurora {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(42% 55% at 18% 28%, rgba(16,185,129,0.20), transparent 70%),
        radial-gradient(38% 50% at 82% 72%, rgba(52,211,153,0.14), transparent 72%),
        radial-gradient(30% 40% at 65% 12%, rgba(251,191,36,0.08), transparent 75%);
      filter: blur(8px);
      animation: auroraDrift 16s ease-in-out infinite alternate;
    }
    @keyframes auroraDrift {
      0%   { transform: translate3d(-3%, -2%, 0) scale(1.02); }
      50%  { transform: translate3d(2%, 2%, 0) scale(1.06); }
      100% { transform: translate3d(3%, -1%, 0) scale(1.02); }
    }
    .hero-inner { position: relative; z-index: 1; }

    /* button micro-interactions */
    .btn-hero-primary, .btn-hero-secondary, .nav-cta, .demo-cta {
      transition: transform 200ms cubic-bezier(.22,.61,.36,1), background 200ms ease, box-shadow 200ms ease, color 200ms ease, border-color 200ms ease;
    }
    .btn-hero-primary:hover, .nav-cta:hover, .demo-cta:hover { transform: translateY(-2px); }
    .btn-hero-primary:active, .btn-hero-secondary:active, .nav-cta:active, .demo-cta:active { transform: translateY(0) scale(.985); }
    .btn-hero-secondary:hover { transform: translateY(-2px); }

    /* reduced motion: respect the user */
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
      .hero-aurora { animation: none !important; }
      .scroll-progress { display: none !important; }
      *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    }


    /* ===== HIW: branch label + outcome capstone ===== */
    .hiw-branch-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94A3B8;
      margin-bottom: 14px;
    }
    .hiw-capstone {
      display: flex;
      align-items: center;
      gap: 18px;
      max-width: 760px;
      margin: 52px auto 0;
      padding: 22px 26px;
      background: linear-gradient(120deg, #0F172A, #16233B);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: 16px;
      box-shadow: 0 24px 48px -28px rgba(15,23,42,0.55);
    }
    .hiw-capstone-ico {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(16,185,129,0.16);
      color: #34D399;
    }
    .hiw-capstone-ico svg { width: 22px; height: 22px; }
    .hiw-capstone-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
    .hiw-capstone-text strong { color: #fff; font-weight: 600; font-size: 15px; line-height: 1.4; }
    .hiw-capstone-link {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      padding: 11px 18px;
      border-radius: 9999px;
      background: #10B981;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      transition: background 200ms ease, transform 200ms cubic-bezier(.22,.61,.36,1), box-shadow 200ms ease;
    }
    .hiw-capstone-link svg { width: 16px; height: 16px; transition: transform 220ms ease; }
    .hiw-capstone-link:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(16,185,129,0.6); }
    .hiw-capstone-link:hover svg { transform: translateX(4px); }
    @media (max-width: 640px) {
      .hiw-capstone { flex-direction: column; text-align: center; align-items: stretch; }
      .hiw-capstone-ico { align-self: center; }
      .hiw-capstone-link { justify-content: center; }
    }

    /* ===== Features overview (home) ===== */
    .fo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:36px;}
    .fo-card{position:relative;display:grid;grid-template-columns:auto 1fr;column-gap:15px;row-gap:4px;align-content:center;padding:20px 22px;background:#fff;border:1px solid #ECECE4;border-radius:14px;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;}
    .fo-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px -18px rgba(23,23,18,.28);border-color:rgba(15,169,104,.35);}
    .fo-ic{grid-row:1 / 3;align-self:start;width:40px;height:40px;border-radius:11px;background:rgba(15,169,104,.10);border:1px solid rgba(15,169,104,.18);color:#0B8F55;display:grid;place-items:center;}
    .fo-ic svg{width:20px;height:20px;}
    .fo-t{grid-column:2;align-self:end;font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:16px;color:#171712;letter-spacing:-.01em;}
    .fo-d{grid-column:2;align-self:start;font-size:13.5px;line-height:1.5;color:#6E6E62;}
    .fo-card-cta{background:#171712;border-color:#171712;}
    .fo-card-cta .fo-t{color:#fff;}
    .fo-card-cta .fo-d{color:#C7C7BF;}
    .fo-card-cta .fo-ic{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.18);color:#fff;transition:transform .18s ease;}
    .fo-card-cta:hover{border-color:#171712;box-shadow:0 18px 38px -18px rgba(23,23,18,.5);}
    .fo-card-cta:hover .fo-ic{transform:translateX(3px);}
    @media(max-width:900px){.fo-grid{grid-template-columns:repeat(2,1fr);}}
    @media(max-width:560px){.fo-grid{grid-template-columns:1fr;}}

    /* ===== Navbar type: crisper, branded ===== */
    .nav-links a, .nav-signin, .nav-dd-trigger, .nav-cta{
      font-family:'Plus Jakarta Sans', sans-serif;
      font-weight:600;
      letter-spacing:-0.01em;
    }

    /* ===== Light navbar — default on ALL pages ===== */
    .navbar{
      background:rgba(255,255,255,0.90);
      -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(23,23,18,0.08);
      box-shadow:0 6px 20px -16px rgba(23,23,18,0.30);
    }
    .navbar.scrolled{height:58px;background:rgba(255,255,255,0.92);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-bottom-color:rgba(23,23,18,0.08);box-shadow:0 8px 30px -14px rgba(23,23,18,0.22);}
    .navbar .nav-links a,
    .navbar .nav-signin,
    .navbar .nav-dd-trigger{color:#42423A;}
    .navbar .nav-links a:hover,
    .navbar .nav-signin:hover,
    .navbar .nav-dd-trigger:hover,
    .navbar .nav-dd:hover .nav-dd-trigger{color:#171712;}
    .navbar .nav-links a.nav-demo{color:#0B8F55;border-color:rgba(15,169,104,0.45);}
    .navbar .nav-links a.nav-demo:hover{color:#fff;background:#0FA968;border-color:#0FA968;box-shadow:0 4px 18px rgba(15,169,104,0.3);}
    .hamburger-btn span{background:#42423A;}
    .nav-dd-menu{background:#fff;border:1px solid rgba(23,23,18,0.10);box-shadow:0 20px 50px -12px rgba(23,23,18,0.22);}
    .nav-dd-item{color:#42423A;}
    .nav-dd-item:hover{background:rgba(15,169,104,0.10);color:#171712;}
    .nav-dd-item .nav-dd-sub{color:#8A8A80;}
    .nav-dd-item .nav-dd-ico{background:rgba(15,169,104,0.10);border-color:rgba(15,169,104,0.20);color:#0B8F55;}
    .mobile-nav{background:rgba(255,255,255,0.98);border-bottom-color:rgba(23,23,18,0.08);}
    .mobile-nav a{color:#42423A;border-bottom-color:rgba(23,23,18,0.06);}
    .mobile-nav a:hover{color:#171712;}
    .mobile-nav .mn-section{color:#8A8A80;}
    .mobile-nav a.mn-demo{color:#0B8F55;}
    .mobile-nav a.mn-section-link{border-bottom:none;color:#171712;}
