

:root {
  --ink: #082b5d;
  --ink-deep: #051c42;
  --text: #173b67;
  --muted: #607a9c;
  --blue: #1175ee;
  --cyan: #17c3f3;
  --cyan-soft: #dff7ff;
  --line: rgba(22, 116, 216, .14);
  --surface: rgba(255, 255, 255, .78);
  --surface-strong: rgba(255, 255, 255, .93);
  --page: #f5fbff;
  --shadow: 0 24px 80px rgba(36, 113, 184, .12);
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--page); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }

.site-shell,
.doctor-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(40, 196, 255, .11), transparent 19%),
    radial-gradient(circle at 94% 14%, rgba(59, 130, 246, .10), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f6fbff 48%, #fff 100%);
}

.site-header {
  min-height: 86px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(32, 116, 205, .11);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.brand { display: flex; align-items: center; gap: 13px; min-width: 215px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 117, 238, .28);
  border-radius: 13px 4px 13px 4px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(218,245,255,.85));
  box-shadow: inset 0 1px 0 #fff, 0 12px 30px rgba(17,117,238,.11);
}
.brand > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.brand strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.brand small { color: #3c9bc7; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.site-header nav { display: flex; justify-content: center; gap: clamp(18px, 2vw, 34px); font-size: 12px; font-weight: 700; }
.site-header nav a { position: relative; padding: 34px 0; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: right .22s ease; }
.site-header nav a:hover::after { right: 0; }
.header-tools { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.header-phone b { color: var(--ink); font-size: 13px; }
.header-phone span { color: var(--muted); font-size: 9px; }
.header-action {
  min-height: 45px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #236cf1, #11aef1);
  box-shadow: 0 12px 28px rgba(25, 111, 237, .24), inset 0 1px 0 rgba(255,255,255,.35);
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-action:hover { transform: translateY(-2px); box-shadow: 0 17px 35px rgba(25, 111, 237, .3), inset 0 1px 0 rgba(255,255,255,.35); }
.header-action svg { width: 15px; }

.hero {
  min-height: 700px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  padding: 78px 5vw 54px;
  isolation: isolate;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 38%, rgba(255,255,255,.28) 70%, rgba(236,249,255,.2) 100%);
}
.hero-background { position: absolute; inset: 0; z-index: -3; background: url('assets/hero-future.webp') 66% 48% / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 35%, rgba(255,255,255,.56) 58%, rgba(245,252,255,.05) 90%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px; z-index: -1; background: linear-gradient(0deg, #fff, transparent); }
.hero-copy { max-width: 770px; position: relative; z-index: 2; }
h1, h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.hero h1 { max-width: 780px; font-size: clamp(48px, 5.4vw, 84px); line-height: .98; text-wrap: balance; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: #385c82; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #236cf1, #10b5ef); box-shadow: 0 16px 36px rgba(24, 116, 238, .25), inset 0 1px 0 rgba(255,255,255,.4); }
.button-primary:hover { box-shadow: 0 20px 44px rgba(24, 116, 238, .33), inset 0 1px 0 rgba(255,255,255,.4); }
.button-ghost, .button-outline { color: var(--ink); border-color: rgba(28, 112, 212, .2); background: rgba(255,255,255,.72); box-shadow: inset 0 1px 0 #fff, 0 12px 30px rgba(41, 116, 185, .09); backdrop-filter: blur(15px); }
.button-outline { background: transparent; }
.hero-proof { max-width: 750px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 45px; }
.hero-proof article { min-height: 100px; display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid rgba(22,116,216,.12); border-radius: 17px; background: rgba(255,255,255,.68); box-shadow: inset 0 1px 0 #fff, 0 17px 45px rgba(38,112,184,.09); backdrop-filter: blur(20px); }
.hero-proof article > span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; color: var(--blue); border-radius: 13px; background: linear-gradient(145deg, #fff, #dff6ff); box-shadow: 0 8px 22px rgba(16, 128, 223, .12); }
.line-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.hero-proof article div { display: flex; flex-direction: column; gap: 5px; }
.hero-proof b { color: var(--ink); font-size: 11px; }
.hero-proof small { color: var(--muted); font-size: 9px; line-height: 1.35; }
.hero-status { position: absolute; right: 4.5vw; bottom: 53px; width: 220px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; color: #fff; border: 1px solid rgba(255,255,255,.52); border-radius: 18px; background: linear-gradient(135deg, rgba(14,93,203,.76), rgba(12,191,228,.56)); box-shadow: 0 23px 58px rgba(23, 100, 177, .24), inset 0 1px 0 rgba(255,255,255,.4); backdrop-filter: blur(17px); }
.hero-status > span { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; opacity: .8; }
.hero-status b { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.hero-status div { font-size: 9px; opacity: .9; }
.hero-status i { width: 6px; height: 6px; display: inline-block; margin-right: 6px; border-radius: 50%; background: #85fff6; box-shadow: 0 0 12px #85fff6; }
.cosmos-orbit { position: absolute; z-index: -1; border: 1px solid rgba(12, 137, 224, .14); border-radius: 50%; pointer-events: none; }
.cosmos-orbit i { position: absolute; width: 10px; height: 10px; border: 2px solid rgba(41, 164, 229, .38); border-radius: 50%; background: rgba(255,255,255,.85); box-shadow: 0 0 18px rgba(25, 173, 236, .5); }
.orbit-one { width: 330px; height: 150px; left: -110px; top: 155px; transform: rotate(72deg); }
.orbit-one i:nth-child(1) { left: 37px; top: 26px; }
.orbit-one i:nth-child(2) { right: 55px; top: 17px; }
.orbit-one i:nth-child(3) { left: 150px; bottom: -5px; }
.orbit-two { width: 490px; height: 210px; right: -220px; top: 70px; transform: rotate(-18deg); }
.orbit-two i:nth-child(1) { left: 55px; top: 25px; }
.orbit-two i:nth-child(2) { right: 65px; bottom: 35px; }

.signal-line { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 5vw; border-top: 1px solid rgba(22,116,216,.10); border-bottom: 1px solid rgba(22,116,216,.10); background: rgba(255,255,255,.88); }
.signal-line > div { min-height: 122px; display: flex; align-items: center; gap: 18px; padding: 24px 2.2vw; border-right: 1px solid rgba(22,116,216,.10); }
.signal-line > div:first-child { border-left: 1px solid rgba(22,116,216,.10); }
.signal-line > div > span { color: #42a6d4; font-size: 10px; letter-spacing: .12em; }
.signal-line p { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.signal-line b { color: var(--ink); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.signal-line small { color: var(--muted); font-size: 10px; line-height: 1.45; }

.section { padding: 110px 6vw; position: relative; }
.section-label, .section-title > span { display: inline-block; color: #178dcc; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.section h2 { font-size: clamp(43px, 4.5vw, 72px); line-height: 1.02; }
.section-title { max-width: 1130px; }
.section-title h2 { margin-top: 17px; }
.section-title > p { max-width: 800px; margin: 25px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.approach { background: radial-gradient(circle at 94% 4%, rgba(31,190,239,.12), transparent 23%), linear-gradient(180deg, #fff, #f4fbff); }
.approach::after { content: ""; position: absolute; width: 560px; height: 560px; right: -330px; top: 90px; border: 1px solid rgba(42, 153, 223, .12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(53,161,224,.025), 0 0 0 100px rgba(53,161,224,.018); }
.approach-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 30px; margin-top: 52px; position: relative; z-index: 2; }
.approach-visual { min-height: 600px; position: relative; overflow: hidden; border: 1px solid rgba(22,116,216,.12); border-radius: 30px 30px 9px 30px; background: #eaf8ff; box-shadow: var(--shadow); }
.approach-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.approach-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,41,92,.54) 0%, transparent 45%); }
.visual-grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(0deg, #000, transparent 70%); }
.visual-caption { position: absolute; left: 30px; right: 30px; bottom: 28px; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; color: #fff; }
.visual-caption span { font-size: 9px; letter-spacing: .16em; }
.visual-caption b { max-width: 520px; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 38px); font-weight: 400; line-height: 1.1; }
.approach-list { display: grid; gap: 12px; }
.approach-list article { min-height: 138px; display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: center; padding: 22px 25px; border: 1px solid rgba(22,116,216,.11); border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: inset 0 1px 0 #fff, 0 18px 50px rgba(36,113,184,.08); backdrop-filter: blur(18px); }
.approach-list article > span { width: 55px; height: 55px; display: grid; place-items: center; color: var(--blue); border-radius: 16px; background: linear-gradient(145deg, #fff, #ddf6ff); }
.approach-list article h3 { margin: 0 0 9px; color: var(--ink); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.approach-list article p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.appointment { background: radial-gradient(circle at 7% 14%, rgba(91, 218, 251, .13), transparent 19%), linear-gradient(180deg, #f4fbff, #fff); }
.appointment-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: end; margin-bottom: 42px; }
.appointment-head h2 { margin-top: 17px; }
.appointment-head > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { min-height: 450px; display: flex; flex-direction: column; padding: 28px; position: relative; overflow: hidden; border: 1px solid rgba(22,116,216,.12); border-radius: 25px; background: rgba(255,255,255,.82); box-shadow: inset 0 1px 0 #fff, 0 26px 70px rgba(36,113,184,.1); }
.price-card::before { content: ""; position: absolute; width: 250px; height: 250px; right: -110px; bottom: -120px; border: 1px solid rgba(43,167,230,.18); border-radius: 50%; box-shadow: 0 0 0 28px rgba(50,181,237,.035), 0 0 0 65px rgba(50,181,237,.025); }
.price-treatment { background: radial-gradient(circle at 100% 0, rgba(65,211,240,.17), transparent 36%), rgba(255,255,255,.86); }
.price-repeat { background: radial-gradient(circle at 100% 0, rgba(120,145,255,.14), transparent 36%), rgba(255,255,255,.86); }
.price-top { display: flex; align-items: center; justify-content: space-between; color: var(--blue); }
.price-top > span { font-size: 10px; letter-spacing: .14em; }
.price-top .line-icon { width: 38px; height: 38px; stroke-width: 1.1; }
.price-card h3 { margin: 48px 0 14px; color: var(--ink); font-family: var(--serif); font-size: 31px; font-weight: 400; }
.price-card > strong { color: #0a56bd; font-family: var(--serif); font-size: clamp(43px, 4vw, 62px); font-weight: 400; letter-spacing: -.04em; }
.price-card > strong small { font-size: .48em; }
.price-card > p { max-width: 310px; margin: 14px 0 20px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.price-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.price-card li { padding: 7px 10px; color: #37648d; border: 1px solid rgba(22,116,216,.1); border-radius: 999px; background: rgba(229,247,255,.55); font-size: 9px; }
.price-card > a { display: inline-flex; align-items: center; gap: 11px; margin-top: auto; position: relative; z-index: 1; color: var(--blue); font-size: 12px; font-weight: 800; }

.team { padding-top: 50px; background: linear-gradient(180deg, #fff, #f5fbff 50%, #fff); }
.team-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 560px; overflow: hidden; border: 1px solid rgba(22,116,216,.12); border-radius: 34px; background: #eaf8ff; box-shadow: var(--shadow); }
.team-image { min-height: 540px; position: relative; }
.team-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.team-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(238,250,255,.92)); }
.team-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px 54px 55px 25px; position: relative; z-index: 2; }
.team-copy h2 { margin-top: 18px; font-size: clamp(42px, 4.2vw, 65px); }
.team-copy > p { margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.team-stat { display: flex; align-items: center; gap: 17px; margin-top: 34px; }
.team-stat b { color: var(--blue); font-family: var(--serif); font-size: 70px; font-weight: 400; line-height: .9; }
.team-stat span { color: var(--muted); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .13em; }
.doctor-carousel { margin-top: 52px; }
.carousel-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.carousel-toolbar > span { color: #4b749a; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button { width: 46px; height: 46px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(22,116,216,.14); border-radius: 50%; background: rgba(255,255,255,.82); box-shadow: 0 12px 28px rgba(36,113,184,.09); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.carousel-controls button:hover { transform: translateY(-2px); background: #fff; }
.carousel-controls svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.doctor-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 23.5vw); gap: 13px; overflow-x: auto; padding: 2px 2px 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.doctor-track::-webkit-scrollbar { display: none; }
.doctor-card { overflow: hidden; scroll-snap-align: start; border: 1px solid rgba(22,116,216,.12); border-radius: 23px; background: rgba(255,255,255,.88); box-shadow: 0 22px 58px rgba(36,113,184,.09); }
.doctor-photo { height: 230px; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.96), rgba(193,237,255,.76) 39%, rgba(71,171,241,.34) 73%, rgba(29,99,196,.38)); }
.doctor-tone-2 .doctor-photo { background: radial-gradient(circle at 50% 42%, #fff, #e3f6ff 39%, rgba(77,215,232,.38) 73%, rgba(25,128,201,.42)); }
.doctor-tone-3 .doctor-photo { background: radial-gradient(circle at 50% 42%, #fff, #ebf2ff 39%, rgba(130,171,255,.37) 73%, rgba(49,91,205,.39)); }
.doctor-tone-4 .doctor-photo { background: radial-gradient(circle at 50% 42%, #fff, #e6fbff 39%, rgba(82,221,212,.33) 73%, rgba(24,138,186,.39)); }
.doctor-tone-5 .doctor-photo { background: radial-gradient(circle at 50% 42%, #fff, #f1f4ff 39%, rgba(155,180,255,.34) 73%, rgba(65,101,205,.38)); }
.doctor-photo::before, .doctor-photo::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; }
.doctor-photo::before { width: 190px; height: 190px; left: calc(50% - 95px); top: 30px; }
.doctor-photo::after { width: 250px; height: 110px; left: calc(50% - 125px); top: 72px; transform: rotate(23deg); }
.doctor-photo-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(#000, transparent); }
.doctor-index { position: absolute; top: 16px; left: 17px; color: rgba(8,43,93,.58); font-size: 9px; letter-spacing: .15em; }
.doctor-avatar { width: 126px; height: 158px; position: absolute; left: calc(50% - 63px); bottom: -8px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.74); border-radius: 63px 63px 22px 22px; background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(25,104,203,.58)); box-shadow: 0 20px 42px rgba(20,85,169,.2), inset 0 1px 0 rgba(255,255,255,.7); backdrop-filter: blur(8px); }
.doctor-avatar span { font-family: var(--serif); font-size: 42px; letter-spacing: -.06em; text-shadow: 0 5px 18px rgba(5,45,113,.22); }
.doctor-wave { height: 31px; position: absolute; left: 15px; right: 15px; bottom: 15px; display: flex; align-items: center; justify-content: space-between; opacity: .5; }
.doctor-wave i { width: 2px; border-radius: 10px; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.9); }
.doctor-wave i:nth-child(1) { height: 8px; }.doctor-wave i:nth-child(2) { height: 20px; }.doctor-wave i:nth-child(3) { height: 30px; }.doctor-wave i:nth-child(4) { height: 17px; }.doctor-wave i:nth-child(5) { height: 10px; }
.doctor-info { padding: 21px 21px 23px; }
.doctor-tag { margin: 0 0 11px; color: #258ec5; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.doctor-info h3 { min-height: 52px; margin: 0; color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.08; }
.doctor-specialty { min-height: 38px; margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.doctor-meta { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7px; margin-top: 17px; }
.doctor-meta span { min-width: 0; padding: 9px 10px; display: flex; flex-direction: column; gap: 4px; color: #365d85; border: 1px solid rgba(22,116,216,.08); border-radius: 11px; background: rgba(230,247,255,.58); font-size: 10px; line-height: 1.3; }
.doctor-meta small { color: #258ec5; font-size: 8px; }
.doctor-info > a { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; color: var(--blue); border-top: 1px solid rgba(22,116,216,.09); font-size: 11px; font-weight: 800; }

.directions { background: radial-gradient(circle at 94% 8%, rgba(22,190,240,.13), transparent 22%), linear-gradient(180deg, #fff, #f4fbff); }
.directions-head { max-width: 1050px; }
.directions-head h2 { margin-top: 17px; }
.directions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 45px; }
.directions-grid > a { min-height: 145px; display: grid; grid-template-columns: 34px 66px 1fr 22px; gap: 18px; align-items: center; padding: 20px 24px; border: 1px solid rgba(22,116,216,.11); border-radius: 19px; background: rgba(255,255,255,.78); box-shadow: 0 19px 52px rgba(36,113,184,.07); transition: transform .2s ease, background .2s ease; }
.directions-grid > a:hover { transform: translateY(-3px); background: #fff; }
.direction-number { color: #54a3cf; font-size: 9px; letter-spacing: .14em; }
.direction-icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--blue); border-radius: 50%; background: radial-gradient(circle at 35% 28%, #fff, #d9f5ff 74%); box-shadow: 0 12px 27px rgba(24,132,213,.12), inset 0 0 0 1px rgba(22,116,216,.08); }
.direction-icon .line-icon { width: 31px; height: 31px; }
.directions-grid h3 { margin: 0 0 8px; color: var(--ink); font-family: var(--serif); font-size: 26px; font-weight: 400; }
.directions-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.directions-grid > a > svg { color: var(--blue); }

.clinic { display: grid; grid-template-columns: .82fr 1.18fr; gap: 5vw; align-items: center; background: #fff; }
.clinic-copy h2 { margin-top: 17px; }
.clinic-copy > p { max-width: 640px; margin: 27px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.clinic-copy dl { margin: 34px 0; }
.clinic-copy dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 25px; padding: 17px 0; border-bottom: 1px solid rgba(22,116,216,.1); }
.clinic-copy dt { color: #258ec5; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.clinic-copy dd { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 18px; }
.clinic-media { min-height: 590px; position: relative; overflow: hidden; border: 1px solid rgba(22,116,216,.13); border-radius: 34px 10px 34px 34px; background: #e8f8ff; box-shadow: var(--shadow); }
.clinic-media > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.clinic-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,42,92,.55), transparent 48%); }
.clinic-panel { position: absolute; left: 28px; right: 28px; bottom: 25px; z-index: 2; padding: 20px 22px; display: grid; grid-template-columns: 120px 1fr; gap: 8px 18px; color: #fff; border: 1px solid rgba(255,255,255,.42); border-radius: 17px; background: rgba(8,67,139,.35); backdrop-filter: blur(18px); }
.clinic-panel span { grid-row: 1 / 3; font-size: 8px; letter-spacing: .15em; }
.clinic-panel b { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.clinic-panel small { opacity: .8; font-size: 10px; }

.reviews { background: radial-gradient(circle at 3% 80%, rgba(39,201,244,.11), transparent 18%), linear-gradient(180deg, #f4fbff, #fff); }
.reviews-head { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 7vw; }
.reviews-head h2 { margin-top: 17px; }
.reviews-head > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 43px; }
.review-grid article { min-height: 285px; display: flex; flex-direction: column; padding: 26px; border: 1px solid rgba(22,116,216,.11); border-radius: 22px; background: rgba(255,255,255,.81); box-shadow: 0 22px 58px rgba(36,113,184,.07); }
.quote-mark { color: #7fd5f1; font-family: var(--serif); font-size: 68px; line-height: .8; }
.review-grid article > p { margin: 25px 0; color: #355d84; font-family: var(--serif); font-size: 22px; line-height: 1.4; }
.review-grid footer { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 17px; border-top: 1px solid rgba(22,116,216,.08); }
.review-grid footer > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); border-radius: 50%; background: #e7f7ff; font-size: 8px; }
.review-grid footer div { display: flex; flex-direction: column; gap: 4px; }
.review-grid footer b { color: var(--ink); font-size: 10px; }
.review-grid footer small { color: var(--muted); font-size: 8px; }

.faq { display: grid; grid-template-columns: .73fr 1.27fr; gap: 7vw; align-items: start; background: #fff; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-top: 17px; }
.faq-intro p { max-width: 520px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-list { display: grid; gap: 9px; }
.faq-list details { padding: 0 23px; border: 1px solid rgba(22,116,216,.11); border-radius: 17px; background: rgba(247,252,255,.82); box-shadow: 0 15px 42px rgba(36,113,184,.06); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: var(--ink); cursor: pointer; list-style: none; font-family: var(--serif); font-size: 19px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-family: Arial, sans-serif; font-size: 23px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 0 22px; padding-right: 55px; color: var(--muted); font-size: 12px; line-height: 1.6; }

.contact { min-height: 690px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 6vw; padding: 95px 6vw; position: relative; isolation: isolate; background: #edf9ff; }
.contact-visual { position: absolute; inset: 0; z-index: -2; }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(246,252,255,.98) 0%, rgba(246,252,255,.93) 45%, rgba(246,252,255,.65) 66%, rgba(238,250,255,.76) 100%); }
.contact-copy h2 { margin-top: 18px; font-size: clamp(46px, 5vw, 74px); }
.contact-copy > p { max-width: 550px; color: #496b8e; font-size: 16px; line-height: 1.65; }
.contact-details { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.contact-details a { color: var(--blue); font-family: var(--serif); font-size: 30px; }
.contact-details span { color: #496b8e; font-size: 11px; }
.contact-form { padding: 30px; display: grid; gap: 14px; border: 1px solid rgba(255,255,255,.8); border-radius: 27px; background: rgba(255,255,255,.78); box-shadow: 0 27px 75px rgba(30,103,172,.17), inset 0 1px 0 #fff; backdrop-filter: blur(24px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 7px; color: #397099; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: var(--ink); outline: none; border: 1px solid rgba(22,116,216,.11); border-radius: 13px; background: rgba(245,251,255,.88); font-size: 12px; text-transform: none; letter-spacing: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { min-height: 52px; padding: 0 15px; }
.contact-form textarea { min-height: 88px; padding: 14px 15px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(17,117,238,.46); box-shadow: 0 0 0 4px rgba(17,117,238,.07); }
.contact-form .consent { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 9px; color: var(--muted); font-size: 8px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.contact-form .consent input { width: 15px; min-height: 15px; margin: 0; accent-color: var(--blue); }
.contact-form .button { width: 100%; }

.footer { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 35px; padding: 65px 6vw 90px; color: #537291; background: #fff; border-top: 1px solid rgba(22,116,216,.1); }
.footer-brand p { max-width: 330px; margin: 20px 0 0; font-size: 11px; line-height: 1.6; }
.footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; font-size: 10px; }
.footer > div:not(.footer-brand) b { margin-bottom: 5px; color: var(--ink); font-size: 11px; }
.footer .disclaimer { grid-column: 1 / -1; margin: 25px 0 0; padding-top: 24px; color: #7690a9; border-top: 1px solid rgba(22,116,216,.09); font-size: 9px; }

/* Doctor page */
.doctor-header { position: relative; }
.doctor-hero { min-height: 650px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 4vw; padding: 60px 5vw 55px; position: relative; background: linear-gradient(90deg, #fff 0%, #fff 43%, #f0faff 100%); }
.doctor-hero-copy { position: relative; z-index: 2; }
.doctor-back { display: inline-block; margin-bottom: 42px; color: #4380ad; font-size: 10px; font-weight: 700; }
.doctor-team-label { margin: 0 0 15px; color: #188eca; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.doctor-hero h1 { max-width: 720px; font-size: clamp(48px, 5.1vw, 78px); line-height: .97; }
.doctor-name { margin: 18px 0 0; color: var(--blue); font-family: var(--serif); font-size: 28px; }
.doctor-intro { max-width: 660px; margin: 23px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.doctor-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.doctor-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 9px; margin-top: 35px; }
.doctor-facts span { min-height: 72px; padding: 13px 14px; display: flex; flex-direction: column; justify-content: center; gap: 5px; color: var(--ink); border: 1px solid rgba(22,116,216,.1); border-radius: 14px; background: rgba(245,251,255,.75); font-family: var(--serif); font-size: 15px; }
.doctor-facts small { color: #258ec5; font-family: Arial, sans-serif; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.doctor-hero-visual { min-height: 545px; position: relative; overflow: hidden; border: 1px solid rgba(22,116,216,.12); border-radius: 30px 8px 30px 30px; background: #e9f8ff; box-shadow: var(--shadow); }
.doctor-hero-visual > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.doctor-hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,45,104,.3), transparent 50%); }
.doctor-holo-card { width: 230px; min-height: 170px; position: absolute; left: 25px; bottom: 25px; z-index: 2; padding: 18px; display: flex; flex-direction: column; gap: 9px; color: #fff; border: 1px solid rgba(255,255,255,.42); border-radius: 18px; background: rgba(10,83,170,.42); backdrop-filter: blur(18px); }
.doctor-holo-card > span { font-size: 8px; letter-spacing: .15em; }
.doctor-holo-card b { font-family: var(--serif); font-size: 65px; font-weight: 400; line-height: 1; }
.doctor-holo-card small { font-size: 9px; line-height: 1.4; }
.doctor-holo-status { position: absolute; right: 23px; top: 23px; z-index: 2; padding: 9px 12px; color: #fff; border: 1px solid rgba(255,255,255,.48); border-radius: 999px; background: rgba(9,78,158,.33); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; backdrop-filter: blur(14px); }
.doctor-holo-status i { width: 6px; height: 6px; display: inline-block; margin-right: 7px; border-radius: 50%; background: #8bfff8; box-shadow: 0 0 12px #8bfff8; }
.doctor-concerns, .doctor-profile-section, .doctor-steps, .related-doctors { padding: 100px 6vw; }
.doctor-section-heading { max-width: 950px; }
.doctor-section-heading h2 { margin-top: 17px; font-size: clamp(42px, 4.4vw, 67px); line-height: 1.02; }
.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 42px; }
.concern-grid article { min-height: 128px; display: flex; align-items: flex-start; gap: 17px; padding: 22px; border: 1px solid rgba(22,116,216,.1); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 17px 45px rgba(36,113,184,.07); }
.concern-grid article span { color: #5ca8d2; font-size: 9px; letter-spacing: .14em; }
.concern-grid article p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 20px; line-height: 1.35; }
.doctor-profile-section { display: grid; grid-template-columns: 1.08fr .92fr; gap: 5vw; align-items: center; background: #fff; }
.doctor-profile-media { min-height: 530px; position: relative; overflow: hidden; border: 1px solid rgba(22,116,216,.12); border-radius: 30px; box-shadow: var(--shadow); }
.doctor-profile-media > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.doctor-profile-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,44,98,.52), transparent 45%); }
.doctor-profile-media > div { position: absolute; left: 27px; right: 27px; bottom: 25px; z-index: 2; display: flex; flex-direction: column; gap: 8px; color: #fff; }
.doctor-profile-media span { font-size: 8px; letter-spacing: .15em; }
.doctor-profile-media b { max-width: 600px; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.15; }
.doctor-profile-copy h2 { margin-top: 17px; font-size: clamp(43px, 4.3vw, 65px); }
.doctor-profile-copy > p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.doctor-profile-copy ul { display: grid; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.doctor-profile-copy li { min-height: 56px; display: flex; align-items: center; gap: 13px; padding: 13px 15px; border: 1px solid rgba(22,116,216,.1); border-radius: 13px; background: #f6fbff; color: #365e85; font-size: 12px; }
.doctor-profile-copy li span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; color: #fff; border-radius: 50%; background: linear-gradient(145deg, var(--blue), var(--cyan)); }
.doctor-steps { background: linear-gradient(180deg, #f4fbff, #fff); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 42px; }
.steps-grid article { min-height: 245px; padding: 23px; border: 1px solid rgba(22,116,216,.11); border-radius: 19px; background: rgba(255,255,255,.82); box-shadow: 0 18px 48px rgba(36,113,184,.07); }
.steps-grid article > span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(22,116,216,.12); border-radius: 50%; background: #eaf8ff; font-size: 9px; }
.steps-grid h3 { margin: 55px 0 12px; color: var(--ink); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.doctor-price-band { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 480px; margin: 0 6vw 100px; overflow: hidden; border: 1px solid rgba(22,116,216,.12); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.doctor-price-band > div:first-child { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.doctor-price-band h2 { margin-top: 16px; font-size: clamp(40px, 4vw, 60px); }
.doctor-price-band strong { margin-top: 13px; color: var(--blue); font-family: var(--serif); font-size: 68px; font-weight: 400; }
.doctor-price-band strong small { font-size: .5em; }
.doctor-price-band p { max-width: 500px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.doctor-price-band .button { align-self: flex-start; margin-top: 20px; }
.doctor-price-visual { min-height: 480px; position: relative; overflow: hidden; }
.doctor-price-visual img { width: 100%; height: 100%; object-fit: cover; }
.doctor-price-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.55), transparent 45%); }
.doctor-price-visual span { position: absolute; right: 24px; bottom: 22px; z-index: 2; padding: 10px 13px; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(8,67,139,.38); font-size: 8px; text-transform: uppercase; letter-spacing: .13em; backdrop-filter: blur(12px); }
.related-doctors { padding-top: 10px; background: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 40px; }
.related-grid > a { min-height: 100px; display: grid; grid-template-columns: 62px 1fr 20px; gap: 16px; align-items: center; padding: 17px; border: 1px solid rgba(22,116,216,.1); border-radius: 17px; background: #f8fcff; transition: transform .2s ease; }
.related-grid > a:hover { transform: translateY(-2px); }
.related-avatar { width: 58px; height: 66px; display: grid; place-items: center; color: #fff; border-radius: 29px 29px 12px 12px; background: linear-gradient(145deg, #51c4f0, #216ee8); font-family: var(--serif); font-size: 20px; }
.related-tone-2 { background: linear-gradient(145deg, #6ed9e6, #1885c9); }.related-tone-3 { background: linear-gradient(145deg, #91b8ff, #466ee0); }.related-tone-4 { background: linear-gradient(145deg, #62d7cf, #2876c9); }
.related-grid a > div { display: flex; flex-direction: column; gap: 7px; }
.related-grid b { color: var(--ink); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.related-grid small { color: var(--muted); font-size: 9px; }
.related-grid svg { color: var(--blue); }
.doctor-contact { margin-top: 70px; }
.doctor-footer { min-height: 90px; padding: 27px 6vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #718ba4; border-top: 1px solid rgba(22,116,216,.1); background: #fff; font-size: 9px; }

@media (max-width: 1180px) {
  .site-header nav { gap: 17px; }
  .header-phone { display: none; }
  .hero { grid-template-columns: 1.12fr .88fr; }
  .hero-proof { grid-template-columns: 1fr; max-width: 470px; }
  .hero-proof article { min-height: 78px; }
  .approach-grid, .clinic, .doctor-profile-section { grid-template-columns: 1fr; }
  .approach-visual, .clinic-media, .doctor-profile-media { min-height: 520px; }
  .team-feature { grid-template-columns: 1fr; }
  .team-image::after { background: linear-gradient(0deg, rgba(238,250,255,.97), transparent 55%); }
  .team-copy { padding: 45px; }
  .doctor-track { grid-auto-columns: minmax(290px, 34vw); }
  .contact { grid-template-columns: 1fr 1fr; gap: 3vw; }
  .doctor-hero { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { min-height: 76px; padding: 0 24px; }
  .site-header nav { display: none; }
  .brand { min-width: 0; }
  .hero { min-height: 780px; display: block; padding: 62px 26px 45px; background: transparent; }
  .hero-background { opacity: .48; background-position: 70% center; }
  .hero::before { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 68%, rgba(255,255,255,.48) 100%); }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(48px, 9vw, 70px); }
  .hero-status { right: 26px; bottom: 40px; }
  .signal-line { grid-template-columns: 1fr; padding: 0 26px; }
  .signal-line > div { min-height: 94px; border-right: 0; border-bottom: 1px solid rgba(22,116,216,.1); }
  .signal-line > div:first-child { border-left: 0; }
  .section { padding: 85px 26px; }
  .appointment-head, .reviews-head, .faq { grid-template-columns: 1fr; gap: 28px; }
  .price-grid, .review-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 390px; }
  .directions-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact { grid-template-columns: 1fr; padding: 80px 26px; }
  .contact::after { background: rgba(246,252,255,.9); }
  .contact-form { max-width: 760px; }
  .footer { grid-template-columns: 1.3fr 1fr 1fr; padding: 55px 26px 70px; }
  .footer > div:nth-child(4) { display: none; }
  .doctor-hero { grid-template-columns: 1fr; padding: 55px 26px; }
  .doctor-hero-visual { min-height: 500px; }
  .doctor-concerns, .doctor-profile-section, .doctor-steps, .related-doctors { padding: 85px 26px; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-price-band { grid-template-columns: 1fr; margin: 0 26px 85px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .site-header { min-height: 70px; padding: 0 18px; }
  .brand-mark { width: 40px; height: 40px; font-size: 25px; }
  .brand strong { font-size: 11px; }.brand small { font-size: 7px; }
  .header-action { min-height: 40px; padding: 0 14px; font-size: 10px; }
  .header-action svg { display: none; }
  .hero { min-height: 810px; padding: 55px 20px 42px; }
  .hero-background { background-position: 67% center; opacity: .42; }
  .hero::before { background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.91) 70%, rgba(255,255,255,.3) 100%); }
  .hero h1 { font-size: 45px; line-height: 1; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 28px; }
  .hero-proof article { min-height: 73px; }
  .hero-status { display: none; }
  .signal-line { padding: 0 20px; }
  .section { padding: 72px 20px; }
  .section h2, .doctor-section-heading h2, .doctor-profile-copy h2 { font-size: 40px; }
  .section-title > p { font-size: 15px; }
  .approach-grid { margin-top: 35px; }
  .approach-visual, .clinic-media, .doctor-profile-media { min-height: 410px; border-radius: 22px; }
  .visual-caption { left: 20px; right: 20px; bottom: 20px; flex-direction: column; align-items: flex-start; gap: 9px; }
  .visual-caption b { font-size: 25px; }
  .approach-list article { grid-template-columns: 50px 1fr; padding: 18px; }
  .approach-list article > span { width: 48px; height: 48px; }
  .appointment-head { margin-bottom: 28px; }
  .price-card { min-height: 410px; padding: 23px; }
  .team { padding-top: 20px; }
  .team-feature { min-height: 0; border-radius: 23px; }
  .team-image { min-height: 330px; }
  .team-copy { padding: 30px 23px 35px; }
  .team-copy h2 { font-size: 39px; }
  .doctor-track { grid-auto-columns: 84vw; }
  .directions-grid > a { grid-template-columns: 27px 54px 1fr; padding: 17px; }
  .directions-grid > a > svg { display: none; }
  .direction-icon { width: 52px; height: 52px; }
  .clinic-copy dl > div { grid-template-columns: 90px 1fr; gap: 12px; }
  .clinic-copy dd { font-size: 16px; }
  .clinic-panel { left: 16px; right: 16px; bottom: 15px; grid-template-columns: 1fr; }
  .clinic-panel span { grid-row: auto; }
  .review-grid article > p { font-size: 20px; }
  .faq-list details { padding: 0 17px; }
  .faq-list summary { min-height: 68px; font-size: 17px; }
  .faq-list details p { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 70px 20px; }
  .contact-copy h2 { font-size: 42px; }
  .contact-details a { font-size: 25px; }
  .contact-form { padding: 20px; }
  .footer { grid-template-columns: 1fr 1fr; padding: 45px 20px 60px; }
  .footer-brand { grid-column: 1 / -1; }
  .doctor-hero { padding: 44px 20px; }
  .doctor-back { margin-bottom: 30px; }
  .doctor-hero h1 { font-size: 45px; }
  .doctor-name { font-size: 24px; }
  .doctor-facts { grid-template-columns: 1fr; }
  .doctor-hero-visual { min-height: 410px; }
  .doctor-holo-card { width: 200px; min-height: 145px; }
  .doctor-concerns, .doctor-profile-section, .doctor-steps, .related-doctors { padding: 72px 20px; }
  .concern-grid, .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 205px; }
  .doctor-price-band { margin: 0 20px 72px; }
  .doctor-price-band > div:first-child { padding: 30px 22px; }
  .doctor-price-band strong { font-size: 58px; }
  .doctor-price-visual { min-height: 330px; }
  .doctor-footer { flex-direction: column; align-items: flex-start; padding: 25px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* 2026-08-05: larger typography and a continuous "medicine of the future" information thread */
body {
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.site-header { min-height: 96px; }
.brand { min-width: 245px; gap: 15px; }
.brand-mark { width: 54px; height: 54px; font-size: 34px; }
.brand strong { font-size: 15px; }
.brand small { font-size: 11px; line-height: 1.25; }
.site-header nav { font-size: 15px; gap: clamp(20px, 2vw, 38px); }
.site-header nav a { padding: 38px 0; }
.header-phone b { font-size: 15px; }
.header-phone span { font-size: 11px; }
.header-action { min-height: 52px; padding-inline: 25px; font-size: 15px; }

.hero { min-height: 790px; padding-top: 88px; padding-bottom: 72px; }
.hero-copy { max-width: 850px; }
.hero h1 { max-width: 850px; font-size: clamp(58px, 5.7vw, 92px); line-height: .98; }
.hero-lead { max-width: 735px; margin-top: 34px; font-size: clamp(20px, 1.5vw, 25px); line-height: 1.58; }
.button { min-height: 60px; padding-inline: 29px; font-size: 15px; }
.hero-actions { margin-top: 38px; }
.hero-proof { max-width: 850px; gap: 12px; margin-top: 50px; }
.hero-proof article { min-height: 124px; padding: 20px; gap: 16px; }
.hero-proof article > span { width: 50px; height: 50px; flex-basis: 50px; }
.hero-proof b { font-size: 15px; line-height: 1.25; }
.hero-proof small { font-size: 13px; line-height: 1.45; }
.hero-status { width: 260px; padding: 20px 22px; }
.hero-status > span { font-size: 11px; }
.hero-status b { font-size: 25px; }
.hero-status div { font-size: 12px; }

.signal-line > div { min-height: 148px; gap: 22px; padding-block: 30px; }
.signal-line > div > span { font-size: 13px; }
.signal-line b { font-size: 24px; line-height: 1.2; }
.signal-line small { font-size: 14px; line-height: 1.5; }

.future-thread {
  min-height: 680px;
  position: relative;
  padding: 120px 6vw 110px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 18%, rgba(35, 187, 242, .18), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(90, 137, 255, .12), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #eefaff 48%, #f9fcff 100%);
  border-bottom: 1px solid rgba(22,116,216,.1);
}
.future-thread::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .36;
  background-image:
    linear-gradient(rgba(17,117,238,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,117,238,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
}
.future-thread::after {
  content: "";
  width: 560px;
  height: 560px;
  position: absolute;
  right: -180px;
  top: 5px;
  z-index: -1;
  border: 1px solid rgba(17,117,238,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(25,190,240,.035), 0 0 0 108px rgba(17,117,238,.025);
}
.future-thread-copy { max-width: 1120px; position: relative; z-index: 2; }
.future-thread-copy h2 {
  max-width: 1060px;
  margin: 20px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.future-thread-copy > p {
  max-width: 900px;
  margin: 30px 0 0;
  color: #466b91;
  font-size: 20px;
  line-height: 1.72;
}
.future-thread-route {
  max-width: 1500px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
.future-thread-route::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 29px;
  height: 2px;
  background: linear-gradient(90deg, rgba(17,117,238,.28), #14bfee, rgba(17,117,238,.28));
  box-shadow: 0 0 18px rgba(17,188,238,.38);
}
.future-thread-route article {
  min-height: 230px;
  position: relative;
  padding: 0 27px 26px;
  border-left: 1px solid rgba(22,116,216,.1);
}
.future-thread-route article:last-child { border-right: 1px solid rgba(22,116,216,.1); }
.future-thread-route article > span {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  border: 7px solid rgba(245,252,255,.95);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(17,117,238,.22), 0 0 0 1px rgba(17,117,238,.12);
  font-size: 13px;
  font-weight: 800;
}
.future-thread-route article div { margin-top: 30px; }
.future-thread-route b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}
.future-thread-route small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.future-thread-orbit {
  width: 390px;
  height: 160px;
  position: absolute;
  right: -60px;
  bottom: 65px;
  z-index: 1;
  border: 1px solid rgba(17,117,238,.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.future-thread-orbit i {
  width: 14px;
  height: 14px;
  position: absolute;
  border: 2px solid rgba(17,117,238,.32);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(23,195,243,.55);
}
.future-thread-orbit i:nth-child(1) { left: 38px; top: 34px; }
.future-thread-orbit i:nth-child(2) { right: 78px; top: -7px; }
.future-thread-orbit i:nth-child(3) { right: 34px; bottom: 20px; }

.section { padding-top: 125px; padding-bottom: 125px; }
.section-label, .section-title > span { font-size: 13px; line-height: 1.4; }
.section h2 { font-size: clamp(50px, 4.8vw, 78px); }
.section-title > p { max-width: 900px; font-size: 20px; line-height: 1.72; }
.visual-caption span { font-size: 12px; }
.visual-caption b { font-size: clamp(30px, 2.45vw, 43px); }
.approach-list article { min-height: 170px; grid-template-columns: 68px 1fr; gap: 24px; padding: 27px 30px; }
.approach-list article > span { width: 64px; height: 64px; }
.approach-list article h3 { font-size: 30px; }
.approach-list article p { font-size: 17px; line-height: 1.62; }

.appointment-head > p { font-size: 19px; line-height: 1.72; }
.price-card { min-height: 520px; padding: 34px; }
.price-top > span { font-size: 13px; }
.price-card h3 { font-size: 36px; }
.price-card > p { font-size: 17px; line-height: 1.58; }
.price-card li { padding: 9px 13px; font-size: 14px; }
.price-card > a { font-size: 16px; }

.team-copy > p { font-size: 19px; line-height: 1.72; }
.team-stat span { font-size: 13px; }
.carousel-toolbar > span { font-size: 13px; }
.doctor-track { grid-auto-columns: minmax(335px, 25vw); gap: 18px; }
.doctor-photo { height: 260px; }
.doctor-info { padding: 27px 27px 29px; }
.doctor-index { font-size: 12px; }
.doctor-tag { font-size: 11px; }
.doctor-info h3 { min-height: 62px; font-size: 29px; }
.doctor-specialty { min-height: 48px; font-size: 16px; }
.doctor-meta span { padding: 12px; font-size: 14px; }
.doctor-meta small { font-size: 11px; }
.doctor-info > a { font-size: 15px; }

.directions-head > p {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}
.directions-grid > a { min-height: 175px; grid-template-columns: 42px 74px 1fr 24px; padding: 25px 29px; }
.direction-number { font-size: 12px; }
.direction-icon { width: 70px; height: 70px; }
.directions-grid h3 { font-size: 31px; }
.directions-grid p { font-size: 16px; line-height: 1.58; }

.clinic-copy > p { font-size: 19px; line-height: 1.72; }
.clinic-copy dt { font-size: 12px; }
.clinic-copy dd { font-size: 22px; }
.clinic-panel span { font-size: 11px; }
.clinic-panel b { font-size: 29px; }
.clinic-panel small { font-size: 14px; }
.reviews-head > p { font-size: 18px; line-height: 1.72; }
.review-grid article > p { font-size: 27px; }
.review-grid footer b { font-size: 14px; }
.review-grid footer small { font-size: 12px; }
.review-grid footer > span { font-size: 11px; }
.faq-intro p { font-size: 19px; }
.faq-list summary { min-height: 90px; font-size: 24px; }
.faq-list details p { font-size: 17px; line-height: 1.68; }
.contact-copy > p { font-size: 20px; }
.contact-details a { font-size: 38px; }
.contact-details span { font-size: 15px; }
.contact-form { padding: 38px; }
.contact-form label { gap: 10px; font-size: 13px; }
.contact-form input, .contact-form select, .contact-form textarea { min-height: 58px; padding: 17px; font-size: 16px; }
.contact-form textarea { min-height: 120px; }
.contact-form .consent { font-size: 13px; }
.footer-brand p { font-size: 15px; }
.footer > div:not(.footer-brand) { gap: 13px; font-size: 14px; }
.footer > div:not(.footer-brand) b { font-size: 15px; }
.footer .disclaimer { font-size: 13px; }

/* Specialist pages: the same readable scale and information-first visual thread */
.doctor-back { font-size: 14px; }
.doctor-team-label { font-size: 12px; line-height: 1.45; }
.doctor-hero h1 { font-size: clamp(56px, 5.35vw, 86px); }
.doctor-name { font-size: 35px; }
.doctor-intro { font-size: 20px; line-height: 1.7; }
.doctor-facts span { min-height: 92px; padding: 17px 18px; font-size: 19px; }
.doctor-facts small { font-size: 11px; }
.doctor-holo-card > span { font-size: 11px; }
.doctor-holo-card small { font-size: 13px; }
.doctor-holo-status { font-size: 11px; }
.doctor-data-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 6vw;
  position: relative;
  background: rgba(255,255,255,.9);
  border-top: 1px solid rgba(22,116,216,.1);
  border-bottom: 1px solid rgba(22,116,216,.1);
}
.doctor-data-line article {
  min-height: 165px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 17px;
  align-items: center;
  padding: 28px 25px;
  border-right: 1px solid rgba(22,116,216,.1);
}
.doctor-data-line article:first-child { border-left: 1px solid rgba(22,116,216,.1); }
.doctor-data-line article > span { color: #2a99cf; font-size: 13px; letter-spacing: .14em; }
.doctor-data-line article div { display: flex; flex-direction: column; gap: 8px; }
.doctor-data-line b { color: var(--ink); font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.2; }
.doctor-data-line small { color: var(--muted); font-size: 14px; line-height: 1.5; }
.concern-grid article { min-height: 155px; }
.concern-grid article span { font-size: 12px; }
.concern-grid article p { font-size: 25px; }
.doctor-profile-media span { font-size: 11px; }
.doctor-profile-media b { font-size: 36px; }
.doctor-profile-copy > p { font-size: 19px; }
.doctor-profile-copy li { min-height: 70px; padding: 17px 19px; font-size: 16px; }
.steps-grid article { min-height: 285px; padding: 29px; }
.steps-grid article > span { width: 46px; height: 46px; font-size: 12px; }
.steps-grid h3 { font-size: 31px; }
.steps-grid p { font-size: 17px; }
.doctor-price-band p { font-size: 18px; }
.doctor-price-visual span { font-size: 11px; }
.related-grid > a { min-height: 125px; padding: 22px; }
.related-grid b { font-size: 23px; }
.related-grid small { font-size: 14px; }
.doctor-footer { font-size: 13px; }

@media (max-width: 1180px) {
  .site-header { min-height: 88px; }
  .site-header nav { font-size: 14px; }
  .hero { min-height: 850px; }
  .hero-proof { max-width: 560px; }
  .doctor-track { grid-auto-columns: minmax(335px, 39vw); }
  .future-thread-route { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .future-thread-route::before { display: none; }
  .future-thread-route article { border-top: 1px solid rgba(22,116,216,.1); }
  .doctor-data-line { grid-template-columns: repeat(2, 1fr); }
  .doctor-data-line article:nth-child(2) { border-right: 0; }
}

@media (max-width: 900px) {
  .brand strong { font-size: 14px; }
  .brand small { font-size: 10px; }
  .header-action { font-size: 14px; }
  .hero { min-height: 910px; }
  .hero h1 { font-size: clamp(54px, 9.5vw, 76px); }
  .hero-lead { font-size: 21px; }
  .future-thread { min-height: 0; padding: 95px 26px; }
  .future-thread-copy h2 { font-size: clamp(48px, 8vw, 67px); }
  .future-thread-copy > p { font-size: 19px; }
  .section { padding-top: 100px; padding-bottom: 100px; }
  .doctor-data-line { padding-inline: 26px; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .site-header { min-height: 76px; }
  .brand { gap: 10px; }
  .brand-mark { width: 42px; height: 42px; font-size: 27px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 8px; }
  .header-action { min-height: 44px; padding-inline: 15px; font-size: 12px; }
  .hero { min-height: 920px; padding-top: 65px; }
  .hero h1 { font-size: 48px; line-height: 1.02; }
  .hero-lead { font-size: 19px; line-height: 1.58; }
  .button { min-height: 58px; padding-inline: 20px; font-size: 15px; }
  .hero-proof b { font-size: 15px; }
  .hero-proof small { font-size: 13px; }
  .signal-line b { font-size: 23px; }
  .signal-line small { font-size: 14px; }
  .future-thread { padding: 80px 20px; }
  .future-thread-copy h2 { font-size: 43px; }
  .future-thread-copy > p { font-size: 18px; }
  .future-thread-route { grid-template-columns: 1fr; margin-top: 48px; }
  .future-thread-route article { min-height: 0; padding: 22px 18px 28px; border-right: 0; }
  .future-thread-route article:last-child { border-right: 0; }
  .future-thread-route b { font-size: 25px; }
  .future-thread-route small { font-size: 16px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section h2, .doctor-section-heading h2, .doctor-profile-copy h2 { font-size: 43px; }
  .section-label, .section-title > span { font-size: 12px; }
  .section-title > p, .appointment-head > p, .directions-head > p, .clinic-copy > p, .reviews-head > p, .faq-intro p, .contact-copy > p { font-size: 18px; }
  .approach-list article { grid-template-columns: 58px 1fr; gap: 16px; padding: 21px; }
  .approach-list article > span { width: 55px; height: 55px; }
  .approach-list article h3 { font-size: 27px; }
  .approach-list article p { font-size: 16px; }
  .price-card { min-height: 460px; padding: 27px; }
  .price-card h3 { font-size: 34px; }
  .price-card > p { font-size: 17px; }
  .price-card li { font-size: 13px; }
  .team-copy > p { font-size: 18px; }
  .doctor-track { grid-auto-columns: 88vw; }
  .doctor-info h3 { font-size: 28px; }
  .doctor-specialty { font-size: 16px; }
  .directions-grid > a { min-height: 155px; }
  .directions-grid h3 { font-size: 29px; }
  .directions-grid p { font-size: 16px; }
  .clinic-copy dd { font-size: 19px; }
  .review-grid article > p { font-size: 25px; }
  .faq-list summary { min-height: 84px; font-size: 21px; }
  .faq-list details p { font-size: 16px; }
  .contact-details a { font-size: 29px; }
  .contact-details span { font-size: 14px; }
  .contact-form { padding: 24px; }
  .contact-form label { font-size: 12px; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; }
  .footer-brand p, .footer > div:not(.footer-brand), .footer .disclaimer { font-size: 14px; }

  .doctor-hero h1 { font-size: 48px; }
  .doctor-name { font-size: 29px; }
  .doctor-intro { font-size: 18px; }
  .doctor-facts span { font-size: 18px; }
  .doctor-data-line { grid-template-columns: 1fr; padding-inline: 20px; }
  .doctor-data-line article { min-height: 130px; border-right: 0; border-bottom: 1px solid rgba(22,116,216,.1); }
  .doctor-data-line article:first-child { border-left: 0; }
  .doctor-data-line b { font-size: 22px; }
  .doctor-data-line small { font-size: 14px; }
  .concern-grid article p { font-size: 23px; }
  .doctor-profile-media b { font-size: 30px; }
  .doctor-profile-copy > p { font-size: 18px; }
  .doctor-profile-copy li { font-size: 16px; }
  .steps-grid h3 { font-size: 29px; }
  .steps-grid p { font-size: 16px; }
  .doctor-price-band p { font-size: 17px; }
  .related-grid b { font-size: 21px; }
  .related-grid small { font-size: 14px; }
  .doctor-footer { font-size: 12px; }
}

/* === V4: deeper blue gradient foundation ===
   The page stays bright and clinical, but no longer sits on a flat white canvas. */
:root {
  --page: #d8eaff;
  --surface: rgba(232, 244, 255, .80);
  --surface-strong: rgba(244, 250, 255, .92);
  --line: rgba(18, 92, 187, .18);
  --shadow: 0 28px 86px rgba(13, 73, 151, .16);
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 174, 255, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(44, 91, 205, .20), transparent 32%),
    linear-gradient(180deg, #cfe5fb 0%, #e7f3ff 42%, #c9e1fa 100%);
}

.site-shell,
.doctor-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(28, 185, 244, .22), transparent 24%),
    radial-gradient(circle at 93% 13%, rgba(52, 96, 211, .20), transparent 28%),
    linear-gradient(180deg, #cfe5fb 0%, #e9f4ff 38%, #c8def7 100%);
}

.site-header {
  background: linear-gradient(115deg, rgba(210, 232, 252, .94), rgba(235, 246, 255, .90));
  border-bottom-color: rgba(21, 90, 173, .18);
  box-shadow: 0 12px 38px rgba(14, 68, 136, .08);
}

.brand-mark {
  background: linear-gradient(145deg, rgba(246,251,255,.96), rgba(175,222,255,.9));
}

.hero {
  background: linear-gradient(90deg, rgba(203,225,249,.98) 0%, rgba(222,239,255,.95) 40%, rgba(206,231,253,.48) 69%, rgba(153,203,242,.18) 100%);
}
.hero::before {
  background: linear-gradient(90deg, #cfe5fb 0%, rgba(221,238,255,.97) 36%, rgba(218,237,253,.62) 59%, rgba(194,224,248,.08) 91%);
}
.hero::after {
  background: linear-gradient(0deg, #c9e0f8, transparent);
}
.hero-lead { color: #244d79; }
.hero-proof article {
  background: linear-gradient(145deg, rgba(236,247,255,.86), rgba(207,231,252,.78));
  border-color: rgba(18, 92, 187, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 18px 45px rgba(15,76,151,.12);
}
.button-ghost,
.button-outline {
  background: rgba(226,241,255,.78);
  border-color: rgba(18, 92, 187, .24);
}

.signal-line,
.doctor-data-line {
  background: linear-gradient(90deg, rgba(194,220,246,.94), rgba(225,240,253,.96), rgba(191,219,247,.94));
  border-color: rgba(18, 92, 187, .17);
}

.future-thread {
  background:
    radial-gradient(circle at 86% 18%, rgba(26, 184, 244, .27), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(62, 102, 221, .22), transparent 28%),
    linear-gradient(135deg, #bfdcf7 0%, #dceeff 48%, #c7e0f8 100%);
}
.future-thread-copy > p { color: #315a84; }
.future-thread-route article > span { border-color: rgba(220,239,255,.96); }
.future-thread-orbit i { background: #dff2ff; }

.approach {
  background:
    radial-gradient(circle at 94% 4%, rgba(20,183,239,.23), transparent 25%),
    linear-gradient(180deg, #c6e0f8 0%, #deefff 100%);
}
.approach-list article,
.price-card,
.doctor-card,
.directions-grid > a,
.review-grid article,
.faq-list details,
.concern-grid article,
.steps-grid article,
.related-grid > a {
  background: linear-gradient(145deg, rgba(239,248,255,.90), rgba(211,232,251,.84));
  border-color: rgba(18, 92, 187, .17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 22px 58px rgba(18,75,143,.11);
}
.approach-list article > span,
.direction-icon,
.steps-grid article > span,
.review-grid footer > span {
  background: linear-gradient(145deg, #f5fbff, #bfe5fb);
}

.appointment {
  background:
    radial-gradient(circle at 5% 12%, rgba(24,188,244,.18), transparent 25%),
    linear-gradient(180deg, #b9d8f5 0%, #d4e9fc 58%, #c2ddf7 100%);
}
.price-treatment,
.price-repeat {
  background: radial-gradient(circle at 100% 0, rgba(36,173,235,.24), transparent 38%), linear-gradient(145deg, rgba(240,249,255,.92), rgba(205,229,250,.86));
}
.price-card li,
.doctor-meta span,
.doctor-facts span,
.doctor-profile-copy li {
  background: rgba(196, 225, 249, .68);
  border-color: rgba(18,92,187,.14);
}

.team {
  background:
    radial-gradient(circle at 8% 5%, rgba(15,176,237,.18), transparent 24%),
    linear-gradient(180deg, #c3def7 0%, #e0effc 50%, #bed9f3 100%);
}
.team-feature {
  background: linear-gradient(120deg, #b8daf5, #d9edfc);
  border-color: rgba(18,92,187,.19);
}
.team-image::after { background: linear-gradient(90deg, transparent 52%, rgba(213,235,252,.94)); }
.carousel-controls button { background: rgba(222,239,253,.9); }

.directions {
  background:
    radial-gradient(circle at 94% 8%, rgba(21,180,238,.23), transparent 25%),
    linear-gradient(180deg, #bcd9f4 0%, #dcedfb 100%);
}
.directions-grid > a:hover { background: #eaf6ff; }

.clinic {
  background:
    radial-gradient(circle at 12% 82%, rgba(31,174,231,.16), transparent 26%),
    linear-gradient(135deg, #c3def7 0%, #e3f1fd 54%, #bdd8f3 100%);
}
.clinic-copy dl > div { border-bottom-color: rgba(18,92,187,.16); }

.reviews {
  background:
    radial-gradient(circle at 3% 80%, rgba(23,188,241,.22), transparent 22%),
    linear-gradient(180deg, #b9d7f3 0%, #dcedfb 100%);
}

.faq {
  background:
    radial-gradient(circle at 90% 15%, rgba(35,164,231,.17), transparent 23%),
    linear-gradient(135deg, #c5e0f8 0%, #e1effc 100%);
}

.contact {
  background: #bcdaf5;
}
.contact::after {
  background: linear-gradient(90deg, rgba(200,225,248,.98) 0%, rgba(219,237,252,.94) 45%, rgba(194,224,248,.72) 68%, rgba(174,214,244,.78) 100%);
}
.contact-copy > p { color: #31587e; }
.contact-form {
  background: linear-gradient(145deg, rgba(236,247,255,.91), rgba(199,225,248,.86));
  border-color: rgba(18,92,187,.19);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(231,244,255,.83);
  border-color: rgba(18,92,187,.18);
}

.footer,
.doctor-footer {
  background: linear-gradient(120deg, #b9d6f1, #d6e9fa);
  border-top-color: rgba(18,92,187,.18);
}

/* Specialist pages */
.doctor-hero {
  background: linear-gradient(90deg, #c5def6 0%, #dceeff 44%, #bddbf5 100%);
}
.doctor-concerns {
  background: linear-gradient(180deg, #c3def7, #dceefe);
}
.doctor-profile-section {
  background: linear-gradient(135deg, #bcdaf4 0%, #e0effc 100%);
}
.doctor-steps {
  background: linear-gradient(180deg, #b8d6f2, #dceefe);
}
.doctor-price-band {
  background: linear-gradient(120deg, #ddecfa, #bcd9f4);
  border-color: rgba(18,92,187,.18);
}
.doctor-price-visual::after { background: linear-gradient(90deg, rgba(207,230,249,.64), transparent 47%); }
.related-doctors {
  background: linear-gradient(180deg, #c8e1f8, #e0effc);
}

@media (max-width: 1180px) {
  .team-image::after { background: linear-gradient(0deg, rgba(213,235,252,.98), transparent 57%); }
}

/* === V5: one continuous blue atmosphere ===
   All large sections share one page-wide gradient. Cards and media keep local depth. */
.site-shell,
.doctor-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 72% 10% at 12% 3%, rgba(22, 184, 244, .25), transparent 72%),
    radial-gradient(ellipse 62% 11% at 91% 17%, rgba(55, 93, 215, .19), transparent 74%),
    radial-gradient(ellipse 70% 12% at 8% 33%, rgba(38, 196, 237, .16), transparent 73%),
    radial-gradient(ellipse 62% 12% at 94% 48%, rgba(67, 107, 221, .17), transparent 72%),
    radial-gradient(ellipse 74% 13% at 9% 65%, rgba(25, 180, 238, .17), transparent 74%),
    radial-gradient(ellipse 64% 12% at 91% 81%, rgba(61, 104, 219, .17), transparent 73%),
    radial-gradient(ellipse 72% 10% at 16% 97%, rgba(26, 183, 237, .15), transparent 74%),
    linear-gradient(180deg,
      #c9e2fa 0%,
      #d9ebfb 18%,
      #c2dcf5 36%,
      #dcedfb 54%,
      #bed9f4 72%,
      #d8e9f9 88%,
      #c5def6 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Remove rectangular section fills that caused visible horizontal seams. */
.hero,
.future-thread,
.approach,
.appointment,
.team,
.directions,
.clinic,
.reviews,
.faq,
.contact,
.doctor-hero,
.doctor-concerns,
.doctor-profile-section,
.doctor-steps,
.related-doctors {
  background: transparent;
}

/* Soft overlays remain translucent, so the common background is always visible. */
.signal-line,
.doctor-data-line {
  background: linear-gradient(90deg,
    rgba(202, 227, 249, .52),
    rgba(233, 245, 255, .70),
    rgba(197, 224, 248, .50));
  backdrop-filter: blur(14px);
}

.hero::after {
  background: linear-gradient(0deg, rgba(205, 228, 248, .62), transparent);
}

.future-thread::before {
  opacity: .58;
}

.footer,
.doctor-footer {
  background: rgba(187, 216, 242, .28);
  backdrop-filter: blur(18px);
}

/* Blend the photographic contact scene into the continuous page background. */
.contact {
  overflow: hidden;
}
.contact-visual {
  inset: -90px 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 17%, #000 83%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 17%, #000 83%, transparent 100%);
}
.contact::after {
  inset: -1px 0;
  background: linear-gradient(90deg,
    rgba(211, 232, 251, .90) 0%,
    rgba(224, 239, 253, .82) 44%,
    rgba(201, 227, 249, .55) 70%,
    rgba(188, 220, 246, .48) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

/* Specialist pages: the standalone price panel stays a card, not a page stripe. */
.doctor-price-band {
  background: linear-gradient(120deg, rgba(237, 247, 255, .88), rgba(190, 220, 246, .78));
}

@media (max-width: 760px) {
  .site-shell,
  .doctor-page {
    background:
      radial-gradient(ellipse 120% 8% at 15% 4%, rgba(22, 184, 244, .22), transparent 72%),
      radial-gradient(ellipse 115% 9% at 88% 23%, rgba(55, 93, 215, .16), transparent 73%),
      radial-gradient(ellipse 120% 9% at 10% 54%, rgba(28, 181, 238, .15), transparent 73%),
      radial-gradient(ellipse 115% 9% at 90% 81%, rgba(62, 104, 219, .16), transparent 73%),
      linear-gradient(180deg, #c9e2fa 0%, #d9ebfb 22%, #c0daf4 47%, #dcecfb 70%, #c4ddf5 100%);
    background-size: 100% 100%;
  }

  .contact-visual {
    inset: -55px 0;
  }
}

/* === V6: mobile layout repair ===
   Prevents the desktop typography scale and wide grid content from expanding
   the mobile viewport. Tested for 320px, 375px and 430px widths. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-shell,
.doctor-page,
.site-header,
.hero,
.section,
.future-thread,
.signal-line,
.doctor-data-line,
.contact,
.footer,
.doctor-footer {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    min-height: 72px;
    padding: 0 14px;
    gap: 8px;
    overflow: hidden;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 112px);
    flex: 1 1 auto;
    gap: 9px;
    overflow: hidden;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 25px;
  }

  .brand > span:last-child {
    min-width: 0;
    overflow: hidden;
  }

  .brand strong,
  .brand small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand strong { font-size: 11px; }
  .brand small { font-size: 7px; }

  .header-tools {
    min-width: 0;
    flex: 0 0 auto;
    gap: 0;
  }

  .header-action {
    width: auto !important;
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 48px 16px 42px;
    display: block;
  }

  .hero-background {
    background-position: 73% 8%;
    opacity: .32;
  }

  .hero::before {
    background: linear-gradient(180deg,
      rgba(211, 232, 251, .96) 0%,
      rgba(218, 237, 253, .91) 48%,
      rgba(203, 228, 249, .80) 78%,
      rgba(197, 224, 247, .72) 100%);
  }

  .hero::after {
    height: 72px;
  }

  .hero-copy,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 11.3vw, 48px);
    line-height: 1.01;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 17px;
    text-align: center;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .hero-proof article {
    width: 100%;
    min-width: 0;
  }

  .signal-line,
  .doctor-data-line {
    width: 100%;
    padding-inline: 16px;
  }

  .signal-line > div,
  .doctor-data-line article {
    min-width: 0;
    padding-inline: 15px;
  }

  .future-thread,
  .section,
  .doctor-concerns,
  .doctor-profile-section,
  .doctor-steps,
  .related-doctors,
  .contact {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title,
  .directions-head,
  .appointment-head,
  .reviews-head,
  .faq-intro,
  .clinic-copy,
  .contact-copy,
  .doctor-section-heading,
  .doctor-profile-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  dd,
  summary,
  .doctor-name,
  .doctor-specialty {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .section h2,
  .future-thread-copy h2,
  .team-copy h2,
  .doctor-section-heading h2,
  .doctor-profile-copy h2,
  .contact-copy h2 {
    font-size: clamp(36px, 10.5vw, 43px);
    line-height: 1.05;
  }

  .approach-grid,
  .approach-list,
  .price-grid,
  .directions-grid,
  .review-grid,
  .faq-list,
  .concern-grid,
  .steps-grid,
  .related-grid,
  .doctor-facts,
  .form-row {
    width: 100%;
    min-width: 0;
  }

  .approach-grid > *,
  .approach-list article,
  .price-grid > *,
  .directions-grid > a,
  .review-grid > *,
  .faq-list > *,
  .concern-grid > *,
  .steps-grid > *,
  .related-grid > *,
  .doctor-facts > * {
    min-width: 0;
    max-width: 100%;
  }

  .approach-list article {
    width: 100%;
    min-height: 0;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 19px 16px;
  }

  .approach-list article > span {
    width: 48px;
    height: 48px;
  }

  .approach-list article > div,
  .directions-grid > a > div {
    min-width: 0;
  }

  .approach-list article h3 {
    font-size: clamp(24px, 7.2vw, 28px);
    line-height: 1.12;
  }

  .approach-list article p {
    font-size: 16px;
    line-height: 1.55;
  }

  .directions-grid {
    gap: 12px;
  }

  .directions-grid > a {
    width: 100%;
    min-height: 0;
    grid-template-columns: 22px 50px minmax(0, 1fr);
    gap: 11px;
    padding: 18px 14px;
    overflow: hidden;
  }

  .direction-icon {
    width: 48px;
    height: 48px;
  }

  .direction-icon .line-icon {
    width: 27px;
    height: 27px;
  }

  .directions-grid h3 {
    margin-bottom: 7px;
    font-size: clamp(24px, 7.2vw, 28px);
    line-height: 1.08;
  }

  .directions-grid p {
    font-size: 15px;
    line-height: 1.45;
  }

  .directions-grid > a > svg {
    display: none;
  }

  .team-feature,
  .team-image,
  .team-copy,
  .clinic-media,
  .doctor-profile-media,
  .contact-form,
  .doctor-price-band,
  .doctor-price-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .doctor-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .doctor-track {
    width: 100%;
    max-width: 100%;
    grid-auto-columns: minmax(276px, 86vw);
  }

  .doctor-card,
  .doctor-info,
  .doctor-meta,
  .doctor-meta span {
    min-width: 0;
  }

  .doctor-info h3,
  .doctor-specialty,
  .doctor-meta span {
    overflow-wrap: anywhere;
  }

  .clinic-copy dl > div {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .faq-list details,
  .contact-form {
    width: 100%;
  }

  .faq-list summary {
    min-width: 0;
    font-size: 19px;
    line-height: 1.25;
  }

  .contact-details a {
    font-size: clamp(24px, 7.5vw, 29px);
    overflow-wrap: anywhere;
  }

  .footer {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Specialist pages */
  .doctor-hero {
    width: 100%;
    padding: 38px 16px 48px;
  }

  .doctor-hero-copy,
  .doctor-hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .doctor-hero h1 {
    font-size: clamp(38px, 11vw, 47px);
    line-height: 1.02;
  }

  .doctor-name {
    font-size: clamp(25px, 7.4vw, 30px);
    line-height: 1.12;
  }

  .doctor-intro {
    font-size: 17px;
  }

  .doctor-data-line {
    grid-template-columns: 1fr;
  }

  .doctor-data-line article {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .concern-grid article,
  .steps-grid article,
  .related-grid > a {
    width: 100%;
    min-width: 0;
  }

  .doctor-price-band {
    margin-left: 16px;
    margin-right: 16px;
  }

  .doctor-price-band > div:first-child {
    min-width: 0;
    padding: 28px 20px;
  }

  .doctor-price-band strong {
    font-size: clamp(48px, 15vw, 58px);
  }
}

@media (max-width: 380px) {
  .site-header { padding-inline: 10px; }

  .brand {
    max-width: calc(100% - 105px);
    gap: 7px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand small { display: block; font-size: 6px; }

  .header-action {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero,
  .future-thread,
  .section,
  .doctor-concerns,
  .doctor-profile-section,
  .doctor-steps,
  .related-doctors,
  .contact,
  .doctor-hero {
    padding-left: 13px;
    padding-right: 13px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.7vw, 43px);
  }

  .directions-grid > a {
    grid-template-columns: 18px 43px minmax(0, 1fr);
    gap: 8px;
    padding: 16px 11px;
  }

  .direction-icon {
    width: 42px;
    height: 42px;
  }

  .directions-grid h3 {
    font-size: 23px;
  }

  .directions-grid p {
    font-size: 14px;
  }

  .approach-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    padding: 17px 13px;
  }

  .approach-list article > span {
    width: 42px;
    height: 42px;
  }

  .approach-list article h3 {
    font-size: 24px;
  }

  .doctor-track {
    grid-auto-columns: minmax(265px, 88vw);
  }

  .doctor-price-band {
    margin-left: 13px;
    margin-right: 13px;
  }
}
