@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #229ed9;
  --blue-dark: #0878b7;
  --blue-deep: #09699b;
  --sky: #eaf7fe;
  --sky-soft: #f4faff;
  --ink: #112333;
  --muted: #677b8d;
  --line: #dfeaf1;
  --green: #2fb477;
  --yellow: #ffb937;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 91, 125, 0.11);
}

body[data-care="dental"] {
  --blue: #22a66f;
  --blue-dark: #137a50;
  --blue-deep: #0f6845;
  --sky: #e8f8f0;
  --sky-soft: #f3fbf7;
  --line: #d9ece3;
  --shadow: 0 18px 50px rgba(24, 112, 75, 0.11);
}
.dental-theme {
  --blue: #22a66f;
  --blue-dark: #137a50;
  --blue-deep: #0f6845;
  --sky: #e8f8f0;
  --sky-soft: #f3fbf7;
  --line: #d9ece3;
  --shadow: 0 18px 50px rgba(24, 112, 75, 0.11);
}
.vertical-page { min-height: 100vh; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: "Manrope", Arial, sans-serif; -webkit-font-smoothing: antialiased; transition: background-color .28s ease, color .28s ease; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.care-dental { display: none !important; }
body[data-care="dental"] .care-medical { display: none !important; }
body[data-care="dental"] .care-dental { display: block !important; }

.site-header {
  position: sticky;
  z-index: 900;
  top: 10px;
  width: min(1200px, calc(100% - 32px));
  height: 70px;
  margin: 10px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(207, 226, 236, .9);
  border-radius: 18px;
  box-shadow: 0 13px 38px rgba(29, 82, 108, .12);
  backdrop-filter: blur(16px);
}
.site-header .care-mode-wrap { flex: 0 0 auto; width: 270px; gap: 0; margin: 0; }
.site-header .care-mode-label, .site-header .care-mode-hint { display: none; }
.site-header .care-mode-switch { width: 270px; height: 46px; padding: 4px; background: #f2f8fb; border-color: #dceaf1; border-radius: 14px; box-shadow: inset 0 1px 2px rgba(37,91,117,.04); }
.site-header .care-mode-thumb { top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px); border-radius: 10px; }
.site-header .care-mode-switch button { gap: 7px; font-size: 10px; }
.site-header .care-mode-switch button i { width: 20px; height: 20px; border-radius: 7px; font-size: 11px; }
body[data-care="dental"] .site-header .care-mode-switch { background: #f1f9f5; border-color: #d7e9df; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; letter-spacing: -0.4px; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.brand-mark { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, #37aee2, #168acd); font-weight: 800; box-shadow: 0 8px 20px rgba(34, 158, 217, .25); }
body[data-care="dental"] .brand-mark, .dental-theme .brand-mark { background: linear-gradient(145deg, #3fc28b, #13845a); box-shadow: 0 8px 20px rgba(28, 151, 99, .24); }
.site-header .brand small { display: none; }
.site-header nav { display: flex; align-items: center; gap: 6px; margin-left: auto; color: #456073; font-size: 12px; font-weight: 700; }
.site-header nav a { padding: 9px 12px; border-radius: 10px; white-space: nowrap; transition: .16s ease; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--blue-dark); background: var(--sky); outline: 0; }
.header-cta { padding: 13px 21px; color: white; background: var(--blue); border-radius: 12px; font-size: 13px; font-weight: 700; box-shadow: 0 9px 22px rgba(34, 158, 217, .24); transition: .2s ease; }
.header-cta:hover { transform: translateY(-2px); background: var(--blue-dark); }

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  align-items: center;
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 72px;
  overflow: visible;
  background:
    radial-gradient(circle at 84% 20%, rgba(123, 211, 249, .34), transparent 24%),
    linear-gradient(128deg, #f7fcff 0%, #eaf7fe 62%, #dff3fd 100%);
}
.hero-copy { width: 100%; }
.care-mode-wrap { display: grid; width: fit-content; gap: 7px; margin-bottom: 24px; }
.care-mode-label { color: #6d8493; font-size: 9px; font-weight: 900; letter-spacing: 1.1px; text-transform: uppercase; }
.care-mode-switch { position: relative; width: 410px; height: 58px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 5px; overflow: hidden; background: rgba(255,255,255,.83); border: 1px solid rgba(190,220,234,.9); border-radius: 17px; box-shadow: 0 15px 40px rgba(27,91,123,.12); backdrop-filter: blur(14px); }
.care-mode-thumb { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); background: linear-gradient(135deg, #37aee2, #168acd); border-radius: 12px; box-shadow: 0 8px 20px rgba(30,139,193,.25); transition: transform .32s cubic-bezier(.22,.85,.35,1), background .28s ease, box-shadow .28s ease; }
.care-mode-switch.is-dental .care-mode-thumb { background: linear-gradient(135deg, #3fc28b, #13845a); box-shadow: 0 8px 20px rgba(21,139,92,.24); transform: translateX(100%); }
.care-mode-switch button { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; color: #617887; background: transparent; border: 0; border-radius: 12px; font-size: 12px; font-weight: 900; transition: color .25s ease; }
.care-mode-switch button i { width: 22px; height: 22px; display: grid; place-items: center; color: currentColor; background: rgba(111,143,160,.1); border-radius: 8px; font-size: 13px; font-style: normal; }
.care-mode-switch button.active { color: white; }
.care-mode-switch button.active i { background: rgba(255,255,255,.16); }
.care-mode-hint { color: #8195a2; font-size: 8px; font-weight: 700; }
.care-mode-hint .care-medical, .care-mode-hint .care-dental { display: inline; }
.status-pill { width: fit-content; display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; color: var(--blue-dark); background: rgba(255, 255, 255, .85); border: 1px solid #cdebf9; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .35px; text-transform: uppercase; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47, 180, 119, .12); }
.hero h1 { max-width: 680px; margin: 22px 0 20px; font-size: clamp(45px, 5.5vw, 70px); line-height: 1.02; letter-spacing: -3.6px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p, .hero-copy .care-medical > p, .hero-copy .care-dental > p { max-width: 610px; margin: 0 0 30px; color: #587184; font-size: 17px; line-height: 1.75; }
.smart-search-shell { position: relative; min-width: 0; }
.hero-smart-shell { max-width: 640px; }
.hero-search { width: 100%; height: 68px; display: flex; align-items: center; gap: 13px; padding: 7px 7px 7px 20px; background: white; border: 1px solid rgba(23, 125, 174, .14); border-radius: 17px; box-shadow: var(--shadow); }
.hero-search > span { color: var(--blue); font-size: 30px; line-height: 0; transform: translateY(-2px); }
.hero-search input { min-width: 0; flex: 1; border: 0; outline: 0; color: var(--ink); font-size: 14px; }
.hero-search input::placeholder { color: #90a3b1; }
.hero-search button { height: 52px; padding: 0 28px; color: white; background: var(--blue); border: 0; border-radius: 12px; font-weight: 800; transition: .2s ease; }
.hero-search button:hover { background: var(--blue-dark); }
.smart-suggestions { position: absolute; z-index: 120; top: calc(100% + 9px); right: 0; left: 0; max-height: 390px; overflow-y: auto; padding: 8px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 24px 65px rgba(25,72,94,.2); backdrop-filter: blur(16px); }
.smart-suggestions[hidden] { display: none; }
.suggestion-caption { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 7px 9px 9px; color: #7a8e9c; font-size: 8px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.suggestion-caption span:last-child { color: var(--blue); letter-spacing: 0; text-transform: none; }
.smart-suggestion { width: 100%; min-height: 62px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; padding: 9px 11px; color: var(--ink); background: transparent; border: 0; border-radius: 12px; text-align: left; transition: .16s ease; }
.smart-suggestion:hover, .smart-suggestion.is-active { background: var(--sky-soft); }
.suggestion-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue-dark); background: var(--sky); border-radius: 11px; font-size: 8px; font-weight: 900; letter-spacing: .4px; }
.smart-suggestion > span:nth-child(2) { min-width: 0; display: grid; gap: 4px; }
.smart-suggestion strong { overflow: hidden; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.smart-suggestion small { color: var(--muted); font-size: 8px; }
.suggestion-price { color: #385d70; font-size: 9px; font-weight: 900; white-space: nowrap; }
.suggestion-arrow { color: var(--blue); font-size: 15px; font-weight: 900; }
.suggestion-empty { padding: 23px 18px; color: var(--muted); text-align: center; font-size: 10px; line-height: 1.6; }
.suggestion-empty strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 11px; }
.popular-searches { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 16px 0 35px; color: #7b8e9c; font-size: 11px; }
.popular-searches a { padding: 6px 9px; color: #3c708b; background: rgba(255,255,255,.65); border: 1px solid #d4ecf7; border-radius: 7px; font-weight: 700; }
.hero-quick-actions { display: flex; align-items: center; gap: 14px; margin: -13px 0 28px; }
.hero-quick-actions a { display: inline-flex; align-items: center; gap: 16px; padding: 13px 17px; color: var(--blue-dark); background: white; border: 1px solid #cfe7f3; border-radius: 12px; box-shadow: 0 9px 25px rgba(41,104,134,.09); font-size: 11px; font-weight: 800; }
.hero-quick-actions a:hover { color: white; background: var(--blue); border-color: var(--blue); }
.hero-quick-actions small { color: #7a8e9c; font-size: 9px; }
.trust-row { display: flex; gap: 38px; }
.trust-row div { display: grid; gap: 2px; padding-right: 38px; border-right: 1px solid #c8e1ed; }
.trust-row div:last-child { padding-right: 0; border: 0; }
.trust-row strong { color: #176f9d; font-size: 22px; }
.trust-row span { color: #718898; font-size: 10px; font-weight: 600; }
.hero-panel { position: relative; min-width: 0; }
.map-card { position: relative; width: 100%; max-width: 490px; margin-left: auto; padding: 14px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.9); border-radius: 28px; box-shadow: 0 35px 80px rgba(39, 118, 155, .2); backdrop-filter: blur(8px); transform: rotate(1.5deg); }
.map-top { height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; }
.map-top span { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; }
.map-top strong { font-size: 13px; }
.map-area { position: relative; height: 400px; overflow: hidden; border-radius: 18px; background-color: #dff2ed; background-image: linear-gradient(29deg, transparent 45%, rgba(255,255,255,.52) 46%, rgba(255,255,255,.52) 49%, transparent 50%), linear-gradient(115deg, transparent 47%, rgba(255,255,255,.45) 48%, rgba(255,255,255,.45) 51%, transparent 52%); background-size: 92px 80px, 120px 110px; }
.river { position: absolute; width: 120%; height: 75px; background: #b8e6f7; border: 8px solid rgba(255,255,255,.4); border-radius: 50%; }
.river-one { left: -30%; top: 95px; transform: rotate(17deg); }
.river-two { right: -55%; bottom: 40px; transform: rotate(-38deg); }
.map-pin { position: absolute; z-index: 2; width: 40px; height: 40px; color: white; background: var(--blue); border: 4px solid white; border-radius: 50% 50% 50% 8px; box-shadow: 0 7px 18px rgba(0,77,113,.24); font-weight: 800; transform: rotate(-45deg); }
.map-pin::first-letter { transform: rotate(45deg); }
.pin-one { left: 19%; top: 25%; }
.pin-two { right: 20%; top: 39%; }
.pin-three { left: 43%; bottom: 26%; }
.map-result { position: absolute; z-index: 4; right: 16px; bottom: 16px; left: 16px; height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 12px 15px; background: white; border-radius: 15px; box-shadow: 0 14px 36px rgba(21,84,112,.18); }
.mini-logo { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 13px; font-size: 12px; font-weight: 800; }
.map-result div { display: grid; gap: 3px; }
.map-result strong { font-size: 13px; }
.map-result div span { color: var(--muted); font-size: 10px; }
.map-result b { color: var(--blue); }
.floating-note { position: absolute; left: -22px; bottom: 56px; z-index: 5; display: flex; align-items: center; gap: 11px; padding: 14px 17px; background: white; border-radius: 15px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.floating-note > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--green); background: #e8f9f1; border-radius: 10px; font-weight: 900; }
.floating-note div { display: grid; gap: 3px; }
.floating-note strong { font-size: 11px; }
.floating-note small { color: var(--muted); font-size: 9px; }

body[data-care="dental"] .hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(104, 213, 164, .28), transparent 24%),
    linear-gradient(128deg, #f8fdfb 0%, #eaf8f1 62%, #ddf4e8 100%);
}
body[data-care="dental"] .status-pill, .dental-theme .status-pill { border-color: #c8ead9; }
body[data-care="dental"] .popular-searches a { color: #2f7658; border-color: #cfe9dc; }
body[data-care="dental"] .trust-row div { border-color: #c5e3d4; }
body[data-care="dental"] .trust-row strong { color: #17764f; }
body[data-care="dental"] .catalog-mode-hero.clinic-mode { background: linear-gradient(105deg, #edf9f3, #fff 68%); border-color: #d5ecdf; }
body[data-care="dental"] .catalog-mode-hero.company-mode { background: radial-gradient(circle at 88% 20%, rgba(122,224,177,.3), transparent 25%), linear-gradient(110deg, #116d4a, #22a66f); border-color: #198b5e; }
body[data-care="dental"] .method { background: linear-gradient(135deg, #126f4c, #22a66f); }
body[data-care="dental"] .method > div p, body[data-care="dental"] .method li p { color: #d8f4e7; }
body[data-care="dental"] .method li > span, body[data-care="dental"] .eyebrow.light { color: #94e4bd; }
body[data-care="dental"] .request-banner { background: linear-gradient(112deg, #147a53, #22a66f); }
body[data-care="dental"] footer { background: #f2faf6; border-color: #dcece4; }
.dental-theme .network-hero { background: linear-gradient(135deg, #f1fbf6, #e0f5e9); border-color: #d3eadf; }
.dental-theme footer { background: #f2faf6; border-color: #dcece4; }

.proof-strip { min-height: 72px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; padding: 15px 24px; color: #416174; background: white; border-bottom: 1px solid #e9f1f5; font-size: 11px; }
.proof-strip > span { color: #91a1ad; text-transform: uppercase; font-size: 9px; font-weight: 800; letter-spacing: .8px; }
.proof-strip strong { font-weight: 700; }
.proof-strip i { width: 4px; height: 4px; background: #b6d5e5; border-radius: 50%; }

.catalog, .services, .articles, .questions, .reviews { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 105px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 34px; }
.eyebrow { display: block; margin-bottom: 11px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.eyebrow.light { color: #89d6f5; }
.section-heading h2, .method h2, .request-banner h2 { margin: 0; font-size: clamp(30px, 3.8vw, 45px); line-height: 1.13; letter-spacing: -2px; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.catalog-tabs { display: flex; padding: 4px; background: var(--sky-soft); border: 1px solid #e0edf4; border-radius: 12px; }
.catalog-tabs button { display: flex; align-items: center; gap: 7px; padding: 10px 18px; color: #6c8090; background: transparent; border: 0; border-radius: 9px; font-size: 12px; font-weight: 700; }
.catalog-tabs button span { font-size: 14px; }
.catalog-tabs button.active { color: white; background: var(--blue); box-shadow: 0 5px 13px rgba(34,158,217,.2); }
.catalog-mode-hero { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; min-height: 132px; margin: -6px 0 18px; padding: 23px 26px; overflow: hidden; border-radius: 22px; transition: background .22s ease, border-color .22s ease; }
.catalog-mode-hero.clinic-mode { background: linear-gradient(105deg, #eef9fe, #fff 68%); border: 1px solid #d8edf7; }
.catalog-mode-hero.company-mode { color: white; background: radial-gradient(circle at 88% 20%, rgba(94,199,244,.36), transparent 25%), linear-gradient(110deg, #096f9f, #229ed9); border: 1px solid #168ec6; }
.mode-symbol { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 22px; font-size: 32px; font-weight: 300; }
.clinic-symbol { color: var(--blue); background: white; border: 1px solid #d8edf7; box-shadow: 0 12px 25px rgba(37,116,151,.1); }
.catalog-mode-hero > div:nth-child(2) > span { display: block; margin-bottom: 6px; color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.catalog-mode-hero h3 { margin: 0 0 7px; font-size: 19px; letter-spacing: -.55px; }
.catalog-mode-hero p { max-width: 680px; margin: 0; color: #6f8391; font-size: 10px; line-height: 1.55; }
.catalog-mode-hero > strong { display: grid; gap: 4px; min-width: 85px; color: var(--blue); font-size: 28px; text-align: right; }
.catalog-mode-hero > strong small { color: #80929f; font-size: 7px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.company-mode > div:nth-child(2) > span, .company-mode > strong { color: #9edffa; }
.company-mode h3 { color: white; }
.company-mode p, .company-mode > strong small { color: #d9f2fd; }
.mode-logo-stack { position: relative; width: 100px; height: 70px; }
.mode-logo-stack i { position: absolute; top: 5px; width: 55px; height: 55px; display: grid; place-items: center; color: var(--blue-dark); background: white; border: 3px solid rgba(255,255,255,.72); border-radius: 17px; box-shadow: 0 9px 25px rgba(5,67,96,.22); font-size: 10px; font-style: normal; font-weight: 900; }
.mode-logo-stack i:nth-child(1) { left: 0; z-index: 3; }
.mode-logo-stack i:nth-child(2) { left: 24px; z-index: 2; color: #168acd; transform: rotate(4deg); }
.mode-logo-stack i:nth-child(3) { left: 47px; z-index: 1; color: #37aee2; transform: rotate(8deg); }
.catalog-toolbar { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; margin-bottom: 12px; }
.catalog-smart-shell { width: 100%; }
.catalog-search { width: 100%; height: 53px; display: flex; align-items: center; gap: 12px; padding: 0 17px; border: 1px solid var(--line); border-radius: 13px; }
.catalog-search > span { color: var(--blue); font-size: 24px; transform: translateY(-2px); }
.catalog-search input { flex: 1; min-width: 0; border: 0; outline: 0; font-size: 13px; }
.rating-filter { height: 53px; display: flex; align-items: center; gap: 8px; padding: 0 14px; color: #e99c12; background: white; border: 1px solid var(--line); border-radius: 13px; }
.rating-filter select { color: #456073; background: transparent; border: 0; outline: 0; font-size: 11px; font-weight: 700; cursor: pointer; }
.near-button { display: flex; align-items: center; gap: 8px; padding: 0 21px; color: var(--blue-dark); background: var(--sky); border: 1px solid #d1ebf7; border-radius: 13px; font-size: 12px; font-weight: 800; }
.near-button.active { color: white; background: var(--blue); }
.near-button span { font-size: 19px; }
.catalog-mode-note { margin: 0 0 17px; color: #7b8e9c; font-size: 10px; }
.location-note { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: -4px 0 20px; padding: 10px 14px; color: #337394; background: #edf8fd; border-radius: 10px; font-size: 11px; }
.location-note[hidden] { display: none; }
.location-note button { flex: 0 0 auto; padding: 6px 9px; color: #317394; background: white; border: 1px solid #d1eaf5; border-radius: 8px; font-size: 8px; font-weight: 800; }
.catalog-results-stack { display: flex; flex-direction: column; }
.catalog-results-stack.clinics-first #clinic-results, .catalog-results-stack.companies-first #companies { order: 1; }
.catalog-results-stack.clinics-first #companies, .catalog-results-stack.companies-first #clinic-results { order: 2; }
.catalog-result-section { padding: 34px 0 0; }
.catalog-result-section + .catalog-result-section { margin-top: 52px; padding-top: 48px; border-top: 1px solid var(--line); }
.catalog-result-section.is-primary { padding-top: 10px; }
.result-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.result-section-heading span { display: block; margin-bottom: 6px; color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .9px; text-transform: uppercase; }
.result-section-heading h3 { margin: 0; font-size: 24px; letter-spacing: -.9px; }
.result-section-heading > strong { padding: 8px 11px; color: #587286; background: #f2f8fb; border-radius: 9px; font-size: 9px; }
.catalog-result-section.is-primary .result-section-heading > strong { color: white; background: var(--blue); }
.clinic-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.clinic-card { grid-column: span 2; min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: white; border: 1px solid #dce9f0; border-radius: 24px; box-shadow: 0 14px 38px rgba(43,93,117,.09); transition: .25s ease; }
.clinic-card:nth-child(4), .clinic-card:nth-child(5) { grid-column: span 2; }
.clinic-card:hover { transform: translateY(-6px); border-color: #b6ddec; box-shadow: 0 24px 55px rgba(36,104,136,.17); }
.clinic-card-visual { position: relative; height: 188px; overflow: hidden; background: #dff2fb; }
.clinic-card-visual > img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .4s ease; }
.clinic-card:hover .clinic-card-visual > img { transform: scale(1.035); }
.clinic-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,40,60,.20), rgba(5,40,60,.02) 44%, rgba(7,63,93,.46)); }
.clinic-topline { position: absolute; z-index: 2; top: 14px; right: 14px; left: 14px; display: flex; align-items: center; justify-content: space-between; }
.rank, .verified { padding: 7px 9px; background: rgba(255,255,255,.93); border-radius: 999px; box-shadow: 0 5px 15px rgba(20,65,88,.12); backdrop-filter: blur(5px); }
.rank { color: var(--blue-dark); font-size: 8px; font-weight: 900; }
.verified { color: var(--green); font-size: 7px; font-weight: 900; }
.clinic-visual-main { position: absolute; z-index: 2; right: 17px; bottom: 15px; left: 17px; display: flex; align-items: end; justify-content: space-between; }
.clinic-visual-main .logo-mark { width: 60px; height: 60px; border: 4px solid rgba(255,255,255,.94); border-radius: 19px; box-shadow: 0 9px 24px rgba(2,48,72,.25); }
.object-number { color: rgba(255,255,255,.9); font-size: 31px; font-weight: 300; letter-spacing: -2px; text-shadow: 0 4px 15px rgba(0,31,49,.35); }
.clinic-rating-badge { min-width: 62px; display: grid; gap: 1px; padding: 9px 11px; color: var(--ink); background: rgba(255,255,255,.94); border-radius: 12px; text-align: center; box-shadow: 0 7px 20px rgba(2,48,72,.18); }
.clinic-rating-badge strong { font-size: 15px; }
.clinic-rating-badge span { color: #d99008; font-size: 7px; font-weight: 800; }
.clinic-card-body { flex: 1; display: flex; flex-direction: column; padding: 21px; }
.clinic-title h3 { margin: 0 0 5px; font-size: 17px; letter-spacing: -.5px; }
.clinic-title p { margin: 0 0 15px; color: var(--muted); font-size: 9px; }
.clinic-identity { display: flex; align-items: center; gap: 13px; }
.logo-mark { flex: 0 0 auto; width: 49px; height: 49px; display: grid; place-items: center; color: white; border-radius: 14px; font-size: 12px; font-weight: 900; letter-spacing: -.3px; }
.clinic-identity h3 { margin: 0 0 4px; font-size: 15px; letter-spacing: -.35px; }
.clinic-identity p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.4; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; min-height: 30px; }
.tag-row span { height: fit-content; padding: 6px 9px; color: #3f6a80; background: #edf7fb; border-radius: 999px; font-size: 8px; font-weight: 800; }
.metro-dot { width: 11px; height: 11px; margin-top: 2px; border: 3px solid var(--blue); border-radius: 50%; }
.clinic-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 16px 0 12px; }
.clinic-facts > div { min-width: 0; display: flex; align-items: flex-start; gap: 8px; padding: 11px; background: #f7fafc; border-radius: 11px; }
.clinic-facts p { min-width: 0; display: grid; gap: 4px; margin: 0; }
.clinic-facts strong { overflow: hidden; font-size: 8px; white-space: nowrap; text-overflow: ellipsis; }
.clinic-facts small { color: var(--muted); font-size: 7px; }
.fact-icon { color: var(--blue); font-size: 15px; line-height: 1; }
.reviews-line { display: flex; align-items: center; gap: 8px; padding-bottom: 15px; color: var(--muted); border-bottom: 1px solid #e9f0f4; }
.reviews-line span { color: #ffb22e; font-size: 8px; letter-spacing: 1px; }
.reviews-line strong { font-size: 8px; }
.clinic-footer { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; margin-top: auto; padding-top: 16px; }
.clinic-footer > div { display: grid; gap: 4px; }
.clinic-footer > div span { color: #91a0aa; font-size: 8px; }
.clinic-footer > div strong { font-size: 14px; }
.clinic-footer a { padding: 12px 13px; color: white; background: var(--blue); border-radius: 11px; text-align: center; font-size: 9px; font-weight: 800; box-shadow: 0 8px 20px rgba(34,158,217,.2); }
.clinic-footer a span { margin-left: 3px; }
.empty-state { grid-column: 1 / -1; padding: 50px; text-align: center; color: var(--muted); background: var(--sky-soft); border-radius: 18px; }
.demo-disclaimer { max-width: 900px; margin: 22px auto 0; color: #8a9ba7; text-align: center; font-size: 9px; line-height: 1.6; }

.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.company-card { position: relative; min-width: 0; overflow: hidden; padding: 28px; background: linear-gradient(145deg, #fff 65%, #eff9fe); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 11px 34px rgba(43,93,117,.08); }
.company-card::after { content: ""; position: absolute; z-index: 0; right: -50px; top: -55px; width: 170px; height: 170px; border: 28px solid rgba(34,158,217,.06); border-radius: 50%; }
.company-card > * { position: relative; z-index: 1; }
.company-card:last-child { grid-column: 1 / -1; }
.company-logo { width: 70px; height: 70px; border-radius: 21px; box-shadow: 0 10px 25px rgba(34,158,217,.2); }
.company-brand-row { display: flex; align-items: center; gap: 16px; }
.company-brand-row > div { min-width: 0; }
.company-brand-row h3 { margin: 5px 0 4px; font-size: 22px; letter-spacing: -.8px; }
.company-brand-row p { margin: 0; color: var(--muted); font-size: 9px; }
.company-kind { color: var(--blue); font-size: 7px; font-weight: 900; letter-spacing: .75px; text-transform: uppercase; }
.company-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 22px 0 16px; padding: 16px 0; border-top: 1px solid #edf2f5; border-bottom: 1px solid #edf2f5; }
.company-stats div { display: grid; gap: 4px; }
.company-stats strong { font-size: 15px; }
.company-stats span { color: var(--muted); font-size: 8px; }
.company-branch-preview { display: grid; gap: 11px; margin-bottom: 17px; }
.company-branch-preview > strong { font-size: 9px; }
.company-branch-preview > div { display: flex; flex-wrap: wrap; gap: 7px; }
.company-branch-preview span { display: flex; align-items: center; gap: 6px; padding: 7px 9px 7px 7px; color: #527084; background: #f3f8fb; border: 1px solid #e4eef3; border-radius: 10px; font-size: 8px; }
.company-branch-preview i { width: 20px; height: 20px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 7px; font-size: 7px; font-style: normal; font-weight: 900; }
.company-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.company-toggle, .company-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 11px; font-size: 9px; font-weight: 800; }
.company-toggle { color: var(--blue-dark); background: var(--sky-soft); border: 1px solid #dcecf4; }
.company-link { color: white; background: var(--blue); }
.company-locations { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.company-locations span { display: flex; align-items: center; gap: 5px; padding: 7px 9px; color: #527084; background: #f4f8fa; border-radius: 8px; font-size: 9px; }
.company-locations i { min-width: 17px; height: 17px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 6px; font-size: 6px; font-style: normal; font-weight: 900; }

.service-match-panel { margin: 20px 0 28px; padding: 24px; background: linear-gradient(135deg, #eef9fe, #fff); border: 1px solid #cfe9f5; border-radius: 20px; box-shadow: 0 13px 35px rgba(35,105,137,.08); }
.service-match-panel[hidden] { display: none; }
.service-match-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 17px; }
.service-match-heading span { display: block; margin-bottom: 6px; color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .9px; text-transform: uppercase; }
.service-match-heading h3 { margin: 0 0 5px; font-size: 22px; letter-spacing: -.7px; }
.service-match-heading p { margin: 0; color: var(--muted); font-size: 9px; }
.service-match-heading > strong { flex: 0 0 auto; padding: 8px 11px; color: white; background: var(--blue); border-radius: 9px; font-size: 9px; }
.service-variant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.service-variant-grid article { min-width: 0; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 11px; padding: 14px; background: white; border: 1px solid #dfeaf0; border-radius: 14px; }
.service-variant-grid article > div { min-width: 0; }
.service-variant-grid h4 { overflow: hidden; margin: 0 0 5px; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.service-variant-grid p { margin: 0; color: var(--muted); font-size: 8px; }
.service-variant-grid p i { display: inline-block; width: 7px; height: 7px; border: 2px solid var(--blue); border-radius: 50%; }
.service-variant-grid article > strong { display: grid; gap: 3px; font-size: 15px; text-align: right; }
.service-variant-grid article > strong small { color: var(--muted); font-size: 6px; font-weight: 700; }
.service-variant-grid article > a { grid-column: 1 / -1; padding: 9px; color: var(--blue-dark); background: var(--sky-soft); border-radius: 9px; text-align: center; font-size: 8px; font-weight: 900; }
.service-price-note { display: block; margin-top: 12px; color: #7e919e; font-size: 7px; line-height: 1.5; }

.services { padding-top: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.service-card { min-width: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; transition: .2s ease; }
.service-card:hover { border-color: #aadaf0; box-shadow: 0 11px 32px rgba(33,109,144,.1); transform: translateY(-2px); }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-dark); background: var(--sky); border-radius: 12px; font-size: 9px; font-weight: 900; letter-spacing: .5px; }
.service-card div { min-width: 0; }
.service-card h3 { overflow: hidden; margin: 0 0 5px; font-size: 12px; white-space: nowrap; text-overflow: ellipsis; }
.service-card div span { color: var(--muted); font-size: 8px; }
.service-card b { color: var(--blue); font-size: 13px; }

.articles { padding-top: 72px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.article-grid.care-medical { display: grid !important; }
body[data-care="dental"] .article-grid.care-medical { display: none !important; }
body[data-care="dental"] .article-grid.care-dental { display: grid !important; }
.article-card { min-width: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 8px 28px rgba(31,91,119,.06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.article-card:hover { border-color: #aad9ec; box-shadow: 0 18px 45px rgba(27,103,140,.13); transform: translateY(-4px); }
.article-visual { position: relative; height: 154px; display: flex; align-items: flex-end; justify-content: space-between; padding: 21px; overflow: hidden; color: white; background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.35), transparent 24%), linear-gradient(135deg, #087bb4, #35b4ea); }
.article-visual::after { content: ""; position: absolute; right: -37px; bottom: -80px; width: 190px; height: 190px; border: 28px solid rgba(255,255,255,.11); border-radius: 50%; }
.article-visual > span { position: absolute; top: 18px; left: 20px; padding: 6px 9px; background: rgba(255,255,255,.17); border: 1px solid rgba(255,255,255,.24); border-radius: 8px; font-size: 8px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; }
.article-visual > b { position: relative; z-index: 1; font-size: 38px; letter-spacing: -2px; }
.article-visual > i { position: relative; z-index: 1; font-size: 10px; font-style: normal; font-weight: 900; }
.article-visual-lab { background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.31), transparent 24%), linear-gradient(135deg, #165f94, #4c9ed8); }
.article-visual-mri { background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.28), transparent 24%), linear-gradient(135deg, #224f84, #6f8fd3); }
.article-card > div:last-child { padding: 23px; }
.article-meta { display: block; margin-bottom: 11px; color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; }
.article-card h3 { margin: 0; font-size: 19px; line-height: 1.25; letter-spacing: -.55px; }
.article-card p { min-height: 66px; margin: 12px 0 18px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.article-card strong { color: var(--blue-dark); font-size: 9px; }
.article-card strong i { margin-left: 6px; color: var(--blue); font-style: normal; }
.articles-disclaimer { margin: 17px 0 0; color: #8496a2; font-size: 8px; line-height: 1.6; }
body[data-care="dental"] .article-card:hover { border-color: #a8ddc1; box-shadow: 0 18px 45px rgba(27,124,83,.12); }
body[data-care="dental"] .article-visual { background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.32), transparent 24%), linear-gradient(135deg, #11764f, #36b87f); }
body[data-care="dental"] .article-visual-lab { background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.28), transparent 24%), linear-gradient(135deg, #176b50, #43a77d); }
body[data-care="dental"] .article-visual-mri { background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.25), transparent 24%), linear-gradient(135deg, #205b4b, #6c9f83); }

.questions { padding-top: 16px; }
.question-shell { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 54px; align-items: start; padding: 38px; background: linear-gradient(145deg, #f1faff, #fff); border: 1px solid #d5eaf4; border-radius: 28px; }
.question-intro { position: sticky; top: 120px; }
.question-intro h2 { margin: 12px 0 14px; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.06; letter-spacing: -1.5px; }
.question-intro > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.question-words { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.question-words span { padding: 8px 11px; color: var(--blue-dark); background: white; border: 1px solid #cae4f0; border-radius: 10px; font-size: 9px; font-weight: 900; }
.question-list { display: grid; gap: 9px; }
.question-list.care-medical { display: grid !important; }
body[data-care="dental"] .question-list.care-medical { display: none !important; }
body[data-care="dental"] .question-list.care-dental { display: grid !important; }
.question-list details { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 16px; transition: border-color .2s ease, box-shadow .2s ease; }
.question-list details[open] { border-color: #9ed1e7; box-shadow: 0 12px 30px rgba(24,105,143,.08); }
.question-list summary { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 17px 18px; cursor: pointer; list-style: none; }
.question-list summary::-webkit-details-marker { display: none; }
.question-list summary b { color: var(--blue); font-size: 9px; letter-spacing: .4px; text-transform: uppercase; }
.question-list summary span { color: var(--ink); font-size: 12px; font-weight: 850; line-height: 1.45; }
.question-list summary i { width: 27px; height: 27px; display: grid; place-items: center; color: var(--blue); background: var(--sky); border-radius: 9px; font-size: 15px; font-style: normal; transition: transform .2s ease; }
.question-list details[open] summary i { transform: rotate(45deg); }
.question-list details > div { padding: 0 59px 19px 84px; }
.question-list details p { margin: 0 0 11px; color: var(--muted); font-size: 10px; line-height: 1.75; }
.question-list details a { color: var(--blue-dark); font-size: 9px; font-weight: 900; }
.question-disclaimer { margin: 13px 0 0; color: #8496a2; font-size: 8px; line-height: 1.6; }
body[data-care="dental"] .question-shell { background: linear-gradient(145deg, #f1fbf6, #fff); border-color: #cfe9db; }
body[data-care="dental"] .question-words span { color: var(--blue-dark); border-color: #c8e5d6; }
body[data-care="dental"] .question-list details[open] { border-color: #96d1b2; box-shadow: 0 12px 30px rgba(25,117,78,.08); }

.method { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; padding: 95px max(24px, calc((100vw - 1180px) / 2)); color: white; background: linear-gradient(135deg, #086c9f, #229ed9); }
.method > div p { max-width: 460px; color: #d6effa; font-size: 13px; line-height: 1.75; }
.method > div a { display: inline-block; margin-top: 14px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 11px; font-weight: 800; }
.method ol { margin: 0; padding: 0; list-style: none; }
.method li { display: grid; grid-template-columns: 50px 1fr; gap: 19px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.2); }
.method li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.method li > span { color: #8cd3f2; font-size: 11px; font-weight: 800; }
.method li strong { font-size: 14px; }
.method li p { margin: 6px 0 0; color: #c9e9f6; font-size: 10px; line-height: 1.6; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.review-grid article { position: relative; min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 17px; }
.review-grid article.user-review { background: linear-gradient(145deg, #fff, #f4fbfe); border-color: #b9deed; box-shadow: 0 12px 30px rgba(34,112,147,.09); }
.write-review-button { display: flex; align-items: center; gap: 12px; padding: 13px 16px; color: white; background: var(--blue); border: 0; border-radius: 12px; box-shadow: 0 9px 23px rgba(34,158,217,.22); font-size: 10px; font-weight: 900; }
.write-review-button:hover { background: var(--blue-dark); }
.write-review-button span { font-size: 16px; font-weight: 400; }
.review-clinic { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 15px; border-bottom: 1px solid #e8f0f4; }
.review-clinic .logo-mark { width: 40px; height: 40px; border-radius: 12px; }
.review-clinic > div { min-width: 0; display: grid; gap: 4px; }
.review-clinic strong { overflow: hidden; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.review-clinic small { overflow: hidden; color: var(--muted); font-size: 7px; white-space: nowrap; text-overflow: ellipsis; }
.stars { color: var(--yellow); font-size: 11px; letter-spacing: 2px; }
.review-grid article > p { min-height: 105px; margin: 17px 0 22px; color: #4d6575; font-size: 11px; line-height: 1.75; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer > span { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 50%; font-size: 11px; font-weight: 800; }
.reviewer div { display: grid; gap: 3px; }
.reviewer strong { font-size: 10px; }
.reviewer small { color: var(--muted); font-size: 8px; }
.review-grid article em { position: absolute; right: 17px; bottom: 19px; color: #a2b0b9; font-size: 7px; font-style: normal; text-transform: uppercase; letter-spacing: .7px; }
.text-link { color: var(--blue); font-size: 11px; font-weight: 800; }

.review-overlay { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(8,30,45,.62); backdrop-filter: blur(9px); animation: quizFade .2s ease; }
.review-overlay[hidden] { display: none; }
.review-modal { position: relative; width: min(600px, 100%); min-height: 560px; max-height: calc(100vh - 40px); overflow-y: auto; padding: 35px; background: white; border-radius: 27px; box-shadow: 0 40px 100px rgba(5,31,46,.3); animation: quizUp .25s ease; }
.review-close { position: absolute; z-index: 2; top: 19px; right: 19px; width: 34px; height: 34px; color: #6f8290; background: #f1f6f9; border: 0; border-radius: 50%; font-size: 20px; line-height: 1; }
.review-form-progress { display: flex; align-items: center; justify-content: space-between; margin: 3px 45px 38px 0; }
.review-form-progress > span { color: #8495a1; font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.review-form-progress > div { display: flex; gap: 5px; }
.review-form-progress i { width: 26px; height: 4px; background: #e1ebf0; border-radius: 3px; }
.review-form-progress i.active { background: var(--blue); }
.review-form-step[hidden] { display: none; }
.review-form-step h2 { margin: 0; font-size: 31px; line-height: 1.15; letter-spacing: -1.3px; }
.review-form-step > p:not(.review-form-error) { margin: 10px 0 24px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.review-form-step > label { display: grid; gap: 8px; margin-top: 13px; color: #4e6879; font-size: 9px; font-weight: 800; }
.review-form-step select, .review-form-step textarea, .review-form-step input[type="text"], .review-form-step > label > input:not([type]) { width: 100%; color: var(--ink); background: #f8fbfd; border: 1px solid #dce9ef; border-radius: 12px; outline: 0; font-size: 10px; }
.review-form-step select, .review-form-step input[type="text"], .review-form-step > label > input:not([type]) { height: 48px; padding: 0 13px; }
.review-form-step select:focus, .review-form-step textarea:focus, .review-form-step > label > input:focus { background: white; border-color: #8acbe6; box-shadow: 0 0 0 3px rgba(34,158,217,.09); }
.review-form-step select:disabled { color: #9dabb4; background: #f1f5f7; }
.review-form-step textarea { min-height: 145px; resize: vertical; padding: 13px; line-height: 1.6; }
.review-form-step > label > small { color: #93a1aa; font-size: 7px; text-align: right; }
.review-stars-input { display: flex; gap: 4px; margin-bottom: 15px; }
.review-stars-input button { padding: 0; color: #dbe4e9; background: transparent; border: 0; font-size: 32px; line-height: 1; }
.review-stars-input button.active { color: var(--yellow); }
.review-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }
.review-form-actions button { padding: 12px 15px; color: #718491; background: #eef4f7; border: 0; border-radius: 10px; font-size: 9px; font-weight: 900; }
.review-form-actions button:last-child { color: white; background: var(--blue); }
.signature-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.signature-options label { position: relative; cursor: pointer; }
.signature-options input { position: absolute; opacity: 0; pointer-events: none; }
.signature-options label > span { display: grid; gap: 5px; padding: 14px; color: #4f6879; background: #f8fbfd; border: 1px solid #dde9ef; border-radius: 12px; font-size: 9px; font-weight: 900; }
.signature-options label > span small { color: var(--muted); font-size: 7px; font-weight: 600; }
.signature-options input:checked + span { color: var(--blue-dark); background: #edf8fd; border-color: #9dd3e9; box-shadow: 0 0 0 2px rgba(34,158,217,.07); }
.review-consent { grid-template-columns: auto 1fr !important; align-items: center; gap: 8px !important; font-weight: 600 !important; }
.review-consent input { width: 16px; height: 16px; accent-color: var(--blue); }
.review-local-note { display: block; margin-top: 10px; color: #83949f; font-size: 7px; line-height: 1.55; }
.review-form-error { min-height: 16px; margin: 12px 0 0; color: #c94c56; font-size: 8px; line-height: 1.5; }

.request-banner { width: min(1180px, calc(100% - 48px)); display: flex; align-items: center; justify-content: space-between; gap: 30px; margin: 0 auto 105px; padding: 46px 52px; color: white; background: linear-gradient(112deg, #0c7db4, #229ed9); border-radius: 25px; overflow: hidden; position: relative; }
.request-banner::after { content: ""; position: absolute; right: -70px; top: -95px; width: 300px; height: 300px; border: 50px solid rgba(255,255,255,.08); border-radius: 50%; }
.request-banner p { margin: 12px 0 0; color: #d9f2fd; font-size: 11px; }
.quiz-launch { position: relative; z-index: 2; flex: 0 0 auto; padding: 16px 20px; color: var(--blue-dark); background: white; border: 0; border-radius: 12px; font-size: 11px; font-weight: 800; box-shadow: 0 10px 28px rgba(2,65,98,.18); }
.quiz-launch span { margin-left: 12px; }
.quiz-open { overflow: hidden; }
.quiz-overlay { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(8,30,45,.58); backdrop-filter: blur(8px); animation: quizFade .2s ease; }
.quiz-overlay[hidden] { display: none; }
.quiz-modal { position: relative; width: min(520px, 100%); min-height: 510px; padding: 35px; background: white; border-radius: 27px; box-shadow: 0 40px 100px rgba(5,31,46,.3); animation: quizUp .25s ease; }
.quiz-close { position: absolute; z-index: 2; top: 19px; right: 19px; width: 34px; height: 34px; color: #6f8290; background: #f1f6f9; border: 0; border-radius: 50%; font-size: 20px; line-height: 1; }
.quiz-progress { display: flex; justify-content: space-between; align-items: center; margin: 4px 42px 46px 0; }
.quiz-progress > span { color: #8495a1; font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.quiz-progress > div { display: flex; gap: 5px; }
.quiz-progress i { width: 24px; height: 4px; background: #e1ebf0; border-radius: 3px; }
.quiz-progress i.active { background: var(--blue); }
.quiz-kicker { display: block; margin-bottom: 10px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.quiz-modal h2 { margin: 0; font-size: 31px; line-height: 1.15; letter-spacing: -1.4px; }
.quiz-modal h2 + p { margin: 11px 0 26px; color: var(--muted); font-size: 11px; }
.quiz-options { display: grid; gap: 9px; }
.quiz-options button { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 14px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 14px; text-align: left; transition: .18s ease; }
.quiz-options button:hover { color: var(--blue-dark); background: var(--sky-soft); border-color: #acd9ec; transform: translateX(3px); }
.quiz-options button > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); background: var(--sky); border-radius: 10px; font-size: 10px; font-weight: 900; }
.quiz-options button strong { font-size: 12px; }
.quiz-options button b { color: var(--blue); }
.quiz-back, .quiz-restart { margin-top: 20px; padding: 0; color: #748894; background: transparent; border: 0; font-size: 9px; font-weight: 800; }
.quiz-result { display: grid; justify-items: center; padding-top: 20px; text-align: center; }
.quiz-result-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 20px; color: white; background: var(--green); border-radius: 20px; box-shadow: 0 12px 28px rgba(47,180,119,.25); font-size: 24px; font-weight: 900; }
.quiz-picks { width: 100%; display: grid; gap: 7px; margin: 4px 0 18px; }
.quiz-picks > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 11px; padding: 10px 12px; background: #f6fafc; border-radius: 12px; text-align: left; }
.quiz-picks > div > span { width: 38px; height: 38px; display: grid; place-items: center; color: white; border-radius: 11px; font-size: 9px; font-weight: 900; }
.quiz-picks strong { display: grid; gap: 4px; font-size: 9px; }
.quiz-picks small { color: var(--muted); font-size: 7px; }
.quiz-result > a { width: 100%; padding: 14px; color: white; background: var(--blue); border-radius: 12px; font-size: 10px; font-weight: 900; }
.quiz-result > a span { margin-left: 8px; }
.metro-overlay { position: fixed; z-index: 1050; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(8,30,45,.58); backdrop-filter: blur(8px); animation: quizFade .2s ease; }
.metro-overlay[hidden] { display: none; }
.metro-modal { position: relative; width: min(590px, 100%); max-height: min(720px, calc(100vh - 40px)); overflow: hidden; padding: 34px; background: white; border-radius: 27px; box-shadow: 0 40px 100px rgba(5,31,46,.3); animation: quizUp .25s ease; }
.metro-close { position: absolute; z-index: 2; top: 19px; right: 19px; width: 34px; height: 34px; color: #6f8290; background: #f1f6f9; border: 0; border-radius: 50%; font-size: 20px; line-height: 1; }
.metro-modal h2 { margin: 0; font-size: 31px; line-height: 1.15; letter-spacing: -1.4px; }
.metro-modal h2 + p { margin: 11px 42px 22px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.metro-search { height: 50px; display: flex; align-items: center; gap: 10px; padding: 0 14px; margin-bottom: 14px; color: var(--blue); background: #f7fbfd; border: 1px solid #dcebf2; border-radius: 13px; }
.metro-search span { font-size: 23px; transform: translateY(-2px); }
.metro-search input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; font-size: 11px; }
.metro-list { max-height: 390px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; overflow-y: auto; padding-right: 5px; }
.metro-list button { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; min-height: 46px; padding: 10px 12px; color: #36566a; background: white; border: 1px solid #e1ebf0; border-radius: 12px; text-align: left; transition: .16s ease; }
.metro-list button:hover { color: var(--blue-dark); background: #f2f9fc; border-color: #b8deed; transform: translateY(-1px); }
.metro-list button i { width: 11px; height: 11px; border: 3px solid currentColor; border-radius: 50%; }
.metro-list button strong { font-size: 9px; }
.metro-list button span { color: #9bb0bc; }
.metro-list .line-blue i { color: #168acd; }
.metro-list .line-red i { color: #e34b55; }
.metro-list .line-green i { color: #2d9d68; }
.metro-list .line-orange i { color: #e89022; }
.metro-list .line-purple i { color: #7a5ac7; }
.metro-empty { grid-column: 1 / -1; padding: 35px; color: var(--muted); background: #f6fafc; border-radius: 13px; text-align: center; font-size: 10px; }
@keyframes quizFade { from { opacity: 0; } }
@keyframes quizUp { from { opacity: 0; transform: translateY(15px) scale(.98); } }

footer { min-height: 140px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; padding: 35px max(24px, calc((100vw - 1180px) / 2)); color: #6d8290; background: #f4f9fc; border-top: 1px solid #e1edf3; font-size: 9px; }
footer > p { max-width: 430px; line-height: 1.6; }
footer > div { display: flex; gap: 18px; font-weight: 700; }
footer > span { grid-column: 3; color: #9aa8b2; }

.not-found-page { min-height: calc(100vh - 100px); display: grid; place-content: center; justify-items: center; padding: 130px 24px 70px; text-align: center; }
.not-found-page > span { color: var(--blue); font-size: clamp(70px, 14vw, 150px); font-weight: 900; line-height: .9; letter-spacing: -7px; opacity: .18; }
.not-found-page h1 { margin: -5px 0 13px; font-size: clamp(35px, 5vw, 58px); letter-spacing: -2.5px; }
.not-found-page p { max-width: 520px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.not-found-page > div { display: flex; gap: 10px; margin-top: 25px; }
.not-found-page > div a { padding: 13px 16px; color: white; background: var(--blue); border-radius: 11px; font-size: 9px; font-weight: 900; }
.not-found-page > div a + a { color: var(--blue-dark); background: var(--sky); }

.service-header { border-bottom: 1px solid #e6eef3; }
.service-page { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 30px 0 90px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; color: #899aa6; font-size: 9px; }
.breadcrumbs strong { color: #536b7b; }
.service-hero { display: grid; grid-template-columns: 1fr 335px; align-items: center; gap: 75px; padding: 70px 0; }
.service-hero h1 { max-width: 760px; margin: 20px 0 17px; font-size: clamp(40px, 5vw, 66px); line-height: 1.05; letter-spacing: -3px; }
.service-hero > div > p { max-width: 680px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-facts { display: flex; gap: 40px; margin-top: 33px; }
.service-facts div { display: grid; gap: 5px; padding-right: 40px; border-right: 1px solid var(--line); }
.service-facts div:last-child { border: 0; }
.service-facts span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .7px; }
.service-facts strong { font-size: 14px; }
.service-hero > aside { padding: 25px; background: var(--sky-soft); border: 1px solid #dcecf4; border-radius: 18px; }
.service-hero > aside > strong { font-size: 16px; }
.service-hero > aside p { color: var(--muted); font-size: 10px; line-height: 1.6; }
.service-hero > aside label { display: grid; gap: 7px; color: #526e7f; font-size: 9px; font-weight: 700; }
.service-hero > aside input { width: 100%; height: 45px; padding: 0 12px; background: white; border: 1px solid #d6e5ec; border-radius: 9px; outline: 0; font-size: 10px; }
.service-hero > aside a { display: block; margin-top: 11px; padding: 13px; color: white; background: var(--blue); border-radius: 9px; text-align: center; font-size: 10px; font-weight: 800; }

.article-page { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.article-hero { position: relative; min-height: 430px; display: grid; grid-template-columns: 1fr 300px; align-items: end; gap: 75px; margin: 30px 0 55px; padding: 62px; overflow: hidden; color: white; background: radial-gradient(circle at 88% 15%, rgba(255,255,255,.18), transparent 24%), linear-gradient(135deg, #076f9f, #229ed9); border-radius: 30px; }
.article-hero::after { content: ""; position: absolute; right: -90px; bottom: -160px; width: 420px; height: 420px; border: 62px solid rgba(255,255,255,.08); border-radius: 50%; }
.article-hero > div, .article-hero > aside { position: relative; z-index: 1; }
.article-hero .breadcrumbs { color: rgba(255,255,255,.75); }
.article-hero .breadcrumbs a { color: white; }
.article-hero h1 { max-width: 720px; margin: 25px 0 18px; font-size: clamp(40px, 5.4vw, 67px); line-height: 1.03; letter-spacing: -3px; }
.article-hero p { max-width: 650px; margin: 0; color: #d8f2fd; font-size: 13px; line-height: 1.75; }
.article-hero > aside { display: grid; gap: 13px; padding: 23px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); border-radius: 18px; backdrop-filter: blur(6px); }
.article-hero > aside span { color: #d7f2fd; font-size: 8px; text-transform: uppercase; letter-spacing: .8px; }
.article-hero > aside strong { font-size: 13px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 70px; padding-bottom: 100px; }
.article-content { min-width: 0; }
.article-lead { margin: 0 0 34px; padding: 24px 26px; color: #35586d; background: var(--sky-soft); border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; font-size: 13px; line-height: 1.75; }
.article-content h2 { scroll-margin-top: 120px; margin: 46px 0 14px; font-size: 29px; line-height: 1.2; letter-spacing: -1.2px; }
.article-content h2:first-of-type { margin-top: 0; }
.article-content p, .article-content li { color: #536b7b; font-size: 12px; line-height: 1.85; }
.article-content ul { display: grid; gap: 9px; padding-left: 20px; }
.article-note { margin: 30px 0; padding: 21px 23px; background: #fff9e9; border: 1px solid #f1dfaa; border-radius: 15px; }
.article-note strong { display: block; margin-bottom: 7px; color: #8d6615; font-size: 11px; }
.article-note p { margin: 0; color: #715f39; font-size: 10px; }
.article-service-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 45px; padding: 27px; background: linear-gradient(135deg, #edf9fe, #f8fcfe); border: 1px solid #d4eaf4; border-radius: 19px; }
.article-service-cta span { display: grid; gap: 6px; color: #7b8e9b; font-size: 8px; }
.article-service-cta strong { color: var(--ink); font-size: 15px; }
.article-service-cta a { flex: 0 0 auto; padding: 13px 16px; color: white; background: var(--blue); border-radius: 11px; font-size: 9px; font-weight: 900; }
.article-toc { position: sticky; top: 105px; align-self: start; display: grid; gap: 6px; padding: 21px; background: #f8fbfd; border: 1px solid var(--line); border-radius: 17px; }
.article-toc > strong { margin-bottom: 8px; font-size: 11px; }
.article-toc a { padding: 8px 9px; color: #526c7d; border-radius: 8px; font-size: 9px; font-weight: 700; }
.article-toc a:hover { color: var(--blue-dark); background: var(--sky); }
.article-toc p { margin: 12px 0 0; padding-top: 15px; color: #8999a3; border-top: 1px solid #e1ebf0; font-size: 7px; line-height: 1.6; }
.dental-theme .article-hero { background: radial-gradient(circle at 88% 15%, rgba(255,255,255,.18), transparent 24%), linear-gradient(135deg, #126f4c, #22a66f); }
.dental-theme .article-lead { background: #f0faf5; border-color: #22a66f; }
.dental-theme .article-service-cta { background: linear-gradient(135deg, #eef9f3, #fbfefc); border-color: #d3eadf; }
.dental-theme .article-service-cta a { background: #1c9967; }
.content-layout { display: grid; grid-template-columns: 1fr 230px; gap: 80px; align-items: start; padding-top: 55px; border-top: 1px solid var(--line); }
.content-layout article > h2 { margin: 50px 0 17px; font-size: 27px; letter-spacing: -1px; }
.content-layout article > h2:first-child { margin-top: 0; }
.content-layout article > p { color: #587181; font-size: 12px; line-height: 1.8; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.info-grid > div { padding: 18px; background: var(--sky-soft); border-radius: 14px; }
.info-grid span { display: block; margin-bottom: 20px; color: var(--blue); font-size: 9px; font-weight: 800; }
.info-grid strong { font-size: 11px; }
.info-grid p { margin: 8px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.service-clinics { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.service-clinics > div { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 13px; padding: 16px; border-bottom: 1px solid var(--line); }
.service-clinics > div:last-child { border: 0; }
.service-clinics div > div { display: grid; gap: 4px; }
.service-clinics div > div strong { font-size: 11px; }
.service-clinics small { color: var(--muted); font-size: 8px; }
.service-clinics b { font-size: 11px; }
.service-clinics a { padding: 10px 12px; color: white; background: var(--blue); border-radius: 8px; font-size: 9px; font-weight: 800; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 17px 0; cursor: pointer; font-size: 11px; font-weight: 800; }
details p { margin: 0 0 17px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.page-nav { position: sticky; top: 25px; display: grid; gap: 13px; padding: 20px; background: var(--sky-soft); border-radius: 14px; }
.page-nav strong { margin-bottom: 5px; font-size: 11px; }
.page-nav a { color: #587488; font-size: 9px; }
.page-nav p { margin: 10px 0 0; padding-top: 15px; color: #8b9aa4; border-top: 1px solid #dae7ee; font-size: 8px; line-height: 1.6; }

.clinic-page { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 30px 0 100px; }
.clinic-detail-hero { display: grid; grid-template-columns: 440px 1fr; align-items: center; gap: 55px; padding: 38px 0 75px; }
.clinic-detail-photo { position: relative; height: 360px; overflow: hidden; border-radius: 26px; box-shadow: 0 22px 55px rgba(37,100,130,.17); }
.clinic-detail-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.clinic-detail-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,42,61,.4)); }
.clinic-detail-photo > span { position: absolute; z-index: 2; left: 18px; bottom: 18px; padding: 8px 11px; color: var(--blue-dark); background: white; border-radius: 999px; font-size: 8px; font-weight: 900; }
.clinic-detail-copy h1 { margin: 20px 0 13px; font-size: clamp(40px, 5vw, 62px); line-height: 1.04; letter-spacing: -3px; }
.clinic-detail-copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.clinic-detail-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 28px; }
.clinic-detail-facts > div { display: grid; gap: 5px; padding: 14px; background: var(--sky-soft); border: 1px solid #e0edf3; border-radius: 13px; }
.clinic-detail-facts span { color: var(--muted); font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.clinic-detail-facts strong { overflow: hidden; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.clinic-detail-facts small { color: #81939e; font-size: 7px; }
.clinic-prices-section { padding-top: 65px; border-top: 1px solid var(--line); }
.clinic-service-price { max-width: 930px; overflow: hidden; background: white; border: 1px solid #d9e8ef; border-radius: 21px; box-shadow: 0 14px 40px rgba(41,97,124,.08); }
.own-price-label { padding: 11px 20px; color: var(--blue-dark); background: #edf8fd; border-bottom: 1px solid #d8ebf3; font-size: 8px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; }
.own-price-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 25px; }
.own-price-row h3 { margin: 0 0 7px; font-size: 18px; letter-spacing: -.5px; }
.own-price-row p { margin: 0; color: var(--muted); font-size: 9px; }
.own-price-row > strong { flex: 0 0 auto; font-size: 24px; letter-spacing: -.8px; }
.alternatives-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; color: var(--blue-dark); background: #f8fbfd; border: 0; border-top: 1px solid #e2edf2; font-size: 10px; font-weight: 900; }
.alternatives-toggle b { font: inherit; }
.alternatives-toggle:hover { background: #eef8fc; }
.alternative-price-list { display: grid; border-top: 1px solid #e2edf2; }
.alternative-price-list[hidden] { display: none; }
.alternative-price-list a { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 13px; padding: 14px 20px; border-bottom: 1px solid #edf2f5; transition: .15s ease; }
.alternative-price-list a:last-child { border-bottom: 0; }
.alternative-price-list a:hover { background: #f6fbfd; }
.alternative-price-list a > div { display: grid; gap: 4px; }
.alternative-price-list a > div strong { font-size: 10px; }
.alternative-price-list a > div small { color: var(--muted); font-size: 8px; }
.alternative-price-list a > b { font-size: 13px; }
.alternative-price-list a > i { color: var(--blue); font-style: normal; font-weight: 900; }
.price-list-placeholder { max-width: 760px; padding: 28px; color: #557083; background: var(--sky-soft); border: 1px solid #dcebf2; border-radius: 17px; }
.price-list-placeholder strong { font-size: 15px; }
.price-list-placeholder p { margin: 8px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.clinic-price-disclaimer { max-width: 850px; margin: 16px 0 0; color: #8a9aa5; font-size: 8px; line-height: 1.6; }

.network-page { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 30px 0 100px; }
.network-hero { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; margin: 30px 0 85px; padding: 48px; background: linear-gradient(135deg, #f3faff, #e4f5fd); border: 1px solid #d5ebf5; border-radius: 28px; }
.network-logo { width: 112px; height: 112px; display: grid; place-items: center; color: white; border: 6px solid white; border-radius: 30px; box-shadow: 0 20px 40px rgba(27,112,151,.2); font-size: 24px; font-weight: 900; }
.network-hero h1 { margin: 15px 0 8px; font-size: clamp(42px, 5vw, 65px); line-height: 1; letter-spacing: -3px; }
.network-hero p { max-width: 620px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.network-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px; background: rgba(255,255,255,.78); border-radius: 17px; }
.network-summary div { min-width: 78px; display: grid; gap: 4px; padding: 10px; text-align: center; }
.network-summary strong { font-size: 17px; }
.network-summary span { color: var(--muted); font-size: 7px; }
.network-branch-grid { display: grid; gap: 11px; }
.network-branch-grid article { display: grid; grid-template-columns: 45px auto 1fr auto auto; align-items: center; gap: 17px; padding: 18px 20px; background: white; border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 8px 25px rgba(43,93,117,.05); transition: .2s ease; }
.network-branch-grid article:hover { transform: translateY(-2px); border-color: #b8ddeb; box-shadow: 0 14px 32px rgba(43,93,117,.1); }
.branch-number { color: #a3b4be; font-size: 10px; font-weight: 900; }
.network-branch-grid article > div:nth-child(3) { min-width: 0; }
.network-branch-grid h3 { margin: 0 0 6px; font-size: 13px; }
.network-branch-grid p { display: flex; align-items: center; gap: 7px; margin: 0 0 5px; color: #4e6d7f; font-size: 9px; }
.network-branch-grid small { color: var(--muted); font-size: 8px; }
.branch-rating { display: grid; gap: 4px; text-align: right; }
.branch-rating strong { color: #e99c12; font-size: 11px; }
.branch-rating span { color: var(--muted); font-size: 7px; }
.network-branch-grid article > a { padding: 11px 13px; color: white; background: var(--blue); border-radius: 10px; font-size: 8px; font-weight: 900; }

@media (max-width: 900px) {
  .site-header { gap: 10px; }
  .site-header .care-mode-wrap, .site-header .care-mode-switch { width: 250px; }
  .site-header nav { flex: 1; justify-content: flex-start; gap: 3px; overflow-x: auto; scrollbar-width: none; }
  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a { padding: 8px 9px; font-size: 10px; }
  .site-header .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; gap: 55px; padding-top: 55px; }
  .hero-panel { max-width: 560px; margin: 0 auto; width: 100%; }
  .clinic-card, .clinic-card:nth-child(4), .clinic-card:nth-child(5) { grid-column: span 3; }
  .service-variant-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: 1fr; gap: 50px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid article > p { min-height: 0; }
  .service-hero { grid-template-columns: 1fr; gap: 35px; }
  .service-hero > aside { max-width: 460px; }
  .content-layout { grid-template-columns: 1fr; gap: 35px; }
  .page-nav { display: none; }
  .clinic-detail-hero { grid-template-columns: 1fr; gap: 35px; }
  .clinic-detail-photo { max-width: 620px; }
  .network-hero { grid-template-columns: auto 1fr; }
  .network-summary { grid-column: 1 / -1; }
  .network-branch-grid article { grid-template-columns: 36px auto 1fr auto; }
  .network-branch-grid article > a { grid-column: 3 / -1; width: fit-content; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > span { grid-column: auto; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 125px; }
  .site-header { top: 6px; width: calc(100% - 20px); height: auto; min-height: 108px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 6px 8px; margin-top: 6px; padding: 8px 9px; border-radius: 15px; }
  .site-header .care-mode-wrap, .site-header .care-mode-switch { width: 100%; }
  .site-header .care-mode-switch { height: 42px; }
  .site-header nav { grid-column: 1 / -1; width: 100%; justify-content: center; margin-left: 0; }
  .site-header nav a { flex: 1; padding: 7px 6px; text-align: center; font-size: 9px; }
  .site-header .header-cta { display: none; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 125px; }
  .site-header { top: 6px; width: calc(100% - 20px); height: auto; min-height: 108px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 6px 8px; margin-top: 6px; padding: 8px 9px; border-radius: 15px; }
  .site-header .brand { gap: 0; }
  .site-header .brand > span:last-child { display: none; }
  .site-header .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .site-header .care-mode-wrap, .site-header .care-mode-switch { width: 100%; }
  .site-header .care-mode-switch { height: 42px; }
  .site-header .care-mode-switch button { gap: 5px; font-size: 9px; }
  .site-header .care-mode-switch button i { width: 18px; height: 18px; font-size: 10px; }
  .site-header nav { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .site-header nav a { flex: 1; padding: 7px 6px; text-align: center; font-size: 9px; }
  .header-cta { display: none; }
  .hero { padding: 45px 20px 65px; }
  .hero h1 { letter-spacing: -2.2px; }
  .hero-search { height: auto; padding: 7px 7px 7px 15px; }
  .hero-search button { padding: 0 17px; }
  .hero-quick-actions { align-items: flex-start; flex-direction: column; }
  .trust-row { gap: 15px; justify-content: space-between; }
  .trust-row div { padding-right: 15px; }
  .map-area { height: 330px; }
  .floating-note { left: 6px; bottom: 35px; }
  .proof-strip { justify-content: flex-start; }
  .proof-strip > span { width: 100%; }
  .catalog, .services, .articles, .questions, .reviews { width: calc(100% - 30px); padding: 75px 0; }
  .section-heading { display: grid; align-items: start; }
  .catalog-tabs { width: 100%; }
  .catalog-tabs button { flex: 1; justify-content: center; padding: 10px 9px; font-size: 10px; }
  .catalog-mode-hero { grid-template-columns: auto 1fr; gap: 15px; padding: 19px; }
  .catalog-mode-hero > strong { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 8px; text-align: left; }
  .mode-symbol { width: 55px; height: 55px; border-radius: 17px; }
  .mode-logo-stack { width: 74px; transform: scale(.78); transform-origin: left center; }
  .catalog-mode-hero h3 { font-size: 16px; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .rating-filter { justify-content: space-between; }
  .near-button { height: 49px; justify-content: center; }
  .result-section-heading { align-items: flex-start; }
  .result-section-heading h3 { font-size: 20px; }
  .clinic-grid, .company-grid { grid-template-columns: 1fr; }
  .clinic-card, .clinic-card:nth-child(4), .clinic-card:nth-child(5), .company-card:last-child { grid-column: 1; }
  .service-grid { grid-template-columns: 1fr; }
  .method { padding: 75px 20px; }
  .article-grid { grid-template-columns: 1fr; }
  body[data-care="dental"] .article-grid.care-dental { display: grid !important; }
  .question-shell { grid-template-columns: 1fr; gap: 28px; padding: 24px 18px; border-radius: 22px; }
  .question-intro { position: static; }
  .question-list summary { grid-template-columns: 46px 1fr auto; gap: 10px; padding: 15px 13px; }
  .question-list details > div { padding: 0 48px 17px 69px; }
  .article-page { width: calc(100% - 30px); }
  .article-hero { min-height: 0; grid-template-columns: 1fr; gap: 32px; padding: 38px 24px; }
  .article-hero h1 { letter-spacing: -2px; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; padding-bottom: 70px; }
  .article-toc { position: static; grid-row: 1; }
  .article-service-cta { align-items: flex-start; flex-direction: column; }
  .request-banner { width: calc(100% - 30px); display: grid; margin-bottom: 70px; padding: 35px 25px; }
  .quiz-launch { width: fit-content; }
  .quiz-modal { min-height: 500px; padding: 28px 20px; border-radius: 22px; }
  .quiz-progress { margin-right: 38px; }
  .review-modal { min-height: 520px; padding: 28px 20px; border-radius: 22px; }
  .review-form-progress { margin-right: 38px; }
  .review-form-step h2 { font-size: 27px; }
  .signature-options { grid-template-columns: 1fr; }
  .metro-modal { padding: 28px 20px; border-radius: 22px; }
  .metro-list { grid-template-columns: 1fr; max-height: 52vh; }
  .metro-modal h2 { font-size: 27px; }
  .clinic-facts { grid-template-columns: 1fr; }
  .company-actions { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 22px; }
  footer > div { flex-wrap: wrap; }
  .service-page { width: calc(100% - 30px); }
  .clinic-page { width: calc(100% - 30px); }
  .clinic-detail-photo { height: 270px; }
  .clinic-detail-copy h1 { letter-spacing: -2px; }
  .clinic-detail-facts { grid-template-columns: 1fr; }
  .own-price-row { align-items: flex-start; flex-direction: column; }
  .alternative-price-list a { grid-template-columns: auto 1fr auto; }
  .alternative-price-list a > i { display: none; }
  .network-page { width: calc(100% - 30px); }
  .network-hero { grid-template-columns: 1fr; padding: 28px 20px; }
  .network-logo { width: 82px; height: 82px; border-radius: 24px; }
  .network-summary { grid-column: 1; width: 100%; }
  .network-branch-grid article { grid-template-columns: auto 1fr; }
  .branch-number { display: none; }
  .branch-rating, .network-branch-grid article > a { grid-column: 2; width: fit-content; text-align: left; }
  .service-hero { padding: 50px 0; }
  .service-hero h1 { letter-spacing: -2px; }
  .service-facts { gap: 14px; }
  .service-facts div { padding-right: 14px; }
  .info-grid { grid-template-columns: 1fr; }
  .service-clinics > div { grid-template-columns: auto 1fr; }
  .service-clinics b, .service-clinics a { grid-column: 2; }
}
