:root {
  --bg: #ffffff;
  --bg-soft: #f4f9f8;
  --bg-tint: #eaf7f5;
  --ink: #123334;
  --muted: #627879;
  --line: #dce9e8;
  --primary: #087f7a;
  --primary-dark: #056965;
  --primary-light: #dff3f1;
  --accent: #f47b3a;
  --accent-light: #fff0e7;
  --success: #16845b;
  --danger: #d84747;
  --blue: #3d7fc4;
  --purple: #7c63c7;
  --shadow-sm: 0 8px 24px rgba(22, 70, 69, .08);
  --shadow-md: 0 18px 50px rgba(22, 70, 69, .13);
  --shadow-lg: 0 30px 90px rgba(16, 55, 55, .2);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-h: 76px;
}
html { scroll-padding-top: 92px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Manrope, Onest, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(220,233,232,.85);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-logo { width: auto; height: clamp(34px, 3.2vw, 42px); max-width: clamp(150px, 18vw, 210px); object-fit: contain; }
.brand-logo-small { height: 30px; max-width: 136px; }
.brand-logo-quiz { height: 38px; max-width: 180px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--primary); color: white; box-shadow: 0 8px 18px rgba(8,127,122,.23); }
.brand-mark svg { width: 20px; height: 20px; }
.brand-mark.small { width: 31px; height: 31px; border-radius: 9px; }
.brand-mark.small svg { width: 16px; height: 16px; }
.brand-text { font-weight: 800; font-size: 21px; letter-spacing: -.5px; }
.brand-text span { color: var(--primary); }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #3f5f60; font-size: 14px; font-weight: 650; transition: .2s; }
.desktop-nav a:hover { color: var(--primary); }
.header-phone { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 12px; font-weight: 800; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; }
.header-phone b, .header-phone small { display: block; line-height: 1.15; }
.header-phone small { margin-top: 2px; color: var(--muted); font-size: 10.5px; font-weight: 750; }
.header-phone:hover b { color: var(--primary); }
.header-cta { margin-left: 8px; }
.mobile-menu-button, .mobile-nav { display: none; }

@media (min-width: 621px) {
  .mobile-menu-button, .mobile-nav { display: none !important; }
}

.button {
  border: 0;
  min-height: 48px;
  border-radius: 13px;
  padding: 0 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 8px 20px rgba(8,127,122,.2);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(8,127,122,.25); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .48; cursor: not-allowed; transform: none; box-shadow: none; }
.button svg { width: 18px; height: 18px; }
.button-sm { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.button-lg { min-height: 56px; padding-inline: 26px; border-radius: 15px; }
.button-full { width: 100%; }
.button-secondary { background: #fff; color: var(--primary); border: 1px solid #cfe3e1; box-shadow: none; }
.button-secondary:hover { background: var(--bg-tint); box-shadow: none; }
.button-white { background: white; color: var(--primary); box-shadow: none; }
.button-white:hover { background: #f6fffe; box-shadow: 0 10px 25px rgba(0,0,0,.1); }
.icon-button { width: 42px; height: 42px; padding: 0; border-radius: 12px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; cursor: pointer; }
.icon-button svg { width: 20px; height: 20px; }

.hero { min-height: 680px; padding: 72px 0 62px; position: relative; overflow: hidden; background: linear-gradient(135deg, #fbfefd 0%, #f1faf8 60%, #fff8f2 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.hero-copy { max-width: 650px; }
.eyebrow, .section-kicker, .quiz-kicker { color: var(--primary); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; background: rgba(255,255,255,.82); border: 1px solid rgba(8,127,122,.16); border-radius: 999px; text-transform: none; letter-spacing: 0; font-size: 13px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #2fbf7f; display: inline-block; box-shadow: 0 0 0 4px rgba(47,191,127,.13); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 5vw, 68px); line-height: 1.04; letter-spacing: -2.6px; margin: 24px 0 22px; max-width: 720px; }
h1 span { color: var(--primary); }
.hero-lead { max-width: 620px; color: #526d6e; font-size: 19px; line-height: 1.65; margin-bottom: 30px; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.text-link { font-weight: 750; color: var(--primary); border-bottom: 1px dashed rgba(8,127,122,.45); }
.trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #506b6c; font-size: 14px; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 18px; height: 18px; padding: 3px; color: var(--primary); background: var(--primary-light); border-radius: 50%; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .7; }
.hero-blob-one { width: 420px; height: 420px; right: -170px; top: -160px; background: #d7f1ef; }
.hero-blob-two { width: 280px; height: 280px; left: -150px; bottom: -130px; background: #ffeadc; }
.hero-visual { min-height: 550px; position: relative; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(121,214,205,.35), rgba(121,214,205,0) 69%); }
.phone-card { width: 310px; min-height: 545px; background: #fff; border: 8px solid #163839; border-radius: 42px; padding: 18px 18px 20px; position: relative; z-index: 2; box-shadow: 0 38px 70px rgba(17,59,59,.25); transform: rotate(-2deg); }
.phone-top { display: flex; align-items: center; justify-content: center; position: relative; height: 17px; }
.phone-pill { width: 77px; height: 20px; border-radius: 10px; background: #163839; position: absolute; top: -20px; }
.phone-time { position: absolute; left: 5px; top: -5px; font-size: 10px; font-weight: 800; }
.mini-brand { margin: 18px 0 20px; display: flex; align-items: center; justify-content: center; min-height: 34px; }
.mini-progress { height: 5px; background: #e8f0ef; border-radius: 4px; overflow: hidden; }
.mini-progress span { display: block; width: 28%; height: 100%; background: var(--primary); }
.mini-step { color: var(--primary); font-size: 10px; font-weight: 800; margin: 12px 0 5px; text-transform: uppercase; letter-spacing: .08em; }
.mini-title { font-size: 20px; line-height: 1.2; font-weight: 800; margin-bottom: 18px; }
.mini-options { display: grid; gap: 10px; }
.mini-option { min-height: 66px; display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 15px; color: #3f5e5f; background: #fff; font-size: 13px; font-weight: 700; }
.mini-option svg { width: 23px; height: 23px; flex: 0 0 23px; color: var(--primary); }
.mini-option b { margin-left: auto; width: 21px; height: 21px; flex: 0 0 21px; border-radius: 50%; display: grid; place-items: center; font-size: 10px; line-height: 1; color: white; background: var(--primary); }
.mini-option.active { background: #eef9f8; border-color: var(--primary); box-shadow: 0 5px 14px rgba(8,127,122,.08); }
.mini-button { margin-top: 18px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: white; background: var(--primary); font-size: 13px; font-weight: 800; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 210px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); border-radius: 17px; backdrop-filter: blur(10px); }
.floating-card-top { right: -12px; top: 76px; }
.floating-card-bottom { left: -12px; bottom: 88px; }
.float-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; }
.float-icon.orange { color: var(--accent); background: var(--accent-light); }
.float-icon svg { width: 20px; height: 20px; }
.floating-card b, .floating-card small { display: block; }
.floating-card b { font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; margin-top: 2px; }

.logo-strip { border-block: 1px solid var(--line); background: white; }
.logo-strip-inner { min-height: 108px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.logo-strip-inner > div { display: flex; align-items: center; gap: 13px; padding: 18px 26px; border-right: 1px solid var(--line); }
.logo-strip-inner > div:first-child { padding-left: 0; }
.logo-strip-inner > div:last-child { border-right: 0; }
.logo-strip-inner svg { width: 29px; height: 29px; color: var(--primary); }
.logo-strip-inner b, .logo-strip-inner small { display: block; }
.logo-strip-inner b { font-size: 14px; }
.logo-strip-inner small { font-size: 12px; color: var(--muted); margin-top: 2px; }

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2, .benefit-copy h2, .faq-intro h2, .partner-card h2 { font-size: clamp(32px, 4vw, 47px); line-height: 1.13; letter-spacing: -1.5px; margin: 12px 0 16px; }
.section-heading p, .benefit-copy > p, .faq-intro > p { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-tools { display: flex; align-items: center; gap: 14px; margin: -18px 0 18px; flex-wrap: wrap; }
.service-search { min-height: 48px; flex: 1 1 320px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.service-search svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; }
.service-search input { width: 100%; height: 46px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.service-count { color: var(--muted); font-size: 13px; font-weight: 750; }
.service-more-wrap { display: flex; justify-content: center; margin-top: 22px; }
.service-empty { grid-column: 1 / -1; padding: 22px; border: 1px dashed var(--line); border-radius: 16px; background: white; color: var(--muted); font-weight: 750; text-align: center; }
.service-card { min-height: 132px; display: flex; align-items: center; gap: 16px; text-align: left; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 20px; cursor: pointer; transition: .2s; }
.service-card:hover { border-color: rgba(8,127,122,.5); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-icon, .step-icon { flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; color: var(--primary); background: var(--primary-light); }
.service-icon svg, .step-icon svg { width: 27px; height: 27px; }
.service-card b, .service-card small { display: block; }
.service-card b { font-size: 16px; line-height: 1.35; }
.service-card small { color: var(--muted); font-size: 12px; line-height: 1.4; margin-top: 5px; }
.card-arrow { width: 18px; height: 18px; color: #89a3a3; margin-left: auto; flex: 0 0 auto; }
.ai-prompt-card { margin-top: 22px; padding: 20px 22px; display: flex; align-items: center; gap: 16px; border-radius: 20px; border: 1px solid #cfe4e2; background: linear-gradient(120deg,#eef9f8,#fff); }
.ai-avatar { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 17px; background: linear-gradient(145deg, var(--primary), #4fbbb5); color: white; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(8,127,122,.2); }
.ai-avatar span { font-size: 14px; font-weight: 900; letter-spacing: .04em; }
.ai-avatar.small { width: 38px; height: 38px; border-radius: 12px; }
.ai-prompt-card b { display: block; margin-bottom: 2px; }
.ai-prompt-card p { color: var(--muted); margin: 0; font-size: 14px; }
.ai-prompt-card .button { margin-left: auto; flex: 0 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step-card { position: relative; min-height: 245px; padding: 28px 24px; border-radius: 22px; border: 1px solid var(--line); background: white; overflow: hidden; }
.step-card:after { content:""; position: absolute; width: 120px; height: 120px; border-radius: 50%; background: var(--primary-light); right: -50px; bottom: -60px; opacity: .6; }
.step-number { position: absolute; right: 18px; top: 13px; font-size: 38px; font-weight: 900; color: #e2eceb; letter-spacing: -.05em; }
.step-card h3 { margin: 22px 0 8px; font-size: 19px; }
.step-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.benefit-section { overflow: hidden; }
.benefit-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.benefit-visual { position: relative; }
.map-card, .large-map { position: relative; min-height: 470px; border-radius: 30px; overflow: hidden; background: #e8f1ee; box-shadow: var(--shadow-md); border: 1px solid #d8e6e3; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(93,130,127,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(93,130,127,.08) 1px, transparent 1px); background-size: 42px 42px; }
.map-road { position: absolute; background: #fff; box-shadow: 0 0 0 1px rgba(160,184,181,.4); }
.road-one { width: 130%; height: 42px; transform: rotate(-22deg); left: -15%; top: 42%; }
.road-two { width: 44px; height: 130%; transform: rotate(12deg); left: 37%; top: -15%; }
.road-three { width: 110%; height: 26px; transform: rotate(36deg); left: -20%; top: 25%; }
.map-pin { position: absolute; z-index: 3; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px 15px 15px 3px; transform: rotate(-45deg); box-shadow: 0 8px 18px rgba(18,51,52,.2); }
.map-pin svg { width: 22px; height: 22px; transform: rotate(45deg); }
.user-pin { left: 45%; top: 46%; color: white; background: var(--ink); }
.clinic-pin { color: white; background: var(--primary); }
.clinic-pin.pin-a { left: 20%; top: 22%; }
.clinic-pin.pin-b { right: 15%; top: 28%; }
.clinic-pin.pin-c { right: 26%; bottom: 17%; }
.map-info { position: absolute; z-index: 4; left: 22px; right: 22px; bottom: 22px; padding: 17px 19px; border-radius: 17px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.map-info b, .map-info span { display: block; }
.map-info span { color: var(--muted); font-size: 13px; margin-top: 2px; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 30px; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list li > span { width: 25px; height: 25px; flex: 0 0 auto; border-radius: 50%; color: var(--primary); background: var(--primary-light); display: grid; place-items: center; }
.feature-list svg { width: 15px; height: 15px; }
.feature-list b, .feature-list small { display: block; }
.feature-list small { color: var(--muted); margin-top: 3px; }
.distance-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff1e8;
  color: #b45309;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .01em;
}
.distance-pill svg { width: 16px; height: 16px; }
.distance-inline { margin-top: 8px; width: fit-content; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.accordion { display: grid; gap: 12px; }
.accordion details { background: white; border: 1px solid var(--line); border-radius: 17px; padding: 0 20px; }
.accordion summary { list-style: none; cursor: pointer; font-weight: 750; padding: 20px 42px 20px 0; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span:before, .accordion summary span:after { content:""; position: absolute; right: 8px; top: 50%; width: 14px; height: 2px; background: var(--primary); transform: translateY(-50%); transition: .2s; }
.accordion summary span:after { transform: translateY(-50%) rotate(90deg); }
.accordion details[open] summary span:after { transform: translateY(-50%) rotate(0deg); }
.accordion details p { color: var(--muted); padding: 0 0 20px; margin: 0; font-size: 14px; }
.partner-section { padding: 0 0 96px; }
.partner-card { min-height: 260px; padding: 52px 58px; border-radius: 30px; color: white; display: flex; align-items: center; gap: 40px; justify-content: space-between; background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.15), transparent 25%), linear-gradient(120deg,#076f6b,#0e928b); overflow: hidden; position: relative; }
.partner-card:before { content:"+"; position:absolute; right: 150px; top: -90px; font-size: 260px; line-height: 1; font-weight: 300; opacity: .06; }
.partner-card > div { max-width: 750px; position: relative; }
.partner-card h2 { margin-bottom: 12px; }
.partner-card p { color: rgba(255,255,255,.78); margin: 0; }
.section-kicker.light { color: #a8eee9; }
.site-footer { background: #102d2e; color: white; padding: 66px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 38px; }
.brand-light .brand-text span { color: #72d0ca; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.58); font-size: 14px; margin-top: 18px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-grid b { margin-bottom: 7px; }
.footer-grid a, .footer-link { color: rgba(255,255,255,.62); font-size: 14px; transition: .2s; }
.footer-grid a:hover, .footer-link:hover { color: white; }
.footer-link { border: 0; background: none; padding: 0; text-align: left; cursor: pointer; }
.footer-phone { font-weight: 850; color: white !important; }
.footer-schedule { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-bottom { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: 12px; }
/* Modals */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,35,36,.58); backdrop-filter: blur(6px); }
.quiz-shell { position: absolute; inset: 20px; max-width: 1080px; margin: auto; border-radius: 26px; background: white; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.quiz-topbar { min-height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line); }
.quiz-back { visibility: hidden; }
.quiz-progress-row { min-height: 44px; padding: 0 28px; display: flex; align-items: center; gap: 14px; background: #fbfdfd; }
.quiz-progress { flex: 1; max-width: 310px; height: 6px; background: #e6efee; border-radius: 5px; overflow: hidden; }
.quiz-progress span { height: 100%; width: 25%; display: block; background: var(--primary); border-radius: 5px; transition: width .3s ease; }
.quiz-progress-row > span { margin-left: auto; color: var(--muted); font-size: 12px; font-weight: 700; }
.quiz-content { flex: 1; overflow-y: auto; overscroll-behavior: contain; }
.quiz-screen { display: none; width: min(100% - 44px, 800px); margin: 0 auto; padding: 36px 0 46px; animation: fadeIn .23s ease; }
.quiz-screen.active { display: block; }
.quiz-heading { max-width: 670px; margin-bottom: 27px; }
.quiz-heading.centered { text-align: center; margin-inline: auto; }
.quiz-heading h2, .result-summary h2, .results-header h2, .phone-form-copy h2, .success-screen h2 { font-size: clamp(29px,4vw,40px); line-height: 1.14; letter-spacing: -1.1px; margin: 8px 0 10px; }
.quiz-heading p, .result-summary p, .results-header p, .phone-form-copy > p, .success-screen > p { color: var(--muted); margin-bottom: 0; }
.quiz-service-search { width: min(100%, 560px); min-height: 50px; margin: -10px 0 18px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 6px 18px rgba(18,51,52,.05); }
.quiz-service-search svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; }
.quiz-service-search input { flex: 1; min-width: 0; height: 48px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.quiz-option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-option { position: relative; min-height: 94px; text-align: left; display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: white; cursor: pointer; transition: .18s; }
.quiz-option:hover, .quiz-option.selected { border-color: var(--primary); background: #f1faf9; box-shadow: 0 7px 18px rgba(8,127,122,.08); }
.option-icon, .date-icon { width: 47px; height: 47px; flex: 0 0 auto; border-radius: 14px; color: var(--primary); background: var(--primary-light); display: grid; place-items: center; }
.option-icon svg, .date-icon svg { width: 24px; height: 24px; }
.quiz-option b, .quiz-option small { display: block; }
.quiz-option b { line-height: 1.28; }
.quiz-option small { font-size: 12px; color: var(--muted); margin-top: 3px; }
.quiz-option i, .large-choice i, .date-option i { position: absolute; right: 12px; top: 12px; width: 22px; height: 22px; border: 1px solid #cbdad9; border-radius: 50%; display: grid; place-items: center; color: transparent; background: white; }
.quiz-option i svg, .large-choice i svg, .date-option i svg { width: 14px; height: 14px; }
.quiz-option.selected i, .large-choice.selected i, .date-option.selected i { color: white; background: var(--primary); border-color: var(--primary); }
.other-option { margin-top: 13px; width: 100%; min-height: 68px; padding: 13px 16px; display: flex; align-items: center; gap: 13px; text-align: left; border: 1px dashed #b9d5d2; border-radius: 16px; background: #f7fbfa; cursor: pointer; }
.ai-mini { width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(140deg,var(--primary),#58bbb5); color: white; font-size: 11px; font-weight: 900; display: grid; place-items: center; }
.other-option b, .other-option small { display: block; }
.other-option small { font-size: 12px; color: var(--muted); }
.other-option svg { margin-left: auto; width: 18px; height: 18px; color: var(--primary); }
.large-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.large-choice { position: relative; min-height: 230px; border: 1px solid var(--line); background: white; border-radius: 22px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: .18s; }
.large-choice:hover, .large-choice.selected { border-color: var(--primary); background: #f3fbfa; }
.large-choice b { margin-top: 8px; font-size: 18px; }
.large-choice small { color: var(--muted); }
.person-illustration { width: 100px; height: 100px; position: relative; display: block; }
.person-illustration .head { position: absolute; width: 35px; height: 35px; border-radius: 50%; background: #ffd9be; left: 32px; top: 7px; border: 2px solid #f0b88e; }
.person-illustration .body { position: absolute; width: 72px; height: 56px; border-radius: 38px 38px 15px 15px; background: #8dd2cd; left: 14px; top: 45px; }
.person-illustration.child { transform: scale(.82); }
.person-illustration.child .body { background: #f2a87f; }
.age-block { margin-top: 16px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: #fbfdfd; }
.age-block label { display: block; font-size: 13px; font-weight: 750; margin-bottom: 8px; }
.age-control { width: 230px; height: 52px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: white; }
.age-control button { width: 48px; height: 100%; border: 0; background: #f3f8f7; font-size: 22px; cursor: pointer; }
.age-control input { width: 52px; border: 0; outline: 0; text-align: center; font-weight: 800; appearance: textfield; }
.age-control span { color: var(--muted); font-size: 13px; margin-right: auto; }
.quiz-footer { margin-top: 24px; }
.location-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.location-action { min-height: 80px; padding: 15px; display: flex; align-items: center; gap: 13px; text-align: left; border: 1px solid var(--line); border-radius: 17px; background: white; cursor: pointer; transition: .18s; }
.location-action:hover { border-color: var(--primary); background: #f4fbfa; }
.location-action > span { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--primary); background: var(--primary-light); }
.location-action > span svg { width: 22px; height: 22px; }
.location-action b, .location-action small { display: block; }
.location-action b { font-size: 14px; }
.location-action small { font-size: 11px; color: var(--muted); margin-top: 2px; }
.location-picker { margin-top: 15px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fbfdfd; }
.search-field { min-height: 50px; padding: 0 13px; display: flex; align-items: center; gap: 9px; border: 1px solid #ccdedd; border-radius: 13px; background: white; }
.search-field > svg { width: 19px; height: 19px; color: #789092; }
.search-field input { flex: 1; min-width: 0; border: 0; outline: 0; }
.search-field button { width: 30px; height: 30px; display: grid; place-items: center; border: 0; background: none; cursor: pointer; color: #789092; }
.search-field button svg { width: 16px; height: 16px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.chip-list button { min-height: 38px; padding: 0 13px; border-radius: 999px; border: 1px solid #ccdddc; background: white; cursor: pointer; font-size: 13px; }
.chip-list button:hover, .chip-list button.selected { color: white; background: var(--primary); border-color: var(--primary); }
.selected-location { margin-top: 15px; padding: 13px 15px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(8,127,122,.25); background: #eff9f8; border-radius: 16px; }
.selected-location > span { width: 38px; height: 38px; border-radius: 12px; color: var(--primary); background: white; display: grid; place-items: center; }
.selected-location svg { width: 20px; height: 20px; }
.selected-location small, .selected-location b { display: block; }
.selected-location small { color: var(--muted); font-size: 11px; }
.selected-location b { font-size: 14px; }
.selected-location button { margin-left: auto; border: 0; background: none; color: var(--primary); font-weight: 750; cursor: pointer; }
.date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.date-option { position: relative; min-height: 82px; display: flex; align-items: center; gap: 13px; text-align: left; padding: 14px; border: 1px solid var(--line); border-radius: 17px; background: white; cursor: pointer; }
.date-option:hover, .date-option.selected { border-color: var(--primary); background: #f1faf9; }
.date-option b, .date-option small { display: block; }
.date-option small { color: var(--muted); font-size: 11px; }
.custom-date-wrap { margin-top: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fbfdfd; }
.custom-date-wrap label { display: block; font-size: 13px; font-weight: 750; margin-bottom: 7px; }
.custom-date-wrap input { width: 100%; min-height: 50px; border: 1px solid #ccdddc; border-radius: 13px; padding: 0 13px; background: white; }
.loading-screen { text-align: center; max-width: 650px; padding-top: 50px; }
.loading-visual { display: grid; place-items: center; margin-bottom: 22px; }
.loading-map { width: 230px; height: 155px; border-radius: 23px; background: #eaf4f2; position: relative; overflow: hidden; border: 1px solid #d6e7e4; }
.loading-map:before, .loading-map:after { content:""; position:absolute; background:white; }
.loading-map:before { width: 270px; height: 23px; top: 65px; left: -20px; transform: rotate(-16deg); }
.loading-map:after { width: 20px; height: 200px; left: 105px; top: -20px; transform: rotate(15deg); }
.load-pin, .load-user { position: absolute; z-index: 3; width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; color: white; background: var(--primary); box-shadow: 0 5px 12px rgba(8,127,122,.23); animation: pinPulse 1.3s infinite; }
.load-pin svg, .load-user svg { width: 16px; height: 16px; }
.load-pin.p1 { left: 25px; top: 25px; }
.load-pin.p2 { right: 27px; top: 36px; animation-delay: .25s; }
.load-pin.p3 { right: 48px; bottom: 18px; animation-delay: .5s; }
.load-user { left: 99px; top: 62px; color: white; background: var(--ink); z-index: 4; animation: none; }
.loading-checks { width: min(100%, 420px); margin: 20px auto 0; display: grid; gap: 8px; text-align: left; }
.loading-checks > div { min-height: 45px; padding: 10px 13px; border-radius: 12px; border: 1px solid var(--line); color: #819494; background: white; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.loading-checks > div > span { width: 21px; height: 21px; border-radius: 50%; border: 2px solid #dce8e7; display: grid; place-items: center; }
.loading-checks > div.done { color: var(--ink); }
.loading-checks > div.done span { color: white; background: var(--success); border-color: var(--success); }
.loading-checks > div.done svg { width: 13px; height: 13px; }
.spinner-small { border-color: #dce8e7 !important; border-top-color: var(--primary) !important; animation: spin .8s linear infinite; }
.result-summary { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.result-icon { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 16px; display: grid; place-items: center; color: white; background: var(--success); }
.result-icon svg { width: 26px; height: 26px; }
.demo-note { display: inline-flex; color: #8a6446; background: #fff6ec; border: 1px solid #f5ddc5; border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
.partial-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.clinic-card { position: relative; border: 1px solid var(--line); border-radius: 20px; background: white; }
.partial-card { padding: 42px 17px 16px; min-height: 245px; }
.partial-card.featured { border-color: rgba(8,127,122,.45); box-shadow: 0 8px 24px rgba(8,127,122,.08); }
.clinic-badge { position: absolute; left: 14px; top: 0; transform: translateY(-1px); padding: 6px 11px; border-radius: 0 0 10px 10px; color: #0b6f51; background: #ddf5e9; font-size: 10px; font-weight: 800; }
.clinic-badges { position: absolute; left: 14px; top: 0; display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap; max-width: calc(100% - 28px); z-index: 2; }
.clinic-badges .clinic-badge { position: static; transform: translateY(-1px); }
.clinic-badge.blue { color: #2e69a4; background: #e3f0fd; }
.clinic-badge.purple { color: #6752a8; background: #eee9ff; }
.partial-top, .full-card-head { display: flex; align-items: center; gap: 12px; }
.clinic-logo { width: 49px; height: 49px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; }
.clinic-logo svg { width: 24px; height: 24px; }
.clinic-logo-image { overflow: hidden; padding: 5px; background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(18,51,52,.08); }
.clinic-logo-image img { width: 100%; height: 100%; object-fit: contain; }
.clinic-logo-image.logo-fallback { background: var(--primary); border-color: transparent; box-shadow: none; }
.clinic-logo-image.logo-fallback:before { content: "+"; color: #fff; font-size: 30px; line-height: 1; font-weight: 800; }
.skeleton-logo { color: #86aaa6; background: #edf4f3; }
.hidden-name { width: 200px; max-width: 100%; height: 16px; color: transparent; background: linear-gradient(90deg,#e6eeee,#f5f8f7,#e6eeee); background-size: 220% 100%; animation: shimmer 1.6s infinite; border-radius: 5px; }
.rating { display: flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 12px; font-weight: 800; }
.rating svg { width: 15px; height: 15px; color: #f1a438; }
.rating span, .rating a { color: var(--muted); font-weight: 500; }
.clinic-facts { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.clinic-facts span { display: inline-flex; align-items: center; gap: 5px; padding: 6px 8px; border-radius: 8px; background: #f4f8f7; color: #4c696a; font-size: 11px; }
.clinic-facts svg { width: 14px; height: 14px; color: var(--primary); }
.partial-card-cta { margin-top: 14px; width: 100%; min-height: 42px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid rgba(8,127,122,.2); border-radius: 13px; background: linear-gradient(120deg,#eefbf8,#fff); color: var(--primary); font-size: 12px; font-weight: 900; cursor: pointer; box-shadow: 0 8px 18px rgba(8,127,122,.08); transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.partial-card-cta:hover { transform: translateY(-1px); border-color: rgba(8,127,122,.45); box-shadow: 0 12px 24px rgba(8,127,122,.13); }
.partial-card-cta svg { width: 17px; height: 17px; flex: 0 0 auto; }
.partial-card-cta small { color: #5f7c79; font-size: 10px; font-weight: 800; }
.locked-row { margin-top: 13px; padding: 10px; display: flex; align-items: flex-start; gap: 8px; border-radius: 11px; background: #faf6f2; color: #7c6d62; font-size: 10px; }
.locked-row svg { width: 15px; height: 15px; flex: 0 0 auto; }
.unlock-card { margin-top: 16px; padding: 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border-radius: 22px; color: white; background: radial-gradient(circle at 92% 18%, rgba(255,255,255,.22), transparent 28%), linear-gradient(120deg,#08706b,#0d9b91); box-shadow: 0 20px 45px rgba(8,127,122,.22); position: relative; overflow: hidden; }
.unlock-card:after { content: ""; position: absolute; right: 184px; top: 50%; width: 46px; height: 2px; background: rgba(255,255,255,.62); transform: translateY(-50%); }
.unlock-card:before { content: ""; position: absolute; right: 178px; top: 50%; width: 10px; height: 10px; border-top: 2px solid rgba(255,255,255,.62); border-right: 2px solid rgba(255,255,255,.62); transform: translateY(-50%) rotate(45deg); }
.unlock-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.15); }
.unlock-icon svg { width: 23px; height: 23px; }
.unlock-kicker { display: inline-flex; margin-bottom: 5px; color: #c9fffa; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.unlock-card h3 { margin: 0 0 3px; font-size: 17px; }
.unlock-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; }
.unlock-action { position: relative; z-index: 1; display: grid; gap: 7px; justify-items: center; }
.unlock-action > span { color: #dffdfa; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.unlock-card .button { min-width: 220px; min-height: 58px; border-radius: 16px; background: white; color: var(--primary); box-shadow: 0 12px 30px rgba(0,0,0,.18); animation: ctaPulse 1.7s ease-in-out infinite; }
.unlock-card .button:hover { background: #f3fffd; box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.phone-form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; min-height: 530px; }
.phone-form-icon { width: 58px; height: 58px; margin-bottom: 20px; display: grid; place-items: center; border-radius: 18px; color: var(--primary); background: var(--primary-light); }
.phone-form-icon svg { width: 28px; height: 28px; }
.phone-form-copy ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 11px; }
.phone-form-copy li { display: flex; align-items: center; gap: 9px; font-weight: 650; }
.phone-form-copy li svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; color: white; background: var(--success); }
.lead-form { padding: 26px; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.lead-form > label, .lead-form legend { display: block; font-size: 13px; font-weight: 750; margin-bottom: 7px; }
.lead-form > label span { color: var(--muted); font-weight: 500; }
.lead-form > input, .phone-input-wrap { width: 100%; min-height: 52px; border: 1px solid #cadcda; border-radius: 13px; background: white; margin-bottom: 16px; }
.lead-form > input { padding: 0 14px; outline: 0; }
.lead-form > input:focus, .phone-input-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,127,122,.1); }
.phone-input-wrap { display: flex; align-items: center; padding: 0 14px; margin-bottom: 0; }
.phone-input-wrap > span { padding-right: 8px; margin-right: 8px; border-right: 1px solid var(--line); font-weight: 750; }
.phone-input-wrap input { flex: 1; min-width: 0; border: 0; outline: 0; }
.phone-input-wrap.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(216,71,71,.08); }
.field-error { color: var(--danger); font-size: 12px; margin-top: 6px; }
.lead-form fieldset { border: 0; padding: 0; margin: 17px 0; }
.contact-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.contact-methods input { position: absolute; opacity: 0; }
.contact-methods span { min-height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 12px; font-weight: 700; }
.contact-methods input:checked + span { color: white; background: var(--primary); border-color: var(--primary); }
.privacy-note { display: flex; gap: 9px; align-items: flex-start; padding: 12px; margin-top: 13px; border-radius: 12px; background: #f4f9f8; color: var(--muted); font-size: 11px; }
.privacy-note svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--primary); }
.privacy-note b { color: var(--ink); }
.consent { margin: 10px 0 0; text-align: center; color: #839596; font-size: 10px; }
.consent a { color: var(--primary); text-decoration: underline; }
.results-screen { width: min(100% - 44px, 930px); }
.results-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 13px; }
.match-sort { display: inline-flex; align-items: center; gap: 4px; padding: 4px; margin: 13px 0 14px; border-radius: 13px; background: #edf4f3; border: 1px solid #dbe9e7; }
.match-sort button { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 15px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; font-weight: 850; }
.match-sort button svg { width: 15px; height: 15px; }
.match-sort button.active { background: #fff; color: var(--primary); box-shadow: 0 5px 14px rgba(31,70,69,.1); }
.results-list { display: grid; gap: 14px; }
.full-card { padding: 43px 20px 19px; transition: .18s; }
.full-card.selected { border-color: var(--primary); box-shadow: 0 9px 25px rgba(8,127,122,.09); }
.real-logo { color: white; }
.logo-one { background: linear-gradient(140deg,#0a827c,#42b6af); }
.logo-two { background: linear-gradient(140deg,#3f73b4,#72a5df); }
.logo-three { background: linear-gradient(140deg,#7557b7,#a689df); }
.clinic-title h3 { margin: 0; font-size: 18px; }
.select-radio { margin-left: auto; }
.select-radio input { position: absolute; opacity: 0; }
.select-radio span { display: block; width: 24px; height: 24px; border: 2px solid #c8d9d7; border-radius: 50%; position: relative; }
.select-radio input:checked + span { border-color: var(--primary); }
.select-radio input:checked + span:after { content:""; position: absolute; inset: 4px; border-radius: 50%; background: var(--primary); }
.address-line { display: flex; gap: 10px; align-items: flex-start; margin-top: 17px; }
.address-line > svg { width: 19px; height: 19px; color: var(--primary); flex: 0 0 auto; margin-top: 1px; }
.address-line b, .address-line small { display: block; }
.address-line b { font-size: 14px; }
.address-line small { color: var(--muted); font-size: 11px; margin-top: 2px; }
.clinic-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.clinic-meta span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 9px; color: #496566; background: #f3f7f7; font-size: 11px; }
.clinic-meta span.success { color: #177350; background: #e6f5ee; }
.clinic-meta svg { width: 14px; height: 14px; }
.clinic-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 15px; }
.clinic-details > div { padding: 11px; border: 1px solid #e5eeee; border-radius: 11px; background: #fbfdfd; }
.clinic-details small, .clinic-details b { display: block; }
.clinic-details small { color: var(--muted); font-size: 10px; }
.clinic-details b { font-size: 11px; line-height: 1.4; margin-top: 2px; }
.offer-row { margin-top: 14px; padding: 12px 13px; border-radius: 12px; display: flex; align-items: center; gap: 10px; color: #83532e; background: var(--accent-light); }
.offer-icon { width: 33px; height: 33px; border-radius: 10px; background: white; color: var(--accent); display: grid; place-items: center; font-weight: 900; }
.offer-row small, .offer-row b { display: block; }
.offer-row small { font-size: 9px; opacity: .75; }
.offer-row b { font-size: 12px; }
.card-actions { display: flex; gap: 9px; margin-top: 15px; }
.card-actions .button { min-height: 44px; font-size: 12px; }
.large-map { min-height: 590px; }
.map-clinic-marker { position: absolute; z-index: 4; width: 38px; height: 38px; border: 4px solid white; border-radius: 50%; color: white; background: var(--primary); font-weight: 900; box-shadow: 0 8px 16px rgba(13,70,68,.22); cursor: pointer; }
.marker-one { left: 22%; top: 25%; }
.marker-two { right: 22%; top: 30%; }
.marker-three { right: 30%; bottom: 25%; }
.map-clinic-marker.active { width: 44px; height: 44px; background: var(--accent); }
.map-clinic-preview { position: absolute; z-index: 5; left: 20px; right: 20px; bottom: 20px; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.96); display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); }
.map-clinic-preview b, .map-clinic-preview span { display: block; }
.map-clinic-preview span { color: var(--muted); font-size: 11px; }
.map-clinic-preview .button { margin-left: auto; }
.success-screen { max-width: 630px; text-align: center; padding-top: 50px; }
.success-check { width: 72px; height: 72px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 23px; color: white; background: var(--success); box-shadow: 0 13px 30px rgba(22,132,91,.23); }
.success-check svg { width: 37px; height: 37px; }
.success-check.final { border-radius: 50%; }
.success-logo { position: relative; width: 100px; height: 100px; margin: 0 auto 18px; }
.success-logo .clinic-logo { width: 100px; height: 100px; border-radius: 28px; box-shadow: 0 14px 32px rgba(18,51,52,.16); }
.success-logo .clinic-logo svg { width: 46px; height: 46px; }
.success-logo .clinic-logo-image { padding: 11px; }
.success-logo .skeleton-logo { background: #edf4f3; color: #86aaa6; border: 1px solid var(--line); }
.success-logo-badge { position: absolute; right: -6px; bottom: -6px; width: 38px; height: 38px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; border: 4px solid #fff; box-shadow: 0 8px 18px rgba(22,132,91,.32); }
.success-logo-badge svg { width: 20px; height: 20px; }
.confirmation-card { margin: 24px 0 14px; padding: 5px 18px; border: 1px solid var(--line); border-radius: 18px; text-align: left; }
.confirmation-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.confirmation-row:last-child { border-bottom: 0; }
.confirmation-row > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: var(--primary); background: var(--primary-light); }
.confirmation-row svg { width: 19px; height: 19px; }
.confirmation-row small, .confirmation-row b { display: block; }
.confirmation-row small { color: var(--muted); font-size: 10px; }
.confirmation-row b { font-size: 13px; }
.request-note-card { padding: 20px; margin-bottom: 15px; border-radius: 19px; color: #70421f; background: linear-gradient(130deg,#fff3e9,#fff9f3); border: 1px dashed #f0bb90; text-align: left; }
.request-note-card > span { display: block; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.request-note-card > div { margin: 7px 0 6px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.request-note-card b { font-size: 30px; letter-spacing: .08em; }
.request-note-card small { display: block; color: #966948; }
.secondary-actions { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
.secondary-actions button { border: 0; background: none; color: var(--primary); font-weight: 700; font-size: 12px; cursor: pointer; }
.request-card { margin: 24px 0 18px; padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 1px solid var(--line); border-radius: 18px; text-align: left; background: #fbfdfd; }
.request-card > div { padding: 11px; border-radius: 11px; background: white; }
.request-card small, .request-card b { display: block; }
.request-card small { color: var(--muted); font-size: 10px; }
.request-card b { font-size: 13px; margin-top: 2px; }
.done-actions { display: flex; gap: 10px; }
.done-actions .button { flex: 1; }
.demo-ending { margin-top: 15px !important; padding: 12px; border-radius: 12px; background: #fff6ec; color: #886749 !important; font-size: 11px; }

/* Partner form */
.form-modal-card { position: absolute; inset: 0; margin: auto; width: min(calc(100% - 32px), 760px); max-height: calc(100% - 40px); overflow-y: auto; background: white; border-radius: 24px; padding: 28px; box-shadow: var(--shadow-lg); }
.form-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.form-modal-head h2 { margin: 6px 0; font-size: 30px; }
.form-modal-head p { color: var(--muted); margin: 0; font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-modal-card label { display: grid; gap: 6px; font-size: 12px; font-weight: 750; }
.form-modal-card input, .form-modal-card textarea { width: 100%; border: 1px solid #cadcda; border-radius: 12px; outline: 0; padding: 12px 13px; background: white; }
.form-modal-card input { min-height: 48px; }
.form-modal-card input:focus, .form-modal-card textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,127,122,.08); }
.form-modal-card > form > label { margin-top: 14px; }
.form-modal-card form .button { margin-top: 18px; }
.partner-success { padding: 36px 20px; text-align: center; }
.partner-success h3 { font-size: 26px; margin-bottom: 7px; }
.partner-success p { color: var(--muted); }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 26px; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; min-height: 46px; padding: 0 15px; border-radius: 13px; color: white; background: #153f3f; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md); transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; }
.toast span { font-size: 13px; font-weight: 750; }

/* Legal pages */
.legal-main { min-height: 70vh; padding: 70px 0 100px; background: var(--bg-soft); }
.legal-card { max-width: 880px; margin: 0 auto; padding: 45px; border-radius: 24px; background: white; border: 1px solid var(--line); }
.legal-card h1 { font-size: 42px; letter-spacing: -1.4px; margin: 0 0 10px; }
.legal-card .updated { color: var(--muted); font-size: 13px; margin-bottom: 35px; }
.legal-card h2 { margin: 30px 0 10px; font-size: 22px; }
.legal-card p, .legal-card li { color: #536f70; }
.legal-card a { color: var(--primary); text-decoration: underline; }

@keyframes fadeIn { from { opacity:0; transform: translateY(7px); } to { opacity:1; transform:none; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform:none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -220% 0; } }
@keyframes pinPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes ctaPulse { 0%,100% { transform: translateY(0); box-shadow: 0 12px 30px rgba(0,0,0,.18), 0 0 0 0 rgba(255,255,255,.38); } 50% { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0,0,0,.22), 0 0 0 10px rgba(255,255,255,0); } }

@media (max-width: 1080px) {
  .header-inner { gap: 18px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .header-phone { display: none; }
  .header-cta { padding-inline: 16px; }
  .hero-grid { gap: 30px; }
  .floating-card-top { right: 0; }
  .floating-card-bottom { left: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .logo-strip-inner { grid-template-columns: 1fr 1fr; }
  .logo-strip-inner > div { border-bottom: 1px solid var(--line); }
  .logo-strip-inner > div:nth-child(2) { border-right: 0; }
  .logo-strip-inner > div:nth-child(3), .logo-strip-inner > div:nth-child(4) { border-bottom: 0; }
  .logo-strip-inner > div:first-child { padding-left: 26px; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand-logo { height: 34px; max-width: 154px; }
  .header-inner { gap: 14px; }
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: 12px; }
  .header-cta { min-height: 40px; padding-inline: 13px; font-size: 13px; }
  .hero { padding: 54px 0 55px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin: 0 auto; }
  h1 { font-size: clamp(39px, 9vw, 58px); }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .phone-card { width: 290px; min-height: 515px; }
  .floating-card-top { right: 7%; }
  .floating-card-bottom { left: 7%; }
  .section { padding: 78px 0; }
  .benefit-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .benefit-visual { order: 2; }
  .faq-intro { position: static; }
  .partner-card { padding: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quiz-shell { inset: 8px; }
  .quiz-screen { width: min(100% - 34px, 800px); }
  .phone-form-layout { grid-template-columns: 1fr; gap: 24px; }
  .phone-form-copy ul { grid-template-columns: repeat(3,1fr); }
  .phone-form-copy li { font-size: 12px; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-logo { height: 30px; max-width: 136px; }
  .brand-logo-small { height: 26px; max-width: 118px; }
  .desktop-nav, .header-cta, .header-phone { display: none; }
  .mobile-menu-button { display: grid; margin-left: auto; }
  .mobile-nav { position: absolute; top: 68px; left: 0; right: 0; padding: 18px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .mobile-nav.open { display: grid; gap: 12px; }
  .mobile-nav a { min-height: 42px; display: flex; align-items: center; font-weight: 700; }
  .mobile-phone { gap: 10px; padding: 12px; border-radius: 14px; background: var(--bg-soft); color: var(--ink); }
  .mobile-phone svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; }
  .mobile-phone b, .mobile-phone small { display: block; line-height: 1.2; }
  .mobile-phone small { color: var(--muted); font-size: 12px; font-weight: 700; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-text { font-size: 19px; }
  .hero { min-height: auto; padding-top: 42px; }
  .eyebrow { font-size: 12px; }
  h1 { font-size: 39px; line-height: 1.06; letter-spacing: -1.8px; margin-top: 20px; }
  .hero-lead { font-size: 16px; line-height: 1.55; }
  .hero-actions { flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 10px 15px; font-size: 12px; }
  .hero-visual { min-height: 485px; margin-top: 8px; }
  .phone-card { width: 260px; min-height: 465px; border-radius: 36px; padding: 15px; }
  .mini-title { font-size: 18px; }
  .mini-option { min-height: 59px; }
  .floating-card { min-width: 180px; padding: 11px 12px; }
  .floating-card-top { right: 0; top: 55px; }
  .floating-card-bottom { left: 0; bottom: 55px; }
  .float-icon { width: 33px; height: 33px; }
  .logo-strip-inner { grid-template-columns: 1fr; }
  .logo-strip-inner > div { border-right: 0; border-bottom: 1px solid var(--line) !important; padding: 16px 6px !important; }
  .logo-strip-inner > div:last-child { border-bottom: 0 !important; }
  .section { padding: 62px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .benefit-copy h2, .faq-intro h2, .partner-card h2 { font-size: 31px; letter-spacing: -1px; }
  .section-heading p, .benefit-copy > p, .faq-intro > p { font-size: 15px; }
  .service-grid, .steps-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 105px; padding: 17px; }
  .service-icon { width: 48px; height: 48px; }
  .ai-prompt-card { align-items: flex-start; flex-wrap: wrap; }
  .ai-prompt-card .button { width: 100%; margin-left: 0; }
  .step-card { min-height: 210px; }
  .map-card { min-height: 360px; }
  .benefit-grid { gap: 32px; }
  .partner-section { padding-bottom: 62px; }
  .partner-card { padding: 32px 23px; border-radius: 23px; flex-direction: column; align-items: flex-start; }
  .partner-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .quiz-shell { inset: 0; border-radius: 0; max-width: none; }
  .quiz-topbar { min-height: 60px; padding: 0 13px; }
  .quiz-progress-row { min-height: 38px; padding: 0 14px; }
  .quiz-progress { max-width: none; }
  .quiz-screen { width: calc(100% - 28px); padding: 25px 0 calc(92px + env(safe-area-inset-bottom)); }
  .quiz-heading { margin-bottom: 20px; }
  .quiz-heading h2, .result-summary h2, .results-header h2, .phone-form-copy h2, .success-screen h2 { font-size: 29px; }
  .quiz-option-grid, .location-actions, .date-grid { grid-template-columns: 1fr; gap: 9px; }
  .quiz-option { min-height: 78px; padding: 12px; }
  .option-icon, .date-icon { width: 42px; height: 42px; }
  .large-choice-grid { gap: 10px; }
  .large-choice { min-height: 190px; }
  .person-illustration { transform: scale(.85); margin-bottom: -5px; }
  .person-illustration.child { transform: scale(.7); }
  .quiz-footer { position: fixed; z-index: 5; left: 0; right: 0; bottom: 0; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95); border-top: 1px solid var(--line); backdrop-filter: blur(10px); }
  .location-action { min-height: 72px; }
  .date-option { min-height: 72px; }
  .loading-screen { padding-top: 38px; }
  .partial-list { grid-template-columns: 1fr; }
  .desktop-only-card { display: none; }
  .unlock-card { grid-template-columns: auto 1fr; }
  .unlock-card:before, .unlock-card:after { display: none; }
  .unlock-card .button { grid-column: 1 / -1; width: 100%; }
  .unlock-action { grid-column: 1 / -1; justify-items: stretch; }
  .phone-form-layout { min-height: auto; }
  .phone-form-copy ul { grid-template-columns: 1fr; gap: 8px; margin-top: 17px; }
  .lead-form { padding: 18px; }
  .contact-methods { grid-template-columns: 1fr 1fr; }
  .results-screen { width: calc(100% - 24px); }
  .results-header { align-items: flex-start; flex-direction: column; }
  .full-card { padding: 43px 14px 15px; }
  .clinic-title h3 { font-size: 15px; }
  .clinic-details { grid-template-columns: 1fr; }
  .clinic-details > div { display: flex; justify-content: space-between; gap: 12px; }
  .clinic-details b { text-align: right; }
  .card-actions { flex-direction: column; }
  .card-actions .button { width: 100%; }
  .large-map { min-height: 520px; }
  .map-clinic-preview { align-items: flex-start; flex-wrap: wrap; }
  .map-clinic-preview .button { width: 100%; margin-left: 0; }
  .success-screen { padding-top: 35px; }
  .request-note-card b { font-size: 25px; }
  .secondary-actions { flex-direction: column; gap: 8px; }
  .done-actions { flex-direction: column; }
  .form-modal-card { inset: 0; width: 100%; max-height: none; border-radius: 0; padding: 20px 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .legal-main { padding: 30px 0 60px; }
  .legal-card { padding: 26px 20px; border-radius: 18px; }
  .legal-card h1 { font-size: 32px; }
}

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

/* City selector (multi-city finder) */
.city-select { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.city-select-label { font-weight: 700; font-size: 13px; color: var(--muted, #5A6E6B); }
.city-select-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chip { min-height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid #ccdddc; background: #fff; cursor: pointer; font-size: 13px; font-weight: 700; transition: .15s; }
.city-chip:hover { border-color: var(--primary); }
.city-chip.active { color: #fff; background: var(--primary); border-color: var(--primary); }
