/* ===== Tokens (sampled from the live page) ===== */
:root {
  --ink: #1F3942;
  --muted: #5A6B71;
  --blue: #00117D;
  --coral: #F6643C;
  --bg: #FFFFFF;
  --grey: #F5F3EF;
  --footer: #000630;
  --border: #E2E4EE;
  --serif: "PT Serif", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --maxw: 1296px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.nav { background: var(--bg); border-bottom: 1px solid var(--border); }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 84px; }
.nav__logo { justify-self: start; }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; gap: 32px; justify-self: center; }
.nav__phone { justify-self: end; }
.nav__links a { font-size: 16px; font-weight: 500; letter-spacing: -0.2px; color: var(--ink); }
.nav__links a:hover { color: var(--blue); }
.nav__links a.is-active { text-decoration: underline; text-underline-offset: 5px; }
.nav__phone { font-size: 16px; font-weight: 600; color: var(--ink); }

/* ===== Hero ===== */
.hero { background: var(--grey); padding: 56px 0 76px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  grid-template-areas: "left form";
  grid-template-columns: 1fr 1.18fr;
  column-gap: 52px;
  align-items: center;
}
.hero__left { grid-area: left; }
.card { grid-area: form; }
/* after submit: drop the pitch, center the thank-you card */
.hero__inner.thanks-mode { grid-template-columns: 1fr; grid-template-areas: "form"; justify-items: center; }
.hero__inner.thanks-mode .hero__left { display: none; }
.hero__inner.thanks-mode .card { width: 100%; max-width: 560px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 12px;
}
.hero__accent{color:var(--coral)}
.hero__sub{font-size:16px;color:var(--muted);margin:0 0 28px;line-height:1.5}

.points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.points li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); }
.points__check { width: 18px; height: 18px; flex: 0 0 18px; color: #16a34a; }

/* ===== Stats bar ===== */
.stats-bar{display:flex;gap:28px;margin-bottom:28px;padding-bottom:24px;border-bottom:1px solid var(--border)}
.stats-bar__item{display:flex;flex-direction:column;gap:2px}
.stats-bar__num{font-size:28px;font-weight:700;color:var(--blue);letter-spacing:-.5px;line-height:1}
.stats-bar__label{font-size:12px;color:var(--muted);font-weight:500;text-transform:uppercase;letter-spacing:.5px}

/* ===== Form card (white wrapper around the real embed) ===== */
.card { background: var(--bg); border: 1px solid #EFEFF4; border-radius: 12px; padding: 38px 36px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }

/* ===== Real form embed styles (verbatim from production) ===== */
.lp-shell{font-family:Outfit,Inter,Arial,sans-serif;color:#1f3942;width:100%;box-sizing:border-box;padding:6px 0;transition:opacity .12s ease}
.lp-shell[data-loading='true']{opacity:0}
.lp-shell *{box-sizing:border-box}
.lp-form{width:100%}
.lp-host{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.lp-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover;flex:0 0 40px}
.lp-host-name{font-size:14px;font-weight:600;color:#1f3942;line-height:1.2}
.lp-host-title{font-family:"PT Serif",Georgia,serif;font-size:20px;font-weight:400;color:#1f3942;line-height:1.25;margin-top:1px}
.lp-badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:22px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.lp-badge{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:500;color:#5a6b71;background:#f3f4f6;border-radius:20px;padding:4px 10px 4px 7px}
.lp-badge svg{width:14px;height:14px;flex:0 0 14px;color:#5a6b71}
.lp-form h3,.lp-thanks h3{font-family:"PT Serif",Georgia,serif;font-size:24px;line-height:1.18;font-weight:400;margin:0 0 18px}
.lp-form p,.lp-thanks p{font-size:14px;line-height:1.4;color:#5a6b71;margin:0 0 10px}
.lp-start-here{position:relative;background:#00117d;color:#fff;font-size:13px;line-height:28px;padding:0 14px;border-radius:3px;margin-bottom:20px;box-shadow:0 1px 2px rgba(0,0,0,.25);opacity:0;transform:translateY(-6px);animation:lp-hint-in .5s ease .8s forwards}
.lp-start-short{display:none}
@keyframes lp-hint-in{to{opacity:1;transform:translateY(0)}}
@media(max-width:480px){.lp-start-here{font-size:12px;padding:0 10px;margin-bottom:12px}.lp-start-full{display:none}.lp-start-short{display:inline}}
.lp-start-here b{font-weight:700}
.lp-start-here::after{content:'';position:absolute;top:100%;left:24px;border-top:9px solid #00117d;border-left:7px solid transparent;border-right:7px solid transparent}
.lp-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px 14px}
.lp-field{display:flex;flex-direction:column;gap:5px;margin-bottom:0;position:relative;overflow:visible}
.lp-field.full{grid-column:1/-1}
.lp-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.lp-form label{font-size:13px;font-weight:500;color:#1f3942}
.lp-form input,.lp-form textarea,.lp-form select{width:100%;border:1px solid rgba(31,57,66,.14);background:#f7f7f7;border-radius:6px;padding:11px 12px;font:400 14px Outfit,Inter,Arial,sans-serif;color:#1f3942;outline:none}
.lp-form select{appearance:none;-webkit-appearance:none;padding-right:38px;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A6B71' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:12px 8px}
.lp-form input:focus,.lp-form textarea:focus,.lp-form select:focus{border-color:#00117d;background:#fff;box-shadow:0 0 0 3px rgba(0,17,125,.10)}
.lp-form input,.lp-form select,.lp-form textarea{transition:background .2s,border-color .2s,box-shadow .2s}
.lp-field.is-missing input,.lp-field.is-missing select,.lp-field.is-missing textarea{border-color:transparent;background:#ffe5e5;box-shadow:0 0 0 1.5px rgba(200,30,30,.28)}
.lp-field.is-missing input:focus,.lp-field.is-missing select:focus,.lp-field.is-missing textarea:focus{background:#fff0f0;box-shadow:0 0 0 3px rgba(200,30,30,.18)}
.lp-check.is-missing{background:#ffe5e5;border-color:rgba(200,30,30,.22)}
.lp-field.is-complete{position:relative}
.lp-field.is-complete input,.lp-field.is-complete select,.lp-field.is-complete textarea{border-color:rgba(22,120,70,.3);background:#fff}
.lp-field.is-complete::after{content:'';position:absolute;right:12px;bottom:12px;width:16px;height:16px;border-radius:50%;background:#16a34a;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 8.5l2.5 2.5 4.5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;opacity:0;transform:scale(.5);transition:opacity .2s ease,transform .2s ease;pointer-events:none;z-index:1}
.lp-field.is-complete::after{opacity:1;transform:scale(1)}
.lp-field.is-complete:has(select)::after{right:36px}
.lp-missing-msg{display:block;position:absolute;left:6px;bottom:-30px;z-index:2;opacity:0;transform:translateY(-4px);transition:opacity .18s ease,transform .18s ease;font-size:11px;font-weight:600;line-height:1;color:#fff;background:#d6342a;padding:4px 10px;border-radius:4px;white-space:nowrap;pointer-events:none}
.lp-missing-msg::before{content:'';position:absolute;top:-5px;left:12px;width:8px;height:8px;background:#d6342a;transform:rotate(45deg);border-radius:1px}
.lp-field.is-missing{margin-bottom:28px}
.lp-field.is-missing .lp-missing-msg,.lp-check.is-missing .lp-missing-msg{opacity:1;transform:translateY(0)}
.lp-check .lp-missing-msg{position:relative;bottom:auto;left:auto;grid-column:2;white-space:normal;width:fit-content;max-width:100%;margin-top:4px}
.lp-check .lp-missing-msg::before{display:none}
.lp-form textarea{min-height:76px;resize:vertical}
.lp-social-proof{text-align:center;font-size:13px;font-style:italic;color:#5a6b71;margin:20px 0 12px;line-height:1.4}
.lp-social-attr{font-style:normal;font-weight:600;font-size:12px;display:block;margin-top:2px;color:#1f3942}
.lp-form button,.lp-thanks a{width:100%;height:54px;border:0;border-radius:8px;background:#F6643C;color:white;font:600 16px Outfit,Inter,Arial,sans-serif;cursor:pointer;text-decoration:none;display:flex;align-items:center;justify-content:center;gap:8px;position:relative;animation:lp-breathe .9s ease-in-out infinite;transform-origin:center;box-shadow:0 2px 8px rgba(246,100,60,.3)}
.lp-form button:hover{animation:none;transform:scale(1.015);background:#e4532b;box-shadow:0 4px 14px rgba(246,100,60,.35);transition:all .15s}
.lp-form button[type=submit]::after{content:'→';font-size:18px;transition:transform .15s}
.lp-form button[type=submit]:hover::after{transform:translateX(3px)}
@keyframes lp-breathe{0%,100%{transform:scale(1);box-shadow:0 2px 8px rgba(246,100,60,.3)}50%{transform:scale(1.018);box-shadow:0 4px 18px rgba(246,100,60,.12)}}
.lp-financials{background:#f8f9fc;border:1px solid rgba(0,17,125,.08);border-radius:8px;padding:18px;margin-top:14px}
.lp-financials .lp-grid{gap:12px 14px}
.lp-financials .lp-check{margin:8px 0 0;padding:0;border:0;background:none;display:flex;align-items:center;gap:8px}
.lp-confidential{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:600;color:#1f3942;background:#fff;border:1px solid rgba(0,17,125,.15);border-radius:20px;padding:6px 14px 6px 10px;margin:0 0 14px;letter-spacing:.01em}
.lp-shield{position:relative;flex:0 0 20px;width:20px;height:22px;color:#00117d}
.lp-shield svg{width:20px;height:22px;display:block}
.lp-shield-check{stroke-dasharray:16;stroke-dashoffset:16;animation:lp-draw .6s ease-out .4s forwards}
@keyframes lp-draw{to{stroke-dashoffset:0}}
.lp-shield-pulse{position:absolute;inset:-4px;border-radius:50%;border:1.5px solid rgba(0,17,125,.2);animation:lp-pulse 2.5s ease-out infinite}
.nda-short{display:none}
@keyframes lp-pulse{0%{transform:scale(.85);opacity:.6}50%{transform:scale(1.15);opacity:0}100%{transform:scale(.85);opacity:0}}
.lp-check{display:flex;align-items:center;gap:8px;margin:0 0 4px;padding:0}
.lp-check label{font-size:12px;line-height:1.3;color:#5a6b71;cursor:pointer}
.lp-check label a{color:#00117d}
.lp-check input[type='checkbox']{appearance:none;-webkit-appearance:none;box-sizing:border-box;width:16px;height:16px;min-width:16px;min-height:16px;margin:0;padding:0;border:1.5px solid rgba(0,17,125,.35);border-radius:4px;background:#fff;position:relative;display:block;flex:0 0 16px;cursor:pointer;transition:background .15s,border-color .15s}
.lp-check input[type='checkbox']:checked{background:#00117d;border-color:#00117d}
.lp-check input[type='checkbox']:checked:after{content:'';position:absolute;left:4.5px;top:1px;width:4px;height:8px;border:solid #fff;border-width:0 1.5px 1.5px 0;transform:rotate(45deg)}
.lp-error{color:#b42318;font-size:13px;margin-top:10px;text-align:center}
.lp-sanity-warn{font-size:12px;line-height:1.4;color:#92400e;background:#fef3c7;border:1px solid #fcd34d;border-radius:6px;padding:8px 12px;margin-top:8px}
/* 2-step A/B variant */
.lp-shell.two-step:not(.on-step-2) [data-step="2"]{display:none!important}
.lp-shell.two-step.on-step-2 [data-step="1"]{display:none!important}
.lp-steps{display:flex;align-items:center;margin:-2px 0 22px}
.lp-step{display:flex;align-items:center;gap:8px}
.lp-step-num{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;border:1.5px solid #d3d6e0;color:#9aa0b0;background:#fff;flex:0 0 auto;transition:all .2s}
.lp-step-label{font-size:13px;font-weight:600;color:#9aa0b0;white-space:nowrap;transition:color .2s}
.lp-step.is-active .lp-step-num,.lp-step.is-done .lp-step-num{background:#00117d;border-color:#00117d;color:#fff}
.lp-step.is-active .lp-step-label,.lp-step.is-done .lp-step-label{color:#1f3942}
.lp-step.is-done{cursor:pointer}
.lp-step-line{flex:1 1 auto;height:2px;background:#e2e4ee;margin:0 10px;transition:background .25s}
.lp-step-line.is-filled{background:#00117d}
.lp-continue{width:100%;height:52px;border:0;border-radius:8px;background:#F6643C;color:#fff;font:600 16px Outfit,Inter,Arial,sans-serif;cursor:pointer;margin-top:8px;box-shadow:0 2px 8px rgba(246,100,60,.3)}
.lp-continue:hover{background:#e4532b;box-shadow:0 4px 14px rgba(246,100,60,.35)}
.lp-thanks{display:none;text-align:center;padding:40px 24px}
.lp-thanks .lp-mark{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:#00117d;color:white;font-size:28px;font-weight:700;margin-bottom:24px}
.lp-thanks h3{margin-bottom:12px}
.lp-thanks p{max-width:340px;margin:0 auto 16px;color:#5a6b71}
.lp-thanks-note{font-size:13px;color:#8a9499;margin-top:20px}
.lp-thanks-note a{color:#00117d;font-weight:600;text-decoration:underline}
.lp-thanks-home{display:inline-block;margin-top:24px;padding:12px 32px;border-radius:8px;background:#00117d;color:#fff;font:600 14px Outfit,Inter,Arial,sans-serif;text-decoration:none}
.lp-thanks-home:hover{background:#000e66}
.lp-decline{display:none;padding:20px 8px 40px}
.lp-decline-header{text-align:center;margin-bottom:32px}
.lp-decline-icon{width:56px;height:56px;border-radius:50%;background:#00117d;display:inline-flex;align-items:center;justify-content:center;margin-bottom:20px}
.lp-decline h3{font-family:"PT Serif",Georgia,serif;font-size:24px;font-weight:400;margin:0 0 6px;color:#1f3942;letter-spacing:-.3px}
.lp-decline-sub{font-size:14px;color:#8a9499;margin:0}
.lp-decline-body{position:relative;max-width:100%;border-top:1px solid #e8eaef;border-bottom:1px solid #e8eaef;padding:28px 4px;margin-bottom:28px}
.lp-decline-body p{font-size:15px;line-height:1.75;color:#5a6b71;margin:0 0 18px}
.lp-decline-body p:last-child{margin-bottom:0}
.lp-decline-body strong{color:#1f3942;font-weight:600}
.lp-decline-accent{color:#00117d;font-size:13px;font-weight:600;letter-spacing:.4px;text-transform:uppercase;margin:0 0 12px;display:block}
.lp-decline-warm{color:#1f3942;font-style:italic;font-size:15px;line-height:1.75;margin:24px 0 0}
.lp-decline-footer{text-align:center}
.lp-decline-note{font-size:13px;color:#8a9499;margin:0 0 20px;line-height:1.6}
.lp-decline-note a{color:#00117d;font-weight:600;text-decoration:underline}
.lp-decline-home{display:inline-block;padding:14px 40px;border-radius:8px;background:#00117d;color:#fff;font:600 15px Outfit,Inter,Arial,sans-serif;text-decoration:none;transition:all .15s}
.lp-decline-home:hover{background:#000e66;transform:translateY(-1px);box-shadow:0 4px 14px rgba(0,17,125,.2)}
.lp-form button.is-submitting{opacity:.78;cursor:wait;pointer-events:none}
.lp-form button.is-submitting:before{content:'';width:14px;height:14px;margin-right:8px;border:2px solid rgba(255,255,255,.45);border-top-color:#fff;border-radius:50%;display:inline-block;animation:lp-spin .8s linear infinite}
@keyframes lp-spin{to{transform:rotate(360deg)}}
@media(max-width:480px){
  .lp-grid{grid-template-columns:1fr;gap:8px}
  .lp-form h3,.lp-thanks h3{font-size:22px}
  .lp-field{margin-bottom:0}
  .lp-form input,.lp-form textarea,.lp-form select{min-height:44px;padding:10px 12px;font-size:14px}
  .lp-check label{font-size:13px;line-height:1.4}
}

/* ===== Offices ===== */
.offices { background: var(--bg); padding: 88px 0; }
.offices__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.offices__copy h2 { font-family: var(--serif); font-weight: 400; font-size: 60px; line-height: 1.2; letter-spacing: -1.5px; margin: 0 0 14px; }
.offices__copy > p { color: var(--muted); font-size: 18px; line-height: 1.5; max-width: 440px; margin: 0 0 36px; }
.offices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.offices__grid h4 { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 600; margin: 0 0 6px; }
.offices__grid h4::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.offices__grid p { margin: 0; color: var(--muted); font-size: 15px; }
.offices__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.offices__photos img { border-radius: 10px; height: 100%; object-fit: cover; }

/* ===== CTA band ===== */
.cta { background: var(--blue); color: #fff; position: relative; padding-bottom: 110px; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 56px 24px 32px; }
.cta__inner p { font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1.3; margin: 0; max-width: 400px; }
.cta__spire { position: absolute; left: 50%; bottom: 110px; transform: translateX(-50%); width: 86px; height: 150px; }
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 0 24px; height: 48px; border-radius: 6px; cursor: pointer; border: none; }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ===== Footer ===== */
.footer { background: var(--footer); color: #c9cfe0; padding: 72px 0 40px; font-size: 16px; position: relative; z-index: 1; border-top-left-radius: 32px; border-top-right-radius: 110px; margin-top: -110px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer__brand img { height: 30px; margin-bottom: 28px; }
.footer__brand p { margin: 0 0 18px; line-height: 1.7; }
.footer__brand a { color: #c9cfe0; }
.footer__brand a:hover { color: #fff; }
.footer__col h5 { color: #fff; font-size: 16px; font-weight: 500; margin: 0 0 22px; }
.footer__col a { display: block; margin-bottom: 16px; color: #c9cfe0; font-size: 16px; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; }
.footer__social a svg { width: 17px; height: 17px; }
.footer__social a:hover { background: rgba(255,255,255,.1); }
.footer__legal { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 48px; color: #8a92ab; font-size: 14px; }
.footer__legal span { white-space: nowrap; }
.footer__legal a:hover { color: #fff; }
.to-top { position: absolute; right: 32px; bottom: 40px; width: 44px; height: 44px; border-radius: 10px; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; }
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { background: #001aa8; }

/* ===== Entrance animations (fade-up on scroll, ~matches Framer reveals) ===== */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.js-reveal [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1; transform: none; transition: none; }
  .lp-form button, .lp-continue, .lp-shield-check, .lp-shield-pulse { animation: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner, .offices__inner, .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  /* mobile order: heading -> form -> reassurance bullets (form up top where it converts) */
  .hero__inner { grid-template-areas: "left" "form"; grid-template-columns: 1fr; row-gap: 28px; }
  .hero__left { text-align: center; }
  .stats-bar{justify-content:center}
  .points{align-items:flex-start}
  .hero__title { margin-bottom: 0; }
  .hero__title, .offices__copy h2 { font-size: 40px; letter-spacing: -1px; }
  .cta__inner { flex-direction: column; align-items: flex-start; text-align: left; gap: 24px; padding: 44px 24px 28px; }
  .cta__inner p { font-size: 26px; }
  /* links hidden on mobile — switch nav to flex so the phone sits hard right */
  .nav__links { display: none; }
  .nav__inner { display: flex; justify-content: space-between; }
  .offices__photos { max-width: 520px; }
  /* scale the decorative spire + footer corner down so they fit a phone */
  .cta { padding-bottom: 72px; }
  .cta__spire { bottom: 72px; width: 58px; height: 100px; }
  .footer { margin-top: -72px; border-top-left-radius: 24px; border-top-right-radius: 60px; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .nav__inner { height: 56px; }
  .nav__logo img { height: 28px; }
  .nav__phone { font-size: 15px; }
  /* pull the heading + form up so more of the form is in the first screen */
  .hero { padding: 14px 0 44px; }
  .hero__inner { row-gap: 16px; }
  .hero__title { display: none; }
  .points { gap: 24px; margin-top: 8px; }
  .offices { padding: 56px 0; }
  .offices__copy h2 { font-size: 32px; }
  .offices__grid { gap: 22px 18px; }
  .card { padding: 18px; }
  .cta__inner p { font-size: 24px; }
  /* iOS Safari auto-zooms when an input's font is < 16px — force 16px on phones */
  .lp-form input, .lp-form select, .lp-form textarea { font-size: 16px; }
  .lp-financials .lp-grid { grid-template-columns: 1fr; }
  .nda-full { display: none; }
  .nda-short { display: inline; }
}
