    /* ── Brand Tokens ─────────────────────────────────────── */
    :root {
      --teal:       #1e9c81;
      --teal-light: #25b898;
      --teal-dark:  #167362;
      --blue:       #267eae;
      --blue-light: #2d94cc;
      --charcoal:   #2B2B2B;
      --light-grey: #EFEFEF;
      --white:      #FFFFFF;

      --bg:         #f7f9f8;
      --surface:    #ffffff;
      --border:     rgba(30, 156, 129, 0.18);
      --muted:      #6b7c78;
      --body-text:  #444f4c;

      --radius-sm:  8px;
      --radius-md:  50px;   /* full pill for buttons */
      --shadow:     0 4px 24px rgba(30,156,129,0.10);
      --shadow-lg:  0 12px 48px rgba(30,156,129,0.16);
    }

    /* ── Reset ────────────────────────────────────────────── */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      color: var(--charcoal);
      background: var(--bg);
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ── Background canvas ───────────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: -2;
      background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(38,126,174,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 100%, rgba(30,156,129,0.10) 0%, transparent 60%),
        #f0f4f3;
    }

    /* subtle dot grid */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: -1;
      background-image: radial-gradient(circle, rgba(30,156,129,0.09) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* ── Nav ─────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(20px, 5vw, 64px);
      height: 68px;
      background: rgba(240,244,243,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: var(--charcoal);
      letter-spacing: -0.01em;
    }

    .nav-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--blue));
    }

    .nav-tag {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ── Layout wrapper ──────────────────────────────────── */
    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 64px);
    }

    /* ── Hero ────────────────────────────────────────────── */
    .hero {
      padding: clamp(120px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
    }

    .hero-left { display: flex; flex-direction: column; gap: 0; }

    .eyebrow {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 32px;
      animation: fadeUp 0.6s ease both 0.1s;
    }

    .ey-line {
      width: 32px; height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--blue));
      border-radius: 2px;
    }

    .ey-text {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
    }

    .hero-hed {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(42px, 6vw, 76px);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--charcoal);
      margin-bottom: 28px;
      animation: fadeUp 0.7s ease both 0.2s;
    }

    .hero-hed .l2 {
      color: var(--teal);
      font-style: italic;
      display: block;
    }
    .hero-hed .l1, .hero-hed .l3 { display: block; }

    .hero-deck {
      font-family: 'Lato', sans-serif;
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 300;
      line-height: 1.8;
      color: var(--body-text);
      max-width: 520px;
      margin-bottom: 28px;
      animation: fadeUp 0.7s ease both 0.32s;
    }

    .hero-deck strong { font-weight: 700; color: var(--teal); }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      margin-bottom: 44px;
      animation: fadeUp 0.7s ease both 0.42s;
    }

    .hm {
      font-family: 'Lato', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex; align-items: center; gap: 7px;
    }

    .hm::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.5;
    }

    .cta-row {
      display: flex; align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeUp 0.7s ease both 0.52s;
    }

    /* ── Buttons ─────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.22s ease;
    }

    .btn-g {
      background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(30,156,129,0.35);
    }

    .btn-g:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(30,156,129,0.45);
    }

    .btn-o {
      background: transparent;
      color: var(--teal);
      border: 2px solid var(--teal);
    }

    .btn-o:hover {
      background: var(--teal);
      color: var(--white);
      transform: translateY(-2px);
    }

    .cta-note {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    /* ── Hero visual card ────────────────────────────────── */
    .hero-visual {
      animation: fadeLeft 0.9s ease both 0.3s;
      position: relative;
    }

    .viz-card {
      background: var(--surface);
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      padding: 32px;
    }

    .viz-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 20px;
    }

    .viz-bars { display: flex; flex-direction: column; gap: 12px; }

    .viz-row { display: flex; flex-direction: column; gap: 5px; }

    .viz-label {
      display: flex; justify-content: space-between;
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: var(--muted);
    }

    .viz-label span:last-child { font-weight: 700; color: var(--charcoal); }

    .bar-track {
      height: 8px;
      background: var(--light-grey);
      border-radius: 99px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--teal), var(--blue));
      animation: growBar 1.2s ease both;
    }

    @keyframes growBar {
      from { width: 0 !important; }
    }

    .viz-divider { height: 1px; background: var(--border); margin: 20px 0; }

    .viz-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .viz-stat {
      background: linear-gradient(135deg, rgba(30,156,129,0.06), rgba(38,126,174,0.06));
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      border: 1px solid rgba(30,156,129,0.1);
    }

    .viz-stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: var(--teal);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .viz-stat-lbl {
      font-family: 'Lato', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    .viz-badge {
      position: absolute;
      top: -14px; right: -14px;
      background: linear-gradient(135deg, var(--teal), var(--blue));
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 99px;
      box-shadow: 0 4px 16px rgba(30,156,129,0.4);
    }

    /* ── Section divider ─────────────────────────────────── */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--teal) 30%, var(--blue) 70%, transparent);
      opacity: 0.25;
      margin: 0;
    }

    /* ── Form section ────────────────────────────────────── */
    .form-section {
      padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
    }

    .form-section-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }

    .form-intro { padding-top: 12px; }

    .section-label {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }

    .form-intro h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--charcoal);
      margin-bottom: 20px;
    }

    .form-intro p {
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      line-height: 1.75;
      color: var(--body-text);
      margin-bottom: 32px;
    }

    .trust-items { display: flex; flex-direction: column; gap: 12px; }

    .trust-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: var(--body-text);
      line-height: 1.5;
    }

    .trust-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(30,156,129,0.12), rgba(38,126,174,0.12));
      border: 1px solid rgba(30,156,129,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── Form card ───────────────────────────────────────── */
    .fcard {
      background: var(--surface);
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      padding: clamp(28px, 4vw, 48px);
      position: relative;
      overflow: hidden;
    }

    .fcard::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--blue));
    }

    .fcard-head {
      margin-bottom: 28px;
    }

    .fcard-head h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--charcoal);
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    .fcard-head p {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: var(--muted);
    }

    /* ── Form fields ─────────────────────────────────────── */
    .fr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .ff {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 0;
    }

    .ff-single { margin-bottom: 14px; }

    label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--charcoal);
    }

    label .opt {
      font-weight: 400;
      color: var(--muted);
      font-size: 9px;
      letter-spacing: 0;
      text-transform: none;
      font-family: 'Lato', sans-serif;
    }

    input, select {
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      color: var(--charcoal);
      background: var(--light-grey);
      border: 1.5px solid transparent;
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      width: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }

    input::placeholder { color: #a8b2ae; }

    input:focus, select:focus {
      border-color: var(--teal);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(30,156,129,0.12);
    }

    .sw { position: relative; }

    .sw::after {
      content: '▾';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      color: var(--muted);
      pointer-events: none;
    }

    /* ── Submit button ───────────────────────────────────── */
    .fsub-btn {
      width: 100%;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
      border: none;
      border-radius: var(--radius-md);
      padding: 18px 32px;
      cursor: pointer;
      margin-top: 8px;
      box-shadow: 0 6px 24px rgba(30,156,129,0.35);
      transition: all 0.22s ease;
    }

    .fsub-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(30,156,129,0.5);
    }

    .fsub-btn:active { transform: translateY(0); }

    .fsub-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    .fprivacy {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      margin-top: 16px;
      line-height: 1.6;
    }

    /* ── Success state ───────────────────────────────────── */
    .success {
      display: none;
      text-align: center;
      padding: clamp(40px, 6vw, 72px) 24px;
      animation: popIn 0.5s cubic-bezier(.34,1.56,.64,1) both;
    }

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.9); }
      to   { opacity: 1; transform: scale(1); }
    }

    .sico {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--blue));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 8px 32px rgba(30,156,129,0.4);
    }

    .sico svg { width: 32px; height: 32px; }

    .stitle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 800;
      color: var(--charcoal);
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .stitle span { color: var(--teal); }

    .sbody {
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      color: var(--body-text);
      line-height: 1.8;
      max-width: 400px;
      margin: 0 auto 32px;
    }

    .success-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      text-align: left;
      margin-bottom: 28px;
    }

    .sd-item {
      background: linear-gradient(135deg, rgba(30,156,129,0.06), rgba(38,126,174,0.06));
      border-radius: var(--radius-sm);
      border: 1px solid rgba(30,156,129,0.12);
      padding: 14px 16px;
    }

    .sd-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--teal);
      letter-spacing: -0.02em;
    }

    .sd-lbl {
      font-family: 'Lato', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 2px;
    }

    .linkedin-btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: white;
      background: var(--blue);
      border-radius: var(--radius-md);
      padding: 14px 28px;
      text-decoration: none;
      transition: all 0.22s;
      box-shadow: 0 4px 16px rgba(38,126,174,0.35);
    }

    .linkedin-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(38,126,174,0.45);
    }

    /* ── Error state ─────────────────────────────────────── */
    .form-error {
      display: none;
      background: rgba(220,53,69,0.08);
      border: 1px solid rgba(220,53,69,0.25);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: #c0392b;
      margin-bottom: 14px;
    }

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

    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(32px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
        gap: 48px;
      }

      .hero-visual { order: -1; display: none; }

      .viz-badge { top: -10px; right: -10px; }

      .form-section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 600px) {
      .fr {
        grid-template-columns: 1fr;
      }

      .success-details {
        grid-template-columns: 1fr 1fr;
      }

      .nav-tag { display: none; }

      .hero-meta { gap: 8px 16px; }
    }

    @media (max-width: 400px) {
      .success-details { grid-template-columns: 1fr; }
    }