:root {
  --primary: #0891b2;
  --primary-dark: #0a4f63;
  --primary-deep: #073b4a;
  --primary-soft: #ecfeff;
  --accent: #059669;
  --accent-dark: #047857;
  --accent-soft: #ecfdf5;
  --ink: #103c49;
  --ink-soft: #4a6871;
  --surface: #ffffff;
  --surface-soft: #f3fafb;
  --border: #cfe8ed;
  --border-strong: #9dd7e2;
  --warning: #f5b82e;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(10, 79, 99, .08);
  --shadow-md: 0 20px 50px rgba(10, 79, 99, .14);
  --shadow-lg: 0 30px 80px rgba(5, 67, 83, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font-heading: "Figtree", system-ui, sans-serif;
  --font-body: "Noto Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { touch-action: manipulation; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: #fff;
  background: var(--primary-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }

.utility-bar { color: #dff8fb; background: var(--primary-deep); font-family: var(--font-heading); font-size: 14px; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p { margin: 0; }
.utility-inner a { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; text-decoration: none; }
.utility-inner svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(207,232,237,.75); backdrop-filter: blur(14px); }
.header-inner { min-height: 80px; display: flex; align-items: center; gap: 28px; }
.brand { min-width: 250px; display: inline-flex; align-items: center; gap: 10px; color: var(--primary-deep); font-family: var(--font-heading); text-decoration: none; }
.brand img { width: 60px; height: 44px; padding: 5px; object-fit: contain; background: var(--primary-deep); border-radius: 9px; }
.brand span { display: flex; flex-direction: column; }
.brand strong { font-size: 16px; font-weight: 800; line-height: 1.1; }
.brand small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.header-inner nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.header-inner nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; color: var(--ink); font-family: var(--font-heading); font-size: 15px; font-weight: 650; text-decoration: none; }
.header-inner nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.header-inner nav a:hover::after, .header-inner nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button { min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 2px solid transparent; border-radius: 999px; font-family: var(--font-heading); font-weight: 750; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid #f5b82e; outline-offset: 3px; }
.button-primary { color: #fff; background: var(--primary); box-shadow: 0 9px 20px rgba(8,145,178,.22); }
.button-primary:hover { background: #077f9c; box-shadow: 0 12px 24px rgba(8,145,178,.3); }
.button-accent { color: #fff; background: var(--accent); box-shadow: 0 9px 20px rgba(5,150,105,.22); }
.button-accent:hover { background: var(--accent-dark); box-shadow: 0 12px 24px rgba(5,150,105,.3); }
.button-outline { color: var(--primary-dark); background: transparent; border-color: var(--border-strong); }
.button-outline:hover { background: var(--primary-soft); border-color: var(--primary); }
.button-light { color: var(--primary-deep); background: #fff; }
.button-light:hover { background: var(--primary-soft); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.52); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.button-large { min-height: 56px; padding-inline: 28px; }
.header-cta { flex: 0 0 auto; }

.hero { position: relative; overflow: hidden; padding: 76px 0 92px; background: linear-gradient(120deg, #fff 0%, #f2fcfd 46%, #dff8fa 100%); }
.hero::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 45%; background-image: radial-gradient(rgba(8,145,178,.11) 1px, transparent 1px); background-size: 20px 20px; mask-image: linear-gradient(to left, #000, transparent); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 310px; height: 310px; right: -120px; top: 70px; background: rgba(34,211,238,.16); }
.hero-orb-two { width: 180px; height: 180px; left: -90px; bottom: -50px; border: 36px solid rgba(5,150,105,.07); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(390px, .74fr); align-items: center; gap: clamp(48px, 7vw, 88px); }
.hero-copy { max-width: 680px; }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 9px; color: var(--primary); font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.eyebrow-icon { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: var(--primary); border-radius: 50%; font-size: 13px; letter-spacing: 0; }
.eyebrow.light { color: #9ee8f2; }
h1, h2, h3 { margin-top: 0; color: var(--primary-deep); font-family: var(--font-heading); line-height: 1.08; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(44px, 5.3vw, 70px); font-weight: 850; letter-spacing: -.045em; }
h1 span { color: var(--primary); }
h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -.035em; }
h3 { margin-bottom: 12px; font-size: 23px; font-weight: 750; }
.hero-lead { max-width: 620px; margin: 0 0 28px; color: var(--ink-soft); font-size: 19px; line-height: 1.7; }
.benefit-list { margin: 0; padding: 0; display: grid; gap: 15px; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 28px 1fr; align-items: start; column-gap: 11px; color: #315661; }
.benefit-list li > span { width: 27px; height: 27px; display: inline-flex; align-items: center; justify-content: center; color: var(--accent-dark); background: var(--accent-soft); border: 1px solid #a7e5cc; border-radius: 50%; font-family: var(--font-heading); font-size: 14px; font-weight: 900; }
.benefit-list li > div { padding-top: 1px; }
.benefit-list strong { color: var(--ink); }
.hero-actions { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--primary-dark); font-family: var(--font-heading); font-weight: 750; text-underline-offset: 4px; }
.text-link svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.insurance-note { margin: 24px 0 0; display: flex; align-items: flex-start; gap: 8px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.insurance-note span { color: var(--accent); font-weight: 900; }

.consult-card { position: relative; padding: 32px; background: #fff; border: 1px solid rgba(157,215,226,.78); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.consult-card::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.7); border-radius: inherit; pointer-events: none; }
.consult-heading { margin-bottom: 23px; }
.form-kicker { margin: 0 0 4px; color: var(--accent-dark); font-family: var(--font-heading); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.consult-heading h2 { margin-bottom: 8px; font-size: 29px; }
.consult-heading > p:last-child { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; }
.field label, .consent { color: var(--ink); font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
.field label span, .consent span span { color: var(--danger); }
input, select { width: 100%; min-height: 50px; padding: 0 14px; color: var(--ink); background: #fbfeff; border: 1px solid #b8d8df; border-radius: var(--radius-sm); font-size: 16px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
select { appearance: none; padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230a4f63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-position: right 13px center; background-repeat: no-repeat; }
input:hover, select:hover { border-color: var(--primary); }
input:focus, select:focus { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8,145,178,.12); outline: none; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 0; color: var(--danger); font-size: 12px; line-height: 1.35; }
.field-error:not(:empty) { min-height: 16px; }
.consent { min-height: 44px; display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: var(--ink-soft); font-family: var(--font-body); font-size: 12px; font-weight: 500; line-height: 1.45; cursor: pointer; }
.consent input { width: 19px; min-height: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--accent); }
.form-submit { width: 100%; border: 0; }
.form-submit svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.form-privacy { margin: -3px 0 0; display: flex; justify-content: center; align-items: center; gap: 7px; color: #66818a; font-size: 11px; line-height: 1.45; text-align: center; }
.form-privacy svg { width: 14px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; }
.form-success { padding: 34px 10px 14px; text-align: center; }
.form-success > span { width: 60px; height: 60px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--accent); border-radius: 50%; font-size: 28px; font-weight: 900; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--ink-soft); }

.trust-strip { position: relative; z-index: 2; color: #fff; background: var(--primary-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 126px; padding: 22px 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid rgba(255,255,255,.13); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { font-family: var(--font-heading); font-size: 32px; line-height: 1.1; }
.trust-item strong span { font-size: 17px; color: #9ee8f2; }
.trust-item > span { margin-top: 6px; color: #c8e3e9; font-size: 13px; }

.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 680px; margin: 0 auto; color: var(--ink-soft); font-size: 17px; }
.conditions { background: #fff; }
.condition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.condition-card { position: relative; overflow: hidden; min-height: 350px; padding: 35px 32px 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.condition-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.condition-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 140px; height: 140px; background: var(--primary-soft); border-radius: 50%; transition: transform .25s ease; }
.condition-card:hover::after { transform: scale(1.16); }
.condition-icon { width: 62px; height: 62px; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; color: var(--primary); background: var(--primary-soft); border-radius: 18px; }
.condition-icon svg { width: 38px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 26px; right: 28px; margin: 0; color: #b7d8df; font-family: var(--font-heading); font-size: 18px; font-weight: 800; }
.condition-card p:not(.card-number) { color: var(--ink-soft); }
.condition-card a { position: absolute; z-index: 2; right: 32px; bottom: 30px; left: 32px; min-height: 44px; display: inline-flex; align-items: center; justify-content: space-between; color: var(--primary-dark); font-family: var(--font-heading); font-size: 14px; font-weight: 750; text-decoration: none; }
.featured-card { color: #fff; background: linear-gradient(145deg, var(--primary-dark), #087a92); border-color: transparent; transform: translateY(-12px); box-shadow: 0 24px 46px rgba(10,79,99,.2); }
.featured-card:hover { transform: translateY(-18px); }
.featured-card h3, .featured-card a { color: #fff; }
.featured-card p:not(.card-number) { color: #d4eef3; }
.featured-card .card-number { color: rgba(255,255,255,.35); }
.featured-card .condition-icon { color: #fff; background: rgba(255,255,255,.12); }
.featured-card::after { background: rgba(255,255,255,.06); }
.section-disclaimer { margin: 28px auto 0; color: #6b858d; font-size: 12px; text-align: center; }

.results-section { color: #fff; background: var(--primary-deep); }
.results-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: clamp(44px, 7vw, 88px); }
.results-copy h2 { color: #fff; }
.results-copy > p:not(.eyebrow) { color: #bfdae1; font-size: 17px; }
.result-quote { margin: 30px 0; padding-left: 24px; border-left: 3px solid var(--accent); }
.stars { color: var(--warning); font-family: var(--font-heading); letter-spacing: 3px; line-height: 1; }
.result-quote blockquote { margin: 12px 0; color: #fff; font-family: var(--font-heading); font-size: 20px; font-weight: 650; line-height: 1.55; }
.result-quote cite { color: #9fc4d0; font-size: 13px; font-style: normal; }
.comparison { --comparison-surface: #dff4f7; position: relative; height: 620px; margin: 0; overflow: hidden; background: var(--comparison-surface); border: 10px solid rgba(255,255,255,.1); border-radius: 26px; box-shadow: 0 28px 70px rgba(0,0,0,.26); }
.comparison-image { position: absolute; inset: 0; background: var(--comparison-surface); }
.comparison-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.comparison-image span { position: absolute; top: 20px; padding: 8px 13px; color: #fff; background: rgba(7,59,74,.86); border-radius: 999px; font-family: var(--font-heading); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.comparison-after span { right: 20px; }
.comparison-before { width: 100%; overflow: hidden; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.comparison-before img { width: 100%; max-width: none; }
.comparison-before span { left: 20px; }
.comparison-line { position: absolute; top: 0; bottom: 32px; left: 50%; width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.comparison-line span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--primary-deep); background: #fff; border-radius: 50%; box-shadow: 0 6px 20px rgba(0,0,0,.25); transform: translate(-50%, -50%); }
.comparison-line svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.comparison-range { position: absolute; z-index: 3; inset: 0 0 32px; width: 100%; height: auto; padding: 0; opacity: 0; cursor: ew-resize; touch-action: pan-y; }
.comparison figcaption { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; height: 32px; display: flex; align-items: center; justify-content: center; color: #d6e9ee; background: rgba(7,59,74,.9); font-size: 10px; }

.process { background: var(--surface-soft); }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; counter-reset: none; }
.process-grid li { position: relative; padding: 36px 30px 30px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.process-grid li:not(:last-child)::after { content: ""; position: absolute; z-index: 2; top: 66px; right: -26px; width: 28px; height: 2px; background: var(--border-strong); }
.step-number { position: absolute; top: -16px; left: 28px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--accent); border: 4px solid var(--surface-soft); border-radius: 50%; font-family: var(--font-heading); font-weight: 800; }
.step-icon { width: 56px; height: 56px; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; color: var(--primary); background: var(--primary-soft); border-radius: 16px; }
.step-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-grid p { margin: 0; color: var(--ink-soft); }

.comparison-section { background: #fff; }
.compare-wrap { max-width: 1040px; }
.compare-intro { max-width: 700px; margin: 0 auto 42px; text-align: center; }
.compare-intro .eyebrow { justify-content: center; }
.compare-intro p:last-child { color: var(--ink-soft); }
.compare-table { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.compare-row { display: grid; grid-template-columns: 1fr 1.15fr 1.15fr; }
.compare-row > div { min-height: 72px; padding: 18px 22px; display: flex; align-items: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare-row > div:last-child { border-right: 0; }
.compare-row:last-child > div { border-bottom: 0; }
.compare-row > div:first-child { color: var(--primary-deep); font-family: var(--font-heading); font-weight: 750; }
.compare-head > div { color: #fff; background: var(--primary-deep); font-family: var(--font-heading); font-size: 14px; font-weight: 750; }
.compare-head .preferred { color: #fff; background: var(--accent-dark); }
.compare-head .preferred span { margin-right: 8px; padding: 3px 8px; color: var(--accent-dark); background: #fff; border-radius: 999px; font-size: 10px; text-transform: uppercase; }
.preferred { background: #f0fcf7; }
.yes { width: 24px; height: 24px; margin-right: 9px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--accent-dark); background: #d3f5e6; border-radius: 50%; font-family: var(--font-heading); font-size: 13px; font-weight: 900; }

.doctor-section { overflow: hidden; background: var(--surface-soft); }
.doctor-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(48px, 8vw, 100px); }
.doctor-photo { position: relative; width: 100%; max-width: 440px; aspect-ratio: 4 / 5; align-self: center; }
.doctor-photo::before { content: ""; position: absolute; inset: -20px 40px 30px -34px; background: linear-gradient(145deg, #d5f3f7, #bce7d6); border-radius: 32px; transform: rotate(-4deg); }
.doctor-photo img { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 26px; box-shadow: var(--shadow-md); }
.doctor-badge { position: absolute; right: -32px; bottom: 28px; width: 150px; padding: 18px; color: #fff; background: var(--primary-deep); border: 5px solid var(--surface-soft); border-radius: 18px; box-shadow: var(--shadow-md); }
.doctor-badge strong { display: block; font-family: var(--font-heading); font-size: 30px; line-height: 1; }
.doctor-badge span { display: block; margin-top: 5px; color: #cbe7ed; font-size: 11px; line-height: 1.35; }
.doctor-copy { max-width: 600px; }
.doctor-lead { color: var(--primary); font-family: var(--font-heading); font-size: 21px; font-weight: 700; }
.doctor-copy > p:not(.eyebrow):not(.doctor-lead) { color: var(--ink-soft); }
.credential-list { margin: 26px 0 32px; padding: 0; display: grid; gap: 13px; list-style: none; }
.credential-list li { display: grid; grid-template-columns: 25px 1fr; gap: 10px; }
.credential-list span { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); background: var(--accent-soft); border-radius: 50%; font-size: 12px; font-weight: 900; }

.reviews-section { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 22px; }
.review-card { margin: 0; padding: 32px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.review-card blockquote { margin: 22px 0 28px; color: #315661; font-family: var(--font-heading); font-size: 18px; font-weight: 580; line-height: 1.6; }
.review-card footer { margin-top: auto; padding-top: 20px; display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.review-card footer strong { color: var(--primary-deep); font-family: var(--font-heading); }
.review-card footer span { color: #758b92; font-size: 12px; }
.featured-review { color: #fff; background: var(--primary-dark); border-color: transparent; transform: translateY(-12px); box-shadow: var(--shadow-md); }
.featured-review blockquote, .featured-review footer strong { color: #fff; }
.featured-review footer { border-color: rgba(255,255,255,.14); }
.featured-review footer span { color: #add2dc; }

.faq-section { background: var(--surface-soft); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(44px, 8vw, 100px); }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:not(.eyebrow) { color: var(--ink-soft); }
.accordion { display: grid; gap: 12px; }
.accordion details { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 5px 15px rgba(10,79,99,.04); }
.accordion summary { min-height: 68px; padding: 18px 60px 18px 22px; position: relative; display: flex; align-items: center; color: var(--primary-deep); font-family: var(--font-heading); font-size: 17px; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: absolute; right: 22px; width: 26px; height: 26px; border: 1px solid var(--border-strong); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 2px; background: var(--primary); transform: translate(-50%,-50%); transition: transform .2s ease; }
.accordion summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.accordion details[open] summary { color: var(--primary); }
.accordion details p { margin: 0; padding: 0 22px 22px; color: var(--ink-soft); }

.final-cta { padding: 74px 0; color: #fff; background: linear-gradient(120deg, #0a4f63, #087b92); }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; }
.final-cta h2 { color: #fff; }
.final-cta p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: #c7e5eb; }
.final-actions { display: grid; gap: 13px; }

.site-footer { padding: 70px 0 22px; color: #b7d2d9; background: #062f3b; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .9fr 1.1fr .85fr; gap: 52px; }
.brand-light { min-width: 0; color: #fff; }
.brand-light small { color: #9fc4d0; }
.footer-brand p { max-width: 360px; }
.site-footer h2 { margin-bottom: 16px; color: #fff; font-size: 15px; letter-spacing: .07em; text-transform: uppercase; }
.site-footer address { font-style: normal; }
.site-footer a:not(.brand) { min-height: 36px; display: block; color: #d6e9ee; text-decoration: none; }
.site-footer a:not(.brand):hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.site-footer p, .site-footer address { font-size: 13px; line-height: 1.75; }
.footer-bottom { margin-top: 48px; padding-top: 18px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: 11px; }

.mobile-cta { display: none; }

@media (max-width: 1060px) {
  .header-inner nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 410px; gap: 42px; }
  h1 { font-size: 54px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 860px) {
  body { padding-bottom: 76px; }
  .section { padding: 80px 0; }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: center; }
  .header-inner { min-height: 72px; }
  .header-cta { display: none; }
  .brand { min-width: 0; }
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .consult-card { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .condition-grid, .process-grid, .review-grid { grid-template-columns: 1fr; }
  .condition-card { min-height: 310px; }
  .featured-card, .featured-card:hover, .featured-review { transform: none; }
  .process-grid li:not(:last-child)::after { display: none; }
  .results-grid, .doctor-grid, .faq-grid { grid-template-columns: 1fr; }
  .comparison { height: 580px; }
  .doctor-photo { width: calc(100% - 28px); margin-left: 28px; }
  .faq-intro { position: static; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .final-actions { max-width: 390px; }
  .compare-table { overflow-x: auto; }
  .compare-row { min-width: 760px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .footer-grid > div:nth-child(3) { display: none; }
  .mobile-cta { position: fixed; z-index: 500; right: 0; bottom: 0; left: 0; min-height: 76px; padding: 10px max(14px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 10px; background: rgba(255,255,255,.96); border-top: 1px solid var(--border); box-shadow: 0 -8px 28px rgba(7,59,74,.12); backdrop-filter: blur(14px); }
  .mobile-cta .button { min-height: 52px; padding: 0 16px; }
  .mobile-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 68px 0; }
  .brand img { width: 52px; height: 39px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .hero { padding: 42px 0 64px; }
  h1 { font-size: clamp(40px, 12vw, 52px); }
  h2 { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .consult-card { padding: 26px 20px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { min-height: 108px; padding: 18px 10px; }
  .trust-item strong { font-size: 28px; }
  .condition-card { padding-inline: 26px; }
  .condition-card a { right: 26px; left: 26px; }
  .comparison { height: 470px; border-width: 6px; }
  .doctor-badge { right: -12px; }
  .review-card { padding: 27px 24px; }
  .accordion summary { padding-left: 18px; font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:nth-child(2) { display: block; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

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