
    :root {
      --bg: #06061a;
      --surface: #0d0d2b;
      --card: #10102a;
      --brand: #6366f1;
      --brand-light: #818cf8;
      --brand-dark: #4f46e5;
      --text: #ffffff;
      --muted: #8892a4;
      --border: rgba(255,255,255,0.08);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body.menu-open { overflow: hidden; touch-action: none; }

    /* ── NAVBAR ── */
    header {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(6,6,26,0.85); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 14px 40px;
    }
    .nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .nav-logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img { height: 42px; width: auto; max-width: 200px; object-fit: contain; display: block; background: transparent; }
    .desktop-nav { display: flex; gap: 36px; align-items: center; }
    .desktop-nav a { color: #cbd5e1; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
    .desktop-nav a:hover { color: #fff; }
    .nav-cta {
      padding: 11px 28px; background: var(--brand); color: #fff;
      border-radius: 50px; font-size: 14px; font-weight: 700;
      text-decoration: none; transition: all 0.2s; white-space: nowrap;
      box-shadow: 0 0 20px rgba(99,102,241,0.4); flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--brand-light); transform: translateY(-1px); }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
      flex-shrink: 0;
      position: relative;
      z-index: 10001;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ── MOBILE OVERLAY ── */
    .mobile-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      z-index: 9999;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    .mobile-overlay.active {
      transform: translateX(0);
      pointer-events: all;
    }
    .mobile-overlay-inner {
      position: relative;
      width: 100%; height: 100%;
      background: rgba(6, 6, 26, 0.99);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
    }
    .mobile-overlay-close {
      position: absolute;
      top: 24px; right: 24px;
      background: none; border: none;
      color: #fff; font-size: 36px;
      cursor: pointer; line-height: 1; padding: 10px;
      transition: color 0.2s, transform 0.2s;
    }
    .mobile-overlay-close:hover { color: var(--brand-light); transform: scale(1.1); }
    .mobile-nav { display: flex; flex-direction: column; align-items: stretch; }
    .mobile-nav-link {
      font-size: 28px; font-weight: 700; color: #fff;
      text-decoration: none; padding: 24px 40px;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s, background 0.2s;
      display: block;
    }
    .mobile-nav-link:last-child { border-bottom: none; }
    .mobile-nav-link:hover, .mobile-nav-link:active { color: var(--brand-light); background: rgba(99,102,241,0.1); }

    /* ── MAIN ── */
    main { padding-top: 72px; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 36px; background: var(--brand); color: #fff;
      border-radius: 50px; font-size: 16px; font-weight: 700;
      text-decoration: none; transition: all 0.25s;
      box-shadow: 0 0 30px rgba(99,102,241,0.45);
    }
    .btn-primary:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 0 40px rgba(99,102,241,0.6); }
    .btn-secondary {
      display: inline-flex; align-items: center;
      padding: 16px 36px; color: #fff;
      border-radius: 50px; font-size: 16px; font-weight: 700;
      text-decoration: none; transition: all 0.25s;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.12); }

    /* ── HERO ZONE (hero + stats bar wrapper) ── */
    .hero-zone {
      position: relative;
      overflow: hidden;
    }

    .hero-zone::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 220px;
      background: linear-gradient(to bottom, transparent 0%, #06061a 100%);
      pointer-events: none;
      z-index: 1;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 120px 24px 80px;
      position: relative; z-index: 2;
    }
    .hero-bg {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(79,70,229,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.1) 0%, transparent 60%);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 20px; border-radius: 50px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
      font-size: 13px; font-weight: 600; color: #cbd5e1;
      margin-bottom: 32px; position: relative; z-index: 1;
    }
    .hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
    .hero h1 {
      font-size: clamp(40px, 7.5vw, 88px); font-weight: 900;
      line-height: 1.02; letter-spacing: -3px;
      max-width: 1000px; position: relative; z-index: 1; margin-bottom: 8px;
    }
    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--brand-light) 0%, #a78bfa 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-sub { font-size: 18px; color: var(--muted); max-width: 680px; line-height: 1.7; margin: 24px auto 12px; position: relative; z-index: 1; }
    .hero-location { font-size: 14px; color: var(--brand-light); font-weight: 500; margin-bottom: 40px; position: relative; z-index: 1; }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

    /* ── STATS BAR ── */
    .stats-bar {
      display: flex; justify-content: center; flex-wrap: wrap;
      padding: 40px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.01);
      position: relative; z-index: 2;
    }
    .stat { text-align: center; padding: 12px 40px; }
    .stat-val { font-size: 32px; font-weight: 900; letter-spacing: -1px; color: #ffffff; text-shadow: 0 0 30px rgba(129,140,248,0.4); }
    .stat-label { font-size: 13px; color: #cbd5e1; margin-top: 4px; font-weight: 500; }

    /* ── TOOLBOX ── */
    .section { padding: 100px 40px; max-width: 1280px; margin: 0 auto; }
    .section-badge {
      display: inline-block; padding: 7px 18px; border-radius: 50px;
      background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
      font-size: 13px; font-weight: 600; color: var(--brand-light); margin-bottom: 20px;
    }
    .section-title { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -2px; margin-bottom: 12px; }
    .section-sub { font-size: 16px; color: var(--muted); margin-bottom: 16px; }
    .section-sub-small { font-size: 14px; color: #475569; margin-bottom: 60px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: 20px; overflow: hidden; }
    .feat-card { background: var(--card); padding: 36px 32px; transition: background 0.2s; display: block; color: inherit; text-decoration: none; cursor: pointer; }
    .feat-card:hover { background: #13133a; }
    .feat-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(99,102,241,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 20px; border: 1px solid rgba(99,102,241,0.2); flex-shrink: 0;
    }
    .feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
    .feat-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

    /* ── HOW IT WORKS ── */
    .how-section { padding: 100px 40px; text-align: center; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .how-inner { max-width: 1000px; margin: 0 auto; }
    .steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-top: 64px; position: relative; }
    .steps-row::before { content: ''; position: absolute; top: 58px; left: calc(16.6% + 20px); right: calc(16.6% + 20px); height: 1px; background: rgba(99,102,241,0.4); z-index: 0; }
    .step-item { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
    .step-icon-wrap { position: relative; margin-bottom: 28px; }
    .step-icon { width: 110px; height: 110px; border-radius: 20px; background: #13133a; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 36px; }
    .step-num { position: absolute; top: -10px; right: -10px; width: 32px; height: 32px; border-radius: 50%; background: var(--brand); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; color: #fff; }
    .step-item h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
    .step-item p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 220px; }

    /* ── DEEP DIVES ── */
    .deep-section { padding: 40px 40px 100px; max-width: 1280px; margin: 0 auto; }
    .deep-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border); }
    .deep-block:last-child { border-bottom: none; }
    .deep-block.reverse { direction: rtl; }
    .deep-block.reverse > * { direction: ltr; }
    .deep-tag { display: inline-block; padding: 6px 16px; border-radius: 50px; background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25); font-size: 12px; font-weight: 600; color: var(--brand-light); margin-bottom: 16px; }
    .deep-text h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; }
    .deep-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
    .deep-benefits { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
    .benefit { padding-left: 18px; border-left: 2px solid rgba(99,102,241,0.35); }
    .benefit h4 { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 4px; letter-spacing: -0.2px; }
    .benefit p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 0; }
    .deep-text ul { list-style: none; margin-bottom: 28px; }
    .deep-text ul li { font-size: 15px; color: #cbd5e1; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
    .deep-text ul li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); flex-shrink: 0; }
    .deep-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-light); font-weight: 700; font-size: 15px; text-decoration: none; transition: color 0.2s; }
    .deep-link:hover { color: #fff; }
    .deep-visual { background: #0d0d2b; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px; min-height: 260px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
    .mock-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(99,102,241,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; border: 1px solid rgba(99,102,241,0.2); margin-bottom: 8px; }
    .mock-line { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.07); }
    .mock-line.short { width: 55%; }
    .mock-line.medium { width: 75%; }
    .mock-line.long { width: 90%; }
    .mock-btns { display: flex; gap: 12px; margin-top: 4px; }
    .mock-btn { height: 36px; border-radius: 8px; background: rgba(99,102,241,0.25); flex: 1; }
    .mock-btn.ghost { background: rgba(255,255,255,0.06); }

    /* ── ABOUT PAGE ── */
    .page-hero { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
    .page-hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 70%); }
    .page-hero .section-badge { position: relative; z-index: 1; }
    .page-hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.05; max-width: 900px; position: relative; z-index: 1; margin-bottom: 20px; }
    .page-hero h1 .gradient-text { background: linear-gradient(135deg, var(--brand-light) 0%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .page-hero p { font-size: 18px; color: var(--muted); max-width: 640px; line-height: 1.7; position: relative; z-index: 1; }
    .why-section { padding: 80px 40px; max-width: 1280px; margin: 0 auto; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; letter-spacing: -1px; margin-bottom: 28px; }
    .why-text p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
    .why-text p:last-child { margin-bottom: 0; }
    .why-card { background: #0d0d2b; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 48px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .why-card .pin { font-size: 48px; }
    .why-card h3 { font-size: 24px; font-weight: 800; }
    .why-card p { font-size: 15px; color: var(--muted); }
    .values-section { padding: 100px 40px; text-align: center; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .values-inner { max-width: 1280px; margin: 0 auto; }
    .values-section h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -2px; margin-bottom: 12px; }
    .values-section .sub { font-size: 16px; color: var(--muted); margin-bottom: 60px; }
    .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: left; }
    .value-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; transition: all 0.2s; }
    .value-card:hover { background: #13133a; border-color: rgba(99,102,241,0.3); }
    .value-card.featured { background: #13133a; border-color: rgba(99,102,241,0.35); }
    .value-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
    .value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
    .value-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

    /* ── CTA ── */
    .cta-section { padding: 100px 40px; text-align: center; border-top: 1px solid var(--border); }
    .cta-section h2 { font-size: clamp(28px, 4vw, 56px); font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
    .cta-section p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }

    /* ── FOOTER ── */
    footer { background: #080818; border-top: 1px solid var(--border); padding: 64px 40px 0; }
    .footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
    .footer-logo { height: 40px; width: auto; max-width: 200px; display: block; margin-bottom: 16px; background: transparent; object-fit: contain; }
    .footer-brand-desc { font-size: 14px; color: #4a5568; line-height: 1.7; max-width: 320px; margin-bottom: 12px; }
    .footer-location { font-size: 13px; color: #4a5568; }
    .footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; }
    .footer-col a { display: block; color: #4a5568; text-decoration: none; font-size: 14px; margin-bottom: 14px; transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 13px; color: #1e293b; }

    /* ── CONTACT ── */
    .contact-hero { padding: 120px 40px 60px; text-align: center; max-width: 700px; margin: 0 auto; }
    .contact-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
    .contact-hero p { font-size: 18px; color: var(--muted); }
    .contact-body { max-width: 1100px; margin: 0 auto; padding: 0 40px 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
    .contact-form-area h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
    .contact-form-area > p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
    .ghl-placeholder { min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 2px dashed rgba(99,102,241,0.35); border-radius: 16px; padding: 32px; background: rgba(99,102,241,0.03); }
    .ghl-placeholder h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--brand-light); }
    .ghl-placeholder p { color: #334155; font-size: 12px; font-family: monospace; }
    .contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
    .info-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
    .info-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
    .info-card p { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
    .info-card p strong { color: #94a3b8; }
    .skip-card { background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2); border-radius: 16px; padding: 28px; }
    .skip-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--brand-light); }
    .skip-card p { color: #94a3b8; font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
    .skip-card a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 4px; }

    /* ── DEMO ── */
    .demo-hero { padding: 120px 40px 60px; max-width: 760px; margin: 0 auto; text-align: center; }
    .demo-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
    .demo-hero p { font-size: 18px; color: var(--muted); line-height: 1.7; }
    .demo-calendar { max-width: 760px; margin: 0 auto; padding: 0 40px; }
    .faq-wrap { max-width: 760px; margin: 0 auto; padding: 60px 40px 40px; border-top: 1px solid var(--border); }
    .faq-wrap h2 { font-size: 32px; font-weight: 900; text-align: center; margin-bottom: 40px; letter-spacing: -1px; }
    .faq-list { display: flex; flex-direction: column; gap: 14px; }
    .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; color: #fff; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; text-align: left; gap: 16px; }
    .faq-q:hover { background: rgba(255,255,255,0.03); }
    .faq-chevron { font-size: 20px; color: var(--brand-light); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; font-size: 14px; color: var(--muted); line-height: 1.8; padding: 0 28px; }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 28px 24px; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
    .fade-up   { animation: fadeUp 0.7s ease both; }
    .fade-up-2 { animation: fadeUp 0.7s 0.12s ease both; }
    .fade-up-3 { animation: fadeUp 0.7s 0.24s ease both; }
    .fade-up-4 { animation: fadeUp 0.7s 0.36s ease both; }

    /* ══════════════════════════════════════════
       MOBILE — 900px and below
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      /* Header stays low z-index so overlay covers it */
      header { padding: 12px 20px; z-index: 100; }
      .desktop-nav { display: none !important; }
      .nav-cta { display: none !important; }
      .hamburger { display: flex; }

      /* HERO */
      .hero { padding: 100px 20px 60px; min-height: auto; }
      .hero h1 { font-size: clamp(32px, 9vw, 52px); letter-spacing: -1.5px; }
      .hero-sub { font-size: 15px; }
      .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
      .hero-btns a { width: 100%; max-width: 300px; text-align: center; justify-content: center; }

      /* BLOBS — scaled down for mobile */
      .blob-1 { width: 420px; height: 420px; top: -120px; left: -80px; }
      .blob-2 { width: 340px; height: 340px; top: -20px; right: -80px; }
      .blob-3 { width: 480px; height: 480px; bottom: -180px; left: 5%; }
      .blob-4 { width: 280px; height: 280px; top: 3%; right: 5%; }

      /* STATS */
      .stats-bar { padding: 24px 16px; }
      .stat { padding: 10px 20px; flex: 1 1 auto; min-width: 80px; }
      .stat-val { font-size: 22px; }
      .stat-label { font-size: 11px; }

      /* SECTIONS */
      .section { padding: 60px 20px; }
      .grid-3 { grid-template-columns: 1fr; }
      .feat-card { padding: 24px 20px; }

      /* HOW IT WORKS */
      .how-section { padding: 60px 20px; }
      .steps-row { grid-template-columns: 1fr; gap: 32px; }
      .steps-row::before { display: none; }
      .step-item p { max-width: 100%; }

      /* DEEP DIVES */
      .deep-section { padding: 20px 20px 60px; }
      .deep-block { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
      .deep-block.reverse { direction: ltr; }
      .deep-text h2 { font-size: clamp(22px, 6vw, 32px); }

      /* ABOUT */
      .page-hero { padding: 100px 20px 60px; min-height: auto; }
      .page-hero h1 { font-size: clamp(28px, 8vw, 48px); letter-spacing: -1px; }
      .page-hero p { font-size: 15px; }
      .why-section { padding: 40px 20px; }
      .why-grid { grid-template-columns: 1fr; gap: 32px; }
      .values-section { padding: 60px 20px; }
      .values-grid { grid-template-columns: 1fr; gap: 16px; }

      /* CONTACT */
      .contact-hero { padding: 100px 20px 40px; }
      .contact-hero h1 { font-size: clamp(28px, 8vw, 48px); }
      .contact-hero p { font-size: 15px; }
      .contact-body { grid-template-columns: 1fr; padding: 0 20px 40px; gap: 32px; }

      /* DEMO */
      .demo-hero { padding: 100px 20px 40px; }
      .demo-hero h1 { font-size: clamp(28px, 8vw, 48px); }
      .demo-hero p { font-size: 15px; }
      .demo-calendar { padding: 0 20px; }
      .faq-wrap { padding: 40px 20px; }
      .faq-q { padding: 18px 20px; font-size: 14px; }

      /* CTA */
      .cta-section { padding: 60px 20px; }
      .cta-section h2 { font-size: clamp(26px, 7vw, 40px); }
      .cta-section p { font-size: 15px; }
      .cta-section .btn-primary { width: 100%; max-width: 300px; justify-content: center; }

      /* FOOTER */
      footer { padding: 40px 20px 0; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(28px, 10vw, 38px); letter-spacing: -1px; }
      .hero-badge { font-size: 12px; }
      .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 15px; }
      .mobile-nav-link { font-size: 24px; padding: 20px 32px; }
      .blob-1 { width: 320px; height: 320px; }
      .blob-2 { width: 260px; height: 260px; }
      .blob-3 { width: 360px; height: 360px; }
      .blob-4 { width: 200px; height: 200px; }
    }

    /* ── HERO PURPLE BLOBS ── */
    .hero-blobs {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .blob {
      position: absolute;
      will-change: transform, border-radius;
    }

    .blob-1 {
      width: 850px;
      height: 850px;
      background: radial-gradient(ellipse at 35% 30%,
        rgba(230,225,255,0.9)  0%,
        rgba(167,139,250,0.75) 15%,
        rgba(99,102,241,0.6)   38%,
        rgba(67,56,202,0.35)   62%,
        transparent            82%);
      filter: blur(32px);
      top: -250px;
      left: -150px;
      border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
      animation: blobFloat1 12s ease-in-out infinite, blobMorph1 9s ease-in-out infinite;
    }

    .blob-2 {
      width: 680px;
      height: 680px;
      background: radial-gradient(ellipse at 62% 28%,
        rgba(210,215,255,0.88) 0%,
        rgba(129,140,248,0.72) 18%,
        rgba(99,102,241,0.52)  42%,
        rgba(55,48,163,0.22)   68%,
        transparent            86%);
      filter: blur(28px);
      top: -30px;
      right: -140px;
      border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%;
      animation: blobFloat2 16s ease-in-out infinite, blobMorph2 11s ease-in-out infinite;
    }

    .blob-3 {
      width: 950px;
      height: 950px;
      background: radial-gradient(ellipse at 42% 38%,
        rgba(195,205,255,0.82) 0%,
        rgba(99,102,241,0.65)  18%,
        rgba(79,70,229,0.48)   45%,
        rgba(49,46,129,0.2)    68%,
        transparent            85%);
      filter: blur(38px);
      bottom: -350px;
      left: 8%;
      border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%;
      animation: blobFloat3 18s ease-in-out infinite, blobMorph3 13s ease-in-out infinite;
    }

    .blob-4 {
      width: 520px;
      height: 520px;
      background: radial-gradient(ellipse at 55% 25%,
        rgba(215,205,255,0.88) 0%,
        rgba(139,92,246,0.7)   18%,
        rgba(109,40,217,0.45)  46%,
        transparent            78%);
      filter: blur(26px);
      top: 2%;
      right: 12%;
      border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
      animation: blobFloat4 14s ease-in-out infinite, blobMorph4 10s ease-in-out infinite;
    }

    /* Float animations */
    @keyframes blobFloat1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%       { transform: translate(110px, 130px) scale(1.08); }
      66%       { transform: translate(-70px, 60px) scale(0.92); }
    }

    @keyframes blobFloat2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%       { transform: translate(-120px, 90px) scale(1.1); }
      66%       { transform: translate(80px, -100px) scale(0.9); }
    }

    @keyframes blobFloat3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%       { transform: translate(80px, -120px) scale(1.07); }
      66%       { transform: translate(-100px, 65px) scale(0.93); }
    }

    @keyframes blobFloat4 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50%       { transform: translate(-90px, 110px) scale(1.09); }
    }

    /* Morph animations — organic gooey shape-shifting */
    @keyframes blobMorph1 {
      0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
      25%       { border-radius: 40% 60% 70% 30% / 65% 35% 55% 45%; }
      50%       { border-radius: 55% 45% 35% 65% / 45% 55% 65% 35%; }
      75%       { border-radius: 45% 55% 50% 50% / 60% 40% 45% 55%; }
    }

    @keyframes blobMorph2 {
      0%, 100% { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
      30%       { border-radius: 65% 35% 55% 45% / 40% 65% 35% 60%; }
      60%       { border-radius: 35% 65% 45% 55% / 55% 40% 65% 35%; }
    }

    @keyframes blobMorph3 {
      0%, 100% { border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%; }
      33%       { border-radius: 40% 60% 45% 55% / 65% 35% 55% 45%; }
      66%       { border-radius: 65% 35% 50% 50% / 40% 55% 45% 60%; }
    }

    @keyframes blobMorph4 {
      0%, 100% { border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%; }
      40%       { border-radius: 65% 35% 60% 40% / 45% 65% 35% 55%; }
      70%       { border-radius: 35% 65% 40% 60% / 60% 35% 65% 40%; }
    }

    /* ── CUSTOM CURSOR TRAIL (hero only) ── */
    .cursor-trail {
      position: fixed;
      width: 980px;
      height: 980px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10001;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, rgba(99,102,241,0.07) 45%, transparent 70%);
      filter: blur(60px);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .cursor-blob {
      position: fixed;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10002;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(120,115,255,0.45) 0%, rgba(99,102,241,0.18) 45%, transparent 72%);
      filter: blur(28px);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    @media (hover: none) and (pointer: coarse) {
      .cursor-trail, .cursor-blob { display: none; }
    }
