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

@font-face {
  font-family: "Albert Sans";
  src: url("/assets/fonts/albert-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --canvas: #f6f7f3;
  --paper: #ffffff;
  --ink: #102735;
  --ink-2: #294452;
  --muted: #536b78;
  --line: #dfe6e3;
  --blue: #1769e0;
  --blue-dark: #0d4fb5;
  --mint: #dff4ee;
  --mint-strong: #91d6c1;
  --coral: #c94a32;
  --night: #0d2633;
  --shadow: 0 22px 60px rgba(16, 39, 53, 0.13);
  --shadow-soft: 0 12px 32px rgba(16, 39, 53, 0.08);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1120px;
  --font-body: "Albert Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection { color: #fff; background: var(--blue); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--night);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 86px 0; }
.section--line { border-top: 1px solid var(--line); }
.section--night { background: var(--night); color: #fff; }
.section--mint { background: var(--mint); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 243, 0.92);
  border-bottom: 1px solid rgba(223, 230, 227, 0.85);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark { width: 36px; height: 36px; color: var(--blue); flex: 0 0 auto; }
.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-links a { color: var(--ink-2); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--blue-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .messenger-float:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.32);
  outline-offset: 3px;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(23, 105, 224, 0.24); }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 14px 30px rgba(23, 105, 224, 0.28); }
.btn--quiet { border-color: var(--line); background: rgba(255,255,255,.62); }
.btn--quiet:hover { border-color: #bac9c5; background: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--mint); }
.btn svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 34px 0 42px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 10%, rgba(145, 214, 193, .34), transparent 28%),
    radial-gradient(circle at 4% 88%, rgba(23, 105, 224, .08), transparent 30%);
}
.motion-line {
  position: absolute;
  width: min(700px, 58vw);
  right: -130px;
  bottom: -170px;
  color: rgba(23,105,224,.10);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .82fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.hero-copy { max-width: 650px; animation: reveal 650ms ease both; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 2px; background: var(--coral); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
h1 { margin: 0; font-size: clamp(46px, 4.8vw, 68px); max-width: 760px; }
.hero-lede { max-width: 610px; margin: 22px 0 24px; color: var(--ink-2); font-size: clamp(18px, 1.75vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 20px; color: var(--muted); font-size: 13px; font-weight: 600; }
.hero-note svg { width: 18px; color: var(--blue); }
.hero-price {
  display: grid;
  gap: 3px;
  max-width: 560px;
  margin-top: 19px;
  padding: 14px 16px;
  border: 1px solid rgba(23,105,224,.16);
  border-radius: 15px;
  background: rgba(255,255,255,.58);
}
.hero-price strong { font-size: 15px; }
.hero-price span { color: var(--blue-dark); font-size: 13px; font-weight: 700; }
.hero-price small { color: var(--muted); font-size: 11px; line-height: 1.4; }
.hero-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 20px;
}
.hero-steps div { display: flex; align-items: flex-start; gap: 8px; }
.hero-steps span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--night);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.hero-steps p { margin: 1px 0 0; color: var(--muted); font-size: 12px; line-height: 1.35; }

.conversion-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(16,39,53,.09);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: reveal 650ms 100ms ease both;
}
.conversion-photo { position: relative; height: 92px; overflow: hidden; background: #d9e7e2; }
.conversion-photo picture, .conversion-photo img { width: 100%; height: 100%; }
.conversion-photo img { object-fit: cover; object-position: center 43%; }
.conversion-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,38,51,.72), rgba(13,38,51,.08)); }
.conversion-badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.conversion-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-strong); box-shadow: 0 0 0 5px rgba(145,214,193,.2); }
.conversion-head { padding: 18px 24px 4px; }
.conversion-head h2 { margin: 0 0 4px; font-size: 27px; }
.conversion-head p { margin: 0; color: var(--muted); font-size: 13px; }
.conversion-price {
  display: grid;
  gap: 2px;
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  background: #f6f8f6;
}
.conversion-price strong { font-size: 13px; }
.conversion-price span { color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.conversion-price small { color: var(--muted); font-size: 10px; line-height: 1.35; }
.conversion-tip { margin: 9px 24px 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.ghl-form-shell { position: relative; min-height: 640px; overflow: visible; background: #fff; }
.ghl-form-shell::before {
  content: "Loading secure form…";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(110deg, #fff 20%, #f5f8f7 40%, #fff 60%);
  background-size: 220% 100%;
  animation: formShimmer 1.35s linear infinite;
}
.ghl-form-shell.is-loaded::before { display: none; }
.ghl-form-shell iframe { position: relative; z-index: 1; display: block; width: 100%; height: 640px; min-height: 640px; border: 0; background: transparent; }
.conversion-foot { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 8px 18px 15px; color: var(--muted); font-size: 11px; }
.conversion-foot svg { width: 14px; color: var(--blue); }

.trust-rail { position: relative; z-index: 3; margin-top: -1px; background: var(--night); color: #fff; }
.trust-grid { min-height: 96px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 24px; border-left: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.trust-item svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--mint-strong); }
.trust-item strong { display: block; font-size: 14px; line-height: 1.2; }
.trust-item small { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: 11px; }
.trust-item a { display: block; color: inherit; }
.trust-item a:hover { text-decoration: underline; text-underline-offset: 3px; }
.trust-item--review strong { color: #fff; }
.trust-item--review small { color: rgba(255,255,255,.72); }

.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-kicker { color: var(--blue-dark); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section h2 { margin: 10px 0 14px; font-size: clamp(36px, 4.2vw, 58px); }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }

.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fit-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.fit-card:hover { transform: translateY(-5px); border-color: rgba(23,105,224,.28); box-shadow: var(--shadow-soft); }
.fit-number { color: var(--coral); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.fit-card h3 { margin: 34px 0 9px; font-size: 24px; }
.fit-card p { margin: 0; color: var(--muted); }

.pathway-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 74px; align-items: start; }
.pathway-intro { position: sticky; top: 112px; }
.pathway-intro h2 { margin: 10px 0 18px; font-size: clamp(38px, 4.2vw, 58px); }
.pathway-intro p { color: rgba(255,255,255,.68); font-size: 18px; }
.step-list { display: grid; gap: 14px; }
.step-card { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--mint); color: var(--night); }
.step-icon svg { width: 28px; height: 28px; }
.step-card h3 { margin: 2px 0 6px; font-size: 24px; }
.step-card p { margin: 0; color: rgba(255,255,255,.64); }

.clinic-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 64px; align-items: center; }
.photo-stack { position: relative; min-height: 530px; }
.photo-main { position: absolute; inset: 0 18% 0 0; overflow: hidden; border-radius: 34px 120px 34px 34px; box-shadow: var(--shadow); }
.photo-main picture, .photo-main img { width: 100%; height: 100%; }
.photo-main img { object-fit: cover; }
.photo-small { position: absolute; width: 44%; right: 0; bottom: 34px; overflow: hidden; aspect-ratio: 3/4; border: 9px solid var(--canvas); border-radius: 28px; box-shadow: var(--shadow-soft); }
.photo-small picture, .photo-small img { width: 100%; height: 100%; }
.photo-small img { object-fit: cover; }
.clinic-copy h2 { margin: 10px 0 18px; font-size: clamp(38px, 4.2vw, 58px); }
.clinic-copy > p { color: var(--muted); font-size: 18px; }
.principles { display: grid; gap: 10px; margin: 28px 0 0; }
.principle { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); }
.principle svg { width: 24px; color: var(--blue); margin-top: 2px; }
.principle strong { display: block; margin-bottom: 3px; }
.principle span { color: var(--muted); font-size: 14px; }

.location-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: stretch; }
.location-copy { padding: 36px; border-radius: var(--radius-lg); background: var(--night); color: #fff; }
.location-copy h2 { margin: 10px 0 20px; font-size: 42px; }
.location-list { display: grid; gap: 15px; margin: 24px 0; }
.location-row { display: grid; grid-template-columns: 26px 1fr; gap: 11px; align-items: start; color: rgba(255,255,255,.76); }
.location-row > :only-child { grid-column: 1 / -1; }
.location-row--plain { display: block; }
.location-row svg { width: 21px; color: var(--mint-strong); margin-top: 2px; }
.map-card { position: relative; min-height: 460px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); background: #e6ebe8; }
.map-card iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }
.map-cta { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.map-cta strong { font-size: 14px; }
.map-cta a { color: var(--blue-dark); font-size: 13px; font-weight: 700; }

.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 2px; cursor: pointer; font-family: var(--font-display); font-size: 20px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--mint); color: var(--blue-dark); font-family: var(--font-body); transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { max-width: 760px; margin: -4px 0 0; padding: 0 48px 22px 2px; color: var(--muted); }

:where(#assessment, h2, h3) { scroll-margin-top: 88px; }

.final-cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 58px; background: var(--blue); color: #fff; }
.final-cta::after { content: ""; position: absolute; width: 380px; height: 380px; right: -90px; top: -160px; border: 56px solid rgba(255,255,255,.12); border-radius: 50%; }
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 { max-width: 760px; margin: 0 0 14px; font-size: clamp(38px, 4.6vw, 62px); }
.final-cta p { max-width: 650px; margin: 0 0 24px; color: #fff; font-size: 18px; }

.site-footer { padding: 56px 0 110px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.footer-brand { margin-bottom: 20px; }
.footer-copy { max-width: 540px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 22px; font-size: 13px; font-weight: 700; }
.footer-meta { color: var(--muted); font-size: 13px; }
.footer-meta p { margin: 0 0 8px; }

.messenger-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #1687f8;
  color: #fff;
  box-shadow: 0 14px 34px rgba(16,39,53,.24);
  touch-action: manipulation;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.messenger-float:hover { transform: translateY(-3px) rotate(-3deg); box-shadow: 0 18px 36px rgba(16,39,53,.3); }
.messenger-float svg { width: 25px; height: 25px; }
.mobile-bar { display: none; }

.thanks-page { min-height: 100svh; display: grid; place-items: center; padding: 32px 0; }
.thanks-card { width: min(1020px, calc(100% - 32px)); display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.thanks-copy { padding: clamp(30px, 5vw, 58px); background: var(--night); color: #fff; }
.thanks-copy h1 { font-size: clamp(42px, 5vw, 64px); }
.thanks-copy p { color: rgba(255,255,255,.72); }
.calendar-shell { min-height: 620px; background: #fff; }
.calendar-shell iframe { width: 100%; min-height: 620px; border: 0; }
.legal-page { min-height: 100svh; padding: 54px 0 90px; }
.legal-card { max-width: 820px; margin: 0 auto; padding: clamp(28px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.legal-card h1 { margin: 16px 0 10px; font-size: clamp(42px, 6vw, 68px); }
.legal-card h2 { margin: 34px 0 9px; font-size: 27px; }
.legal-card p, .legal-card li { color: var(--ink-2); }
.legal-card a { color: var(--blue-dark); font-weight: 700; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-size: 14px; font-weight: 700; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes formShimmer {
  to { background-position: -220% 0; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 780px; }
  .conversion-card { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .trust-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .pathway-grid, .clinic-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .pathway-intro { position: static; }
  .photo-stack { min-height: 480px; }
  .map-card { min-height: 400px; }
  .map-card iframe { min-height: 400px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .site-header { position: relative; }
  .nav { min-height: 64px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { display: none; }
  .nav-links { display: none; }
  .nav-actions .btn--quiet { display: none; }
  .nav-actions .btn { min-height: 42px; padding: 10px 14px; font-size: 13px; }
  .hero { min-height: auto; padding: 28px 0 38px; }
  .hero-grid { gap: 25px; }
  h1 { font-size: clamp(41px, 12vw, 56px); }
  .hero-lede { margin: 15px 0 17px; font-size: 17px; }
  .hero-actions { display: none; }
  .hero-note { display: none; }
  .conversion-photo { display: none; }
  .conversion-head { padding: 14px 18px 2px; }
  .conversion-head h2 { font-size: 23px; }
  .conversion-head p { font-size: 12px; }
  .conversion-tip { margin-inline: 18px; }
  .hero-price { margin-top: 16px; }
  .hero-steps { margin-top: 16px; }
  .ghl-form-shell { min-height: 640px; }
  .ghl-form-shell iframe { height: 640px; min-height: 640px; }
  .conversion-foot { padding-bottom: 11px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 15px 12px; gap: 9px; }
  .trust-item svg { width: 20px; }
  .trust-item strong { font-size: 12px; }
  .trust-item small { font-size: 10px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: auto; }
  .fit-card h3 { margin-top: 20px; }
  .step-card { grid-template-columns: 48px 1fr; padding: 19px; }
  .step-icon { width: 48px; height: 48px; border-radius: 14px; }
  .photo-stack { min-height: 410px; }
  .photo-main { right: 13%; border-radius: 24px 80px 24px 24px; }
  .photo-small { width: 42%; border-width: 6px; border-radius: 22px; }
  .location-copy { padding: 28px 23px; }
  .location-copy h2 { font-size: 36px; }
  .map-card, .map-card iframe { min-height: 340px; }
  .map-cta { align-items: flex-start; flex-direction: column; }
  .final-cta { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .messenger-float { right: 14px; bottom: 76px; width: 48px; height: 48px; }
  body.form-in-view .messenger-float,
  body.form-in-view .mobile-bar { opacity: 0; pointer-events: none; }
  body.form-in-view .messenger-float { transform: scale(.86); }
  .mobile-bar { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 800; display: grid; grid-template-columns: .72fr 1.28fr; gap: 8px; padding: 7px; border: 1px solid rgba(16,39,53,.08); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 16px 44px rgba(16,39,53,.2); backdrop-filter: blur(12px); }
  .mobile-bar a { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 12px; font-size: 13px; font-weight: 700; touch-action: manipulation; }
  .mobile-bar svg { width: 18px; height: 18px; flex: 0 0 auto; }
  .mobile-bar .mobile-primary { background: var(--blue); color: #fff; }
  .thanks-card { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .eyebrow { margin-bottom: 11px; font-size: 10px; }
  h1 { font-size: 39px; }
  .hero-lede { font-size: 15px; line-height: 1.42; }
  .conversion-head h2 { font-size: 21px; }
  .ghl-form-shell, .ghl-form-shell iframe { height: 640px; min-height: 640px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
