@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bricolage-grotesque-v9-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/bricolage-grotesque-v9-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/bricolage-grotesque-v9-latin-800.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}

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

    :root {
      --primary: #217AFF;
      --primary-rgb: 82, 113, 255;
      --green: var(--primary);
      --bg: #020202;
      --surface: #141414;
      --surface2: #191919;
      --border: rgba(255,255,255,0.07);
      --border-soft: rgba(255,255,255,0.04);
      --text: #ffffff;
      --muted: rgba(255,255,255,0.45);
      --muted2: rgba(255,255,255,0.25);
      --red: #ef4444;
      --font-display: 'Bricolage Grotesque', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --ui-scale: 1.02;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: calc(16px * var(--ui-scale));
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── ANNOUNCEMENT BAR ─── */
    .announce {
      background: #0a0a0a;
      border-bottom: 1px solid var(--border);
      text-align: center;
      padding: 9px 20px;
      font-family: var(--font-body);
      font-size: calc(11px * var(--ui-scale));
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* ─── NAVBAR ─── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: rgba(02,02,02,0.82);
      border-bottom: 1px solid var(--border);
      padding: 0 40px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 18px;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-link {
      font-family: var(--font-body);
      font-size: calc(13px * var(--ui-scale));
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
    }
    .nav-link:hover {
      color: var(--text);
      background: rgba(255,255,255,0.05);
    }

    .nav-cta {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 9px 20px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: calc(13px * var(--ui-scale));
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.15s ease, box-shadow 0.15s ease;
    }
    .nav-cta:hover {
      opacity: 0.88;
      box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.25);
    }

    /* ─── SECTION LABEL ─── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: calc(11px * var(--ui-scale));
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 3px;
      height: 14px;
      background: var(--green);
      border-radius: 2px;
    }

    /* ─── HERO BADGE ─── */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(var(--primary-rgb), 0.08);
      border: 1px solid rgba(var(--primary-rgb), 0.2);
      border-radius: 100px;
      padding: 6px 14px 6px 10px;
      font-size: calc(12px * var(--ui-scale));
      font-weight: 500;
      color: var(--green);
      margin-bottom: 24px;
      letter-spacing: 0.01em;
    }
    .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      position: relative;
    }
    .hero-badge-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: var(--green);
      opacity: 0.3;
      animation: pulse-ring 1.8s ease-out infinite;
    }
    @keyframes pulse-ring {
      0%   { transform: scale(0.8); opacity: 0.4; }
      70%  { transform: scale(1.8); opacity: 0; }
      100% { transform: scale(0.8); opacity: 0; }
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 24px 100px;
      overflow: hidden;
    }

    .hero-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.11) 1.4px, transparent 1.4px),
    radial-gradient(circle, rgba(var(--primary-rgb),0.14) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 45%, transparent 100%);
  pointer-events: none;
}

    .hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      max-width: 960px;
    }

    .hero-h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(44px, 6vw, 76px);
      min-height: clamp(104px, 13vw, 172px);
      line-height: 1.06;
      letter-spacing: -0.03em;
      color: var(--green);
      margin-bottom: 0;
    }

    .hero-h1-sub {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(44px, 6vw, 66px);
      line-height: 1.06;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 32px;
      margin-top: 16px;
      display: block;
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-size: calc(17px * var(--ui-scale));
      line-height: 1.65;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 36px;
    }

    .hero-cta {
      display: inline-block;
      background: var(--green);
      color: #fff;
      padding: 15px 32px;
      border-radius: 12px;
      font-family: var(--font-body);
      font-size: calc(15px * var(--ui-scale));
      font-weight: 500;
      text-decoration: none;
      transition: opacity 0.15s, box-shadow 0.2s;
      box-shadow: 0 0 28px rgba(var(--primary-rgb), 0.2);
      margin-bottom: 16px;
    }
    .hero-cta:hover {
      opacity: 0.9;
      box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.32);
    }

    .hero-micro {
      display: block;
      font-size: calc(10px * var(--ui-scale));
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted2);
      margin-top: 16px;
      line-height: 1.6;
    }

    /* ─── SECTIONS ─── */
    section {
      padding: 96px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    section.full-width {
      max-width: none;
      padding-left: 40px;
      padding-right: 40px;
    }

    .ambient-section {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .ambient-section > *:not(.ambient-layer) {
      position: relative;
      z-index: 1;
    }

    .ambient-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .ambient-dots {
      background-image:
        radial-gradient(circle, rgba(255,255,255,0.11) 1.3px, transparent 1.3px),
        radial-gradient(circle, rgba(var(--primary-rgb), 0.14) 1px, transparent 1px);
      background-size: 24px 24px, 24px 24px;
      background-position: 0 0, 12px 12px;
      mask-image: radial-gradient(ellipse 84% 76% at 50% 50%, black 44%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 84% 76% at 50% 50%, black 44%, transparent 100%);
      opacity: var(--ambient-dots-opacity, 0.48);
    }

    .ambient-glow {
      background: radial-gradient(ellipse at var(--ambient-glow-x, 50%) var(--ambient-glow-y, 42%), rgba(var(--primary-rgb), 0.34) 0%, rgba(var(--primary-rgb), 0.12) 24%, rgba(var(--primary-rgb), 0.06) 42%, transparent 72%);
      filter: blur(34px);
      opacity: var(--ambient-glow-opacity, 0.28);
      animation: ambient-drift 18s ease-in-out infinite alternate;
      transform: translate3d(0, 0, 0);
    }

    .ambient-beam {
      background: linear-gradient(112deg, transparent 30%, rgba(var(--primary-rgb), 0.28) 49%, transparent 71%);
      filter: blur(58px);
      opacity: var(--ambient-beam-opacity, 0.16);
      transform: translateX(-8%);
      animation: ambient-beam-shift 16s ease-in-out infinite alternate;
    }

    .ambient-soft {
      --ambient-dots-opacity: 0.34;
      --ambient-glow-opacity: 0.2;
      --ambient-beam-opacity: 0.1;
    }

    .ambient-medium {
      --ambient-dots-opacity: 0.48;
      --ambient-glow-opacity: 0.28;
      --ambient-beam-opacity: 0.16;
    }

    .ambient-strong {
      --ambient-dots-opacity: 0.62;
      --ambient-glow-opacity: 0.34;
      --ambient-beam-opacity: 0.2;
    }

    .ambient-process {
      --ambient-glow-x: 62%;
      --ambient-glow-y: 30%;
      --ambient-beam-opacity: 0.22;
    }

    .ambient-potential {
      --ambient-glow-x: 50%;
      --ambient-glow-y: 62%;
      --ambient-glow-opacity: 0.33;
    }

    .ambient-cta {
      --ambient-dots-opacity: 0.4;
      --ambient-glow-x: 50%;
      --ambient-glow-y: 56%;
      --ambient-glow-opacity: 0.3;
    }

    @keyframes ambient-drift {
      0% { transform: translate3d(-3%, -2%, 0) scale(1); }
      100% { transform: translate3d(3%, 2%, 0) scale(1.05); }
    }

    @keyframes ambient-beam-shift {
      0% { transform: translateX(-12%); opacity: calc(var(--ambient-beam-opacity, 0.16) * 0.86); }
      100% { transform: translateX(5%); opacity: var(--ambient-beam-opacity, 0.16); }
    }

    .section-divider {
      max-width: 1100px;
      margin: 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
    }

    /* ─── H2 ─── */
    h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 20px;
    }
    h2 .accent { color: var(--green); }

    .section-intro {
      font-size: calc(16px * var(--ui-scale));
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 56px;
    }

    /* ─── 2×2 GRID ─── */
    .grid-2x2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 48px;
    }

    .grid-card {
      background: var(--surface);
      padding: 32px 28px;
      transition: background 0.2s;
    }
    .grid-card:hover { background: var(--surface2); }

    .grid-card-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 16px;
      color: var(--green);
      opacity: 0.85;
    }

    .grid-card-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
      margin-bottom: 10px;
    }

    .grid-card-desc {
      font-size: calc(14px * var(--ui-scale));
      color: var(--muted);
      line-height: 1.65;
    }

    .conclusion-line {
      text-align: center;
      margin-top: 48px;
      color: var(--green);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(18px, 2.2vw, 22px);
      letter-spacing: -0.01em;
      line-height: 1.4;
    }

    /* ─── DEUX COLONNES ─── */
    .two-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 48px;
    }

    .col-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 28px;
    }

    .col-card-top {
      height: 3px;
      border-radius: 2px 2px 0 0;
      margin: -32px -28px 28px;
      border-radius: 14px 14px 0 0;
    }
    .col-card-top.green { background: var(--green); }
    .col-card-top.gray { background: rgba(255,255,255,0.15); }
    .col-card-top.red { background: var(--red); }

    .col-card-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 20px;
      color: var(--text);
    }

    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: calc(14px * var(--ui-scale));
      line-height: 1.55;
    }

    .check-icon {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      margin-top: 2px;
    }
    .check-icon.green { color: var(--green); }
    .check-icon.gray { color: var(--muted2); }
    .check-icon.red { color: var(--red); }

    /* ─── TIMELINE ─── */
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 48px;
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 19px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, var(--green) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    }

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

    .timeline-num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .timeline-content {
      padding-top: 8px;
    }

    .timeline-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 17px;
      color: var(--text);
      margin-bottom: 8px;
    }

    .timeline-desc {
      font-size: calc(14px * var(--ui-scale));
      color: var(--muted);
      line-height: 1.65;
      max-width: 560px;
    }

    /* ─── PROOF CARD ─── */
    .proof-card {
      background: var(--surface);
      border: 1px solid rgba(var(--primary-rgb), 0.12);
      border-radius: 16px;
      padding: 48px 56px;
      text-align: center;
      margin-top: 48px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      overflow: hidden;
    }
    .proof-card::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 200px;
      background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .proof-text {
      font-family: var(--font-body);
      font-size: calc(20px * var(--ui-scale));
      line-height: 1.65;
      color: rgba(255,255,255,0.8);
      margin-bottom: 28px;
    }

    .proof-number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 36px;
      color: var(--green);
      letter-spacing: -0.02em;
    }

    .proof-label {
      display: block;
      font-size: calc(10px * var(--ui-scale));
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted2);
      margin-top: 20px;
    }

    .proof-after {
      text-align: center;
      margin-top: 32px;
      font-size: calc(15px * var(--ui-scale));
      color: var(--muted);
      line-height: 1.65;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .green-link {
      color: var(--green);
      text-decoration: none;
      font-weight: 500;
    }
    .green-link:hover { text-decoration: underline; }

    /* ─── ROI CALCULATOR ─── */
    .calc-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
      align-items: start;
    }

    .calc-sliders {
      display: flex;
      flex-direction: column;
      gap: 32px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 28px;
    }

    .slider-group label {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: calc(13px * var(--ui-scale));
      color: var(--muted);
      margin-bottom: 12px;
    }

    .slider-val {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: calc(18px * var(--ui-scale));
      color: var(--green);
    }

    input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      height: 2px;
      background: var(--border);
      border-radius: 2px;
      outline: none;
      cursor: pointer;
    }
    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green);
      cursor: pointer;
      border: 2px solid var(--bg);
      box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4);
    }

    .calc-result {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .calc-big {
      text-align: center;
    }

    .calc-big-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(36px, 5vw, 52px);
      color: var(--green);
      letter-spacing: -0.03em;
      line-height: 1;
      display: block;
    }

    .calc-big-label {
      font-size: calc(13px * var(--ui-scale));
      color: var(--muted);
      margin-top: 6px;
      display: block;
    }

    .calc-breakdown {
      background: var(--bg);
      border: 1px solid var(--border-soft);
      border-radius: 8px;
      padding: 16px 18px;
      font-family: 'Courier New', monospace;
      font-size: calc(12px * var(--ui-scale));
      color: var(--muted);
      line-height: 1.9;
    }

    .calc-breakdown span { color: var(--green); }
    .calc-roi-copy {
      background: var(--bg);
      border: 1px solid var(--border-soft);
      border-radius: 8px;
      padding: 12px 14px;
      margin: 0;
      font-size: calc(12px * var(--ui-scale));
      line-height: 1.65;
      color: var(--muted);
    }
    .calc-roi-copy strong { color: var(--text); font-weight: 600; }

    /* ─── FUNNEL ─── */
    .funnel-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .funnel-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .funnel-bar {
      height: 38px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      font-size: calc(12px * var(--ui-scale));
      transition: width 0.3s ease;
    }

    .funnel-bar.f1 { background: #17264a; color: rgba(255,255,255,0.5); width: 100%; }
    .funnel-bar.f2 { background: #1e3261; color: rgba(255,255,255,0.55); width: 72%; }
    .funnel-bar.f3 { background: #28407a; color: rgba(255,255,255,0.65); width: 48%; }
    .funnel-bar.f4 { background: var(--green); color: #fff; width: 36%; font-weight: 600; min-width: 180px; }

    .funnel-label { font-size: calc(11px * var(--ui-scale)); }
    .funnel-note {
      font-size: calc(10px * var(--ui-scale));
      color: var(--muted2);
      text-align: center;
      margin-top: 12px;
      font-style: italic;
    }

    /* ─── CTA SECTION ─── */
    #cta {
      text-align: center;
      padding: 96px 40px;
      max-width: 900px;
      margin: 0 auto;
    }

    #cta h2 { margin-bottom: 16px; }
    #cta .section-intro { margin: 0 auto 48px; text-align: center; }

    .calendly-card {
      background: transparent;
      border: 0;
      border-radius: 0;
      overflow: visible;
      padding: 0;
    }

    .calendly-inline-widget {
      min-width: 320px;
      height: 710px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: #141414;
      box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03) inset;
    }

    .calendly-inline-widget iframe {
      border: 0;
    }

    .calendly-note {
      margin-top: 20px;
      font-size: calc(12px * var(--ui-scale));
      color: var(--muted2);
      letter-spacing: 0.06em;
    }

    /* ─── SOFT EXIT ─── */
    .soft-exit {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 64px 40px;
      text-align: center;
    }

    .soft-exit p {
      font-size: calc(16px * var(--ui-scale));
      color: var(--muted);
      max-width: 540px;
      margin: 0 auto 20px;
      line-height: 1.7;
    }

    /* ─── FOOTER ─── */
    footer {
      padding: 32px 40px;
      text-align: center;
      font-size: calc(12px * var(--ui-scale));
      color: var(--muted2);
      letter-spacing: 0.04em;
    }

    /* ─── SCRAMBLE ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInOpacity {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .hero-inner > * {
      animation: fadeInUp 0.6s ease both;
    }
    .hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
    .hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
    .hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
    .hero-inner > *:nth-child(5) { animation-delay: 0.5s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .navbar { padding: 0 20px; }
      section { padding: 64px 20px; }
      .grid-2x2 { grid-template-columns: 1fr; }
      .two-cols { grid-template-columns: 1fr; }
      .calc-wrapper { grid-template-columns: 1fr; }
      .proof-card { padding: 32px 24px; }
      .funnel-bar.f2 { width: 85%; }
      .funnel-bar.f3 { width: 65%; }
      .funnel-bar.f4 { width: 48%; }
      h2 { font-size: 28px; }
      .hero-h1, .hero-h1-sub { font-size: 38px; }
      .hero-glow { display: none; }
      .hero {
        background-image: radial-gradient(circle at 50% 16%, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.03) 34%, transparent 70%);
      }
      .hero-dots {
        opacity: 0.52;
        background-size: 22px 22px, 22px 22px;
      }
      .hero-inner > * {
        animation: fadeInOpacity 0.34s ease both;
        will-change: opacity;
      }
      .hero-inner > *:nth-child(1) { animation-delay: 0.03s; }
      .hero-inner > *:nth-child(2) { animation-delay: 0.07s; }
      .hero-inner > *:nth-child(3) { animation-delay: 0.11s; }
      .hero-inner > *:nth-child(4) { animation-delay: 0.15s; }
      .hero-inner > *:nth-child(5) { animation-delay: 0.19s; }
      .soft-exit { padding: 48px 20px; }
      .ambient-soft {
        --ambient-dots-opacity: 0.33;
        --ambient-glow-opacity: 0.16;
        --ambient-beam-opacity: 0.08;
      }
      .ambient-medium {
        --ambient-dots-opacity: 0.42;
        --ambient-glow-opacity: 0.22;
        --ambient-beam-opacity: 0.12;
      }
      .ambient-strong {
        --ambient-dots-opacity: 0.5;
        --ambient-glow-opacity: 0.26;
        --ambient-beam-opacity: 0.16;
      }
      .ambient-beam { display: none; }
      .calendly-inline-widget { height: 680px; }
    }

    @media (max-width: 480px) {
      .announce { font-size: calc(10px * var(--ui-scale)); letter-spacing: 0.06em; }
      .nav-logo { font-size: 16px; }
      .nav-cta { padding: 8px 14px; font-size: calc(12px * var(--ui-scale)); }
      .calendly-inline-widget { height: 640px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .ambient-glow,
      .ambient-beam {
        animation: none;
      }
      .hero-inner > * {
        animation: none;
      }
    }

    /* ── FRAMER-STYLE VISUAL UPGRADES ── */

    /* Ambient multi-point glow on body */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        radial-gradient(circle at 75% 5%, rgba(var(--primary-rgb), 0.018) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(var(--primary-rgb), 0.01) 0%, transparent 35%);
      pointer-events: none;
      z-index: 0;
    }

    /* Nav CTA — neon glow */
    .nav-cta {
      box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.07);
    }
    .nav-cta:hover {
      box-shadow: 0 0 14px rgba(var(--primary-rgb), 0.14) !important;
    }

    /* Section label accent bar glow */
    .section-label::before {
      box-shadow: 0 0 6px rgba(var(--primary-rgb), 0.3);
    }

    /* Cards — border glow on hover */
    .proof-card, .process-card, .col-card {
      transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .proof-card:hover {
      box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.1), 0 4px 24px rgba(0,0,0,0.35);
      border-color: rgba(var(--primary-rgb), 0.1) !important;
    }

    /* Process card active border */
    .process-card {
      position: relative;
    }
    .process-num {
      box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
    }

    /* Hero CTA — subtle glow */
    .hero-cta {
      box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.1), 0 0 28px rgba(var(--primary-rgb), 0.03) !important;
    }
    .hero-cta:hover {
      box-shadow: 0 0 18px rgba(var(--primary-rgb), 0.16), 0 0 40px rgba(var(--primary-rgb), 0.05) !important;
    }

    /* Funnel bars — gradient approach */
    .funnel-bar.f4 {
      box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.25);
    }

    /* Soft exit — subtle top border glow */
    .soft-exit {
      border-top: 1px solid rgba(var(--primary-rgb), 0.1) !important;
      background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.02), transparent 60%) !important;
    }

    /* Calc result big number — glow */
    .calc-big-num {
      text-shadow: 0 0 32px rgba(var(--primary-rgb), 0.2);
    }

    /* ─── FAQ ─── */
    .faq-list {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 40px;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      width: 100%;
      background: var(--surface);
      border: none;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
      text-align: left;
      transition: background 0.15s;
    }
    .faq-q:hover { background: var(--surface2); }
    .faq-q.open { color: var(--green); background: var(--surface2); }
    .faq-arrow {
      flex-shrink: 0;
      width: 18px; height: 18px;
      color: var(--muted);
      transition: transform 0.2s ease;
    }
    .faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--green); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--surface);
    }
    .faq-a.open {
      max-height: 220px;
    }
    .faq-a p {
      font-size: calc(14px * var(--ui-scale));
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
      padding: 4px 24px 22px;
    }

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