:root {
  --ink: #142e3f;
  --muted: #4d646f;
  --line: rgba(20, 46, 63, 0.13);
  --accent-light: #4d8fc8;
  --accent: #3877b2;
  --accent-dark: #2a5f91;
  --accent-soft: #eaf2f9;
  --accent-glow: rgba(56, 119, 178, .22);
  --blue: var(--accent);
  --blue-dark: var(--accent-dark);
  --blue-soft: var(--accent-soft);
  --red: var(--accent);
  --red-dark: var(--accent-dark);
  --red-soft: var(--accent-soft);
  --error: #c9283c;
  --error-soft: #fff0f2;
  --paper: #f7fafb;
  --white: #fff;
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #e9f0f3;
  font-family: "Gilroy", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body[data-block] { background: var(--white); }

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button { color: inherit; }

img {
  display: block;
  max-width: 100%;
}

.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.shell {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  font: 700 clamp(50px, 4.25vw, 66px)/.99 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.section-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.rest-button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(42, 95, 145, .18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.rest-button::after {
  content: "→";
  font-size: 19px;
}
@media (hover: hover) {
.rest-button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}
}

.rest-button-outline {
  background: transparent;
  border-color: rgba(56, 119, 178,.3);
  color: var(--blue-dark);
  box-shadow: none;
}
@media (hover: hover) {
.rest-button-outline:hover {
  background: var(--blue);
  color: var(--white);
}
}

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
@media (hover: hover) {
.icon-button:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
}

.doctors-section {
  padding: 102px 0 118px;
  background: #f2f3f4;
}

.doctors-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.doctors-head h2 { max-width: 740px; }

.doctors-head .rest-button { margin-bottom: 5px; }

.doctor-stage { margin-top: 48px; }

.doctor-proof-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  color: var(--ink);
}

.doctor-proof-item {
  min-height: 178px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(20,46,63,.07);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(20,46,63,.065);
}

.doctor-proof-item strong {
  color: var(--blue-dark);
  font: 700 48px/.95 "Futura Medic", sans-serif;
  letter-spacing: -.035em;
}

.doctor-proof-item:first-child strong { color: var(--red); }

.doctor-proof-item span {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.doctor-proof-item b {
  color: var(--ink);
  font-weight: 600;
}

.doctor-profiles {
  margin-top: 48px;
  display: grid;
  gap: 34px;
}

.doctor-profile {
  min-height: 590px;
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(20,46,63,.07);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 22px 56px rgba(20,46,63,.07);
}

.doctor-profile--reverse { grid-template-columns: 1.18fr .82fr; }

.doctor-portrait {
  min-height: 590px;
  overflow: hidden;
  background: #dcecf2;
}

.doctor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.doctor-profile--reverse .doctor-portrait { grid-column: 2; }

.doctor-profile--reverse .doctor-profile-copy {
  grid-row: 1;
  grid-column: 1;
}

.doctor-profile-copy {
  padding: 48px 54px 44px;
  display: flex;
  flex-direction: column;
}

.doctor-title-line {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: start;
}

.doctor-title-line h3 {
  max-width: 520px;
  margin: 0;
  font: 700 40px/1.02 "Futura Medic", sans-serif;
  letter-spacing: -.025em;
}

.doctor-title-line > span {
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.doctor-speciality {
  margin: 18px 0 0;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 600;
}

.doctor-education {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(20,46,63,.15);
}

.doctor-education h4 {
  margin: 0 0 18px;
  font: 700 20px/1.1 "Futura Medic", sans-serif;
}

.doctor-education ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.doctor-education li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  color: #4d6572;
  font-size: 13px;
  line-height: 1.42;
}

.doctor-education li strong {
  color: var(--red);
  font-size: 13px;
}

.doctor-profile--reverse .doctor-education li strong { color: var(--blue-dark); }

.doctor-profile-actions {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.doctor-profile-actions .rest-button {
  min-height: 48px;
  box-shadow: none;
}

.doctor-reviews-link {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(56, 119, 178,.26);
}

.equipment-section {
  padding: 100px 0 120px;
  color: var(--ink);
  background: #eaf5f8;
}

.equipment-section h2 { max-width: 760px; }

.equipment-layout {
  min-height: 700px;
  margin-top: 48px;
  position: relative;
}

.equipment-photo {
  width: 66%;
  height: 700px;
  overflow: hidden;
  border-radius: 26px;
  background: #dce9ed;
}

.equipment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.equipment-section-copy {
  width: 52%;
  padding: 42px 46px 40px;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 72px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(34, 74, 94, .14);
}

.equipment-intro {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.46;
}

.equipment-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.equipment-features li {
  min-height: 48px;
  padding: 12px 0 11px 18px;
  position: relative;
  border-top: 1px solid var(--line);
  color: #385461;
  font-size: 14px;
  line-height: 1.35;
}

.equipment-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.equipment-conclusion {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.46;
}

.equipment-section-copy .rest-button {
  width: max-content;
  margin-top: 26px;
}

.reviews-section {
  min-height: 860px;
  padding: 100px 0 110px;
  background: var(--paper);
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.reviews-head h2 { max-width: 700px; }

.review-tabs {
  display: flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.review-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #607580;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.review-tab[aria-selected="true"] {
  background: var(--blue-soft);
  color: var(--ink);
}

.review-stage { margin-top: 46px; }

.review-track {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  gap: 18px;
}

.review-card {
  min-height: 420px;
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(20,46,63,.055);
}

.review-card:first-child {
  min-height: 452px;
  transform: translateY(-10px);
}

.review-quote {
  color: var(--red);
  font: 700 48px/1 "Futura Medic", sans-serif;
}

.review-text {
  margin: 14px 0 0;
  color: #405a68;
  font-size: 15px;
  line-height: 1.57;
}

.review-meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-author strong {
  display: block;
  font-size: 14px;
}

.review-author span {
  display: block;
  margin-top: 4px;
  color: #84939b;
  font-size: 11px;
}

.review-source {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
}

.review-controls {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.discounts-section {
  min-height: 960px;
  padding: 100px 0 108px;
  background: #fff8f8;
}

.discounts-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.discounts-head h2 { max-width: 780px; }

.discounts-head .section-lead {
  max-width: 360px;
  margin-bottom: 7px;
}

.discount-grid {
  margin-top: 50px;
  min-height: 590px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
}

.checkups-panel {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 28px;
  color: var(--white);
  background: #1e5f8f;
}

.checkups-panel::after {
  content: "20%";
  position: absolute;
  right: -10px;
  bottom: -38px;
  color: rgba(255,255,255,.09);
  font: 700 190px/1 "Futura Medic", sans-serif;
  letter-spacing: -.06em;
}

.discount-big {
  font: 700 92px/.9 "Futura Medic", sans-serif;
  letter-spacing: -.06em;
}

.checkups-panel h3 {
  max-width: 430px;
  margin: 24px 0 0;
  font: 700 32px/1.05 "Futura Medic", sans-serif;
}

.checkup-list {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: grid;
  gap: 0;
}

.checkup-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.checkup-item strong {
  display: block;
  font-size: 15px;
}

.checkup-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.4;
}

.discount-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.discount-panel {
  padding: 34px 36px;
  border: 1px solid rgba(56,119,178,.16);
  border-radius: 28px;
  background: var(--white);
}

.discount-panel h3 {
  margin: 0;
  font: 700 30px/1.05 "Futura Medic", sans-serif;
}

.discount-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.time-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.time-fact {
  padding: 17px 18px;
  border-radius: 14px;
  background: var(--blue-soft);
}

.time-fact strong {
  display: block;
  color: var(--blue-dark);
  font: 700 24px/1 "Futura Medic", sans-serif;
}

.time-fact span {
  display: block;
  margin-top: 7px;
  color: #526a77;
  font-size: 12px;
  line-height: 1.35;
}

.social-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-list li {
  padding: 11px 14px;
  border: 1px solid rgba(56,119,178,.2);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 600;
}

.preparation-section {
  min-height: 880px;
  padding: 100px 0 110px;
  background: var(--white);
}

.prep-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.preparation-section h2 { max-width: 730px; }

.prep-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 22px;
}

.prep-tabs {
  padding: 14px;
  border-radius: 22px;
  background: var(--blue-soft);
}

.prep-tab {
  width: 100%;
  min-height: 92px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid rgba(20,46,63,.09);
  background: transparent;
  color: #385261;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.prep-tab:last-child { border-bottom: 0; }

.prep-tab::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.66);
  color: var(--blue-dark);
  font-size: 18px;
}

.prep-tab[aria-selected="true"] {
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(24,63,82,.08);
}

.prep-tab[aria-selected="true"]::after {
  content: "→";
  color: var(--red);
}

.prep-panel {
  min-height: 390px;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfcfd;
}

.prep-panel h3 {
  max-width: 650px;
  margin: 0;
  font: 700 34px/1.08 "Futura Medic", sans-serif;
}

.prep-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.prep-steps li {
  padding: 17px 18px 17px 50px;
  position: relative;
  border-radius: 14px;
  background: var(--white);
  color: #405a68;
  font-size: 15px;
  line-height: 1.45;
}

.prep-steps li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--red);
  font-weight: 700;
}

.process-section {
  min-height: 930px;
  padding: 100px 0 110px;
  background: #edf5f8;
}

.process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.process-head h2 { max-width: 710px; }

.process-head .section-lead {
  max-width: 390px;
  margin-bottom: 6px;
}

.process-grid {
  margin-top: 48px;
  height: 610px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
}

.process-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #dbe8ed;
}

.process-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.process-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,31,44,.72));
}

.process-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.process-caption strong { font: 700 28px/1.05 "Futura Medic", sans-serif; }

.process-caption span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.process-play {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 17px;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.process-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.process-tile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #dbe8ed;
}

.process-tile:first-child { grid-column: 1 / -1; }

.process-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-tile:first-child img { object-position: center 38%; }

.process-tile:nth-child(2) img { object-position: center 44%; }

.process-tile:nth-child(3) img { object-position: center 52%; }

.tile-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(255,255,255,.91);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.contacts-section {
  min-height: 940px;
  padding: 94px 0 56px;
  color: var(--white);
  background: #102d3e;
}

.contacts-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.contacts-copy { padding: 18px 24px 8px 0; }

.contacts-copy h2 { max-width: 600px; }

.contact-details {
  margin-top: 42px;
  display: grid;
  gap: 0;
}

.contact-row {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.contact-row span {
  color: rgba(255,255,255,.54);
  font-size: 12px;
}

.contact-row strong,
.contact-row a {
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
}

.contact-actions {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

.contact-actions .rest-button-outline {
  border-color: rgba(255,255,255,.24);
  color: var(--white);
}

.map-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 30px;
  background: #e7eeee;
}

.map-tiles {
  position: absolute;
  left: -142px;
  top: -157px;
  width: 1024px;
  height: 1024px;
  display: grid;
  grid-template-columns: repeat(4, 256px);
  grid-template-rows: repeat(4, 256px);
  filter: saturate(.82) contrast(.96);
}

.map-tiles img {
  width: 256px;
  height: 256px;
  max-width: none;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(235,243,244,.18);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 18px 42px rgba(13,38,52,.25);
}

.map-pin::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 6px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-link {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-radius: 13px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(20,46,63,.15);
}

.map-attribution {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 10px;
  padding: 4px 6px;
  border-radius: 5px;
  background: rgba(255,255,255,.82);
  color: #4d646f;
  font-size: 9px;
}

.callback-form {
  margin-top: 34px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.callback-form input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  outline: 0;
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.callback-form input::placeholder { color: rgba(255,255,255,.5); }

.callback-form .rest-button { min-height: 52px; }

.form-consent {
  grid-column: 1 / -1;
  margin: 3px 2px 0;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.4;
}

.form-consent a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-links {
  display: flex;
  gap: 22px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
}

.medical-warning {
  max-width: 600px;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.video-dialog {
  width: min(430px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #071b27;
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
}

.video-dialog::backdrop {
  background: rgba(5,20,29,.76);
  backdrop-filter: blur(8px);
}

.video-dialog video {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #000;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 21px;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(56, 119, 178,.62);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .shell { width: calc(100% - 32px); }

  .section {
    min-height: auto;
    padding: 62px 0 70px;
  }

  .section h2 { font-size: 42px; }

  .doctors-head,
  .reviews-head,
  .discounts-head,
  .process-head,
  .prep-head {
    display: block;
  }

  .doctors-head .rest-button { margin-top: 24px; }

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

  .doctor-proof-line { gap: 12px; }

  .doctor-proof-item { min-height: 118px; }

  .prep-head .rest-button { margin-top: 24px; }

  .equipment-layout,
  .discount-grid,
  .prep-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .doctor-profile,
  .doctor-profile--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .doctor-portrait,
  .doctor-profile--reverse .doctor-portrait {
    min-height: 500px;
    grid-row: auto;
    grid-column: auto;
  }

  .doctor-profile-copy,
  .doctor-profile--reverse .doctor-profile-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .equipment-layout { min-height: 0; }

  .equipment-photo {
    width: 100%;
    height: 620px;
  }

  .equipment-section-copy {
    width: calc(100% - 48px);
    margin: -84px auto 0;
    padding: 40px 42px 38px;
    position: relative;
    right: auto;
    top: auto;
  }

  .equipment-section-copy .rest-button { margin-top: 28px; }

  .review-tabs {
    margin-top: 26px;
    width: max-content;
    max-width: 100%;
  }

  .review-track { grid-template-columns: 1fr; }

  .review-card:not(:first-child) { display: none; }

  .discount-grid { min-height: 0; }

  .discount-side { grid-template-rows: auto; }

  .process-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .process-hero { height: 520px; }

  .process-side { height: 480px; }

  .map-card { min-height: 500px; }

  .callback-form { grid-template-columns: 1fr; }

  .callback-form .form-consent { grid-column: auto; }

  .contacts-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .medical-warning { text-align: left; }}

@media (max-width: 560px) {
  .section h2 { font-size: 38px; }

  .doctor-profiles { gap: 20px; }

  .doctor-proof-item { padding: 24px 22px; }

  .doctor-proof-item strong { font-size: 42px; }

  .doctor-portrait,
  .doctor-profile--reverse .doctor-portrait {
    min-height: 390px;
  }

  .doctor-profile-copy { padding: 30px 22px 28px; }

  .doctor-title-line {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .doctor-title-line h3 { font-size: 31px; }

  .doctor-title-line > span { width: max-content; }

  .doctor-education li { grid-template-columns: 44px 1fr; }

  .doctor-profile-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .doctor-reviews-link { width: max-content; }

  .equipment-section { padding-bottom: 76px; }

  .equipment-photo {
    height: 500px;
    border-radius: 20px;
  }

  .equipment-section-copy {
    width: calc(100% - 16px);
    margin-top: -48px;
    padding: 30px 22px 32px;
    border-radius: 20px;
  }

  .equipment-intro { font-size: 16px; }

  .equipment-features { grid-template-columns: 1fr; }

  .review-tabs { width: 100%; }

  .review-tab {
    flex: 1;
    padding: 0 8px;
  }

  .time-grid { grid-template-columns: 1fr; }

  .prep-tabs { padding: 8px; }

  .prep-panel { padding: 28px 22px; }

  .process-hero { height: 450px; }

  .process-side {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
    height: auto;
  }

  .process-tile:first-child { grid-column: auto; }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-actions { flex-direction: column; }

  .map-card { min-height: 440px; }

  .legal-links { flex-wrap: wrap; }}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }}

.clinic-section {
  padding: 100px 0 104px;
  background: var(--white);
}

.clinic-head { max-width: 760px; }

.clinic-lead {
  margin: 18px 0 0;
  color: #4a616e;
  font-size: 17px;
  line-height: 1.5;
}

.clinic-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.clinic-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #eef4f6;
}

.clinic-photo picture,
.clinic-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 15px;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}

.clinic-cards {
  display: grid;
  gap: 20px;
  align-content: stretch;
}

.clinic-card {
  padding: 30px 32px;
  border: 1px solid rgba(20,46,63,.09);
  border-radius: 16px;
  background: #fbfcfd;
}

.clinic-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Futura Medic", sans-serif;
  font-weight: 700;
}

.clinic-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.clinic-card li {
  padding-left: 28px;
  position: relative;
  color: #4a616e;
  font-size: 15px;
  line-height: 1.46;
}

.clinic-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red-soft);
  box-shadow: inset 0 0 0 1.5px rgba(56,119,178,.45);
}

.clinic-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 5px;
  height: 2.5px;
  border-left: 1.6px solid var(--red);
  border-bottom: 1.6px solid var(--red);
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .clinic-grid { grid-template-columns: 1fr; }

  .clinic-photo { min-height: 380px; }}

@media (max-width: 720px) {
  .clinic-section { padding: 62px 0 66px; }

  .clinic-lead { font-size: 16px; }

  .clinic-grid {
    margin-top: 26px;
    gap: 16px;
  }

  .clinic-photo {
    min-height: 260px;
    border-radius: 14px;
  }

  .clinic-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 12px;
    font-size: 11.5px;
  }

  .clinic-card { padding: 22px 20px; }

  .clinic-cards { gap: 14px; }}

.landing-rest {
  --mp-route-left: max(22px, calc(50% - 640px));
  background: #fff;
}

html { scroll-padding-top: 108px; }

.landing-rest .mp-route-section {
  position: relative;
  overflow: hidden;
}

.mp-route-line {
  position: absolute;
  z-index: 3;
  left: var(--mp-route-left);
  top: 111px;
  bottom: auto;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 119, 178, .9), rgba(56, 119, 178, .18));
  pointer-events: none;
}

.mp-route-line::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(56, 119, 178, .12);
}

.mp-route-section > .shell > :first-child,
.mp-route-section > .shell > h2 {
  margin-left: 38px;
}

.mp-section-head,
.mp-reviews-head,
.mp-process-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
}

.mp-section-head h2,
.mp-reviews-head h2,
.mp-process-head h2 {
  max-width: 780px;
}

.mp-doctors-section {
  padding: 104px 0 120px;
  background: radial-gradient(circle at 84% 12%, rgba(255,255,255,.9) 0 7%, transparent 7.2%), #eef6f8;
}

.mp-doctor-proof {
  margin: 48px 0 0 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(20, 46, 63, .16);
}

.mp-doctor-proof > div {
  min-height: 130px;
  padding: 25px 32px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(20, 46, 63, .16);
}

.mp-doctor-proof > div + div { padding-left: 32px; }

.mp-doctor-proof > div:last-child { border-right: 0; }

.mp-doctor-proof strong {
  color: var(--blue-dark);
  font: 700 43px/.95 "Futura Medic", sans-serif;
  letter-spacing: -.035em;
}

.mp-doctor-proof > div:first-child strong { color: var(--red); }

.mp-doctor-proof span {
  max-width: 230px;
  margin-top: 9px;
  color: #4d646f;
  font-size: 13px;
  line-height: 1.35;
}

.mp-doctor-list {
  margin: 42px 0 0 38px;
  display: grid;
  gap: 34px;
}

.mp-doctor-profile {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(390px, .87fr) minmax(0, 1.13fr);
  overflow: hidden;
  border: 1px solid rgba(20, 46, 63, .07);
  border-radius: 0 32px 32px 32px;
  background: #fff;
  box-shadow: 0 26px 68px rgba(28, 72, 94, .10);
}

.mp-doctor-profile--reverse {
  grid-template-columns: minmax(0, 1.13fr) minmax(390px, .87fr);
  border-radius: 32px 0 32px 32px;
}

.mp-doctor-profile--reverse .mp-doctor-photo { grid-column: 2; }

.mp-doctor-profile--reverse .mp-doctor-copy {
  grid-row: 1;
  grid-column: 1;
}

.mp-doctor-photo {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: #dcebf0;
}

.mp-doctor-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(12, 45, 65, .78));
  pointer-events: none;
}

.mp-doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.mp-doctor-exp {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(42, 95, 145, .32);
}

.mp-doctor-exp strong {
  display: block;
  font: 700 40px/.9 "Futura Medic", sans-serif;
}

.mp-doctor-exp span {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.3;
}

.mp-photo-video {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  min-height: 44px;
  padding: 0 16px 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.mp-photo-video > span:first-child {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 9px;
}

.mp-doctor-copy {
  padding: 48px 54px 42px;
  display: flex;
  flex-direction: column;
}

.mp-doctor-title {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 26px;
}

.mp-doctor-title h3 {
  max-width: 560px;
  margin: 0;
  font: 700 40px/1.02 "Futura Medic", sans-serif;
  letter-spacing: -.025em;
}

.mp-doctor-title p {
  margin: 13px 0 0;
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
}

.mp-doctor-rating {
  min-width: 98px;
  padding-left: 20px;
  border-left: 1px solid rgba(20,46,63,.14);
  color: var(--blue-dark);
}

.mp-doctor-rating strong {
  display: block;
  font: 700 24px/1 "Futura Medic", sans-serif;
}

.mp-doctor-rating .proof-stars {
  margin-top: 7px;
  transform: scale(.7);
  transform-origin: left center;
}

.mp-doctor-rating small {
  display: block;
  margin-top: 4px;
  color: #4d646f;
  font-size: 10px;
}

.mp-doctor-education {
  margin-top: 29px;
  padding-top: 24px;
  border-top: 1px solid rgba(20,46,63,.14);
}

.mp-doctor-education summary {
  list-style: none;
  cursor: pointer;
}

.mp-doctor-education summary::-webkit-details-marker { display: none; }

.mp-doctor-education summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 700 20px/1.1 "Futura Medic", sans-serif;
}

.mp-education-body {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.mp-education-body li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  color: #4d646f;
  font-size: 13px;
  line-height: 1.42;
}

.mp-education-body strong { color: var(--red); }

.mp-doctor-quote {
  margin: 27px 0 0;
  padding: 18px 21px;
  border-left: 3px solid var(--red);
  background: #eef7fa;
}

.mp-doctor-quote p {
  margin: 0;
  color: #385461;
  font-size: 15px;
  line-height: 1.48;
}

.mp-doctor-quote cite {
  display: block;
  margin-top: 8px;
  color: #4d646f;
  font-size: 10px;
  font-style: normal;
}

.mp-doctor-actions {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.mp-doctor-actions a {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 901px) {
  .mp-doctor-education summary { display: none; }

  .mp-doctor-education:not([open]) > .mp-education-body { display: grid; }}

.mp-clinic-section {
  padding: 104px 0 118px;
  background: #fff;
}

.mp-clinic-head { max-width: 900px; }

.mp-clinic-head p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #516874;
  font-size: 18px;
  line-height: 1.5;
}

.mp-clinic-stage {
  min-height: 760px;
  margin: 46px 0 0 38px;
  position: relative;
}

.mp-clinic-photo {
  width: 82%;
  height: 610px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #e5eef1;
}

.mp-clinic-photo picture,
.mp-clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-clinic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,45,65,.22), transparent 48%);
}

.mp-clinic-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  padding: 11px 14px;
  border-radius: 11px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.mp-clinic-directions {
  width: 48%;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 78px;
  padding: 38px 42px;
  border-radius: 25px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 28px 68px rgba(42, 95, 145, .25);
}

.mp-clinic-directions h3 {
  margin: 0;
  font: 700 34px/1.05 "Futura Medic", sans-serif;
}

.mp-clinic-directions ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.mp-clinic-directions li {
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.43;
}

.mp-clinic-directions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  background: #fff;
}

.mp-clinic-experience {
  width: 78%;
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 0;
  padding: 28px 34px 30px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  border: 1px solid rgba(20,46,63,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(28,72,94,.12);
}

.mp-clinic-experience h3 {
  margin: 0;
  font: 700 25px/1.08 "Futura Medic", sans-serif;
}

.mp-clinic-experience > div {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.mp-clinic-experience p {
  margin: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(20,46,63,.13);
  color: #526a76;
  font-size: 12px;
  line-height: 1.43;
}

.mp-additional-section {
  padding: 104px 0 118px;
  background: #eaf4f7;
}

.mp-additional-section:not(:has(.mp-additional-panel:not([hidden]))) { padding-bottom: 84px; }

.mp-additional-section h2 { max-width: 800px; }

.mp-additional-tabs {
  margin: 44px 0 0 38px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-block: 1px solid rgba(20,46,63,.17);
}

.mp-additional-tabs button {
  min-width: 0;
  padding: 24px 26px 23px 0;
  border: 0;
  border-right: 1px solid rgba(20,46,63,.17);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, padding-left .18s ease;
}

.mp-additional-tabs button + button { padding-left: 24px; }

.mp-additional-tabs button:last-child { border-right: 0; }

.mp-additional-tabs strong {
  display: block;
  font: 700 24px/1 "Futura Medic", sans-serif;
}

.mp-additional-tabs span {
  display: block;
  margin-top: 7px;
  color: #4d646f;
  font-size: 11px;
}

.mp-additional-tabs button[aria-selected="true"] {
  padding-left: 18px;
  background: #fff;
  color: var(--red);
}

.mp-additional-tabs button[aria-selected="true"] span { color: var(--red-dark); }

.mp-additional-panels { margin-left: 38px; }

.mp-additional-panel {
  margin-top: 36px;
  animation: mp-panel-in .28s ease both;
}

.mp-additional-panel[hidden] { display: none !important; }

@keyframes mp-panel-in {
  from { opacity: 0;
  transform: translateY(12px);
  } to { opacity: 1;
  transform: none;
  }

;
}

.mp-additional-doctor {
  min-height: 560px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  border-radius: 0 32px 32px 32px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(28,72,94,.11);
}

.mp-additional-photo {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #dcebf0;
}

.mp-additional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.mp-additional-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(10,43,63,.65));
}

.mp-additional-photo > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
}

.mp-additional-photo h3 {
  margin: 0;
  font: 700 27px/1.05 "Futura Medic", sans-serif;
}

.mp-additional-photo p {
  margin: 6px 0 0;
  color: #58707c;
  font-size: 12px;
}

.mp-additional-services {
  padding: 42px 48px 38px;
  display: flex;
  flex-direction: column;
}

.mp-additional-services > h3 {
  margin: 0;
  font: 700 35px/1.05 "Futura Medic", sans-serif;
}

.mp-additional-services ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.mp-additional-services li {
  padding: 13px 0 12px 18px;
  position: relative;
  border-top: 1px solid rgba(20,46,63,.12);
  color: #415b68;
  font-size: 14px;
  line-height: 1.35;
}

.mp-additional-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.mp-additional-price {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mp-additional-price strong { font: 700 29px/1 "Futura Medic", sans-serif; }

.mp-analysis-panel {
  padding: 34px;
  border-radius: 0 30px 30px 30px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(28,72,94,.11);
}

.mp-analysis-search {
  height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(20,46,63,.15);
  border-radius: 15px;
  background: #f7fafb;
}

.mp-analysis-search > span {
  width: 17px;
  height: 17px;
  margin-left: 18px;
  border: 2px solid #64808e;
  border-radius: 50%;
}

.mp-analysis-search > span::after {
  content: "";
  width: 7px;
  height: 2px;
  position: absolute;
  margin: 13px 0 0 12px;
  background: #64808e;
  transform: rotate(45deg);
}

.mp-analysis-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.mp-analysis-search button {
  width: 50px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #6d828d;
  cursor: pointer;
}

.mp-analysis-browser {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 28px;
}

.mp-analysis-results { min-width: 0; }

.mp-analysis-categories {
  padding: 10px;
  border-radius: 18px;
  background: #eaf4f7;
}

.mp-analysis-categories button {
  width: 100%;
  min-height: 56px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(20,46,63,.08);
  background: transparent;
  color: #4e6875;
  text-align: left;
  cursor: pointer;
}

.mp-analysis-categories button:last-child { border: 0; }

.mp-analysis-categories button[aria-selected="true"] {
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(28,72,94,.08);
}

.mp-analysis-categories strong {
  font-size: 12px;
  line-height: 1.22;
}

.mp-analysis-categories span {
  flex: 0 0 auto;
  color: #4d646f;
  font-size: 10px;
}

.mp-analysis-results-head {
  min-height: 51px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(20,46,63,.13);
}

.mp-analysis-results-head h3 {
  margin: 0;
  font: 700 28px/1.1 "Futura Medic", sans-serif;
}

.mp-analysis-results-head span {
  padding-top: 5px;
  color: #4d646f;
  font-size: 11px;
}

.mp-analysis-row {
  min-height: 78px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(20,46,63,.1);
}

.mp-analysis-row strong {
  display: block;
  color: #294858;
  font-size: 13px;
  line-height: 1.35;
}

.mp-analysis-row span {
  display: block;
  margin-top: 5px;
  color: #4d646f;
  font-size: 10px;
  line-height: 1.3;
}

.mp-analysis-row b {
  white-space: nowrap;
  font: 700 17px/1 "Futura Medic", sans-serif;
}

.mp-analysis-row .rest-button {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 10px;
  box-shadow: none;
  font-size: 11px;
}

.mp-analysis-row .rest-button::after { display: none; }

.mp-analysis-more {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(56, 119, 178,.25);
  border-radius: 11px;
  background: transparent;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.mp-analysis-note {
  margin: 20px 0 0;
  color: #4d646f;
  font-size: 10px;
  line-height: 1.4;
}

.mp-analysis-empty {
  padding: 34px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: #4d646f;
}

.mp-reviews-section {
  padding: 104px 0 118px;
  background: #fff;
}

.mp-reviews-head { margin-left: 38px; }

.mp-reviews-head .review-tabs { flex: 0 0 auto; }

.mp-reviews-section .review-stage { margin: 42px 0 0 38px; }

.mp-reviews-section .review-track { display: block; }

.mp-review-feature {
  min-height: 450px;
  display: grid;
  grid-template-columns: 1.32fr .68fr;
  overflow: hidden;
  border: 1px solid rgba(20,46,63,.08);
  border-radius: 0 30px 30px 30px;
  background: #f5fafb;
  box-shadow: 0 24px 62px rgba(28,72,94,.08);
}

.mp-review-quote {
  padding: 42px 52px 38px;
  display: flex;
  flex-direction: column;
}

.mp-review-proofhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mp-review-proofhead > span:first-child {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.mp-review-proofhead > a,
.mp-review-proofhead > .mp-review-source {
  padding: 8px 11px;
  border: 1px solid rgba(56, 119, 178,.2);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 600;
}

.mp-review-quote > p {
  max-width: 760px;
  margin: 38px 0 0;
  color: #203f50;
  font: 500 clamp(22px,1.8vw,28px)/1.42 "Futura Medic", sans-serif;
  letter-spacing: -.012em;
}

.mp-review-signature {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(20,46,63,.14);
}

.mp-review-signature strong {
  display: block;
  font-size: 14px;
}

.mp-review-signature span {
  display: block;
  margin-top: 5px;
  color: #4d646f;
  font-size: 11px;
}

.mp-review-side {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.mp-review-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.mp-reviews-section > .shell {
  display: flex;
  flex-direction: column;
}

.mp-reviews-section .review-controls {
  align-items: center;
  margin-left: 38px;
}

.mp-review-about {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.mp-review-thumb {
  display: none;
  flex: 0 0 auto;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff;
}

.mp-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.mp-review-feature { animation: mp-review-appear .24s ease-out; }

@keyframes mp-review-appear {
  from { opacity: .3; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mp-review-feature { animation: none; }
}

.mp-review-counter {
  min-width: 50px;
  color: #4d646f;
  font-size: 11px;
  text-align: center;
}

.mp-discounts-section {
  padding: 104px 0 118px;
  background: #fff6f6;
}

.mp-discounts-section h2 { max-width: 820px; }

.mp-discount-stage {
  min-height: 620px;
  margin-top: 46px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 20px;
}

.mp-discount-main {
  padding: 38px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 30px 8px;
  background: var(--red);
  color: #fff;
}

.mp-discount-main::after {
  content: "20";
  position: absolute;
  right: -35px;
  bottom: -92px;
  color: rgba(255,255,255,.08);
  font: 700 330px/.8 "Futura Medic", sans-serif;
}

.mp-discount-number {
  font: 700 94px/.88 "Futura Medic", sans-serif;
  letter-spacing: -.06em;
}

.mp-discount-main h3 {
  max-width: 430px;
  margin: 24px 0 0;
  font: 700 34px/1.05 "Futura Medic", sans-serif;
}

.mp-checkups {
  margin-top: 34px;
  position: relative;
  z-index: 2;
}

.mp-checkups p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.22);
}

.mp-checkups strong,
.mp-checkups span {
  display: block;
}

.mp-checkups strong { font-size: 14px; }

.mp-checkups span {
  margin-top: 6px;
  color: rgba(255,255,255,.73);
  font-size: 12px;
  line-height: 1.4;
}

.mp-discount-right {
  display: grid;
  grid-template-rows: .9fr 1.1fr;
  gap: 20px;
}

.mp-discount-right article {
  padding: 34px 36px;
  border: 1px solid rgba(56,119,178,.14);
  border-radius: 26px;
  background: #fff;
}

.mp-discount-right h3 {
  margin: 0;
  font: 700 30px/1.05 "Futura Medic", sans-serif;
}

.mp-discount-right article > p {
  margin: 11px 0 0;
  color: #4d646f;
  font-size: 13px;
}

.mp-time-offers {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mp-time-offers p {
  margin: 0;
  padding: 20px;
  border-radius: 15px;
  background: #eaf4f7;
}

.mp-time-offers strong,
.mp-time-offers span {
  display: block;
}

.mp-time-offers strong {
  color: var(--blue-dark);
  font: 700 28px/1 "Futura Medic", sans-serif;
}

.mp-time-offers span {
  margin-top: 8px;
  color: #5d737f;
  font-size: 11px;
  line-height: 1.35;
}

.mp-discount-right ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mp-discount-right li {
  padding: 10px 13px;
  border: 1px solid rgba(56,119,178,.22);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 600;
}

.mp-discount-right .rest-button {
  margin-top: 22px;
  box-shadow: none;
}

.mp-preparation-section {
  padding: 104px 0 118px;
  background: #fff;
}

.mp-prep-layout {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap: 20px;
}

.mp-preparation-section .prep-tabs {
  padding: 0;
  border-radius: 22px;
  background: #eaf4f7;
}

.mp-preparation-section .prep-tab {
  min-height: 112px;
  padding: 22px 24px;
}

.mp-preparation-section .prep-panel {
  min-height: 430px;
  padding: 0;
  display: grid;
  grid-template-columns: 270px minmax(0,1fr);
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #f7fafb;
}

.mp-prep-signal {
  padding: 38px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--blue-dark);
  color: #fff;
}

.mp-prep-signal::before {
  content: "";
  position: absolute;
  left: -85px;
  top: -70px;
  width: 240px;
  height: 240px;
  border: 55px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.mp-prep-signal strong {
  position: relative;
  font: 700 48px/.95 "Futura Medic", sans-serif;
  letter-spacing: -.035em;
}

.mp-prep-signal span {
  position: relative;
  margin-top: 12px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.35;
}

.mp-prep-copy { padding: 38px 42px; }

.mp-prep-copy h3 {
  margin: 0;
  font: 700 32px/1.06 "Futura Medic", sans-serif;
}

.mp-preparation-section .prep-steps {
  counter-reset: prep;
  margin-top: 30px;
}

.mp-preparation-section .prep-steps li {
  counter-increment: prep;
  padding: 18px 18px 18px 56px;
}

.mp-preparation-section .prep-steps li::before {
  content: counter(prep, decimal-leading-zero);
  left: 17px;
  top: 17px;
  color: var(--red);
  font: 700 14px/1 "Futura Medic", sans-serif;
}

.mp-process-section {
  padding: 104px 0 118px;
  background: #eaf4f7;
}

.mp-process-head { align-items: flex-end; }

.mp-process-head p {
  max-width: 380px;
  margin: 0 0 7px;
  color: #4d646f;
  font-size: 14px;
  line-height: 1.45;
}

.mp-process-gallery {
  height: 650px;
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1.22fr .54fr .54fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  border-radius: 30px;
  background: #d7e7ec;
}

.mp-process-gallery figure {
  min-width: 0;
  min-height: 0;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8e7ec;
}

.mp-process-gallery .mp-process-main { grid-row: 1 / -1; }

.mp-process-gallery figure:nth-child(2) { grid-column: 2 / -1; }

.mp-process-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-process-gallery .mp-process-main img { object-position: center 35%; }

.mp-process-gallery figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(10,39,56,.7));
  pointer-events: none;
}

.mp-process-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.mp-process-gallery figcaption strong {
  display: block;
  font: 700 28px/1 "Futura Medic", sans-serif;
}

.mp-process-gallery figcaption span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.mp-process-main button {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  min-height: 48px;
  padding: 0 17px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.mp-process-main button span:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 9px;
}

.mp-contacts-section {
  padding: 96px 0 54px;
  color: #fff;
  background: #102e40;
}

.mp-contact-layout {
  min-height: 620px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
}

.mp-contact-copy { padding: 20px 24px 0 0; }

.mp-contact-copy h2 { max-width: 610px; }

.mp-contact-phone {
  display: block;
  margin-top: 45px;
  font: 700 clamp(34px,3.2vw,48px)/1 "Futura Medic", sans-serif;
}

.mp-contact-copy address {
  max-width: 440px;
  margin-top: 24px;
  color: rgba(255,255,255,.8);
  font-size: 20px;
  font-style: normal;
}

.mp-contact-hours {
  margin-top: 30px;
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.mp-contact-copy .contact-actions {
  margin-top: 34px;
  flex-wrap: wrap;
}

.mp-contact-copy .rest-button-outline {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.mp-contact-email {
  display: inline-block;
  margin-top: 30px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.mp-contacts-section .map-card { min-height: 620px; }

.mp-contacts-section .callback-form { margin-top: 28px; }

@media (max-width: 1180px) {
  .mp-doctor-profile,
  .mp-doctor-profile--reverse {
    grid-template-columns: .85fr 1.15fr;
  }

  .mp-doctor-profile--reverse .mp-doctor-photo { grid-column: 1; }

  .mp-doctor-profile--reverse .mp-doctor-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .mp-doctor-copy { padding: 40px 38px; }

  .mp-doctor-title h3 { font-size: 34px; }

  .mp-clinic-experience { width: 88%; }

  .mp-additional-doctor { grid-template-columns: .88fr 1.12fr; }

  .mp-additional-services { padding: 38px; }

  .mp-analysis-browser { grid-template-columns: 240px minmax(0,1fr); }}

@media (max-width: 900px) {
  html { scroll-padding-top: 88px; }

  .mp-route-section > .shell > :first-child,
  .mp-route-section > .shell > h2,
  .mp-doctor-proof,
  .mp-doctor-list,
  .mp-clinic-stage,
  .mp-additional-tabs,
  .mp-additional-panels,
  .mp-reviews-head,
  .mp-reviews-section .review-stage {
    margin-left: 0;
  }

  .mp-doctors-section,
  .mp-clinic-section,
  .mp-additional-section,
  .mp-reviews-section,
  .mp-discounts-section,
  .mp-preparation-section,
  .mp-process-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .mp-section-head,
  .mp-reviews-head,
  .mp-process-head {
    display: block;
  }

  .mp-section-head .rest-button { margin-top: 22px; }

  .mp-doctor-proof { grid-template-columns: 1fr; }

  .mp-doctor-proof > div {
    min-height: 92px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(20,46,63,.13);
  }

  .mp-doctor-proof > div + div { padding-left: 0; }

  .mp-doctor-proof > div:last-child { border-bottom: 0; }

  .mp-doctor-proof strong { font-size: 37px; }

  .mp-doctor-profile,
  .mp-doctor-profile--reverse {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .mp-doctor-profile--reverse .mp-doctor-photo,
  .mp-doctor-profile--reverse .mp-doctor-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .mp-doctor-photo { min-height: 520px; }

  .mp-doctor-copy { padding: 34px 28px; }

  .mp-doctor-education summary { font-size: 17px; }

  .mp-education-body { display: grid; }

  .mp-doctor-quote { margin-top: 22px; }

  .mp-clinic-head p { font-size: 16px; }

  .mp-clinic-stage { min-height: 0; }

  .mp-clinic-photo {
    width: 100%;
    height: 470px;
  }

  .mp-clinic-directions {
    width: calc(100% - 24px);
    margin: -24px auto 0;
    position: relative;
    right: auto;
    top: auto;
  }

  .mp-clinic-experience {
    width: 100%;
    margin: 12px 0 0;
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
  }

  .mp-clinic-experience > div { grid-template-columns: 1fr; }

  .mp-clinic-experience p {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(20,46,63,.13);
  }

  .mp-additional-tabs { grid-template-columns: 1fr 1fr; }

  .mp-additional-tabs button:nth-child(2) { border-right: 0; }

  .mp-additional-tabs button:nth-child(-n+2) { border-bottom: 1px solid rgba(20,46,63,.17); }

  .mp-additional-doctor { grid-template-columns: 1fr; }

  .mp-additional-photo { min-height: 470px; }

  .mp-additional-services { padding: 32px 28px; }

  .mp-analysis-panel { padding: 24px; }

  .mp-analysis-browser { grid-template-columns: 1fr; }

  .mp-analysis-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mp-analysis-categories::-webkit-scrollbar { display: none; }

  .mp-analysis-categories button {
    width: auto;
    min-width: 175px;
    border: 0;
  }

  .mp-review-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .mp-review-side { display: none; }

  .mp-review-thumb { display: block; }

  .mp-reviews-head { order: 1; }

  .mp-reviews-section .review-controls {
    order: 2;
    justify-content: flex-start;
    margin: 18px 0 0;
  }

  .mp-reviews-section .review-stage {
    order: 3;
    margin-top: 16px;
  }

  .mp-discount-stage { grid-template-columns: 1fr; }

  .mp-discount-main { min-height: 590px; }

  .mp-prep-layout { grid-template-columns: 1fr; }

  .mp-preparation-section .prep-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mp-preparation-section .prep-tab {
    min-width: 265px;
    border-right: 1px solid rgba(20,46,63,.09);
    border-bottom: 0;
  }

  .mp-preparation-section .prep-panel { grid-template-columns: 220px 1fr; }

  .mp-process-head p { margin-top: 18px; }

  .mp-process-gallery {
    height: 720px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.4fr .7fr .7fr;
  }

  .mp-process-gallery .mp-process-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .mp-process-gallery figure:nth-child(2) { grid-column: 1 / -1; }

  .mp-contact-layout { grid-template-columns: 1fr; }

  .mp-contact-copy { padding-right: 0; }}

@media (max-width: 560px) {
  .mp-doctor-proof span { max-width: none; }

  .mp-doctor-photo { min-height: 420px; }

  .mp-doctor-title { grid-template-columns: 1fr; }

  .mp-doctor-title h3 { font-size: 31px; }

  .mp-doctor-rating {
    width: max-content;
    padding: 12px 0 0;
    border-top: 1px solid rgba(20,46,63,.14);
    border-left: 0;
  }

  .mp-doctor-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .mp-doctor-actions a { width: max-content; }

  .mp-clinic-photo { height: 360px; }

  .mp-clinic-directions { padding: 28px 24px; }

  .mp-clinic-directions h3 { font-size: 29px; }

  .mp-clinic-experience { padding: 25px 22px; }

  .mp-additional-tabs strong { font-size: 19px; }

  .mp-additional-tabs button { padding: 18px 14px 18px 0; }

  .mp-additional-tabs button + button { padding-left: 14px; }

  .mp-additional-photo { min-height: 390px; }

  .mp-additional-photo h3 { font-size: 23px; }

  .mp-additional-services { padding: 28px 22px; }

  .mp-additional-services > h3 { font-size: 30px; }

  .mp-additional-services ul { grid-template-columns: 1fr; }

  .mp-additional-price {
    align-items: stretch;
    flex-direction: column;
  }

  .mp-analysis-panel { padding: 16px; }

  .mp-analysis-row {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 12px;
  }

  .mp-analysis-row .rest-button {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    min-height: 30px;
    padding: 0;
    justify-self: end;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--red);
    font-size: 11px;
  }

  .mp-review-quote { padding: 30px 22px 28px; }

  .mp-review-proofhead {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mp-review-quote > p {
    margin-top: 26px;
    font-size: 21px;
    line-height: 1.42;
  }

  .mp-time-offers { grid-template-columns: 1fr; }

  .mp-discount-right article { padding: 28px 23px; }

  .mp-preparation-section .prep-panel { grid-template-columns: 1fr; }

  .mp-prep-signal { min-height: 220px; }

  .mp-prep-copy { padding: 30px 22px; }

  .mp-process-gallery {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 470px repeat(3,250px);
  }

  .mp-process-gallery .mp-process-main,
  .mp-process-gallery figure:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .mp-contact-phone { font-size: 34px; }

  .mp-contact-hours {
    flex-direction: column;
    gap: 8px;
  }}

@media (prefers-reduced-motion: reduce) {
  .mp-additional-panel { animation: none; }}

.mp-doctors-section { background: #eef6f8; }

.mp-doctor-proof > div:first-child strong { color: var(--ink); }

.mp-additional-education {
  margin-top: 22px;
  border-top: 1px solid rgba(20,46,63,.1);
}

.mp-additional-education > summary {
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mp-additional-education > summary::-webkit-details-marker { display: none; }

.mp-more-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(56,119,178,.35);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: 12.5px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease;
}
@media (hover: hover) {
.mp-additional-education > summary:hover .mp-more-hint {
  background: var(--red-soft);
  border-color: var(--red);
}
}

.mp-more-hint i {
  font-style: normal;
  font-size: 13px;
  transition: transform 180ms ease;
}

.mp-additional-education[open] .mp-more-hint i { transform: rotate(180deg); }

.mp-additional-education-body {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.mp-additional-education-body li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: baseline;
}

.mp-additional-education-body li strong {
  color: var(--blue-dark);
  font-size: 12.5px;
  font-weight: 600;
}

.mp-additional-education-body li span {
  color: #4a616e;
  font-size: 13.5px;
  line-height: 1.45;
}

.mp-additional-education-body li::before { content: none; }

.mp-contact-copy .contact-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
  justify-content: start;
  align-items: stretch;
}

.mp-contact-copy .contact-actions > *:first-child {
  grid-column: 1 / -1;
  justify-self: stretch;
}

@media (max-width: 720px) {
  .mp-contact-copy .contact-actions { grid-template-columns: 1fr; }}

@media (max-width: 720px) {
  .landing-rest .shell {
    max-width: 100%;
    overflow-x: clip;
  }

  .mp-additional-panels,
  .mp-additional-panel,
  .mp-analysis-browser,
  .mp-analysis-results,
  .mp-analysis-results-head {
    min-width: 0;
    max-width: 100%;
  }

  .mp-analysis-results-head {
    flex-wrap: wrap;
    gap: 6px;
  }

  .mp-analysis-list,
  .mp-analysis-row {
    min-width: 0;
  }

  .mp-analysis-row { flex-wrap: wrap; }

  .map-card {
    max-width: 100%;
    overflow: hidden;
  }

  .map-card .map-tiles { max-width: 100%; }}

.mp-process-gallery .mp-process-main button {
  left: 24px;
  right: auto;
  top: auto;
  bottom: 96px;
}

@media (max-width: 720px) {
  .mp-process-gallery .mp-process-main button {
    left: 16px;
    bottom: 88px;
  }}

.mp-process-gallery figure::after { display: none; }

.mp-clinic-photo::after { display: none; }

.mp-additional-photo::after { background: linear-gradient(transparent, rgba(10,43,63,.55)); }

.callback-error {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(201,40,60,.16);
  color: #ffd9de;
  font-size: 13px;
  line-height: 1.4;
}

.callback-error a {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.callback-form input[aria-invalid="true"] { border-color: var(--error); }

h1 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.03;
}

h2,
.price-section h2,
.section h2 {
  font-size: clamp(27px, 2.75vw, 40px);
  line-height: 1.06;
}

h3,
.doctor-name,
.preparation-detail h3,
.discount-main h3,
.discount-card h3,
.category-title {
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.14;
}

.header-cta {
  min-height: var(--h-btn-sm);
  border-radius: var(--r-btn);
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(56, 119, 178, 0.22);
}
@media (hover: hover) {
.header-cta:hover { background: var(--red-dark); }
}

.evidence-number,
.doctor-stat-value,
.stat-value {
  color: var(--ink);
}

.button,
.rest-button,
.doctor-book,
.equipment-button,
.discount-button,
.contacts-button,
.callback-form button,
.modal-submit {
  min-height: var(--h-btn);
  border-radius: var(--r-btn);
  font-size: var(--fs-btn);
  font-weight: 600;
}

.service-book,
.mobile-service-book,
.review-tab,
.reviews-nav button,
.map-link {
  min-height: var(--h-btn-sm);
  border-radius: var(--r-btn);
  font-size: 14px;
}

.doctor-card,
.review-card,
.discount-main,
.discount-card,
.preparation-list,
.preparation-detail,
.process-figure,
.price-browser,
.mobile-category,
.contacts-map,
.callback-form {
  border-radius: var(--r-card);
}

.site-header {
  position: fixed;
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background 240ms ease, border-color 240ms ease, -webkit-backdrop-filter 240ms ease, backdrop-filter 240ms ease;
}

.site-header[data-stuck="true"] {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(20, 46, 63, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.site-header[data-stuck="false"] .main-nav a,
.site-header[data-stuck="false"] .header-phone strong {
  color: var(--ink);
}

@media (max-width: 720px) {
  .site-header { background: transparent; }

  .site-header[data-stuck="true"] { background: rgba(255, 255, 255, 0.94); }

  .mobile-call,
  .menu-button {
    border-radius: var(--r-btn);
    background: rgba(255, 255, 255, 0.72);
  }

  .button {
    min-height: var(--h-btn);
    border-radius: var(--r-btn);
  }}

.results-head h3,
.doctor-title-line h3,
.checkups-panel h3,
.discount-panel h3,
.prep-panel h3 {
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.14;
}

.icon-button,
.prep-tab,
.process-play,
.modal-context-drop {
  border-radius: var(--r-btn);
}

.icon-button {
  width: var(--h-btn-sm);
  height: var(--h-btn-sm);
}

.process-play {
  width: 56px;
  height: 56px;
}

.rest-button { min-height: var(--h-btn); }

.doctor-profile-actions .rest-button,
.contact-actions .rest-button {
  min-height: var(--h-btn);
}

.prep-tab[aria-selected="true"],
.prep-tabs,
.prep-panel,
.prep-steps li,
.prep-tab::after {
  border-radius: var(--r-btn);
}

.prep-tabs,
.prep-panel {
  border-radius: var(--r-card);
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto 0;
  height: 116%;
  background: linear-gradient(180deg, rgba(247, 250, 251, 0.82) 0%, rgba(247, 250, 251, 0.62) 48%, rgba(247, 250, 251, 0.18) 80%, rgba(247, 250, 251, 0) 100%);
  opacity: 1;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.site-header[data-stuck="false"] .main-nav a,
.site-header[data-stuck="false"] .header-phone strong,
.site-header[data-stuck="false"] .header-phone span {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 22px rgba(255, 255, 255, 0.85);
}

.site-header[data-stuck="false"] .header-phone span { color: #3f5765; }

.site-header[data-stuck="true"]::before { opacity: 0; }

.site-header { isolation: isolate; }

.mobile-menu { position: fixed; }

.doctor-proof-item strong,
.doctor-proof-item:first-child strong {
  color: var(--ink);
}

.doctor-proof-item { border-radius: var(--r-card); }

@media (max-width: 980px) {
  .video-overlay { padding: 16px; }

  .video-frame { width: 100%; }

  .video-close { top: -46px; }}

.main-nav a::after { display: none; }

.main-nav a { transition: color 160ms ease; }
@media (hover: hover) {
.main-nav a:hover { color: var(--red-dark); }
}

.price-search {
  position: sticky;
  top: 100px;
  z-index: 8;
}

.price-search::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -16px;
  right: -16px;
  top: -20px;
  bottom: -8px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 64%, rgba(247, 250, 251, 0) 100%);
  pointer-events: none;
}

.price-search input { box-shadow: 0 14px 34px rgba(20, 46, 63, 0.09); }

.price-search-clear {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r-btn);
  background: #eef4f7;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}
@media (hover: hover) {
.price-search-clear:hover { background: #e2edf2; }
}

.price-search-clear[hidden] { display: none; }

.price-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(20, 46, 63, 0.14);
  border-radius: var(--r-pill);
  background: var(--white);
  color: #33505f;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}
@media (hover: hover) {
.price-chip:hover {
  border-color: rgba(56, 119, 178, 0.45);
  color: var(--red-dark);
}
}

.price-chip[data-active="true"] {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red-dark);
}

.category-button[data-popular="true"] span:first-child::before {
  content: "★";
  margin-right: 8px;
  color: var(--red);
  font-size: 12px;
}

.empty-results,
.mobile-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  line-height: 1.55;
}

.empty-results { padding: 56px 20px 60px; }

.empty-results-title {
  max-width: 34ch;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.empty-results-text {
  max-width: 42ch;
  color: #4d646f;
  font-size: 14.5px;
}

.empty-results-cta {
  margin-top: 6px;
  min-height: var(--h-btn-sm);
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--r-btn);
  background: var(--red);
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-btn);
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}
@media (hover: hover) {
.empty-results-cta:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 22px rgba(42, 95, 145, 0.24);
}
}

.mobile-empty .empty-results-title { font-size: 16px; }

.mobile-empty .empty-results-text { font-size: 13.5px; }

.price-search-status {
  margin: 10px 0 0;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 600;
}

.price-search-status[data-empty="true"] { color: var(--muted); }

@media (max-width: 900px) {
  .price-section[data-searching="true"] .price-chips { display: none; }}

@media (max-width: 720px) {
  .price-search {
    top: 64px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 8px 16px 10px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .price-search::before { display: none; }

  .price-search-clear { right: 22px; width: 44px; height: 44px; background: transparent; }

  .price-chips {
    margin: 2px -16px 0;
    padding: 6px 16px 10px;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
    mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
  }

  .price-chips::-webkit-scrollbar { display: none; }

  .price-chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .price-search-status { margin-top: 12px; font-size: 15px; }}

.price-note {
  margin: 16px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price-note a {
  color: var(--red-dark);
  font-weight: 600;
  white-space: nowrap;
}

.category-button[aria-selected="true"] {
  box-shadow: inset 3px 0 0 var(--red), 0 12px 28px rgba(20, 46, 63, 0.08);
}

.service-row { transition: background 140ms ease; }
@media (hover: hover) {
.service-row:hover { background: #fdf7f8; }
}

@media (hover: hover) {
.service-row:hover .service-price { color: var(--red-dark); }
}

.service-price { transition: color 140ms ease; }

.price-section {
  background-color: var(--paper);
  background-image: linear-gradient(90deg, rgba(247,250,251,.56) 0%, rgba(245,249,251,.72) 36%, rgba(247,250,251,.92) 60%, var(--paper) 80%), url("../assets/hero-bg-soft.webp");
  background-size: auto, auto 100%;
  background-position: center, left top;
  background-repeat: no-repeat, no-repeat;
}

@media (max-width: 720px) {
  .mobile-category summary { background: #f1f7fa; }

  .mobile-category[open] summary { border-bottom: 1px solid rgba(20, 46, 63, 0.08); }

  .mobile-category-popular summary,
  .mobile-category-popular[open] summary {
    border-bottom: 0;
    background: transparent;
  }

  .mobile-category-name {
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-category-popular .mobile-category-name { font-size: 18px; }

  .mobile-service-name {
    color: var(--ink);
    font-weight: 400;
  }

  .price-note { font-size: 14px; }}

.category-button {
  grid-template-columns: auto 1fr auto;
  gap: 11px;
}

.category-button[data-popular="true"] { grid-template-columns: 1fr auto; }

.category-icon {
  width: 24px;
  height: 24px;
  opacity: 0.62;
  transition: opacity 160ms ease;
}
.category-button[aria-selected="true"] .category-icon {
  opacity: 1;
}

@media (hover: hover) {
.category-button:hover .category-icon {
  opacity: 1;
}
}

@media (max-width: 720px) {
  .mobile-category summary { grid-template-columns: auto minmax(0, 1fr) auto; }

  .mobile-category-icon {
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
    opacity: 0.75;
  }

  .mobile-category-star {
    color: var(--red);
    font-size: 13px;
    opacity: 1;
    width: auto;
  }}

.equipment-section h2 .eq-accent { color: var(--red); }

.equipment-photo { position: relative; }

.equipment-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.equipment-play {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 18px 7px 7px;
  border: 0;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(20, 46, 63, 0.2);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
@media (hover: hover) {
.equipment-play:hover {
  background: var(--white);
  transform: translateY(-1px);
}
}

.equipment-play-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

.equipment-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 9px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.equipment-kicker {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.equipment-features {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.equipment-features li {
  min-height: 0;
  margin: 0;
  padding: 12px 14px 12px 40px;
  position: relative;
  border: 0;
  border-radius: var(--r-btn);
  background: #f3f8fa;
  color: #33505f;
  font-size: 13.5px;
  line-height: 1.38;
}

.equipment-features li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red-soft);
  box-shadow: inset 0 0 0 1.5px rgba(56, 119, 178, 0.42);
}

.equipment-features li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 5px;
  height: 2.5px;
  border-left: 1.6px solid var(--red);
  border-bottom: 1.6px solid var(--red);
  transform: rotate(-45deg);
}

.equipment-shot {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px;
  border: 1px solid rgba(20, 46, 63, 0.12);
  border-radius: var(--r-card);
  background: #fbfcfd;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
@media (hover: hover) {
.equipment-shot:hover {
  border-color: rgba(56, 119, 178, 0.4);
  box-shadow: 0 12px 30px rgba(20, 46, 63, 0.08);
}
}

.equipment-shot img {
  width: 96px;
  height: 68px;
  flex: 0 0 96px;
  object-fit: cover;
  object-position: center 9%;
  border-radius: 10px;
  background: #0a1118;
}

.equipment-shot-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.equipment-shot-text b {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
}

.equipment-shot-text span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.equipment-conclusion { color: #4a616e; }

.equipment-conclusion a {
  color: var(--red-dark);
  font-weight: 600;
}

@media (max-width: 720px) {
  .equipment-features { grid-template-columns: 1fr; }

  .equipment-badge {
    top: 12px;
    left: 12px;
    font-size: 11.5px;
  }

  .equipment-play {
    left: auto;
    right: 12px;
    top: 12px;
    bottom: auto;
    min-height: 44px;
    padding: 5px;
  }

  .equipment-play > span:last-child { display: none; }

  .shot-overlay { padding: 14px; }

  .shot-close { top: -46px; }}

.equipment-photo img { object-position: center 26%; }

@media (max-width: 720px) {
  .equipment-photo img { object-position: center 30%; }}

.doctors-section { background: var(--paper); }

.proof-stars {
  display: inline-flex;
  gap: 2.5px;
  margin-left: 4px;
  transform: translateY(-2px);
}

.proof-stars i {
  width: 11px;
  height: 11px;
  background: var(--red);
  clip-path: polygon(50% 0%, 62% 36%, 100% 38%, 69% 60%, 80% 96%, 50% 74%, 20% 96%, 31% 60%, 0% 38%, 38% 36%);
  opacity: .9;
}

.doctor-rating .proof-stars i {
  width: 9px;
  height: 9px;
}

.doctor-proof-item strong {
  display: flex;
  align-items: center;
}

.doctor-title-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.doctor-name-wrap {
  display: grid;
  gap: 7px;
}

.doctor-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.doctor-exp {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 1px;
  padding: 10px 16px 9px;
  border-radius: var(--r-btn);
  background: var(--blue-soft);
}

.doctor-exp b {
  font-family: "Futura Medic", "Gilroy", Arial, sans-serif;
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.doctor-exp i {
  color: var(--muted);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.doctor-education li strong,
.doctor-profile--reverse .doctor-education li strong {
  color: var(--blue-dark);
}

.doctor-quote {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--r-btn) var(--r-btn) 0;
  background: var(--red-soft);
}

.doctor-quote p {
  margin: 0;
  color: #43323a;
  font-size: 14px;
  line-height: 1.5;
}

.doctor-quote cite {
  display: block;
  margin-top: 6px;
  color: #8d7078;
  font-size: 11.5px;
  font-style: normal;
}

.doctor-portrait { position: relative; }

.doctor-video {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 6px 16px 6px 6px;
  border: 0;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(20, 46, 63, 0.2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
@media (hover: hover) {
.doctor-video:hover {
  background: var(--white);
  transform: translateY(-1px);
}
}

.doctor-video-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

.doctor-video-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 8px solid var(--white);
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
}

@media (max-width: 720px) {
  .doctor-title-line { flex-direction: row; }

  .doctor-exp { padding: 8px 13px 7px; }

  .doctor-exp b { font-size: 23px; }

  .doctor-quote p { font-size: 13.5px; }

  .doctor-video {
    left: 10px;
    bottom: 10px;
    min-height: 40px;
    font-size: 12px;
  }}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 10px;
    align-items: center;
  }

  .brand {
    width: auto;
    max-width: 132px;
  }

  .brand img {
    width: 100%;
    height: auto;
  }

  .mobile-messenger,
  .mobile-call,
  .menu-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .mobile-messenger { margin-left: auto; }}

@media (max-width: 720px) {
  .menu-button { margin-left: 0; }

  .mobile-call {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    font-size: 0;
  }

  .mobile-call svg {
    width: 22px;
    height: 22px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 8px;
  }}

button:not(:disabled),
summary,
[data-booking],
label.modal-channel-option,
.modal-channel-options label,
[role="button"] {
  cursor: pointer;
}

button:disabled { cursor: default; }

@media (max-width: 360px) {
  .brand { max-width: 118px; }}

.category-panel-label { font-size: 12px; }

.results-count { font-size: 13.5px; }

.price-chip { font-size: 14.5px; }

.service-name {
  font-size: 17px;
  font-weight: 600;
}

.mobile-service-name { font-size: 16px; }

.category-button span:first-child { font-size: 14.5px; }

.price-note { font-size: 16px; }

.equipment-kicker { font-size: 12.5px; }

.equipment-features li {
  font-size: 15px;
  line-height: 1.42;
}

.equipment-badge { font-size: 13.5px; }

.equipment-play { font-size: 14.5px; }

.equipment-shot-text b { font-size: 14.5px; }

.equipment-shot-text span { font-size: 13px; }

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

.equipment-conclusion { font-size: 15.5px; }

.mp-doctor-proof > div span { font-size: 14.5px; }

.mp-doctor-rating small { font-size: 12px; }

.mp-doctor-exp span,
.mp-doctor-photo .mp-doctor-exp span {
  font-size: 13px;
}

.mp-photo-video span:last-child { font-size: 14px; }

.mp-education-body li strong { font-size: 14px; }

.mp-education-body li span {
  font-size: 15px;
  line-height: 1.5;
}

.mp-doctor-quote p {
  font-size: 15.5px;
  line-height: 1.52;
}

.mp-doctor-quote cite { font-size: 12.5px; }

.mp-doctor-actions a { font-size: 14.5px; }

.mp-doctor-education > summary { font-size: 15px; }

.mp-clinic-photo figcaption { font-size: 12.5px; }

.mp-clinic-directions li {
  font-size: 15px;
  line-height: 1.48;
}

.mp-clinic-experience p {
  font-size: 14px;
  line-height: 1.5;
}

.mp-additional-tabs button strong { font-size: 17px; }

.mp-additional-tabs button span { font-size: 13px; }

.mp-additional-photo p { font-size: 13.5px; }

.mp-additional-services li { font-size: 14.5px; }

.mp-analysis-row strong { font-size: 14.5px; }

.mp-analysis-row span { font-size: 12px; }

.mp-analysis-categories button { font-size: 14px; }

.mp-analysis-categories button span { font-size: 12px; }

.mp-analysis-note {
  font-size: 13px;
  line-height: 1.5;
}

.mp-analysis-results-head span { font-size: 13px; }

.mp-additional-education > summary { font-size: 15px; }

.mp-additional-education-body li strong { font-size: 14px; }

.mp-additional-education-body li span { font-size: 14.5px; }

.mp-review-proofhead > span:first-child { font-size: 13.5px; }

.mp-review-proofhead > a,
.mp-review-proofhead > .mp-review-source {
  font-size: 12px;
}

.mp-review-signature strong { font-size: 15px; }

.mp-review-signature span { font-size: 13px; }

.mp-review-counter { font-size: 13px; }

.mp-process-gallery figcaption { font-size: 13px; }

.mp-process-gallery figcaption span { font-size: 13px; }

.mp-process-main button { font-size: 14px; }

.mp-process-head p { font-size: 15px; }

.mp-contact-hours span { font-size: 14px; }

.mp-contact-email { font-size: 15px; }

.map-pin { font-size: 14px; }

.map-attribution { font-size: 11px; }

.form-consent {
  font-size: 12.5px;
  line-height: 1.5;
}

.legal-links a { font-size: 13.5px; }

.medical-warning { font-size: 12.5px; }

.mp-contacts-section address { font-size: 17px; }

.shot-overlay figcaption { font-size: 13.5px; }

.video-caption { font-size: 14px; }

.modal-legal { font-size: 12.5px; }

.modal-promise { font-size: 14.5px; }

.mp-analysis-categories button strong { font-size: 14.5px; }

.mp-analysis-row .rest-button { font-size: 13.5px; }

.mp-analysis-list .rest-button { font-size: 13.5px; }

.mp-contacts-section {
  position: relative;
  padding: 0;
  color: var(--ink);
  background: #eef5f8;
}

.contacts-stage {
  position: relative;
  min-height: 660px;
  padding-top: 104px;
  display: flex;
  align-items: flex-end;
}

.contacts-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e7eeee;
}

.contacts-map-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.97);
}

.contacts-map iframe {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts-stage > .shell {
  position: relative;
  z-index: 2;
}

.contacts-card {
  max-width: 660px;
  padding: 44px 48px 46px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -14px 60px rgba(20, 46, 63, 0.16);
}

.contacts-card h2 { margin: 0; }

.contacts-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.contacts-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contacts-row-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--red);
}

.contacts-row-icon svg,
.contacts-row-icon img {
  width: 23px;
  height: 23px;
}

.contacts-row-body {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.contacts-row-body b {
  display: block;
  margin-bottom: 3px;
  color: #4d646f;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contacts-row-body a {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.16s ease;
}
@media (hover: hover) {
.contacts-row-body a:hover { color: var(--red-dark); }
}

.contacts-actions {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contacts-actions .rest-button {
  width: 100%;
  min-height: var(--h-btn);
  box-shadow: none;
}

.contacts-actions .rest-button-outline {
  border-color: rgba(20, 46, 63, 0.2);
  color: var(--blue-dark);
}
@media (hover: hover) {
.contacts-actions .rest-button-outline:hover {
  border-color: var(--red);
  color: var(--red-dark);
}
}

.contacts-route {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: 14.5px;
  font-weight: 600;
}
@media (hover: hover) {
.contacts-route:hover { color: var(--red-dark); }
}

.contacts-footer {
  margin: 0;
  padding: 22px 0;
  border: 0;
  background: #dde8ed;
}

.contacts-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.contacts-footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: #3c5867;
  font-size: 13.5px;
}

.contacts-footer .legal-links a {
  color: #3c5867;
  font-size: 13.5px;
}
@media (hover: hover) {
.contacts-footer .legal-links a:hover {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
}

.contacts-footer .medical-warning {
  max-width: 430px;
  margin: 0;
  color: #4d646f;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .contacts-card {
    max-width: 580px;
    padding: 38px 36px 40px;
  }

  .contacts-stage {
    min-height: 600px;
    padding-top: 84px;
  }}

@media (max-width: 900px) {
  .contacts-stage {
    display: block;
    min-height: 0;
    padding-top: 0;
  }

  .contacts-map {
    position: relative;
    inset: auto;
    height: 300px;
  }

  .contacts-card {
    max-width: none;
    margin-top: -28px;
    padding: 30px 22px 34px;
    border-radius: 20px 20px 0 0;
  }

  .contacts-card h2 { max-width: none; }

  .contacts-actions { grid-template-columns: 1fr; }

  .contacts-footer .shell { display: block; }

  .contacts-footer .medical-warning {
    max-width: none;
    margin-top: 14px;
    text-align: left;
  }}

.mp-process-gallery {
  height: 726px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
  border-radius: 30px;
  background: #d7e7ec;
}

.mp-process-gallery figure:nth-child(n) {
  min-width: 0;
  min-height: 0;
  position: relative;
  margin: 0;
  grid-column: auto;
  grid-row: auto;
  overflow: hidden;
  background: #d8e7ec;
}

.mp-process-gallery figure.mp-process-main:nth-child(n) {
  grid-column: span 2;
  grid-row: span 2;
}

.mp-process-gallery picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mp-process-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mp-process-gallery .mp-process-main img { object-position: center 16%; }
@media (hover: hover) {
.mp-process-gallery figure:hover img { transform: scale(1.035); }
}

.mp-process-gallery figure::after { display: none; }

@media (max-width: 1120px) {
  .mp-process-gallery {
    height: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }}

@media (max-width: 900px) {
  .mp-process-gallery {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 168px;
    gap: 8px;
    border-radius: 22px;
  }

  .mp-process-gallery figure.mp-process-main:nth-child(n) {
    grid-column: span 2;
    grid-row: span 2;
  }}

@media (max-width: 560px) {
  .mp-process-gallery { grid-auto-rows: 142px; }}

.mp-process-section { background: #fff; }

@media (max-width: 900px) {
  .contacts-row-body a,
  .contacts-route {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .contacts-footer .legal-links { gap: 2px 24px; }

  .contacts-footer .legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
  }}

.mobile-messenger,
.mobile-call,
.menu-button { background: transparent; }

.mp-doctor-photo picture,
.mp-review-side picture,
.mp-review-thumb picture,
.mp-additional-photo picture,
.equipment-photo picture,
.equipment-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.equipment-section { background: #fff; }

.mp-doctors-section { background: #f1f0ec; }

.mp-process-section { background: #fff; }

.mp-reviews-section { background: #f1f0ec; }

.mp-clinic-section { background: #fff; }

.mp-additional-section { background: #f1f0ec; }

.mp-contacts-section { background: #f1f0ec; }

.contacts-footer { background: #e6e4de; }

.section + .section::before,
.price-section::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 0;
  width: min(1280px, calc(100% - 160px));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(20, 46, 63, 0.13);
}

@media (max-width: 900px) {
  .mp-doctor-education summary {
    min-height: 44px;
    gap: 14px;
  }

  .mp-education-chevron {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .mp-doctor-education[open] .mp-education-chevron { transform: rotate(180deg); }}

.mp-clinic-directions li { color: #fff; }

.mp-review-proofhead > span:first-child { color: var(--red-dark); }

.mp-doctor-photo::after {
  height: 46%;
  background: linear-gradient(transparent, rgba(9, 34, 49, 0.9));
}

.mp-doctor-exp span,
.mp-doctor-photo .mp-doctor-exp span {
  color: rgba(255, 255, 255, 0.94);
}

.mp-tab-chevron { display: none; }

@media (max-width: 900px) {
  .mp-additional-section > .shell {
    display: flex;
    flex-direction: column;
  }

  .mp-additional-tabs,
  .mp-additional-panels { display: contents; }

  .mp-additional-tabs button:nth-child(1) { order: 1; }
  .mp-additional-panel:nth-child(1) { order: 2; }
  .mp-additional-tabs button:nth-child(2) { order: 3; }
  .mp-additional-panel:nth-child(2) { order: 4; }
  .mp-additional-tabs button:nth-child(3) { order: 5; }
  .mp-additional-panel:nth-child(3) { order: 6; }
  .mp-additional-tabs button:nth-child(4) { order: 7; }
  .mp-additional-panel:nth-child(4) { order: 8; }

  .mp-additional-panel { margin-top: 8px; }

  .mp-additional-tabs { grid-template-columns: 1fr; }

  .mp-additional-tabs button {
    position: relative;
    min-height: 64px;
    padding: 14px 44px 14px 18px;
    border: 1px solid rgba(20, 46, 63, 0.12);
    border-right: 1px solid rgba(20, 46, 63, 0.12);
    border-radius: var(--r-btn);
    background: #fff;
  }

  .mp-additional-tabs button + button { margin-top: 8px; }

  .mp-additional-tabs button[aria-selected="true"] {
    border-color: rgba(56, 119, 178, 0.4);
  }

  .mp-additional-tabs button .mp-tab-chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    display: block;
    color: var(--red);
    font-size: 20px;
    line-height: 1;
    transform: translateY(-60%);
    transition: transform 0.2s ease;
  }

  .mp-additional-tabs button[aria-selected="true"] .mp-tab-chevron {
    transform: translateY(-50%) rotate(180deg);
  }

  .mp-additional-tabs button .mp-tab-chevron { color: var(--red); }}

.modal-consent {
  margin: 4px 0 2px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  cursor: pointer;
}

.modal-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.modal-consent-box {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(20, 46, 63, 0.28);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.modal-consent-box::after {
  content: "";
  width: 11px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translate(1px, -1px) scale(0.6);
  opacity: 0;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.modal-consent input:checked + .modal-consent-box {
  border-color: var(--red);
  background: var(--red);
}

.modal-consent input:checked + .modal-consent-box::after {
  opacity: 1;
  transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

.modal-consent input:focus-visible + .modal-consent-box {
  outline: 3px solid rgba(56, 119, 178, 0.62);
  outline-offset: 3px;
}
@media (hover: hover) {
.modal-consent:hover .modal-consent-box { border-color: rgba(56, 119, 178, 0.5); }
}

.modal-consent-text {
  color: #4d646f;
  font-size: 13px;
  line-height: 1.45;
}

.modal-consent-text a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gallery-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  flex-direction: column;
  background: #07131a;
}

.gallery-overlay[data-open="true"] { display: flex; }

.gallery-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.gallery-close,
.gallery-nav button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r-btn);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.gallery-overlay figure {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 0 12px;
}

.gallery-overlay img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  touch-action: pinch-zoom;
}

.gallery-nav {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  padding: 12px 12px calc(14px + env(safe-area-inset-bottom, 0px));
}

.gallery-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.mp-process-more { display: none; }

.mp-process-gallery figure[role="button"] { cursor: zoom-in; }

@media (max-width: 720px) {
  .section,
  .equipment-section,
  .mp-doctors-section,
  .mp-process-section,
  .mp-reviews-section,
  .mp-clinic-section,
  .mp-additional-section {
    padding: 44px 0 52px;
  }

  .section h2,
  .mp-clinic-head h2,
  .mp-additional-section h2 {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .rest-button,
  .button {
    transition: transform 120ms ease, background 150ms ease;
  }

  .rest-button:active,
  .button:active,
  .empty-results-cta:active {
    transform: scale(0.985);
  }

  .equipment-section h2 { margin-bottom: 20px; }

  .equipment-photo {
    height: auto;
    aspect-ratio: 6 / 5;
    border-radius: var(--r-card);
  }

  .equipment-photo img { object-position: 50% 22%; }

  .equipment-badge { top: 12px; left: 12px; font-size: 12px; }

  .equipment-play {
    top: auto;
    right: auto;
    left: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 6px 16px 6px 6px;
    font-size: 14px;
  }

  .equipment-play > span:last-child { display: inline; }

  .equipment-section-copy {
    width: 100%;
    margin: 18px 0 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .equipment-intro { font-size: 17px; line-height: 1.45; }

  .equipment-kicker { margin-top: 22px; font-size: 12px; }

  .equipment-features { margin-top: 10px; gap: 0; }

  .equipment-features li {
    padding: 9px 0 9px 32px;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.4;
  }

  .equipment-features li:first-child { border-top: 0; }

  .equipment-features li::before {
    left: 0;
    top: 11px;
    width: 20px;
    height: 20px;
    box-shadow: none;
  }

  .equipment-features li::after { left: 6px; top: 16px; width: 7px; height: 4px; }

  .equipment-shot {
    position: relative;
    display: block;
    margin-top: 20px;
    padding: 0;
    border: 0;
    border-radius: var(--r-card);
    background: transparent;
  }

  .equipment-shot picture {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--r-card);
    background: #0b1520;
  }

  .equipment-shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 50% 30%;
    border-radius: 0;
  }

  .equipment-shot-text {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 44px 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
  }

  .equipment-shot-text::after {
    content: "⤢";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 16px;
  }

  .equipment-shot-text b { font-size: 14px; }

  .equipment-shot-text span { font-size: 12.5px; }

  .equipment-conclusion { margin-top: 20px; font-size: 16px; line-height: 1.5; }

  .equipment-section-copy .rest-button { width: 100%; margin-top: 20px; min-height: 56px; font-size: 16px; }

  .mp-doctor-proof {
    margin: 0 0 20px;
    padding: 14px 0;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid rgba(20, 46, 63, 0.16);
  }

  .mp-doctor-proof > div {
    min-height: 0;
    padding: 0 10px 0 0;
    border-bottom: 0;
  }

  .mp-doctor-proof > div + div {
    padding-left: 12px;
    border-left: 1px solid rgba(20, 46, 63, 0.14);
  }

  .mp-doctor-proof strong { font-size: 24px; color: var(--red-dark); }

  .mp-doctor-proof > div span { margin-top: 5px; font-size: 12.5px; line-height: 1.3; }

  .mp-doctor-list { gap: 12px; }

  .mp-doctor-profile,
  .mp-doctor-profile--reverse { border-radius: var(--r-card); }

  .mp-doctor-photo {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .mp-doctor-photo::after { display: none; }

  .mp-doctor-profile:first-child .mp-doctor-photo img { object-position: 74% 18%; }

  .mp-doctor-profile--reverse .mp-doctor-photo img { object-position: 54% 22%; }

  .mp-doctor-exp { left: 12px; bottom: 12px; padding: 8px 14px 8px 12px; border-radius: 12px; gap: 10px; }

  .mp-doctor-exp strong { font-size: 30px; }

  .mp-photo-video { top: 12px; right: 12px; bottom: auto; font-size: 14px; }

  .mp-doctor-copy { padding: 18px 18px 20px; }

  .mp-doctor-title { gap: 0; }

  .mp-doctor-title h3 { font-size: 20px; line-height: 1.25; }

  .mp-doctor-title p { font-size: 15px; }

  .mp-doctor-rating {
    width: auto;
    margin-top: 12px;
    padding: 12px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--line);
  }

  .mp-doctor-rating strong { font-size: 20px; }

  .mp-doctor-education { margin-top: 12px; border-top: 1px solid var(--line); }

  .mp-doctor-education summary { min-height: 48px; color: var(--red-dark); font-size: 16px; }

  .mp-education-chevron {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-soft);
    color: var(--red-dark);
    font-size: 18px;
  }

  .mp-education-body li span { font-size: 15px; }

  .mp-doctor-quote { margin-top: 14px; }

  .mp-doctor-actions { margin-top: 16px; gap: 4px; }

  .mp-doctor-actions .rest-button { min-height: 56px; font-size: 16px; }

  .mp-doctor-actions a { min-height: 44px; display: inline-flex; align-items: center; font-size: 16px; }

  .mp-process-gallery {
    height: auto;
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
    border-radius: 0;
    background: transparent;
  }

  .mp-process-gallery figure:nth-child(n) {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .mp-process-gallery figure.mp-process-main:nth-child(n) {
    grid-column: 1 / -1;
    grid-row: auto;
    border-radius: var(--r-card);
  }

  .mp-process-gallery .mp-process-main img { object-position: 50% 12%; }

  .mp-process-gallery figure:nth-child(n + 6) { display: none; }

  .mp-process-gallery[data-expanded="true"] figure:nth-child(n + 6) { display: block; }

  .mp-process-gallery .mp-process-main button {
    top: auto;
    left: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 6px 16px 6px 6px;
    font-size: 14px;
  }

  .mp-process-gallery .mp-process-main button span:first-child { width: 36px; height: 36px; }

  .mp-process-more {
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 95, 145, 0.38);
    border-radius: var(--r-btn);
    background: var(--white);
    color: var(--red-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

  .mp-process-more[hidden] { display: none; }

  .review-tabs { margin-top: 0; padding: 4px; border-radius: 14px; }

  .review-tab { min-height: 44px; border-radius: 10px; font-size: 15px; }

  .mp-reviews-section .review-stage { margin-top: 14px; }

  .mp-reviews-section .review-controls {
    order: 4;
    margin: 14px 0 0;
    justify-content: space-between;
  }

  .mp-reviews-section .icon-button { width: 48px; height: 48px; background: var(--white); }

  .mp-review-feature { border-radius: var(--r-card); }

  .mp-review-quote { padding: 18px 18px 20px; }

  .mp-review-proofhead { gap: 10px; }

  .mp-review-quote > p {
    margin-top: 14px;
    font: 400 17px/1.5 "Gilroy", Arial, sans-serif;
    letter-spacing: 0;
    color: #1f3a4a;
  }

  .mp-review-signature { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }

  .mp-clinic-head p { margin-top: 12px; font-size: 16px; }

  .mp-clinic-stage { margin-top: 20px; }

  .mp-clinic-photo {
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: var(--r-card);
  }

  .mp-clinic-photo img { object-position: 50% 42%; }

  .mp-clinic-directions { padding: 20px 20px 22px; border-radius: var(--r-card); }

  .mp-clinic-directions h3 { font-size: 21px; line-height: 1.25; }

  .mp-clinic-directions li { font-size: 15px; line-height: 1.45; }

  .mp-clinic-experience { padding: 18px 18px 8px; border-radius: var(--r-card); }

  .mp-clinic-experience h3 { font-size: 19px; }

  .mp-clinic-experience p { padding: 11px 0; font-size: 15px; line-height: 1.45; }

  .mp-additional-tabs button:first-child { margin-top: 20px; }

  .mp-additional-tabs button { padding: 12px 48px 12px 16px; border-radius: 14px; }

  .mp-additional-tabs strong { font-size: 17px; }

  .mp-additional-tabs button > span:not(.mp-tab-chevron) { font-size: 14px; line-height: 1.35; }

  .mp-additional-tabs button + button { margin-top: 8px; }

  .mp-additional-panel { border-radius: 14px; }

  .mp-analysis-panel { padding: 4px 14px 16px; }

  .mp-analysis-search input { height: 50px; font-size: 16px; }

  .mp-analysis-categories {
    margin: 10px -14px 0;
    padding: 4px 14px 8px;
    gap: 8px;
    border-radius: 0;
    background: transparent;
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
    mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent);
  }

  .mp-analysis-categories button {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 0 14px;
    gap: 6px;
    border: 1px solid rgba(20, 46, 63, 0.16);
    border-radius: 999px;
    background: var(--white);
    color: #294655;
    white-space: nowrap;
  }

  .mp-analysis-categories button strong { font-size: 14px; }

  .mp-analysis-categories button span { font-size: 12px; opacity: 0.65; }

  .mp-analysis-categories button[aria-selected="true"] {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
    box-shadow: none;
  }

  .mp-analysis-categories button[aria-selected="true"] span { color: inherit; }

  .mp-analysis-results-head { margin-top: 10px; }

  .mp-analysis-results-head h3 { font-size: 17px; }

  .mp-analysis-row { min-height: 64px; padding: 12px 0; gap: 2px 12px; align-items: start; }

  .mp-analysis-row strong { font-size: 15px; line-height: 1.4; }

  .mp-analysis-row span { font-size: 13px; }

  .mp-analysis-row b { font-size: 17px; }

  .mp-analysis-row .rest-button {
    min-height: 32px;
    color: var(--red-dark);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(42, 95, 145, 0.35);
  }

  .mp-analysis-more { width: 100%; min-height: 48px; margin-top: 8px; font-size: 16px; }

  .mp-additional-photo {
    min-height: 0;
    padding: 16px 16px 0;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    align-items: center;
    background: transparent;
  }

  .mp-additional-photo::after { display: none; }

  .mp-additional-photo picture {
    width: 88px;
    height: 88px;
    overflow: hidden;
    border-radius: 14px;
    background: #dcebf0;
  }

  .mp-additional-photo img { object-position: 50% 20%; }

  .mp-additional-photo > div {
    position: static;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .mp-additional-photo h3 { font: 600 17px/1.25 "Gilroy", Arial, sans-serif; }

  .mp-additional-photo p { margin-top: 4px; font-size: 14px; line-height: 1.35; }

  .mp-additional-services { padding: 16px 16px 18px; }

  .mp-additional-services > h3 { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }

  .mp-additional-services li { font-size: 15px; line-height: 1.4; }

  .mp-additional-price { padding-top: 14px; border-top: 1px solid var(--line); }

  .mp-additional-price strong { font-size: 20px; }

  .mp-additional-price .rest-button { min-height: 48px; }

  .mp-contacts-section { padding: 36px 0 0; }

  .contacts-stage {
    display: flex;
    flex-direction: column;
  }

  .contacts-stage > .shell { order: -1; }

  .contacts-map {
    height: 300px;
    margin: 18px 16px 0;
    overflow: hidden;
    border-radius: var(--r-card);
  }

  .contacts-card {
    margin-top: 0;
    padding: 22px 18px;
    border-radius: var(--r-card);
  }

  .contacts-card h2 { font-size: 26px; line-height: 1.1; }

  .contacts-list { margin-top: 16px; }

  .contacts-row-body b { font-size: 12px; }

  .contacts-row-body span,
  .contacts-row-body a { font-size: 17px; }

  .contacts-actions { margin-top: 18px; gap: 8px; }

  .contacts-actions .rest-button { min-height: 56px; font-size: 16px; }

  .contacts-footer { margin-top: 26px; padding-bottom: 28px; }

  .contacts-footer .legal-links {
    flex-direction: column;
    gap: 0;
  }

  .contacts-footer .legal-links a { min-height: 40px; font-size: 14px; }

  .contacts-footer .medical-warning { font-size: 12px; line-height: 1.45; }

  .mp-doctor-photo picture,
  .equipment-photo picture,
  .mp-clinic-photo picture,
  .mp-process-gallery picture {
    position: absolute;
    inset: 0;
    display: block;
  }

  .gallery-overlay img { border-radius: 8px; }}
