:root {
  --ink: #183449;
  --ink-soft: #526979;
  --blue: #2f7ec8;
  --blue-dark: #1f62a7;
  --blue-deep: #124c82;
  --sky: #eaf5fd;
  --sky-soft: #f4f9fd;
  --pink: #e92a6f;
  --pink-dark: #c91859;
  --white: #fff;
  --line: #dbe9f2;
  --success: #1b9164;
  --shadow-sm: 0 10px 35px rgba(30, 79, 112, .09);
  --shadow-lg: 0 30px 80px rgba(30, 79, 112, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
svg { display: block; }
.site-shell { min-width: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 26px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(219, 233, 242, .9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: 176px; height: auto; }

.header-facts {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.header-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--ink-soft);
  font-size: 13px;
}

.header-fact__label { color: var(--ink); font-size: 14px; font-weight: 760; }
.header-actions, .phone-link { display: flex; align-items: center; }
.header-actions { gap: 18px; }
.phone-link { gap: 10px; font-weight: 740; white-space: nowrap; }

.phone-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-link span { display: flex; flex-direction: column; gap: 2px; }
.phone-link small { color: var(--ink-soft); font-size: 11px; font-weight: 520; }

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button:focus-visible, .text-button:focus-visible, .modal-close:focus-visible, input:focus-visible, a:focus-visible {
  outline: 3px solid rgba(47, 126, 200, .28);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: 0 16px 35px rgba(233, 42, 111, .25);
}

.button--primary:hover { box-shadow: 0 20px 40px rgba(233, 42, 111, .32); }

.button--outline {
  min-height: 46px;
  color: var(--pink);
  border-color: rgba(233, 42, 111, .45);
  background: var(--white);
}

.button--small { padding-inline: 23px; font-size: 14px; }
.button--full { width: 100%; }

.hero {
  min-height: 735px;
  display: flex;
  align-items: center;
  padding: 17px 0 20px;
  overflow: hidden;
  background: linear-gradient(115deg, rgba(245, 250, 254, .98), rgba(236, 246, 253, .96) 58%, rgba(228, 243, 252, .94));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(47, 126, 200, .09) .8px, transparent .8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb--one { width: 380px; height: 380px; right: -120px; top: -150px; background: rgba(84, 179, 228, .16); }
.hero-orb--two { width: 260px; height: 260px; left: 42%; bottom: -170px; background: rgba(233, 42, 111, .08); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  align-items: center;
  gap: 34px;
}

.hero-copy { max-width: 720px; padding: 26px 0; }

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 2px; border-radius: 2px; background: var(--pink); }
.hero h1, .intro-section h2, .form-panel h2 { margin: 0; letter-spacing: -.045em; text-wrap: balance; }

.hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.02;
  font-weight: 790;
}

.hero h1 em { display: block; margin-top: 7px; color: var(--blue); font-style: normal; }
.hero-lead { max-width: 660px; margin: 26px 0 0; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 15px;
  list-style: none;
}

.hero-benefits li { display: flex; align-items: center; gap: 9px; }

.hero-benefits li > span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.hero-benefits svg, .success-state svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits svg { width: 14px; height: 14px; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 760;
  border-bottom: 1px solid rgba(31, 98, 167, .32);
  text-underline-offset: 4px;
}
.scarcity { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; color: var(--ink-soft); font-size: 13px; }

.scarcity span, .clinic-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(27, 145, 100, .1);
}

.hero-visual { position: relative; align-self: stretch; min-height: 580px; }

.hero-visual__wash {
  position: absolute;
  width: 470px;
  height: 470px;
  right: -4px;
  bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c9e6f7, #f8fcff 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75);
}

.doctor-image {
  position: absolute;
  z-index: 2;
  width: 420px;
  height: 630px;
  right: 2px;
  bottom: -80px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 35px rgba(31, 77, 109, .18));
}

.return-card, .clinic-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.return-card { left: -10px; top: 88px; width: 195px; padding: 20px; border-radius: 26px; }
.return-card__value { display: block; color: var(--pink); font-size: 50px; line-height: 1; font-weight: 820; letter-spacing: -.06em; }
.return-card__text { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 13px; line-height: 1.35; }

.clinic-card {
  right: 4px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.clinic-card strong { color: var(--ink); }

.trust-strip { position: relative; z-index: 5; margin-top: -1px; color: var(--white); background: var(--blue-deep); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.trust-grid > div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { font-size: 22px; letter-spacing: -.02em; }
.trust-grid span { color: rgba(255, 255, 255, .68); font-size: 13px; }
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.intro-section h2, .form-panel h2 { font-size: clamp(36px, 4vw, 54px); line-height: 1.08; }
.intro-copy { color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.intro-copy p { margin: 0 0 20px; }
.form-section { padding-top: 4.5px; }

.form-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 72px;
  align-items: center;
  padding: 62px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 5% 12%, rgba(89, 175, 230, .42), transparent 34%), linear-gradient(135deg, #1e6eae, #0d416f);
  box-shadow: var(--shadow-lg);
}

.form-panel::after {
  content: "13%";
  position: absolute;
  right: 43%;
  bottom: -46px;
  color: rgba(255, 255, 255, .055);
  font-size: 190px;
  line-height: 1;
  font-weight: 850;
}

.form-panel__copy, .form-card { position: relative; z-index: 1; }
.eyebrow--light { color: #b9e5ff; }

.form-panel__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.65;
}

.form-note { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; padding-left: 18px; border-left: 3px solid #70c7ef; }
.form-note span { color: rgba(255, 255, 255, .68); font-size: 14px; }

.form-card {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(2, 31, 52, .22);
}

.form-card form { width: 100%; }
.form-card label { display: block; margin-bottom: 18px; }
.form-card label > span { display: block; margin: 0 0 8px 3px; color: var(--ink); font-size: 13px; font-weight: 720; }

.form-card input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fbfd;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-card input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47, 126, 200, .1); outline: none; }
.form-card button:disabled { cursor: wait; opacity: .7; }
.form-error { margin: 12px 4px 0; color: #b42318; font-size: 13px; line-height: 1.45; }
.privacy-copy { margin: 14px 4px 0; color: #7b8d99; font-size: 11px; line-height: 1.5; }
.privacy-copy a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.success-state { width: 100%; text-align: center; }

.success-state > span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
}

.success-state svg { width: 30px; height: 30px; }
.success-state h3 { margin: 20px 0 8px; font-size: 26px; }
.success-state p { margin: 0; color: var(--ink-soft); line-height: 1.55; }
.text-button { margin-top: 18px; padding: 0; color: var(--blue-dark); border: 0; border-bottom: 1px solid currentColor; background: none; cursor: pointer; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2, .path-copy h2, .method-copy h2, .doctor-panel__copy h2, .faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading > p:last-child, .section-heading--split > div > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.program-section {
  background: var(--sky-soft);
  border-top: 1px solid #edf4f8;
}
.finance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.finance-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.finance-card--blue { color: var(--white); background: linear-gradient(145deg, #277cbe, #0e4b7e); }
.finance-card--white { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.finance-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 62px; }
.finance-card__number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 800;
}
.finance-card--white .finance-card__number { color: var(--blue-dark); background: var(--sky); }
.finance-card__tag {
  padding: 8px 12px;
  border-radius: 999px;
  color: #d3efff;
  background: rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.finance-card__tag--pink { color: var(--pink-dark); background: #fff0f5; }
.finance-card h3 { margin: 0; font-size: clamp(30px, 3vw, 43px); line-height: 1.08; letter-spacing: -.035em; }
.finance-card h3 mark { color: var(--pink); background: none; }
.finance-card > p { margin: 18px 0 0; color: rgba(255, 255, 255, .74); font-size: 17px; line-height: 1.65; }
.finance-card--white > p { color: var(--ink-soft); }
.plain-checks { display: grid; gap: 13px; margin: auto 0 0; padding: 28px 0 0; list-style: none; }
.plain-checks li { display: flex; align-items: flex-start; gap: 11px; color: rgba(255, 255, 255, .87); font-size: 15px; line-height: 1.5; }
.plain-checks svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: #91ddff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.legal-note { max-width: 900px; margin: 24px auto 0; color: #758895; font-size: 12px; line-height: 1.6; text-align: center; }

.situations-section { background: var(--white); }
.situation-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.situation-grid article {
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.situation-grid article:hover { transform: translateY(-5px); border-color: #bedcec; box-shadow: var(--shadow-sm); }
.situation-grid article > span { color: var(--blue); font-size: 12px; font-weight: 820; letter-spacing: .12em; }
.situation-grid h3 { margin: 54px 0 12px; font-size: 21px; line-height: 1.25; letter-spacing: -.02em; }
.situation-grid p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.path-section { overflow: hidden; color: var(--white); background: var(--blue-deep); }
.path-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -260px;
  bottom: -300px;
  border-radius: 50%;
  border: 110px solid rgba(103, 191, 235, .07);
}
.path-layout { position: relative; display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 100px; align-items: start; }
.path-copy { position: sticky; top: 132px; }
.path-copy h2 { color: var(--white); }
.path-copy > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255, 255, 255, .68); font-size: 17px; line-height: 1.65; }
.button--light { margin-top: 32px; color: var(--blue-deep); background: var(--white); box-shadow: 0 15px 35px rgba(4, 35, 58, .22); }
.steps-list { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps-list li { display: grid; grid-template-columns: 66px 1fr; gap: 24px; padding: 30px 0 34px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.steps-list li:first-child { padding-top: 4px; }
.steps-list li > span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #c4edff;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 800;
}
.steps-list h3 { margin: 4px 0 9px; font-size: 24px; }
.steps-list p { margin: 0; color: rgba(255, 255, 255, .66); line-height: 1.65; }

.method-section { background: var(--sky-soft); }
.method-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 88px; align-items: center; }
.method-visual { position: relative; min-height: 520px; }
.method-visual::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: 4%;
  top: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #cbeafa, #faffff);
}
.method-visual__card {
  position: absolute;
  z-index: 2;
  width: 330px;
  left: 0;
  top: 105px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.method-visual__card img { width: 100%; height: 190px; object-fit: contain; image-rendering: auto; }
.method-visual__card div { display: flex; flex-direction: column; gap: 5px; margin-top: 18px; }
.method-visual__card span { color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.method-visual__card strong { font-size: 20px; }
.method-visual__circle {
  position: absolute;
  z-index: 3;
  width: 180px;
  height: 180px;
  right: 0;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), #b5154c);
  box-shadow: 0 24px 50px rgba(205, 24, 88, .25);
  text-align: center;
}
.method-visual__circle strong { font-size: 64px; line-height: .9; }
.method-visual__circle span { margin-top: 9px; font-size: 11px; line-height: 1.35; }
.method-copy > p:not(.eyebrow):not(.method-warning) { margin: 24px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.assessment-list { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.assessment-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.assessment-list span { padding-top: 2px; color: var(--blue); font-size: 12px; font-weight: 800; }
.assessment-list p { margin: 0; color: var(--ink-soft); line-height: 1.5; }
.assessment-list strong { color: var(--ink); }
.method-warning { margin: 22px 0 0; padding: 15px 18px; border-radius: var(--radius-sm); color: var(--blue-deep); background: #e2f2fb; font-size: 13px; font-weight: 700; }

.doctor-section { background: var(--white); }
.doctor-panel {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.doctor-panel__image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(160deg, #d9effb, #eef8fd);
}
.doctor-panel__image::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -70px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
}
.doctor-panel__image img { position: absolute; z-index: 1; width: 100%; height: 720px; left: 0; bottom: -84px; object-fit: contain; object-position: center bottom; }
.doctor-panel__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px 64px; }
.doctor-panel__copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.doctor-panel__copy blockquote { margin: 28px 0 0; padding: 20px 22px; border-left: 3px solid var(--pink); color: var(--ink); background: #fff7fa; font-size: 16px; font-weight: 680; line-height: 1.5; }
.button--secondary { margin-top: 30px; color: var(--white); background: var(--blue); box-shadow: 0 15px 32px rgba(47, 126, 200, .22); }

.addresses-section { background: var(--sky-soft); }
.section-heading--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-heading--split > div:first-child { max-width: 760px; }
.schedule-card { min-width: 220px; display: flex; flex-direction: column; gap: 5px; padding: 20px 24px; border-radius: var(--radius-sm); color: var(--white); background: var(--blue-deep); }
.schedule-card span { color: rgba(255, 255, 255, .66); font-size: 12px; }
.schedule-card strong { font-size: 20px; }
.address-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.address-grid article { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.address-number { position: absolute; right: 25px; top: 23px; color: #c7dce9; font-size: 13px; font-weight: 800; }
.address-grid article > p { margin: 55px 0 8px; color: var(--blue); font-size: 12px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.address-grid h3 { margin: 0; max-width: 260px; font-size: 24px; line-height: 1.25; }
.address-grid h3.address-grid__nowrap { max-width: none; white-space: nowrap; font-size: clamp(19px, 1.8vw, 24px); }
.address-grid article > a { display: inline-block; margin-top: 28px; color: var(--blue-dark); font-size: 15px; font-weight: 760; border-bottom: 1px solid rgba(31, 98, 167, .25); }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 126px; }
.faq-intro > p:not(.eyebrow) { max-width: 430px; margin: 22px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.phone-large { display: inline-flex; align-items: center; gap: 14px; margin-top: 32px; color: var(--ink); font-size: 20px; font-weight: 790; }
.phone-large > svg { width: 44px; height: 44px; padding: 11px; border-radius: 50%; fill: none; stroke: var(--blue); stroke-width: 1.8; background: var(--sky); }
.phone-large > span { display: flex; flex-direction: column; gap: 4px; }
.phone-large small { color: var(--ink-soft); font-size: 12px; font-weight: 520; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 96px; display: grid; grid-template-columns: 44px 1fr 26px; gap: 16px; align-items: center; cursor: pointer; list-style: none; color: var(--ink); font-size: 18px; font-weight: 720; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--blue); font-size: 12px; font-weight: 820; }
.faq-list summary i { position: relative; width: 24px; height: 24px; border-radius: 50%; background: var(--sky); }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 11px; height: 2px; border-radius: 2px; background: var(--blue-dark); transition: transform 180ms ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { margin: -5px 42px 28px 60px; color: var(--ink-soft); line-height: 1.7; }

.site-footer { padding: 70px 0 28px; color: rgba(255, 255, 255, .72); background: #0c2e48; }
.footer-main { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 70px; padding-bottom: 50px; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); opacity: .95; }
.footer-main h3 { margin: 0 0 17px; color: var(--white); font-size: 14px; }
.footer-main p, .footer-main li { font-size: 13px; line-height: 1.7; }
.footer-main ul { margin: 0; padding: 0; list-style: none; }
.footer-brand p { max-width: 340px; margin: 20px 0 0; }
.footer-phone { color: var(--white); font-size: 19px; font-weight: 760; }
.footer-main div:last-child p { margin: 8px 0 0; }
.medical-warning { padding: 22px; border-top: 1px solid rgba(255, 255, 255, .13); border-bottom: 1px solid rgba(255, 255, 255, .13); color: var(--white); font-size: 17px; font-weight: 800; letter-spacing: .02em; text-align: center; }
.footer-legal { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-top: 28px; }
.footer-legal p { max-width: 650px; margin: 0; font-size: 11px; line-height: 1.65; }
.footer-legal__info { display: flex; flex-direction: column; align-items: flex-start; }
.footer-legal__links { min-width: 300px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
.footer-legal a { font-size: 11px; border-bottom: 1px solid rgba(255, 255, 255, .24); }
.mobile-sticky { display: none; }

/* Thank-you page */
.metric-pixel { position: absolute; left: -9999px; }
.thanks-page { min-height: 100vh; background: var(--sky-soft); }
.thanks-shell { min-height: 100vh; display: flex; flex-direction: column; }
.thanks-main { flex: 1; display: flex; }
.thanks-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(115deg, rgba(245, 250, 254, .98), rgba(236, 246, 253, .96) 58%, rgba(228, 243, 252, .94));
}
.thanks-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(47, 126, 200, .1) .8px, transparent .8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}
.thanks-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.thanks-orb--one { width: 430px; height: 430px; right: -120px; top: -180px; background: rgba(84, 179, 228, .18); }
.thanks-orb--two { width: 300px; height: 300px; left: -130px; bottom: -160px; background: rgba(233, 42, 111, .08); }
.thanks-wrap { position: relative; z-index: 1; display: flex; justify-content: center; }
.thanks-card {
  width: min(100%, 760px);
  padding: 58px 64px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.thanks-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 15px 34px rgba(27, 145, 100, .24);
}
.thanks-icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.thanks-card .eyebrow { justify-content: center; }
.thanks-card h1 { margin: 0; font-size: clamp(42px, 5vw, 64px); line-height: 1.06; letter-spacing: -.045em; text-wrap: balance; }
.thanks-lead { max-width: 600px; margin: 22px auto 0; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.thanks-next {
  max-width: 520px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  margin: 34px auto 0;
  padding: 20px 24px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--sky-soft);
}
.thanks-next__number { color: var(--blue); font-size: 12px; font-weight: 820; }
.thanks-next strong { font-size: 16px; }
.thanks-next p { margin: 5px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.thanks-actions { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 34px; }
.thanks-call { color: var(--blue-dark); font-size: 15px; font-weight: 760; border-bottom: 1px solid rgba(31, 98, 167, .25); }
.thanks-footer { padding-top: 28px; }

.modal-overlay {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(4, 30, 50, .72);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 1050px);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .8fr);
  gap: 54px;
  align-items: center;
  padding: 58px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 5% 12%, rgba(89, 175, 230, .42), transparent 34%), linear-gradient(135deg, #1e6eae, #0d416f);
  box-shadow: 0 34px 100px rgba(0, 18, 32, .42);
}

.modal-dialog h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.modal-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .header-facts { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 390px; }
  .hero h1 { font-size: clamp(42px, 5.2vw, 58px); }
  .hero-visual__wash { width: 390px; height: 390px; }
  .doctor-image { width: 370px; }
  .return-card { left: -28px; }
  .intro-grid { gap: 50px; }
  .form-panel { gap: 42px; padding: 48px; }
  .situation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path-layout { gap: 60px; }
  .method-grid { gap: 52px; }
  .method-visual__card { width: 300px; }
  .method-visual__circle { width: 160px; height: 160px; }
  .doctor-panel__copy { padding: 48px 42px; }
  .faq-grid { gap: 54px; }
}

@media (max-width: 820px) {
  .section { padding: 19px 0; }
  .phone-link span, .button--outline { display: none; }
  .phone-link { width: 44px; height: 44px; justify-content: center; border-radius: 50%; background: var(--sky); }
  .hero { min-height: auto; padding: 11px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { max-width: none; padding: 0; }
  .hero-visual { width: min(100%, 520px); min-height: 500px; margin: 0 auto; }
  .hero-visual__wash { right: 4%; bottom: 8px; }
  .doctor-image { right: 4%; bottom: -48px; }
  .return-card { left: 2%; top: 110px; }
  .clinic-card { right: 3%; bottom: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .intro-grid, .form-panel { grid-template-columns: 1fr; }
  .intro-grid { gap: 34px; }
  .form-panel { gap: 38px; }
  .form-panel::after { right: -18px; bottom: auto; top: 65px; }
  .finance-grid { grid-template-columns: 1fr; }
  .finance-card { min-height: 430px; }
  .situation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path-layout { grid-template-columns: 1fr; gap: 50px; }
  .path-copy, .faq-intro { position: static; }
  .method-grid { grid-template-columns: 1fr; gap: 38px; }
  .method-visual { width: min(100%, 560px); margin-inline: auto; }
  .doctor-panel { grid-template-columns: 1fr; }
  .doctor-panel__image { min-height: 460px; }
  .doctor-panel__image img { height: 560px; bottom: -68px; }
  .doctor-panel__copy { padding: 48px; }
  .section-heading--split { align-items: flex-start; flex-direction: column; }
  .address-grid { grid-template-columns: 1fr; }
  .address-grid article { min-height: 220px; }
  .address-grid article > p { margin-top: 35px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .modal-dialog { grid-template-columns: 1fr; gap: 34px; padding: 54px 44px 44px; }
  .modal-copy { padding-right: 30px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; }
  .footer-legal__links { min-width: 0; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: 70px; }
  .brand img { width: 145px; }
  .section { padding: 16.5px 0; }
  .hero { padding-top: 8.5px; }
  .eyebrow { margin-bottom: 14px; font-size: 11px; letter-spacing: .11em; }
  .hero h1 { font-size: clamp(36px, 11.2vw, 46px); line-height: 1.04; letter-spacing: -.05em; }
  .hero-lead { margin-top: 20px; font-size: 17px; line-height: 1.55; }
  .hero-benefits { display: grid; gap: 10px; margin-top: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; margin-top: 26px; }
  .hero-actions .button { width: 100%; padding-inline: 18px; font-size: 14px; }
  .hero-phone { align-self: center; font-size: 14px; }
  .scarcity { justify-content: center; }
  .hero-visual { min-height: 420px; margin-top: 0; }
  .hero-visual__wash { width: 330px; height: 330px; right: -38px; bottom: 10px; }
  .doctor-image { width: 315px; height: 470px; right: -4px; bottom: -45px; }
  .return-card { width: 145px; left: 0; top: 84px; padding: 16px; border-radius: 20px; }
  .return-card__value { font-size: 42px; }
  .return-card__text { font-size: 11px; }
  .clinic-card { right: 0; bottom: 16px; padding: 13px 15px; font-size: 12px; }
  .trust-grid > div { min-height: 96px; padding: 18px 16px; }
  .trust-grid strong { font-size: 18px; }
  .intro-section h2, .form-panel h2 { font-size: 36px; }
  .intro-copy { font-size: 16px; }
  .form-section { padding-top: 0; }
  .form-panel { width: 100%; padding: 42px 14px 14px; border-radius: 0; }
  .form-panel__copy { padding-inline: 5px; }
  .form-panel__copy > p:not(.eyebrow) { font-size: 16px; }
  .form-card { min-height: 404px; padding: 24px 20px; border-radius: 22px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .path-copy h2, .method-copy h2, .doctor-panel__copy h2, .faq-intro h2 { font-size: 36px; }
  .section-heading > p:last-child { font-size: 16px; }
  .finance-card { min-height: 0; padding: 28px 22px; border-radius: 26px; }
  .finance-card__top { margin-bottom: 42px; }
  .finance-card h3 { font-size: 32px; }
  .finance-card > p { font-size: 16px; }
  .plain-checks { margin-top: 28px; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-grid article { min-height: 220px; padding: 24px; }
  .situation-grid h3 { margin-top: 40px; }
  .path-layout { gap: 38px; }
  .path-copy > p:not(.eyebrow) { font-size: 16px; }
  .path-copy .button { width: 100%; padding-inline: 20px; }
  .steps-list li { grid-template-columns: 46px 1fr; gap: 15px; padding: 24px 0 28px; }
  .steps-list li > span { width: 42px; height: 42px; font-size: 11px; }
  .steps-list h3 { font-size: 21px; }
  .steps-list p { font-size: 15px; }
  .method-visual { min-height: 420px; }
  .method-visual::before { width: 340px; height: 340px; left: -38px; }
  .method-visual__card { width: 250px; top: 75px; padding: 22px; border-radius: 25px; }
  .method-visual__card img { height: 150px; }
  .method-visual__card strong { font-size: 17px; }
  .method-visual__circle { width: 138px; height: 138px; right: -4px; bottom: 35px; padding: 20px; }
  .method-visual__circle strong { font-size: 50px; }
  .method-copy > p:not(.eyebrow):not(.method-warning) { font-size: 16px; }
  .assessment-list > div { grid-template-columns: 32px 1fr; }
  .assessment-list p { font-size: 14px; }
  .doctor-panel { width: 100%; border-radius: 0; border-left: 0; border-right: 0; }
  .doctor-panel__image { min-height: 410px; }
  .doctor-panel__image img { height: 510px; bottom: -70px; }
  .doctor-panel__copy { padding: 40px 20px 46px; }
  .doctor-panel__copy > p:not(.eyebrow) { font-size: 16px; }
  .doctor-panel__copy .button { width: 100%; padding-inline: 18px; }
  .schedule-card { min-width: 0; width: 100%; }
  .address-grid article { min-height: 210px; padding: 24px; }
  .address-grid h3 { font-size: 22px; }
  .address-grid h3.address-grid__nowrap { font-size: clamp(18px, 6vw, 21px); }
  .phone-large { font-size: 18px; }
  .faq-list summary { min-height: 88px; grid-template-columns: 32px 1fr 24px; gap: 10px; font-size: 16px; }
  .faq-list details > p { margin: -2px 24px 25px 42px; font-size: 15px; }
  .modal-overlay { align-items: start; padding: 10px; }
  .modal-dialog { max-height: none; gap: 28px; padding: 52px 14px 14px; border-radius: 26px; }
  .modal-copy { padding: 0 7px; }
  .modal-dialog h2 { font-size: 34px; }
  .modal-copy > p:not(.eyebrow) { font-size: 15px; }
  .modal-close { top: 10px; right: 10px; width: 38px; height: 38px; }
  .thanks-section { min-height: 0; padding: 28px 0; }
  .thanks-card { padding: 38px 20px; border-radius: 26px; }
  .thanks-icon { width: 70px; height: 70px; margin-bottom: 22px; }
  .thanks-icon svg { width: 34px; height: 34px; }
  .thanks-card h1 { font-size: 39px; }
  .thanks-lead { margin-top: 18px; font-size: 16px; }
  .thanks-next { grid-template-columns: 34px 1fr; gap: 10px; margin-top: 28px; padding: 18px; }
  .thanks-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 28px; }
  .thanks-actions .button { width: 100%; padding-inline: 18px; }
  .thanks-call { align-self: center; }
  .thanks-footer { padding: 28px 0; }
  .site-footer { padding-bottom: 94px; }
  .thanks-footer { padding-bottom: 28px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .medical-warning { padding-inline: 0; font-size: 14px; line-height: 1.5; }
  .mobile-sticky {
    position: fixed;
    z-index: 80;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 54px;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 46px rgba(13, 61, 95, .24);
    backdrop-filter: blur(14px);
  }
  .mobile-sticky > button {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-inline: 15px;
    border-radius: 999px;
    color: var(--white);
    border: 0;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    font-size: 13px;
    font-weight: 780;
    cursor: pointer;
  }
  .mobile-sticky > a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--sky);
  }
  .mobile-sticky svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-sticky--hidden { display: none; }
}

@media (max-width: 1024px) {
  body { zoom: 1.1; }
}

@media (min-width: 1025px) {
  body { zoom: 1.25; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


.lb-widget {
  display: none !important;
}
.__jivoMobileButton {
  bottom: 75px !important;
}

@media (min-width: 1024px) {
  .lb-widget {
    display: flex !important;
  }
}
