/* ---- Brand display font: PP Fragment (Sybill). Headings use Serif Regular. ---- */
@font-face {
  font-family: "PP Fragment";
  src: url("../fonts/PPFragment-SerifRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Fragment";
  src: url("../fonts/PPFragment-SerifExtraBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    /* clean SaaS light tokens */
    --bg: #ffffff;
    --section: #f7f8fa;
    --ink: #0b1220;
    --ink-soft: #1f2937;
    --muted: #4b5563;
    --faint: #6b7280;
    --accent: #0b68ff;
    --accent-hover: #0a5ae0;
    --accent-soft: rgba(11,104,255,.08);
    --card: #ffffff;
    --card-border: #e6e8ec;
    --card-shadow: 0 1px 2px rgba(16,24,40,.04), 0 14px 34px -18px rgba(16,24,40,.16);
    --field: #f4f6f8;
    --field-focus: rgba(11,104,255,.16);
    --hairline: #eaecef;
    --pill-bg: #ffffff;
    --pill-border: #e6e8ec;
    --gold: #f5a623;
    --ok: #099268;
    --logo-ink: #101828;

    --sans: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",system-ui,sans-serif;
    --serif: "PP Fragment", Georgia, "Times New Roman", serif;

    /* spacing rhythm (marketing-page scale) */
    --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px; --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px;
  }

  /* Light-only: keep the page bright even if the viewer's OS/toggle is dark. */
  :root[data-theme="dark"], :root[data-theme="light"] {
    --bg:#ffffff;--section:#f7f8fa;--ink:#0b1220;--ink-soft:#1f2937;--muted:#4b5563;--faint:#6b7280;
    --accent:#0b68ff;--accent-hover:#0a5ae0;--accent-soft:rgba(11,104,255,.08);--card:#ffffff;--card-border:#e6e8ec;
    --card-shadow:0 1px 2px rgba(16,24,40,.04),0 14px 34px -18px rgba(16,24,40,.16);
    --field:#f4f6f8;--field-focus:rgba(11,104,255,.16);--hairline:#eaecef;
    --pill-bg:#ffffff;--pill-border:#e6e8ec;--gold:#f5a623;--ok:#099268;--logo-ink:#101828;
  }

  * { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink-soft);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--accent-soft); }

  .page { position: relative; overflow: hidden; }
  .wash {
    position: absolute; inset: 0; height: 760px; z-index: 0; pointer-events: none;
    background: radial-gradient(900px 460px at 88% -6%, rgba(11,104,255,.07), transparent 62%);
  }
  .container { position: relative; z-index: 1; width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

  /* ---------- Nav ---------- */
  header.nav { position: relative; z-index: 2; border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,.7); backdrop-filter: blur(8px); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
  .brand svg { display: block; }
  .brand-logo { height: 30px; width: auto; display: block; }
  .brand span { font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
  .nav-links { display: flex; align-items: center; gap: 26px; }
  .nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; opacity: 0.85; }
  .nav-links a:hover { opacity: 1; color: var(--accent); }
  .nav-links .chev::after { content: "▾"; font-size: 10px; margin-left: 5px; opacity: 0.55; }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .nav-login { color: var(--ink); font-weight: 600; text-decoration: none; font-size: 15px; }
  .btn {
    font-family: var(--sans); font-weight: 600; font-size: 15px; cursor: pointer;
    border: none; border-radius: 12px; padding: 11px 20px;
    background: var(--accent); color: #fff; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 6px 16px -8px rgba(11,104,255,0.55);
    touch-action: manipulation;
  }
  .btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(11,104,255,0.6); }
  .btn:active { transform: translateY(0); }
  .btn.ghost { background: transparent; color: var(--accent); box-shadow: none; border: 1.5px solid var(--accent); }
  .btn.ghost:hover { background: var(--accent-soft); box-shadow: none; }
  @media (max-width: 940px){ .nav-links { display: none; } }

  /* ---------- Hero ---------- */
  .hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: calc(100dvh - 64px); padding: 40px 0; }
  .hero-left, .form-col { min-width: 0; }
  @media (max-width: 940px){ .hero { grid-template-columns: 1fr; gap: 40px; padding: 28px 0 56px; min-height: auto; align-items: start; } }

  /* G2 rating bar (now top-left, above headline) */
  .ratebar { display: flex; align-items: center; justify-content: flex-start; gap: 9px; margin: 0 0 26px; flex-wrap: wrap; }
  .ratebar .g2 { width: 24px; height: 24px; border-radius: 50%; background: #ff492c; color: #fff;
    font-weight: 800; font-size: 12px; display: grid; place-items: center; flex: none; }
  .ratebar .stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; line-height: 1; }
  .ratebar .rtext { color: var(--muted); font-size: 13.5px; }
  .ratebar .rtext b { color: var(--ink); font-weight: 700; }

  h1.headline {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2.2rem, 4.9vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em;
    color: var(--ink); margin: 0; text-wrap: balance;
  }
  h1.headline .accent { color: var(--accent); display: block; }

  .lede { color: var(--muted); font-size: 17px; margin: 22px 0 0; max-width: 46ch; }

  /* impact stats — 2x2 grid */
  .impact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; margin: 36px 0 0; max-width: 520px; }
  .impact b { font-family: var(--sans); font-weight: 800; font-size: clamp(1.4rem, 2.7vw, 1.75rem); color: #155EEF; display: block; line-height: 1.02; letter-spacing: -0.03em; }
  .impact span { font-size: 12.5px; color: var(--muted); display: block; margin-top: 5px; line-height: 1.35; max-width: 22ch; }
  @media (max-width: 420px){ .impact { gap: 16px 20px; } }

  /* hero quotes — 1–2 strongest, static (no marquee) */
  .hquotes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0 0; max-width: 600px; }
  @media (max-width: 1080px){ .hquotes { grid-template-columns: 1fr; } }
  .hq { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: 22px 20px 20px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04); display: flex; flex-direction: column; }
  .hq .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; line-height: 1; }
  .hq p { margin: 12px 0 18px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
  .hq .who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
  .hq .av { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 12.5px; box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--accent-soft); }
  .hq .who b { display: block; font-size: 13px; color: var(--ink); line-height: 1.25; }
  .hq .who small { color: var(--faint); font-size: 12px; }

  /* ---------- Form side ---------- */
  .trusted { margin: 0 0 20px; }
  .trusted-label { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--faint); text-align: center; margin: 0 0 14px; }
  .logobar { position: relative; overflow: hidden; width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .logobar-track { display: flex; gap: 40px; width: max-content; align-items: center; animation: marquee 34s linear infinite; will-change: transform; }
  .logobar:hover .logobar-track { animation-play-state: paused; }
  .logobar span { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--logo-ink); opacity: 0.42; white-space: nowrap; }
  /* real logos, normalized to dark gray */
  .logobar-track img { height: 26px; width: auto; flex: none; display: block;
    filter: grayscale(100%) brightness(0) invert(28%); opacity: .72; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce){ .logobar { overflow-x: auto; } .logobar-track { animation: none; } }

  /* trusted-by rotating marquee (in hero-left, under the stats) */
  .herologos { margin: 44px 0 0; max-width: 520px; }
  .herologos-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--faint); margin: 0 0 12px; }
  .herologos .logobar span { font-size: 15px; opacity: 0.4; }

  .card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 20px; box-shadow: var(--card-shadow); padding: 30px;
  }
  .card-head { margin: 0 0 14px; text-align: left; }
  .card-head h2 { font-family: var(--serif); font-weight: 400; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
  .card-head p { margin: 0; color: var(--faint); font-size: 13.5px; }

  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 7px; margin-top: 18px; }
  .field:first-child, .field-row .field { margin-top: 0; }
  .field-row { margin-top: 0; }
  form > .field:not(:first-of-type), form > .field-row + .field { margin-top: 18px; }
  label { font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.01em; }
  label .req { color: var(--accent); margin-left: 2px; }
  input, select, textarea {
    font-family: var(--sans); font-size: 15px; color: var(--ink-soft);
    background: var(--field); border: 1px solid var(--card-border); border-radius: 10px;
    padding: 12px 14px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  }
  input::placeholder, textarea::placeholder { color: var(--faint); }
  select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
  textarea { resize: vertical; min-height: 78px; }
  input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--field-focus); background: var(--card); }
  input:focus-visible, select:focus-visible, textarea:focus-visible, .btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
  .field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229,72,77,0.14); }
  .err { color: #c62d32; font-size: 12.5px; display: none; }
  .field.invalid .err { display: block; }

  /* ---------- HubSpot form, restyled to match the design system ---------- */
  #hs-demo-form .hs-form-field { margin-bottom: 18px; }
  #hs-demo-form label { display: block; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; letter-spacing: .01em; }
  #hs-demo-form .hs-form-required { color: var(--accent); margin-left: 2px; }
  #hs-demo-form input[type="text"],
  #hs-demo-form input[type="email"],
  #hs-demo-form input[type="tel"],
  #hs-demo-form select,
  #hs-demo-form textarea {
    font-family: var(--sans); font-size: 15px; color: var(--ink-soft);
    background: var(--field); border: 1px solid var(--card-border); border-radius: 10px;
    padding: 12px 14px; width: 100%; box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  }
  #hs-demo-form textarea { min-height: 78px; resize: vertical; }
  #hs-demo-form input:focus, #hs-demo-form select:focus, #hs-demo-form textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--field-focus); background: var(--card);
  }
  #hs-demo-form .hs-submit, #hs-demo-form .hs-submit .actions,
  #hs-demo-form .hs_submit, #hs-demo-form .hs_submit .actions { text-align: left !important; padding: 0; margin: 0; display: block; }
  #hs-demo-form .hs-submit .actions input, #hs-demo-form .hs_submit .actions input { margin-left: 0 !important; margin-right: auto !important; float: none !important; }
  #hs-demo-form input[type="submit"], #hs-demo-form .hs-button {
    font-family: var(--sans); font-weight: 600; font-size: 16px; cursor: pointer;
    border: none; border-radius: 12px; padding: 14px 30px; width: auto; margin-top: 6px;
    background: var(--accent); color: #fff;
    box-shadow: 0 6px 16px -8px rgba(11,104,255,.55);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  }
  #hs-demo-form input[type="submit"]:hover, #hs-demo-form .hs-button:hover {
    background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(11,104,255,.6);
  }
  #hs-demo-form ul.hs-error-msgs { list-style: none; padding: 0; margin: 6px 0 0; }
  #hs-demo-form .hs-error-msg, #hs-demo-form .hs-error-msgs label { color: #c62d32; font-size: 12.5px; font-weight: 500; }
  #hs-demo-form .hs-form-booleancheckbox label { display: flex; gap: 8px; align-items: flex-start; font-weight: 400; font-size: 13px; color: var(--muted); }
  #hs-demo-form .inputs-list { list-style: none; padding: 0; margin: 0; }
  #hs-demo-form .hs-richtext { font-size: 12.5px; color: var(--faint); line-height: 1.5; }
  #hs-demo-form .submitted-message { font-size: 15px; color: var(--ink-soft); text-align: center; padding: 20px 0; }
  @media (min-width: 520px){
    #hs-demo-form .form-columns-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    #hs-demo-form .form-columns-2 .hs-form-field { width: 100% !important; float: none; }
    #hs-demo-form .form-columns-2 .input { margin-right: 0 !important; }
  }
  #hs-demo-form .form-columns-1 .input, #hs-demo-form .form-columns-2 .input { margin-right: 0 !important; }
  #hs-demo-form .hs-form-field > .input { margin-right: 0 !important; }

  .submit-wrap { display: flex; margin-top: 24px; }
  .submit-wrap .btn { width: 100%; text-align: center; padding: 14px 30px; font-size: 16px; }

  /* trust / security badges beside the form */
  .secbar { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 16px 0 0; }
  .secbar .sb { display: inline-flex; align-items: center; gap: 7px; color: var(--faint); font-size: 12.5px; font-weight: 600; }
  .secbar .sb svg { color: var(--ok); flex: none; }
  .form-note { text-align: center; color: var(--faint); font-size: 12.5px; margin: 14px 0 0; }

  /* ---------- Problem / reframe (objection-based, earns the scroll) ---------- */
  .reframe { background: var(--section); border-top: 1px solid var(--hairline); }
  .reframe-inner { padding: 88px 0; }
  .reframe .kicker { display: block; text-align: center; }
  .reframe-h { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.5rem); letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); text-align: center; margin: 0 auto 18px; max-width: 22ch; }
  .reframe-lede { text-align: center; color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 62ch; margin: 0 auto 50px; }
  .reframe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 980px; margin: 0 auto; }
  @media (max-width: 820px){ .reframe-grid { grid-template-columns: 1fr; gap: 22px; } }
  .rf { padding-top: 18px; border-top: 2px solid var(--accent-soft); }
  .rf h3 { font-family: var(--sans); font-weight: 700; font-size: 16px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
  .rf p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

  /* ---------- Product showcase ("what you'll see") ---------- */
  .showcase { border-top: 1px solid var(--hairline); background: var(--bg); position: relative; overflow: hidden; }
  .showcase-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; padding: 84px 0; }
  @media (max-width: 900px){ .showcase-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; } }
  .kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
  .showcase-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3.2vw, 2.2rem); letter-spacing: -0.03em; color: var(--ink); margin: 0 0 14px; line-height: 1.08; }
  .showcase-copy > p { color: var(--muted); font-size: 17px; margin: 0 0 26px; max-width: 42ch; }
  .showcase-points { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 18px; }
  .showcase-points li { display: flex; gap: 13px; align-items: flex-start; }
  .showcase-points .pi { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
  .showcase-points b { display: block; font-size: 15px; color: var(--ink); }
  .showcase-points p { margin: 2px 0 0; font-size: 14px; color: var(--muted); }
  .showcase-cta { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: none; transition: gap .18s ease; }
  .showcase-cta:hover { gap: 11px; }

  .showcase-visual { position: relative; }
  .showcase-visual::before { content: ""; position: absolute; inset: -10% -4% -10% 8%; z-index: 0;
    background: radial-gradient(58% 58% at 68% 32%, rgba(11,104,255,.16), transparent 70%); }
  .mock { position: relative; z-index: 1; background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
    box-shadow: 0 26px 60px -30px rgba(16,24,40,.5), 0 2px 6px rgba(16,24,40,.06); overflow: hidden; }
  .mock-top { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--hairline); background: #fbfcfe; }
  .mock-top .rec { width: 9px; height: 9px; border-radius: 50%; background: #ff4d4f; box-shadow: 0 0 0 3px rgba(255,77,79,.18); flex: none; }
  .mock-top b { font-size: 13.5px; color: var(--ink); }
  .mock-top small { color: var(--faint); font-size: 12px; }
  .mock-top .dur { margin-left: auto; font-size: 12px; color: var(--faint); }
  .mock-body { padding: 18px; display: flex; flex-direction: column; gap: 18px; }
  .mock-label { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); margin: 0 0 11px; }
  .mock-label svg { color: var(--accent); }
  .mock-sum { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .mock-sum li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
  .mock-sum li svg { color: var(--accent); flex: none; margin-top: 1px; }
  .mock-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .mock-field { border: 1px solid var(--card-border); border-radius: 10px; padding: 9px 11px; background: var(--field); }
  .mock-field span { display: block; font-size: 10px; color: var(--faint); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2px; }
  .mock-field b { font-size: 13px; color: var(--ink); font-weight: 600; }
  .mock-shared { display: flex; align-items: center; gap: 9px; padding-top: 2px; }
  .mock-shared .avs { display: flex; }
  .mock-shared .avs span { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; margin-left: -7px; display: grid; place-items: center; color: #fff; font-size: 10px; font-weight: 700; }
  .mock-shared .avs span:first-child { margin-left: 0; }
  .mock-shared small { color: var(--faint); font-size: 12.5px; }

  /* ===== Solutions page: hero + feature rows + screenshot slots ===== */
  .sol-hero { border-bottom: 1px solid var(--hairline); }
  .sol-hero-inner { padding: 72px 0 0; text-align: center; }
  .sol-h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); margin: 10px auto 0; max-width: 16ch; }
  .sol-sub { color: var(--muted); font-size: 19px; line-height: 1.6; max-width: 60ch; margin: 20px auto 0; }
  .sol-cta { margin: 28px 0 48px; }
  .sol-cta .btn { padding: 14px 28px; font-size: 16px; }
  .shot { border: 1px dashed var(--card-border); background: linear-gradient(180deg,#f7f9fc,#eaeff7); border-radius: 16px; display: grid; place-items: center; color: var(--faint); font-size: 13px; text-align: center; min-height: 260px; overflow: hidden; box-shadow: 0 24px 60px -34px rgba(16,24,40,.5); }
  .shot img { width: 100%; height: auto; display: block; }
  .shot-label { padding: 0 24px; line-height: 1.7; }
  .shot-label code { background: var(--card); border: 1px solid var(--card-border); border-radius: 6px; padding: 1px 6px; font-size: 12px; color: var(--ink-soft); }
  .shot-hero { max-width: 960px; margin: 0 auto; min-height: 380px; border-radius: 18px 18px 0 0; box-shadow: 0 40px 80px -40px rgba(16,24,40,.5); }
  .features .container { padding-top: 34px; padding-bottom: 34px; }
  .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 46px 0; }
  .feature-row.reverse .feature-copy { order: 2; }
  @media (max-width: 820px){ .feature-row { grid-template-columns: 1fr; gap: 28px; } .feature-row.reverse .feature-copy { order: 0; } }
  .feature-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); margin: 8px 0 0; }
  .feature-copy p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 14px 0 0; max-width: 44ch; }

  /* ===== shared section header ===== */
  .sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
  .sec-head .kicker { display: inline-block; }
  .sec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.5rem); letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); margin: 6px 0 0; }
  .sec-head p { color: var(--muted); font-size: 18px; line-height: 1.6; margin: 16px 0 0; }

  /* ===== Differentiator (notetakers vs Gong vs Sybill) ===== */
  .contrast { background: var(--bg); border-top: 1px solid var(--hairline); }
  .contrast-inner { padding: 88px 0 140px; }
  .contrast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
  @media (max-width: 860px){ .contrast-grid { grid-template-columns: 1fr; } }
  .cx { border: 1px solid var(--card-border); border-radius: 16px; padding: 26px 24px; background: var(--card); display: flex; flex-direction: column; }
  .cx.them { background: var(--section); }
  .cx.us { border-color: var(--accent); box-shadow: 0 20px 44px -26px rgba(11,104,255,.55); }
  .cx-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--faint); margin: 0 0 8px; }
  .cx.us .cx-tag { color: var(--accent); }
  .cx h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; color: var(--ink); margin: 0 0 10px; letter-spacing: -0.01em; }
  .cx p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
  .cx-note { display: inline-block; margin-top: 16px; font-size: 12.5px; font-weight: 700; color: var(--faint); }
  .cx.us .cx-note { color: var(--accent); }

  /* ===== Capabilities (bento) ===== */
  .caps { background: var(--section); border-top: 1px solid var(--hairline); }
  .caps-inner { padding: 88px 0; }
  .caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
  @media (max-width: 900px){ .caps-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px){ .caps-grid { grid-template-columns: 1fr; } }
  .cap { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px; box-shadow: 0 1px 2px rgba(16,24,40,.04); transition: transform .18s ease, box-shadow .18s ease; }
  .cap:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(16,24,40,.3); }

  /* gallery cards that link to a Sybill product page */
  a.gcard { text-decoration: none; color: inherit; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
  a.gcard:hover { transform: translateY(-3px); border-color: var(--accent);
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 22px 46px -26px rgba(16,24,40,.45); }
  a.gcard:hover .gcard-body h3 { color: var(--accent); }
  a.gcard:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  .gcard-body h3 { transition: color .18s ease; }
  .cap-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
  .cap h3 { font-family: var(--sans); font-weight: 700; font-size: 16.5px; color: var(--ink); margin: 0 0 7px; letter-spacing: -0.01em; }
  .cap p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
  .caps-foot { text-align: center; color: var(--faint); font-size: 14px; margin: 30px auto 0; max-width: 620px; }
  .caps-foot b { color: var(--ink-soft); font-weight: 600; }

  /* ===== Personas ===== */
  .personas { background: var(--bg); border-top: 1px solid var(--hairline); }
  .personas-inner { padding: 88px 0; }
  .persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
  @media (max-width: 760px){ .persona-grid { grid-template-columns: 1fr; } }
  .persona { border: 1px solid var(--card-border); border-radius: 16px; padding: 26px; background: var(--card); box-shadow: 0 1px 2px rgba(16,24,40,.04); }
  .persona .role { font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
  .persona h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
  .persona p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

  /* ===== Results band (dark) ===== */
  .results { background: #0c1830; }
  .results-inner { padding: 108px 0; text-align: center; }
  .results h2 { font-family: var(--serif); font-weight: 400; color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 42px; }
  .results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
  @media (max-width: 860px){ .results-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; } }
  @media (max-width: 440px){ .results-grid { grid-template-columns: 1fr; } }
  .result b { display: block; font-family: var(--sans); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.1rem); color: #fff; letter-spacing: -0.03em; line-height: 1; }
  .result span { display: block; margin-top: 9px; color: #aab6c8; font-size: 13px; line-height: 1.4; }
  .results-note { color: #8a97ab; font-size: 13.5px; margin: 42px 0 0; }

  /* ===== Integrations ===== */
  .integ { background: var(--bg); border-top: 1px solid var(--hairline); }
  .integ-inner { padding: 82px 0; }
  .integ-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; max-width: 880px; margin: 0 auto; }
  .integ-logos span { border: 1px solid var(--card-border); background: var(--card); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
  .integ-note { text-align: center; color: var(--faint); font-size: 14.5px; margin: 30px 0 0; }
  .integ-note b { color: var(--accent); font-weight: 700; }

  /* ===== FAQ ===== */
  .faq { background: var(--bg); border-top: 1px solid var(--hairline); }
  .faq-inner { padding: 88px 0; }
  .faq-list { max-width: 760px; margin: 0 auto; }
  details.qa { border-bottom: 1px solid var(--hairline); }
  details.qa summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative; font-family: var(--sans); font-weight: 600; font-size: 16.5px; color: var(--ink); }
  details.qa summary::-webkit-details-marker { display: none; }
  details.qa summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 22px; font-weight: 400; color: var(--accent); transition: transform .2s ease; }
  details.qa[open] summary::after { content: "\2013"; }
  details.qa .a { padding: 0 40px 22px 0; color: var(--muted); font-size: 15px; line-height: 1.62; }

  /* ---------- Testimonials ---------- */
  .ttl { background: var(--section); border-top: 1px solid var(--hairline); }
  .ttl-inner { padding: 130px 0 140px; }
  .ttl h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem,3.4vw,2.3rem); color: var(--ink); text-align: center; margin: 0 0 8px; letter-spacing: -0.03em; }
  .ttl h2 .accent { color: var(--accent); }
  .ttl p.sub { text-align: center; color: var(--muted); margin: 0 0 44px; }
  .cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  @media (max-width: 860px){ .cards { grid-template-columns: 1fr; } }
  .quote { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: 26px; box-shadow: 0 1px 2px rgba(16,24,40,.04); }
  .quote .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; line-height: 1; }
  .quote p { font-size: 15.5px; color: var(--ink-soft); margin: 14px 0 20px; line-height: 1.55; }
  .quote .who { display: flex; align-items: center; gap: 12px; }
  .quote .av { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 15px; }
  .quote .who b { display: block; font-size: 14.5px; color: var(--ink); }
  .quote .who small { color: var(--faint); font-size: 13px; }

  /* ---------- Feature gallery (auto-scrolling, edge-faded) ---------- */
  .gallery { background: var(--bg); border-top: 1px solid var(--hairline); overflow: hidden; }
  .gallery-inner { padding: 96px 0 0; }
  .gallery .sec-head { margin-bottom: 0; }
  .grail { margin: 48px 0 0; padding-bottom: 96px; }
  .grail { position: relative; width: 100%; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .grail-track { display: flex; gap: 24px; width: max-content; animation: gscroll 70s linear infinite; will-change: transform; }
  .grail:hover .grail-track { animation-play-state: paused; }
  @keyframes gscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce){ .grail { overflow-x: auto; } .grail-track { animation: none; } }
  .gcard { flex: none; width: 380px; background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
    overflow: hidden; box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 18px 40px -28px rgba(16,24,40,.35);
    display: flex; flex-direction: column; }
  @media (max-width: 560px){ .gcard { width: 270px; } }
  .gcard-media { background: linear-gradient(180deg,#f7f9fc,#eef2f8); padding: 22px 22px 0; }
  .gcard-media img { width: 100%; height: 210px; object-fit: cover; object-position: top left; display: block; border-radius: 10px 10px 0 0; }
  .gcard-body { padding: 22px 24px 26px; }
  .gcard-body h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 8px; }
  .gcard-body p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

  /* ---------- Testimonial carousel (rotating, on navy) ---------- */
  .tcarousel { max-width: 1000px; margin: 0 auto; }
  .tslides { position: relative; background: #fff; border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 24px 50px -34px rgba(16,24,40,.35); }
  .tslide { display: none; grid-template-columns: 300px 1fr; align-items: stretch; }
  .tslide.is-active { display: grid; animation: tfade .45s ease both; }
  @keyframes tfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  @media (max-width: 760px){ .tslide.is-active { grid-template-columns: 1fr; } }
  .tphoto { background: #eef1f6; }
  .tphoto img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; }
  .tbody { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
  @media (max-width: 760px){ .tbody { padding: 28px 24px; } }
  .tquote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 1.9vw, 1.45rem); line-height: 1.45; color: var(--ink); margin: 0 0 26px; letter-spacing: -0.01em; }
  .tperson b { display: block; font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); }
  .tperson span { display: block; font-size: 14px; color: var(--faint); margin-top: 2px; }
  .tctrl { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 26px 0 0; }
  .tarrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--card-border); background: var(--card); color: var(--ink-soft);
    font-size: 15px; cursor: pointer; display: grid; place-items: center; transition: background .18s ease, border-color .18s ease, color .18s ease; }
  .tarrow:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
  .tdots { display: flex; gap: 8px; }
  .tdot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: #cbd5e3; cursor: pointer; transition: background .18s ease, transform .18s ease; }
  .tdot.is-active { background: var(--accent); transform: scale(1.25); }

  /* footer CTA — single CTA */
  .footcta { position: relative; overflow: hidden; border-top: 1px solid var(--hairline); text-align: center; padding: 118px 0 128px;
    background:
      radial-gradient(760px 320px at 50% 0%, rgba(11,104,255,.07), transparent 68%),
      var(--section); }
  .footcta h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,4vw,2.9rem); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 34px; line-height: 1.12; }
  .footcta .btn { padding: 15px 32px; font-size: 16.5px; }
  .cta-chips { display: flex; align-items: center; justify-content: center; gap: 10px 22px; flex-wrap: wrap; margin: 26px 0 0; }
  .cta-chips span { display: inline-flex; align-items: center; gap: 7px; color: var(--faint); font-size: 13.5px; font-weight: 500; }
  .cta-chips span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .55; }
  .footcta p { color: var(--muted); margin: 0 0 26px; }
  .footcta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* entrance animation */
  .fade { opacity: 0; transform: translateY(14px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  .d1{animation-delay:.05s}.d2{animation-delay:.12s}.d3{animation-delay:.19s}.d4{animation-delay:.26s}.d5{animation-delay:.16s}
  @keyframes rise { to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce){ .fade { animation: none; opacity: 1; transform: none; } }

  /* ============ SCHEDULER SCREEN (post-submit) ============ */
  .scheduler { display: none; position: fixed; inset: 0; z-index: 50; background: var(--section);
    overflow-y: auto; padding: 32px 20px; }
  .scheduler.active { display: block; }
  body.booking { overflow: hidden; }
  .sched-top { max-width: 940px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: space-between; }
  .sched-shell { max-width: 940px; margin: 0 auto; background: var(--card); border: 1px solid var(--card-border);
    border-radius: 18px; box-shadow: var(--card-shadow); overflow: hidden; display: grid; grid-template-columns: 300px 1fr; min-height: 520px; }
  @media (max-width: 800px){ .sched-shell { grid-template-columns: 1fr; } }

  .sched-summary { padding: 28px; border-right: 1px solid var(--hairline); }
  @media (max-width: 800px){ .sched-summary { border-right: none; border-bottom: 1px solid var(--hairline); } }
  .sched-host { display: flex; align-items: center; gap: 10px; margin: 18px 0 14px; }
  .sched-host .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#7db0ff,#0b68ff); color:#fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
  .sched-host small { display: block; color: var(--faint); font-size: 12.5px; }
  .sched-host b { font-size: 14px; color: var(--ink); }
  .sched-summary h2 { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 14px; }
  .sched-meta { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
  .sched-meta li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
  .sched-meta li svg { color: var(--faint); flex: none; }
  .sched-meta li.when { color: var(--accent); font-weight: 600; }
  .sched-meta li.when svg { color: var(--accent); }
  .sched-note { color: var(--faint); font-size: 12.5px; margin: 4px 0 0; }

  .sched-pick { padding: 26px 28px; display: grid; grid-template-columns: 1fr 220px; gap: 26px; }
  @media (max-width: 620px){ .sched-pick { grid-template-columns: 1fr; } }
  .cal-head { display: flex; align-items: center; justify-content: space-between; margin: 0 0 14px; }
  .cal-head strong { font-size: 15.5px; color: var(--ink); font-weight: 700; }
  .cal-nav { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px;
    border: 1px solid var(--card-border); background: var(--card); color: var(--ink-soft); cursor: pointer; font-size: 17px; line-height: 1;
    transition: background .15s ease, border-color .15s ease, opacity .15s ease; }
  .cal-nav:hover:not(:disabled) { background: var(--field); }
  .cal-nav:disabled { opacity: .35; cursor: not-allowed; }
  .cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
  .cal-dow { margin: 0 0 8px; }
  .cal-dow span { text-align: center; font-size: 11.5px; font-weight: 600; color: var(--faint); letter-spacing: .03em; }
  .cal-day { aspect-ratio: 1/1; border: 1px solid transparent; border-radius: 10px; background: var(--field); color: var(--ink-soft);
    font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; display: grid; place-items: center;
    transition: background .15s ease, color .15s ease, box-shadow .15s ease; }
  .cal-day:hover:not(:disabled):not(.sel) { background: var(--accent-soft); color: var(--accent); }
  .cal-day.sel { background: var(--accent); color: #fff; box-shadow: 0 6px 14px -6px rgba(11,104,255,.6); }
  .cal-day:disabled { background: transparent; color: #cbd2dc; cursor: default; }
  .cal-day.empty { background: transparent; border: none; cursor: default; }
  .cal-day.today:not(.sel) { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }

  .slots { display: flex; flex-direction: column; min-height: 0; }
  .slots-head { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0 0 12px; min-height: 20px; }
  .slots-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; max-height: 340px; padding-right: 4px; }
  .slots-empty { color: var(--faint); font-size: 13px; padding: 8px 0; }
  .slot { border: 1.5px solid var(--card-border); background: var(--card); color: var(--ink); font-weight: 600; font-size: 14px;
    border-radius: 10px; padding: 11px 12px; text-align: center; cursor: pointer;
    transition: border-color .15s ease, color .15s ease, background .15s ease; }
  .slot:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

  .sched-done { display: none; padding: 56px 40px; text-align: center; grid-column: 1 / -1; }
  .sched-shell.done .sched-pick { display: none; }
  .sched-shell.done .sched-done { display: block; }
  .sched-shell.done { grid-template-columns: 300px 1fr; }
  @media (max-width: 800px){ .sched-shell.done { grid-template-columns: 1fr; } }
  .sched-done .ok-ic { width: 60px; height: 60px; border-radius: 50%; background: rgba(9,146,104,.12); color: var(--ok); display: grid; place-items: center; margin: 0 auto 20px; }
  .sched-done h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 10px; }
  .sched-done .when-line { color: var(--ink-soft); font-size: 16px; font-weight: 600; margin: 0 0 6px; }
  .sched-done .sub { color: var(--muted); max-width: 40ch; margin: 0 auto 24px; }
  .done-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* =====================================================================
     MOBILE OPTIMIZATION
     Kept as one block at the end so it's easy to read/port to Webflow.
     Key move: on mobile the hero reorders to H1 -> FORM first, so the
     form is reachable without scrolling past the supporting content.
     ===================================================================== */

  @media (max-width: 940px) {
    /* --- Hero: reorder so the form comes right after the headline --- */
    .hero { display: flex; flex-direction: column; gap: 0; padding: 20px 0 44px; min-height: auto; }
    .hero-left { display: contents; }          /* lets children reorder against .form-col */
    /* Order on mobile: H1 -> form -> stats -> logo bar.
       The lede is hidden here so the form sits directly under the headline. */
    .ratebar     { order: 1; margin: 0 0 12px; }
    h1.headline  { order: 2; }
    .form-col    { order: 3; margin-top: 24px; }
    .impact      { order: 4; margin-top: 30px; max-width: none; }
    .herologos   { order: 5; margin-top: 32px; max-width: none; }
    .lede        { display: none; }

    h1.headline { font-size: clamp(1.95rem, 8.4vw, 2.5rem); line-height: 1.12; }
    .lede { font-size: 16.5px; }
    .card { padding: 22px 18px; border-radius: 16px; }
    .impact { gap: 20px 22px; }
    .impact span { font-size: 12px; }
  }

  @media (max-width: 700px) {
    /* --- Tighter, consistent section rhythm (desktop padding is too tall here) --- */
    .contrast-inner { padding: 60px 0 68px; }
    .gallery-inner  { padding: 60px 0 0; }
    .grail          { margin-top: 32px; padding-bottom: 60px; }
    .ttl-inner      { padding: 60px 0 68px; }
    .footcta        { padding: 72px 0 78px; }

    .sec-head   { margin-bottom: 30px; }
    .sec-head p { font-size: 16px; }
    .contrast-grid { gap: 16px; }
    .cx { padding: 22px 20px; }

    /* --- Touch targets: 44px minimum (UX guideline) --- */
    .tarrow { width: 44px; height: 44px; }
    .tdots  { gap: 12px; }
    .tdot   { width: 10px; height: 10px; }
    .tctrl  { gap: 14px; margin-top: 22px; }

    /* --- Testimonial card reads better with a shorter photo on mobile --- */
    .tbody  { padding: 24px 22px 26px; }
    .tquote { font-size: 1.05rem; margin-bottom: 20px; }

    /* --- Final CTA --- */
    .footcta h2 { font-size: clamp(1.8rem, 7.5vw, 2.3rem); margin-bottom: 28px; }
    .cta-chips { gap: 8px 16px; margin-top: 22px; }
    .cta-chips span { font-size: 12.5px; }

    /* --- Gallery cards --- */
    .gcard-media img { height: 180px; }
    .gcard-body { padding: 20px 20px 22px; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 20px; }
    .tphoto img { aspect-ratio: 3/2; }      /* don't let the headshot eat the screen */
    .grail-track { gap: 16px; }
    .gcard { width: 258px; }
    .gcard-media { padding: 16px 16px 0; }
    .gcard-media img { height: 150px; }
    .gcard-body { padding: 16px 18px 20px; }
    .gcard-body h3 { font-size: 18px; }
    .gcard-body p { font-size: 13.5px; }
    .impact { grid-template-columns: 1fr 1fr; gap: 18px 16px; }
    .impact b { font-size: 1.5rem; }
    .secbar { gap: 12px; }
  }

  /* ---------------------------------------------------------------------
     MOBILE: center-align the hero + supporting blocks.
     Left-aligned stays only where centering hurts readability:
     form field labels, and the long body copy inside the
     contrast / gallery cards.
     --------------------------------------------------------------------- */
  @media (max-width: 940px) {
    .ratebar        { justify-content: center; }
    h1.headline     { text-align: center; }
    .lede           { text-align: center; margin-left: auto; margin-right: auto; }

    /* stats */
    .impact         { justify-items: center; margin-left: auto; margin-right: auto; }
    .impact .stat   { text-align: center; }
    .impact span    { max-width: 24ch; margin-left: auto; margin-right: auto; }

    /* trusted-by */
    .herologos       { margin-left: auto; margin-right: auto; }
    .herologos-label { text-align: center; }

    /* form: centre the submit button, keep labels left for scannability */
    #hs-demo-form .hs-submit,
    #hs-demo-form .hs-submit .actions,
    #hs-demo-form .hs_submit,
    #hs-demo-form .hs_submit .actions { text-align: center !important; }
    #hs-demo-form input[type="submit"],
    #hs-demo-form .hs-button { margin-left: auto !important; margin-right: auto !important; }

    /* testimonial: photo stacks above, so centre the quote block */
    .tbody   { text-align: center; align-items: center; }
    .tquote  { margin-left: auto; margin-right: auto; }
    .tperson { text-align: center; }
  }
