@font-face {
  font-family: "Gilroy";
  src: url("assets/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/Gilroy-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Medic";
  src: url("assets/FuturaPT-Demi.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --r-btn: 12px;
  --r-card: 16px;
  --r-pill: 999px;
  --h-btn: 52px;
  --h-btn-sm: 44px;
  --fs-btn: 15px;
  --ink: #142e3f;
  --muted: #4d646f;
  --line: rgba(20, 46, 63, 0.13);
  --accent-light: #15a8d4;
  --accent: #0b86b3;
  --accent-dark: #086f95;
  --accent-soft: #e6f5fb;
  --accent-glow: rgba(11, 134, 179, .22);
  --blue: var(--accent);
  --blue-dark: var(--accent-dark);
  --blue-soft: var(--accent-soft);
  --error: #c9283c;
  --error-soft: #fff0f2;
  --red: var(--accent);
  --red-dark: var(--accent-dark);
  --red-soft: var(--accent-soft);
  --paper: #f7fafb;
  --white: #fff;
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

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

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

button,
input { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(20, 46, 63, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1280px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 204px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.25vw, 34px);
  font-size: 15px;
  font-weight: 600;
  color: #263f4f;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}

.header-phone strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.header-cta {
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  min-height: var(--h-btn-sm);
  border: 0;
  border-radius: var(--r-btn);
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(11, 134, 179, 0.22);
}

.mobile-call,
.menu-button { display: none; }

.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 812px;
  overflow: hidden;
  background: #eef4f6;
}

.hero-media,
.hero-media picture,
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px;
  background: none;
  filter: blur(20px) saturate(0.82) brightness(1.04);
  opacity: 0.22;
  transform: scale(1.035);
  pointer-events: none;
}

.hero-media picture { z-index: 1; }

.hero-photo {
  display: block;
  inset: 0 0 0 auto;
  width: 82%;
  object-fit: cover;
  object-position: center 28%;
  transform: none;
  filter: saturate(0.94) contrast(0.99) brightness(1.02);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 9%, #000 23%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 9%, #000 23%, #000 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 64px));
  min-height: 812px;
  margin: 0 auto;
  padding-top: 194px;
  padding-bottom: 48px;
  display: flex;
  justify-content: flex-start;
}

.hero-copy {
  width: 566px;
  align-self: flex-start;
  margin-left: 2px;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-family: "Futura Medic", "Gilroy", Arial, sans-serif;
  font-size: clamp(54px, 4.35vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.h1-line { display: block; }

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  min-width: 274px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 30px var(--accent-glow);
}

.button-primary::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1120px) {
  .header-inner,
  .hero-inner { width: min(100% - 40px, 1040px); }

  .main-nav { display: none; }

  .header-inner { grid-template-columns: 190px 1fr auto auto; }

  .menu-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: 14px;
    border: 1px solid rgba(20, 46, 63, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--blue-dark);
  }

  .menu-button::before,
  .menu-button::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button::before { transform: translateY(-4px); }

  .menu-button::after { transform: translateY(4px); }

  .menu-button[aria-expanded="true"]::before { transform: rotate(45deg); }

  .menu-button[aria-expanded="true"]::after { transform: rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    z-index: 9;
    top: 84px;
    right: 20px;
    left: auto;
    width: 320px;
    padding: 12px;
    border: 1px solid rgba(20, 46, 63, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(20, 46, 63, 0.16);
  }

  .mobile-menu[data-open="true"] {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a,
  .mobile-menu-cta {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #edf5f8;
    color: #294655;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 6px;
    min-height: 52px;
    justify-content: center;
    border: 0;
    background: var(--accent);
    color: var(--white);
    cursor: pointer;
  }

  .hero-copy { width: 525px; }

  h1 { font-size: 56px; }
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero-media::after {
    background: linear-gradient(90deg, rgba(250, 252, 252, 0.98) 0%, rgba(250, 252, 252, 0.97) 56%, rgba(248, 251, 252, 0.78) 76%, rgba(245, 249, 250, 0.08) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.02) 58%, rgba(239, 246, 248, 0.22) 100%);
  }

  .hero-media::before { display: none; }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    height: 74px;
    background: rgba(255, 255, 255, 0.94);
  }

  .header-actions { display: none; }

  .mobile-call,
  .menu-button {
    display: grid;
    place-items: center;
    border: 1px solid rgba(20, 46, 63, 0.13);
    color: var(--blue-dark);
    border-radius: var(--r-btn);
    background: rgba(255, 255, 255, 0.72);
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .menu-button { position: relative; }

  .menu-button::before,
  .menu-button::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button::before { transform: translateY(-4px); }

  .menu-button::after { transform: translateY(4px); }

  .hero {
    min-height: 922px;
    background: #f7fafb;
  }

  .hero-photo {
    left: 0;
    top: 74px;
    width: 100%;
    height: 390px;
    object-position: center 62%;
    transform: none;
    filter: saturate(0.92) contrast(0.98) brightness(1.03);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-media::before { display: none; }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 327px 0 38px;
    display: block;
    min-height: 0;
    padding-bottom: 28px;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(40px, 11.3vw, 48px);
    line-height: 0.98;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    border-radius: 13px;
  }

  .button-primary { min-width: 0; }

  .menu-button[aria-expanded="true"]::before { transform: rotate(45deg); }

  .menu-button[aria-expanded="true"]::after { transform: rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    z-index: 9;
    top: 74px;
    right: 0;
    left: 0;
    width: auto;
    border: 0;
    border-radius: 0;
    padding: 14px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(20, 46, 63, 0.1);
    box-shadow: 0 16px 34px rgba(20, 46, 63, 0.12);
  }

  .mobile-menu[data-open="true"] {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a,
  .mobile-menu-cta {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    color: #294655;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu a { background: #edf5f8; }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 6px;
    min-height: 52px;
    justify-content: center;
    border: 0;
    border-radius: var(--r-btn);
    background: var(--accent);
    color: var(--white);
    font-family: inherit;
    font-size: var(--fs-btn);
    font-weight: 600;
    letter-spacing: 0;
    box-shadow: 0 10px 22px var(--accent-glow);
  }
}

.modal-overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 32, 44, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal-overlay[data-open="true"] { display: flex; }

.modal {
  position: relative;
  width: min(468px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px 34px 28px;
  border-radius: var(--r-card);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(12, 32, 44, 0.3);
}

.modal h2 {
  font-size: 26px !important;
  line-height: 1.1;
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r-btn);
  background: #eef4f7;
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.modal-fields {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.modal-fields input {
  width: 100%;
  min-height: var(--h-btn);
  padding: 14px 16px;
  border: 1px solid rgba(20, 46, 63, 0.16);
  border-radius: var(--r-btn);
  background: #fbfdfe;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
}

.modal-fields input:focus {
  outline: 0;
  border-color: rgba(39, 107, 159, 0.6);
  background: var(--white);
}

.modal-submit {
  width: 100%;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.modal-promise {
  margin-top: 14px;
  color: var(--ink);
  line-height: 1.45;
  font-size: 14.5px;
}

.modal-promise b { font-weight: 600; }

.modal-done {
  display: none;
  padding: 8px 0 4px;
}

.modal[data-sent="true"] .modal-form { display: none; }

.modal[data-sent="true"] .modal-done { display: block; }

.modal-done p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.trust-bar {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  backdrop-filter: blur(20px) saturate(1.12);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 -1px 0 rgba(20, 46, 63, 0.05);
}

.tb-inner {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tb-item {
  padding: 2px 0 2px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
  row-gap: 4px;
  border-left: 1px solid rgba(20, 46, 63, 0.12);
}

.tb-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-family: "Futura Medic", "Gilroy", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.tb-stars {
  display: inline-flex;
  gap: 2px;
  transform: translateY(-1px);
}

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

.hero-list {
  margin: 26px 0 0;
  padding: 0 0 0 22px;
  list-style: none;
  display: grid;
  gap: 11px;
  max-width: 540px;
  border-left: 3px solid var(--accent-light);
}

.hero-list li {
  color: #33505f;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 720px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal {
    width: 100%;
    max-height: 92vh;
    padding: 26px 20px 22px;
    border-radius: 18px 18px 0 0;
  }

  .modal h2 { font-size: 23px !important; }

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

  .trust-bar {
    position: relative;
    z-index: 5;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.52);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    backdrop-filter: blur(16px) saturate(1.1);
    border-top: 1px solid rgba(20, 46, 63, 0.09);
    border-radius: var(--r-card);
  }

  .tb-item:nth-child(even) { border-left: 1px solid rgba(20, 46, 63, 0.12); }

  .hero-list {
    margin-top: 20px;
    padding-left: 16px;
    gap: 9px;
    max-width: 100%;
  }

  .hero-list li { font-size: 15px; }
}

@media (min-width: 981px) {
  @media (min-width: 981px) {
    .hero-photo {
      top: 116px;
      bottom: 140px;
    }
  }
}

.hero-play { display: none; }

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

.modal-submit[disabled] {
  opacity: .6;
  cursor: default;
}

html { scroll-behavior: smooth; }

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(27px, 2.8vw, 40px)/1.06 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.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(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(11, 134, 179, .18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.rest-button::after {
  content: "→";
  font-size: 19px;
}

.rest-button-outline {
  background: transparent;
  border-color: rgba(39,107,159,.3);
  color: var(--blue-dark);
  box-shadow: none;
}

.doctor-education {
  padding-top: 26px;
  margin-top: 0;
  border-bottom: 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: #4d646f;
  font-size: 14px;
  line-height: 1.42;
}

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

.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;
  margin: 0;
  padding: 22px 0;
  border: 0;
  background: #e6e4de;
}

.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);
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 13.5px;
}

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .button,
  .menu-button::before,
  .menu-button::after { transition: none; }

  html { scroll-behavior: auto; }

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

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

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

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

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

.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: #2f4a5a;
  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::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,45,65,.22), transparent 48%);
  display: none;
}

.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-weight: 600;
  font-size: 12px;
}

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

.mp-clinic-directions h3 {
  margin: 0;
  font: 700 26px/1.12 "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;
  font-size: 16px;
  line-height: 1.48;
  color: #fff;
}

.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: #2f4a5a;
  font-size: 16px;
  line-height: 1.5;
}

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

.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;
  transition: transform 0.5s ease;
}

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

.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;
  display: none;
}

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

@media (max-width: 1180px) {
  .tb-inner { width: min(100% - 40px, 1040px); }

  .tb-item {
    padding-left: 20px;
    column-gap: 11px;
  }

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

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

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

  .mp-clinic-section,
  .mp-process-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .mp-process-head { display: block; }

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

  .mp-clinic-stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

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

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

  .mp-clinic-experience {
    width: calc(100% - 14px);
    margin: 18px 0 0 14px;
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    order: 3;
  }

  .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-process-gallery .mp-process-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

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

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

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

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

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

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

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

  .mp-clinic-experience { padding: 25px 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;
  }
}

h1 {
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.2;
}

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

h3 {
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.14;
}

.button,
.rest-button,
.modal-submit {
  min-height: var(--h-btn);
  border-radius: var(--r-btn);
  font-size: var(--fs-btn);
  font-weight: 600;
}

.doctor-card,
.contacts-map { 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="false"] .main-nav a,
.site-header[data-stuck="false"] .header-phone strong { color: var(--ink); }

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

.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 {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 22px rgba(255, 255, 255, 0.85);
}

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

.site-header { isolation: isolate; }

.mobile-menu { position: fixed; }

.hero-photo {
  inset: 0 0 0 auto;
  width: 74%;
  object-position: 62% 50%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 11%, #000 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 11%, #000 30%, #000 100%);
}

.hero-media::before {
  background-image: none;
  background-position: center 46%;
  opacity: .16;
}

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

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

  .hero-photo {
    width: 100%;
    height: 400px;
    object-position: center 42%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.tb-inner { padding: 18px 0 19px; }

.tb-item {
  padding: 0 0 0 30px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  row-gap: 6px;
  border-left: 1px solid rgba(20, 46, 63, 0.12);
}

.tb-brand {
  height: 17px;
  width: auto;
  display: block;
  opacity: .95;
  margin: 0 auto;
}

.tb-brand-prodoctorov { height: 13px; }

.tb-value {
  font-size: 25px;
  gap: 9px;
}

@media (max-width: 1180px) {
  .tb-item { padding-left: 20px; }

  .tb-value { font-size: 22px; }

  .tb-brand { height: 15px; }
}

.hero-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  -webkit-mask-image: none;
  mask-image: none;
  filter: saturate(0.96) contrast(0.99) brightness(1.01);
}

.hero-media::before { display: none; }

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(250, 252, 252, 0.9) 0%, rgba(250, 252, 252, 0.72) 26%, rgba(249, 251, 252, 0.34) 44%, rgba(248, 251, 252, 0.06) 62%, rgba(248, 251, 252, 0) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 76%, rgba(20, 46, 63, 0.06) 100%);
}

@media (min-width: 981px) {
  .hero {
    background: var(--paper);
    padding-right: 0;
    min-height: max(680px, 100svh);
    background-color: var(--paper);
    background-image: linear-gradient(90deg, rgba(247,250,251,.32) 0%, rgba(245,249,251,.5) 34%, rgba(247,250,251,.78) 58%, rgba(247,250,251,.94) 78%), url("assets/hero-bg-soft.webp");
    background-size: auto, auto 105%;
    background-position: center, left center;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-media::after { display: none; }

  .hero-media::before { display: none; }

  .hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, min(600px, 46%)) 1fr;
    min-height: max(680px, 100svh);
    padding-top: 128px;
    align-items: center;
    align-content: center;
    padding-bottom: 106px;
  }

  .hero-copy { width: 100%; }

  .hero-photo {
    position: absolute;
    left: auto;
    object-fit: cover;
    -webkit-mask-image: none;
    mask-image: none;
    object-position: 50% 40%;
    top: 108px;
    right: 0;
    bottom: auto;
    width: 50%;
    height: calc(100% - 108px - 106px);
    border-radius: 22px 0 0 22px;
    box-shadow: 0 30px 70px rgba(20, 46, 63, 0.14);
  }

  .trust-bar { background: rgba(255,255,255,.72); }

  .h1-line { white-space: nowrap; }

  .hero-list {
    margin-top: 30px;
    padding-left: 26px;
    gap: 16px;
    max-width: 620px;
    border-left-width: 4px;
  }

  .hero-list li {
    font-size: clamp(19px, 1.75vw, 25px);
    line-height: 1.34;
  }

  .hero-play {
    position: absolute;
    z-index: 5;
    left: 75%;
    bottom: 150px;
    transform: translateX(-50%);
    z-index: 6;
    min-height: 64px;
    max-width: calc(50% - 60px);
    padding: 11px 22px 11px 11px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 0;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    backdrop-filter: blur(16px) saturate(1.1);
    box-shadow: 0 16px 40px rgba(20, 46, 63, 0.22);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  @media (hover: hover) {
    .hero-play:hover {
      background: var(--white);
      transform: translateX(-50%) translateY(-2px);
      box-shadow: 0 20px 46px rgba(20, 46, 63, 0.26);
    }
  }

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

  .hero-play-icon::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-left: 12px solid var(--white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .hero-play-text {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .hero-play-text b {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-play-text span {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .proctology-hero .hero-photo {
    object-fit: cover;
    object-position: 50% 40%;
  }
}

@media (min-width: 1600px) {
  .hero-inner,
  .tb-inner { width: min(1560px, calc(100% - 96px)); }

  .hero-inner { grid-template-columns: minmax(0, 680px) 1fr; }

  h1 {
    font-size: 40px;
    max-width: 680px;
  }

  .hero-list { max-width: 660px; }

  .hero-list li { font-size: 27px; }

  .button {
    min-height: 58px;
    font-size: 16px;
    padding: 0 30px;
  }

  .tb-value { font-size: 28px; }

  .tb-brand { height: 19px; }

  .tb-brand-prodoctorov { height: 15px; }

  .tb-count { font-size: 12.5px; }
}

@media (min-width: 2100px) {
  .hero-inner,
  .tb-inner { width: min(1760px, calc(100% - 120px)); }

  .hero-inner { grid-template-columns: minmax(0, 780px) 1fr; }

  h1 {
    font-size: 44px;
    max-width: 760px;
  }

  .hero-list { max-width: 700px; }

  .hero-list li { font-size: 29px; }

  .button {
    min-height: 62px;
    font-size: 17px;
    padding: 0 34px;
  }

  .tb-value { font-size: 31px; }

  .tb-brand { height: 21px; }

  .tb-brand-prodoctorov { height: 16px; }

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

@media (max-width: 980px) {
  .hero-play {
    position: absolute;
    z-index: 6;
    top: 232px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 52px;
    max-width: calc(100% - 32px);
    padding: 8px 18px 8px 8px;
    border: 0;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    box-shadow: 0 12px 30px rgba(20, 46, 63, 0.2);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
  }

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

  .hero-play-icon::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-left: 10px solid var(--white);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  .hero-play-text {
    display: grid;
    gap: 1px;
    min-width: 0;
  }

  .hero-play-text b {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-play-text span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.tb-inner {
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  column-gap: 0;
}

.tb-item {
  padding: 0 46px;
  justify-items: center;
  text-align: center;
}

.tb-item:first-child {
  padding-left: 46px;
  border-left: 0;
}

.tb-value { justify-content: center; }

@media (max-width: 720px) {
  .hero-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 64% 44%;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(248, 251, 252, 0.24) 0%, rgba(248, 251, 252, 0.72) 34%, rgba(248, 251, 252, 0.93) 52%, rgba(248, 251, 252, 0.97) 100%);
  }

  .tb-item + .tb-item { border-left: 1px solid rgba(20, 46, 63, 0.12); }

  .tb-brand { height: 13px; }

  .tb-brand-prodoctorov { height: 10px; }

  .tb-value {
    font-size: 19px;
    gap: 5px;
  }

  .tb-stars i {
    width: 7px;
    height: 7px;
  }

  .tb-count { font-size: 11px; }

  .tb-item {
    row-gap: 5px;
    border-left: 0;
    padding: 0 8px;
  }

  .tb-item:first-child {
    padding-left: 8px;
    border-left: 0;
  }

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

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

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

button:not(:disabled),
summary,
[role="button"] { cursor: pointer; }

button:disabled { cursor: default; }

.tb-count {
  color: var(--muted);
  line-height: 1.25;
  font-size: 13px;
}

.hero-play-text b { font-size: 15px; }

.hero-play-text span { font-size: 13.5px; }

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

.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;
  pointer-events: none;
}

.contacts-stage > .shell > * { pointer-events: auto; }

.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(--accent);
}

.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) {
  .button:hover { transform: translateY(-2px); }

  .modal-close:hover { background: #e2edf2; }

  .modal-submit:hover { background: var(--accent-dark); }

  .rest-button:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
  }

  .rest-button-outline:hover {
    background: var(--blue);
    color: var(--white);
  }

  .header-cta:hover { background: var(--accent-dark); }

  .main-nav a:hover { color: var(--accent-dark); }

  .contacts-row-body a:hover { color: var(--accent-dark); }

  .contacts-actions .rest-button-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
  }

  .contacts-route:hover { color: var(--accent-dark); }

  .contacts-footer .legal-links a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .mp-process-gallery figure:hover img { transform: scale(1.035); }

  .modal-consent:hover .modal-consent-box { border-color: rgba(11, 134, 179, 0.5); }

  .condition-trigger:not([aria-expanded="true"]):hover {
    background: rgba(255,255,255,.56);
    color: var(--ink);
  }

  .condition-trigger:not([aria-expanded="true"]):hover i {
    color: var(--accent);
    transform: translateX(3px);
  }
}

.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);
}

.contacts-route {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: 14.5px;
  font-weight: 600;
}

.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;
}

.contacts-footer .medical-warning {
  max-width: 430px;
  margin: 0;
  color: #4d646f;
  font-size: 13.5px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: right;
  text-transform: uppercase;
}

.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 .media-lab,
.mp-process-gallery .media-sterile { object-position: 50% 38%; }

.mp-process-gallery .media-inspection { object-position: 50% 50%; }

.mp-process-gallery .media-ultrasound { object-position: 56% 34%; }

.mp-process-gallery .media-scanner { object-position: 42% 46%; }

.mp-process-gallery .media-awards { object-position: 50% 32%; }

.mp-process-gallery .media-staff { object-position: 50% 36%; }

@media (max-width: 1120px) {
  .contacts-card {
    max-width: 580px;
    padding: 38px 36px 40px;
  }

  .contacts-stage {
    min-height: 600px;
    padding-top: 84px;
  }

  .mp-process-gallery {
    height: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}

.menu-button { background: transparent; }

.section + .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);
}

.trust-bar {
  background: rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 0.5);
}

.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(--accent);
  background: var(--accent);
}

.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(39, 107, 159, 0.62);
  outline-offset: 3px;
}

.modal-consent-text {
  color: #4d646f;
  font-size: 13px;
  line-height: 1.45;
}

.modal-consent-text a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-doctor-proof { cursor: default; }

.hero-doctor-proof .hero-play-icon::before {
  width: auto;
  height: auto;
  border: 0;
  color: #fff;
  content: "✓";
  font: 700 20px/1 Arial, sans-serif;
  transform: none;
}

.hero-mobile-kicker,
.hero-title-mobile { display: none; }

@media (max-width: 980px) {
  .proctology-hero .hero-photo { object-position: 40% 38%; }

  .proctology-hero .hero-copy h1 { font-size: clamp(32px, 9vw, 42px); }
}



.treatment-section {
  position: relative;
  scroll-margin-top: 92px;
  padding: 112px 0 124px;
  overflow: hidden;
  background: #fff;
}

.treatment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1280px, calc(100% - 64px));
  height: 1px;
  background: rgba(20,46,63,.1);
  transform: translateX(-50%);
}

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

.treatment-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: end;
  gap: 72px;
}

.treatment-heading h2 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(29px, 2.8vw, 40px)/1.06 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.04em;
}

.treatment-lead {
  max-width: 490px;
  margin: 0 0 4px;
  color: #2f4a5a;
  font-size: 18px;
  line-height: 1.52;
}

.condition-browser {
  position: relative;
  min-height: 648px;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  grid-template-rows: repeat(9, minmax(72px, auto));
  overflow: hidden;
  border: 1px solid rgba(20,46,63,.11);
  border-radius: 26px;
  background: linear-gradient(90deg, #f1f6f8 0, #f1f6f8 390px, #fff 390px, #fff 100%);
  box-shadow: 0 28px 70px rgba(20,46,63,.09);
}

.condition-item { display: contents; }

.condition-trigger {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0 27px 0 30px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(20,46,63,.09);
  background: transparent;
  color: #284555;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
  border-bottom-color: rgba(20, 46, 63, .07);
}

.condition-item:nth-child(1) .condition-trigger { grid-row: 1; }

.condition-item:nth-child(2) .condition-trigger { grid-row: 2; }

.condition-item:nth-child(3) .condition-trigger { grid-row: 3; }

.condition-item:nth-child(4) .condition-trigger { grid-row: 4; }

.condition-item:nth-child(5) .condition-trigger { grid-row: 5; }

.condition-item:nth-child(6) .condition-trigger { grid-row: 6; }

.condition-item:nth-child(7) .condition-trigger { grid-row: 7; }

.condition-item:nth-child(8) .condition-trigger { grid-row: 8; }

.condition-item:nth-child(9) .condition-trigger {
  grid-row: 9;
  border-bottom: 0;
}

.condition-trigger::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--accent-light);
  opacity: 0;
  transform: scaleY(.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.condition-trigger-number {
  color: #91a4ad;
  font: 600 13px/1 "Gilroy", sans-serif;
  letter-spacing: .04em;
}

.condition-trigger i {
  color: #78909c;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.condition-trigger[aria-expanded="true"] {
  padding-left: 34px;
  color: var(--ink);
  background: var(--white);
  border-bottom-color: transparent;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 12px 28px rgba(20, 46, 63, .09);
}

.condition-trigger[aria-expanded="true"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.condition-trigger[aria-expanded="true"] .condition-trigger-number,
.condition-trigger[aria-expanded="true"] i { color: var(--accent); }

.condition-trigger[aria-expanded="true"] i { transform: translateX(3px); }

.condition-trigger:focus-visible {
  z-index: 4;
  outline: 3px solid rgba(39,107,159,.35);
  outline-offset: -3px;
}

.condition-detail {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 10;
  min-width: 0;
  padding: 45px 52px 38px;
  overflow: hidden;
  background: #fff;
}

.condition-detail[hidden] { display: none !important; }

.condition-watermark {
  position: absolute;
  top: 20px;
  right: 34px;
  color: #173b50;
  font: 700 150px/.8 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.06em;
  opacity: .035;
  pointer-events: none;
}

.condition-watermark::before { content: attr(data-number); }

.condition-count {
  position: relative;
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.condition-detail h3 {
  position: relative;
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(22px, 1.8vw, 26px)/1.12 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.03em;
}

.condition-intro {
  position: relative;
  max-width: 720px;
  margin: 18px 0 0;
  color: #2f4a5a;
  font-size: 18px;
  line-height: 1.47;
}

.condition-facts {
  position: relative;
  margin-top: 34px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  border-top: 1px solid rgba(20,46,63,.11);
}

.condition-facts h4 {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.condition-facts ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.condition-facts li {
  position: relative;
  padding-left: 17px;
  color: #2f4a5a;
  font-size: 16px;
  line-height: 1.38;
}

.condition-facts li::before {
  content: "";
  position: absolute;
  top: .56em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

.condition-conclusion {
  position: relative;
  margin-top: 30px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(20,46,63,.11);
}

.condition-conclusion p {
  margin: 0;
  color: #2f4a5a;
  font-size: 16px;
  line-height: 1.42;
}

.condition-conclusion strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 700;
}

.condition-conclusion a,
.condition-conclusion button[data-consultation],
.diagnosis-help > a,
.diagnosis-help > button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(11, 134, 179, .18);
  transition: background 180ms ease, transform 180ms ease;
}

.condition-conclusion a span,
.condition-conclusion button[data-consultation] span,
.diagnosis-help > a span,
.diagnosis-help > button span {
  font-size: 19px;
  line-height: 1;
}

.condition-conclusion a:focus-visible,
.condition-conclusion button[data-consultation]:focus-visible,
.diagnosis-help > a:focus-visible,
.diagnosis-help > button:focus-visible {
  outline: 3px solid rgba(39,107,159,.35);
  outline-offset: 3px;
}

.diagnosis-help {
  margin-top: 26px;
  padding: 23px 26px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(20,46,63,.1);
  border-radius: 20px;
  background: #f6f9fa;
}

.diagnosis-help-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font: 700 24px/1 "Futura Medic", "Gilroy", sans-serif;
  box-shadow: inset 0 0 0 1px rgba(20,46,63,.1);
}

.diagnosis-help h3 {
  margin: 0;
  color: var(--ink);
  font: 700 21px/1.1 "Futura Medic", "Gilroy", sans-serif;
}

.diagnosis-help p {
  max-width: 720px;
  margin: 6px 0 0;
  color: #2f4a5a;
  font-size: 16px;
  line-height: 1.42;
}

.diagnosis-help > a,
.diagnosis-help > button {
  min-height: 48px;
  border: 1px solid rgba(11, 134, 179, .34);
  background: transparent;
  color: var(--accent-dark);
  box-shadow: none;
}

@media (max-width: 1100px) {
  .treatment-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    gap: 44px;
  }

  .condition-trigger {
    padding-right: 20px;
    padding-left: 22px;
    grid-template-columns: 34px minmax(0,1fr) 20px;
    gap: 8px;
    font-size: 15px;
  }

  .condition-trigger[aria-expanded="true"] { padding-left: 26px; }

  .condition-detail {
    padding-right: 38px;
    padding-left: 40px;
  }

  .condition-facts { gap: 30px; }
}

@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: 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;
  }

  .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: 40px;
  }

  .treatment-section { padding: 78px 0 88px; }

  .treatment-section::before,
  .treatment-shell { width: calc(100% - 40px); }

  .treatment-heading {
    margin-bottom: 32px;
    display: block;
  }

  .treatment-heading h2 { font-size: clamp(30px, 4.2vw, 34px); }

  .treatment-lead {
    max-width: 680px;
    margin-top: 18px;
    font-size: 17px;
  }

  .condition-item {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(20, 46, 63, .12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(20, 46, 63, .06);
    transition: border-color 200ms ease, box-shadow 200ms ease;
  }

  .condition-item.is-active {
    display: block;
    border-color: rgba(11, 134, 179, .34);
    box-shadow: 0 16px 34px rgba(20, 46, 63, .1);
  }

  .condition-trigger { display: none; }

  .condition-facts { gap: 42px; }
}

.visit-section {
  position: relative;
  scroll-margin-top: 92px;
  padding: 106px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(21, 168, 212, .14), transparent 25%),
    #f3f8fa;
}

.visit-shell {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.visit-section h2 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(29px, 2.8vw, 40px)/1.06 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.04em;
}

.visit-stage {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(410px, .84fr);
  gap: 70px;
  align-items: start;
}

.visit-video {
  position: relative;
  min-height: 558px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #dce9eb;
  box-shadow: 22px 24px 0 rgba(21, 168, 212, .16);
}

.visit-video video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
}

.visit-video-play {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  min-height: 66px;
  padding: 11px 20px 11px 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 0 10px 0 0;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  cursor: pointer;
}

.visit-video-play[hidden] { display: none; }

.visit-video-play > span:last-child {
  display: grid;
  gap: 2px;
  text-align: left;
}

.visit-video-play b {
  font-size: 14px;
  line-height: 1.05;
}

.visit-video-play small {
  color: #526e7a;
  font-size: 12px;
  line-height: 1;
}

.visit-play-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.visit-play-icon::before {
  content: "";
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.visit-copy {
  min-height: 558px;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
}

.visit-promise {
  margin: 0;
  color: var(--ink);
  font: 700 26px/1.2 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.026em;
}

.visit-promise strong {
  color: var(--accent);
  font-weight: inherit;
}

.visit-exam {
  margin: 28px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(88, 68, 51, .19);
  color: #2f4a5a;
  font-size: 16px;
  line-height: 1.52;
}

.visit-exam b {
  color: var(--ink);
  font-weight: 600;
}

.visit-facts {
  margin-top: auto;
  padding-top: 26px;
}

.visit-facts p {
  margin: 0;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 13px;
  border-bottom: 1px solid rgba(88, 68, 51, .15);
}

.visit-facts p:last-child { border-bottom: 0; }

.visit-facts i {
  width: 10px;
  height: 2px;
  margin-top: 9px;
  background: var(--accent-light);
}

.visit-facts span {
  color: #4d646f;
  font-size: 14px;
  line-height: 1.38;
}

.visit-facts b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font: 700 18px/1.15 "Futura Medic", "Gilroy", sans-serif;
}

@media (max-width: 1180px) {
  .visit-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .visit-video {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .visit-copy { min-height: 0; }

  .visit-promise { font-size: 26px; }

  .visit-facts {
    margin-top: 20px;
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }
}

@media (min-width: 1181px) and (max-width: 1269px) {
  .visit-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .visit-video,
  .visit-copy { min-height: 558px; }

  .visit-promise { font-size: 26px; }

  .visit-exam {
    margin-top: 24px;
    padding-top: 22px;
  }

  .visit-facts { padding-top: 20px; }

  .visit-facts p { padding: 11px 0; }

  .visit-facts b { font-size: 17px; }
}

@media (max-width: 430px) {
  .visit-video-play {
    min-height: 58px;
    padding: 8px 13px 8px 9px;
  }

  .visit-play-icon {
    width: 38px;
    height: 38px;
  }

  .visit-video-play b { font-size: 14px; }

  .visit-video-play small { font-size: 12px; }

  .visit-exam {
    margin-top: 23px;
    padding-top: 22px;
    font-size: 15px;
  }
}

.doctor-trust-section {
  position: relative;
  scroll-margin-top: 92px;
  padding: 86px 0 110px;
  background: #edf5f7;
  overflow: visible;
}

.doctor-trust-shell {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.doctor-trust-title {
  margin: 0;
  font: 700 clamp(29px, 2.8vw, 40px)/1.06 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.042em;
}

.doctor-trust-proof {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(20, 46, 63, .15);
}

.doctor-trust-proof article {
  min-height: 128px;
  padding: 25px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(20, 46, 63, .15);
}

.doctor-trust-proof article:first-child { padding-left: 0; }

.doctor-trust-proof article:last-child { border-right: 0; }

.doctor-trust-proof strong {
  display: block;
  font: 700 42px/.95 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.035em;
}

.doctor-trust-proof span {
  display: block;
  margin-top: 9px;
  color: #4d646f;
  font-size: 14px;
  line-height: 1.35;
}

.doctor-trust-profile {
  min-height: 615px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(410px, .78fr);
  overflow: hidden;
  border: 1px solid rgba(20,46,63,.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(28,72,94,.10);
}

.doctor-trust-copy {
  min-width: 0;
  padding: 48px 54px 44px;
  display: flex;
  flex-direction: column;
}

.doctor-trust-name {
  max-width: 650px;
  margin: 0;
  font: 700 clamp(27px, 2.4vw, 34px)/1.08 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.032em;
}

.doctor-trust-role {
  margin: 13px 0 0;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.doctor-trust-since {
  margin: 21px 0 0;
  color: #3f5d6c;
  font-size: 19px;
  line-height: 1.45;
}

.doctor-trust-facts {
  margin-top: 27px;
  border-top: 1px solid rgba(20, 46, 63, .15);
}

.doctor-trust-fact {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  border-bottom: 1px solid rgba(20, 46, 63, .15);
}

.doctor-trust-fact h3 {
  margin: 0;
  font: 700 19px/1.12 "Futura Medic", "Gilroy", sans-serif;
}

.doctor-trust-fact p {
  margin: 0;
  color: #2f4a5a;
  font-size: 16px;
  line-height: 1.5;
}

.doctor-trust-consult {
  min-height: 52px;
  margin-top: 15px;
  padding: 0 25px;
  align-self: flex-start;
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(11, 134, 179, .20);
  cursor: pointer;
}

.doctor-trust-price {
  scroll-margin-top: 92px;
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.doctor-trust-price div {
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.doctor-trust-price span {
  color: #4d646f;
  font-size: 13px;
  font-weight: 600;
}

.doctor-trust-price strong {
  color: var(--ink);
  font: 700 29px/1 "Futura Medic", "Gilroy", sans-serif;
  white-space: nowrap;
}

.doctor-trust-price p {
  margin: 0 0 2px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
}

.doctor-trust-photo {
  min-height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d9e9ed;
}

.doctor-trust-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 24%;
}

.doctor-trust-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 21px 24px;
  background: rgba(255,255,255,.93);
  color: #385461;
  font-size: 13px;
  line-height: 1.35;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.doctor-trust-photo figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.doctor-trust-reviews {
  scroll-margin-top: 92px;
  margin-top: 78px;
}

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

.doctor-trust-reviews-head h2 {
  margin: 0;
  font: 700 clamp(29px, 2.8vw, 40px)/1.06 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.032em;
}

.doctor-trust-reviews-source {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #4d646f;
  font-size: 13px;
}

.doctor-trust-reviews-source img {
  width: 138px;
  height: auto;
}

.doctor-review-slider {
  margin-top: 31px;
  position: relative;
}

.doctor-review-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.doctor-review-track {
  display: flex;
  gap: 20px;
  transition: transform .46s cubic-bezier(.2,.72,.2,1);
  will-change: transform;
}

.doctor-review-card {
  flex: 0 0 calc((100% - 20px) / 2);
  min-height: 344px;
  padding: 30px 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20,46,63,.09);
  border-radius: 13px;
  background: #fff;
}

.doctor-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.doctor-review-card-top strong {
  font-size: 15px;
  font-weight: 600;
}

.doctor-review-stars {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.doctor-review-card blockquote {
  margin: 28px 0 0;
  color: #385461;
  font-size: 17px;
  line-height: 1.58;
}

.doctor-review-card footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #58707b;
  font-size: 12px;
}

.doctor-review-card footer span:first-child {
  color: var(--blue-dark);
  font-weight: 600;
}

.doctor-review-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doctor-review-status {
  color: #4d646f;
  font-size: 13px;
}

.doctor-review-controls {
  display: flex;
  gap: 9px;
}

.doctor-review-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 46, 63, .15);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.doctor-review-controls button:disabled {
  opacity: .35;
  cursor: default;
}

.doctor-consult-modal .modal-fields { margin-top: 22px; }

.doctor-consult-modal .modal-feedback:empty { display: none; }

.doctor-consult-modal .modal-feedback:not(:empty) {
  margin-top: 2px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--error-soft);
  color: var(--error);
  font-size: 13px;
  line-height: 1.4;
}

.doctor-consult-modal .modal-feedback a {
  color: inherit;
  font-weight: 600;
}

.doctor-consult-modal .honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 980px) {
  .doctor-trust-profile { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); }

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

  .doctor-trust-fact {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }
}

h1 em,
h2 em,
h3 em {
  color: var(--accent);
  font-style: normal;
  font-weight: inherit;
}

.hero-speciality {
  max-width: 470px;
  margin: 22px 0 0;
  color: #33505f;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

@media (min-width: 981px) {
  .hero-speciality {
    font-size: 18px;
    line-height: 1.42;
  }
}

@media (min-width: 1600px) {
  .hero-speciality { font-size: 19px; }
}

@media (min-width: 2100px) {
  .hero-speciality {
    font-size: 20px;
    line-height: 1.45;
  }
}

.fact-marquee {
  position: relative;
  overflow: hidden;
  padding: 17px 0;
  background: #eaf3f7;
  border-top: 1px solid rgba(20, 46, 63, .08);
  border-bottom: 1px solid rgba(20, 46, 63, .08);
}

.fact-marquee::before,
.fact-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}

.fact-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #eaf3f7, rgba(234, 243, 247, 0));
}

.fact-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #eaf3f7, rgba(234, 243, 247, 0));
}

.fact-marquee-track {
  display: flex;
  width: max-content;
  animation: mp-marquee 54s linear infinite;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.fact-marquee.is-dragging .fact-marquee-track {
  animation-play-state: paused;
  cursor: grabbing;
}

.fact-marquee-run {
  display: flex;
  align-items: center;
  flex: none;
}

.fact-marquee-run span {
  position: relative;
  padding: 0 40px 0 0;
  margin-right: 40px;
  color: #2b4a5c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.fact-marquee-run span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--accent-light);
}

.fact-marquee-toggle { display: none; }

@keyframes mp-marquee {
  from { transform: translateX(0); }

  to { transform: translateX(-50%); }
}

.equipment-strip {
  margin-top: 52px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: start;
  gap: 16px 24px;
  border-top: 1px solid rgba(88, 68, 51, .19);
}

.equipment-strip-label {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  padding-top: 4px;
  color: #8b7a68;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.equipment-strip-origin {
  grid-column: 2;
  grid-row: 1;
  max-width: 820px;
  margin: 0;
  color: #385866;
  font-size: 16px;
  line-height: 1.42;
}

.equipment-strip ul {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px 36px;
}

.equipment-strip li {
  display: flex;
  align-items: center;
  min-height: 26px;
  color: #4d646f;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .005em;
}

@media (max-width: 820px) {
  .visit-section {
    scroll-margin-top: 72px;
    padding: 56px 0 60px;
  }

  .visit-shell { width: min(100% - 32px, 680px); }

  .visit-section h2 {
    font-size: clamp(28px, 4.2vw, 34px);
    line-height: .98;
  }

  .visit-stage {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .visit-video {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    box-shadow: 10px 12px 0 rgba(21, 168, 212, .16);
  }

  .visit-copy {
    min-height: 0;
    padding-top: 0;
  }

  .visit-promise { font-size: 26px; }

  .visit-facts {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .equipment-strip {
    margin-top: 34px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .equipment-strip-label {
    grid-column: 1;
    grid-row: auto;
    padding-top: 0;
  }

  .equipment-strip-origin {
    grid-column: 1;
    grid-row: auto;
    max-width: 620px;
  }

  .equipment-strip ul {
    grid-column: 1;
    grid-row: auto;
    gap: 10px 24px;
  }

  .equipment-strip li { font-size: 13.5px; }
}

@media (max-width: 520px) {
  .equipment-strip ul { grid-template-columns: 1fr; }
}

.condition-browser {
  background: linear-gradient(90deg, #e6f0f5 0, #e6f0f5 390px, #fff 390px, #fff 100%);
}

@media (max-width: 1100px) {
  .condition-browser {
    grid-template-columns: 330px minmax(0, 1fr);
    background: linear-gradient(90deg, #e6f0f5 0, #e6f0f5 330px, #fff 330px, #fff 100%);
  }
}

.doctor-education > summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font: 700 17px/1.2 "Futura Medic", "Gilroy", sans-serif;
  cursor: pointer;
  list-style: none;
}

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

.doctor-education > summary i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-style: normal;
  line-height: 1;
  transition: transform 200ms ease;
}

.doctor-education[open] > summary i { transform: rotate(180deg); }

.doctor-education-body { padding: 4px 0 20px; }

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

.doctor-education-body li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.doctor-education-body li strong {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}

.doctor-education-body li span {
  color: #4d646f;
  font-size: 14px;
  line-height: 1.45;
}

.doctor-education-body h4 {
  margin: 20px 0 12px;
  color: var(--ink);
  font: 700 15px/1.2 "Futura Medic", "Gilroy", sans-serif;
}

.choice-badge {
  position: absolute;
  z-index: 6;
  right: max(24px, calc(50% - 640px + 32px));
  bottom: -30px;
  margin: 0;
  padding: 13px 22px 13px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(20, 46, 63, .2);
}

.choice-badge-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 17px;
  line-height: 1;
}

.choice-badge-body {
  display: grid;
  gap: 3px;
}

.choice-badge-body b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
}

.choice-badge-body span {
  color: #58707b;
  font-size: 12px;
  line-height: 1.15;
}

.photo-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #dfe9ec;
}

.photo-divider picture,
.photo-divider img {
  display: block;
  width: 100%;
}

.photo-divider img {
  height: clamp(280px, 30vw, 430px);
  object-fit: cover;
  object-position: 50% 40%;
}

.photo-divider-line {
  position: absolute;
  z-index: 2;
  left: max(24px, calc(50% - 640px));
  bottom: 34px;
  max-width: min(620px, calc(100% - 48px));
  margin: 0;
  padding: 17px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font: 600 19px/1.32 "Futura Medic", "Gilroy", sans-serif;
  letter-spacing: -.012em;
  box-shadow: 0 18px 44px rgba(20, 46, 63, .16);
}

@media (max-width: 760px) {
  .doctor-trust-section {
    scroll-margin-top: 72px;
    padding: 48px 0 56px;
  }

  .doctor-trust-shell { width: calc(100% - 30px); }

  .doctor-trust-title { font-size: 30px; }

  .doctor-trust-proof {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .doctor-trust-proof article {
    min-height: 82px;
    padding: 17px 0;
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 46, 63, .15);
  }

  .doctor-trust-proof article:last-child { border-bottom: 0; }

  .doctor-trust-proof strong { font-size: 26px; }

  .doctor-trust-proof span {
    margin-top: 0;
    font-size: 15px;
  }

  .doctor-trust-profile {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .doctor-trust-copy {
    grid-row: 1;
    padding: 31px 23px 28px;
  }

  .doctor-trust-name { font-size: 28px; }

  .doctor-trust-role { font-size: 16px; }

  .doctor-trust-since {
    margin-top: 18px;
    font-size: 17px;
  }

  .doctor-trust-facts { margin-top: 22px; }

  .doctor-trust-fact {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px 0;
  }

  .doctor-trust-fact h3 { font-size: 18px; }

  .doctor-trust-fact p { font-size: 16px; }

  .doctor-trust-consult {
    width: 100%;
    margin-top: 14px;
  }

  .doctor-trust-price {
    scroll-margin-top: 72px;
    padding-top: 20px;
    display: block;
  }

  .doctor-trust-price div { justify-content: space-between; }

  .doctor-trust-price strong { font-size: 28px; }

  .doctor-trust-price p { margin-top: 7px; }

  .doctor-trust-photo {
    grid-row: 2;
    min-height: 430px;
  }

  .doctor-trust-photo img { object-position: 50% 24%; }

  .doctor-trust-reviews {
    scroll-margin-top: 72px;
    margin-top: 55px;
  }

  .doctor-trust-reviews-head { display: block; }

  .doctor-trust-reviews-head h2 { font-size: 30px; }

  .doctor-trust-reviews-source { margin-top: 16px; }

  .doctor-trust-reviews-source img { width: 122px; }

  .doctor-review-card {
    flex-basis: 100%;
    min-height: 390px;
    padding: 25px 23px;
  }

  .doctor-review-card blockquote {
    font-size: 16px;
    line-height: 1.55;
  }

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

  .doctor-education-body li {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
  }

  .choice-badge {
    right: 16px;
    left: 16px;
    bottom: -26px;
    padding: 11px 18px 11px 12px;
    justify-content: center;
  }

  .choice-badge-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 15px;
  }

  .choice-badge-body b { font-size: 14px; }

  .photo-divider img { height: 260px; }

  .photo-divider-line {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: none;
    padding: 14px 17px;
    border-radius: 14px;
    font-size: 16px;
  }
}

.mp-clinic-local {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 9px 17px 9px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
}

.mp-clinic-local::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.mp-process-gallery.mosaic-gallery {
  height: auto;
  margin-top: 46px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, 192px);
  grid-auto-flow: row dense;
  gap: 10px;
  border-radius: 30px;
}

.mosaic-gallery figure:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
}

.mosaic-gallery figure.mp-process-main:nth-child(n) {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-gallery figure.mosaic-tall:nth-child(n),
.mosaic-gallery figure.mosaic-video:nth-child(n) {
  grid-column: span 1;
  grid-row: span 2;
}

.mosaic-gallery figure.mosaic-wide:nth-child(n) {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-gallery .mosaic-play {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 60px;
  padding: 10px 14px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

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

.mosaic-play-icon::before {
  content: "";
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.mosaic-play-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mosaic-play-text b {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.15;
}

.mosaic-play-text small {
  color: #58707b;
  font-size: 12px;
  line-height: 1.15;
}

@media (max-width: 1120px) {
  .mp-process-gallery.mosaic-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, 168px);
  }
}

@media (max-width: 900px) {
  .mp-process-gallery.mosaic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 156px;
    gap: 8px;
    border-radius: 22px;
  }

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

  .mosaic-gallery figure.mosaic-tall:nth-child(n),
  .mosaic-gallery figure.mosaic-video:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .mosaic-gallery .mosaic-play {
    min-height: 52px;
    padding: 8px 12px 8px 8px;
    gap: 10px;
  }

  .mosaic-play-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .mosaic-play-text small { display: none; }
}

@media (max-width: 560px) {
  .mp-process-gallery { grid-auto-rows: 142px; }

  .mp-process-gallery.mosaic-gallery { grid-auto-rows: 132px; }

  .mosaic-play-text b { font-size: 13.5px; }

  .mosaic-play-text small { font-size: 12px; }
}

.header-messenger {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 46, 63, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  color: var(--blue-dark);
  transition: background 160ms ease, border-color 160ms ease;
}

.header-messenger img {
  width: 24px;
  height: 24px;
  display: block;
}

.mobile-messenger { display: none; }

.mobile-messenger img {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 1300px) {
  .main-nav { display: none; }

  .header-inner { grid-template-columns: 204px 1fr auto auto; }

  .menu-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: 10px;
    border: 1px solid rgba(20, 46, 63, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .8);
    color: var(--blue-dark);
  }

  .menu-button::before,
  .menu-button::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button::before { transform: translateY(-4px); }

  .menu-button::after { transform: translateY(4px); }

  .menu-button[aria-expanded="true"]::before { transform: rotate(45deg); }

  .menu-button[aria-expanded="true"]::after { transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 9;
    top: 84px;
    right: 20px;
    left: auto;
    width: 320px;
    padding: 12px;
    border: 1px solid rgba(20, 46, 63, .1);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(20, 46, 63, .16);
  }

  .mobile-menu[data-open="true"] {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a,
  .mobile-menu-cta {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #edf5f8;
    color: #294655;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 6px;
    min-height: 52px;
    justify-content: center;
    border: 0;
    background: var(--accent);
    color: var(--white);
    cursor: pointer;
  }

  .header-actions { justify-content: flex-end; }
}

.modal-messenger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
}

.modal-messenger::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.mobile-menu {
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  background: var(--white);
}

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

.mobile-menu-phone {
  margin-top: 6px;
  padding: 11px 14px !important;
  display: grid !important;
  gap: 3px;
  align-items: start !important;
  min-height: 56px;
  border-radius: 10px;
  background: #edf5f8;
}

.mobile-menu-phone strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.mobile-menu-phone span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.mp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms cubic-bezier(.2, .7, .2, 1), transform 720ms cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}

.mp-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.media-play {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  min-height: 64px;
  padding: 11px 22px 11px 11px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 0 14px 0 0;
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

.media-play[hidden] { display: none; }

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

.media-play-icon::before {
  content: "";
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.media-play-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.media-play-text b {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.15;
}

.media-play-text small {
  color: #58707b;
  font-size: 12.5px;
  line-height: 1.15;
}

.mp-clinic-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #dfe9ec;
}

.mp-clinic-video.is-playing video { object-fit: cover; }

.mp-clinic-video.is-playing::after { display: none; }

.mp-clinic-video.is-playing figcaption { display: none; }

.cookie-note {
  position: fixed;
  z-index: 55;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 620px;
  margin: 0 auto;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(20, 46, 63, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(20, 46, 63, .14);
  transition: opacity 240ms ease;
}

.cookie-note[hidden] { display: none; }

.cookie-note p {
  margin: 0;
  color: #55707c;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-note a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-note-accept {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(20, 46, 63, .3);
  border-radius: var(--r-btn);
  background: transparent;
  color: #294655;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

@media (hover: hover) {
  .condition-conclusion a:hover,
  .condition-conclusion button[data-consultation]:hover,
  .diagnosis-help > a:hover,
  .diagnosis-help > button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
  }

  .diagnosis-help > a:hover,
  .diagnosis-help > button:hover {
    background: var(--accent-soft);
    color: var(--accent-dark);
  }

  .visit-video-play { transition: background-color 180ms ease; }

  .visit-video-play:hover { background: #fff; }

  .doctor-trust-consult:hover { background: var(--accent-dark); }

  .fact-marquee:hover .fact-marquee-track { animation-play-state: paused; }

  .doctor-education > summary:hover i { background: rgba(11, 134, 179, .16); }

  .mosaic-gallery .mosaic-play:hover { background: #fff; }

  .header-messenger:hover {
    background: #fff;
    border-color: rgba(39, 107, 159, .4);
  }

  .modal-messenger:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .doctor-review-card,
  .diagnosis-help { transition: transform 240ms ease, box-shadow 240ms ease; }

  .doctor-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(20, 46, 63, .1);
  }

  .diagnosis-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(20, 46, 63, .08);
  }

  .mosaic-gallery figure { transition: transform 240ms ease; }

  .mosaic-gallery figure:hover { transform: translateY(-3px); }

  .media-play:hover { background: #fff; }

  .cookie-note-accept:hover {
    background: rgba(20, 46, 63, .06);
    border-color: rgba(20, 46, 63, .45);
  }

  .condition-teaser:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(39, 107, 159, .38);
  }

  .video-modal-close:hover { background: #f2f7f9; }
}

.mp-clinic-video figcaption {
  left: auto;
  right: 24px;
}

.nowrap { white-space: nowrap; }

.hero-actions { display: block; }

.hero-actions .button-primary { min-width: 306px; }

.hero-award-icon { background: var(--accent); }

.hero-doctor-proof .hero-award-icon::before { content: none; }

.hero-award-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #fff;
}

.tb-item-doctor { display: none; }

@media (max-width: 720px) {
  .fact-marquee { padding: 14px 0; }

  .fact-marquee::before,
  .fact-marquee::after { width: 44px; }

  .fact-marquee-run span {
    padding-right: 28px;
    margin-right: 28px;
    font-size: 14px;
  }

  .menu-button { margin-left: 0; }

  .mobile-messenger {
    display: grid;
    place-items: center;
    border: 1px solid rgba(20, 46, 63, .13);
    background: rgba(255, 255, 255, .8);
    color: var(--blue-dark);
  }

  .header-messenger { display: none; }

  .mobile-menu {
    top: 74px;
    right: 0;
    left: 0;
    width: auto;
    padding: 14px 16px 20px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(20, 46, 63, .1);
    box-shadow: 0 16px 34px rgba(20, 46, 63, .12);
  }

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

  .mp-clinic-video figcaption {
    right: 14px;
    bottom: 14px;
  }

  .tb-item-doctor .tb-brand {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .tb-item-doctor .tb-count {
    align-items: center;
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
  }


  .hero-actions .button-primary { min-width: 0; }

  .trust-bar { margin-top: 20px; }
}

.header-messenger,
.mobile-messenger { color: var(--blue-dark); }

.mobile-menu-messenger {
  background: #edf5f8 !important;
  color: #294655 !important;
}

.mp-clinic-directions,
.mp-clinic-experience { transition: opacity 320ms ease; }

body.has-playing-media .cookie-note {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 620px) {
  .treatment-section {
    scroll-margin-top: 74px;
    padding: 56px 0 56px;
  }

  .treatment-section::before,
  .treatment-shell { width: calc(100% - 32px); }

  .treatment-heading { margin-bottom: 26px; }

  .treatment-heading h2 {
    font-size: clamp(28px, 8vw, 32px);
    line-height: .98;
  }

  .treatment-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .condition-browser { border-radius: 18px; }

  .condition-detail { padding: 29px 20px 24px; }

  .condition-watermark {
    top: 22px;
    right: 17px;
    font-size: 96px;
  }

  .condition-count {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .condition-detail h3 {
    max-width: 290px;
    font-size: 24px;
    line-height: 1.02;
  }

  .condition-intro {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.43;
  }

  .condition-facts {
    margin-top: 25px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .condition-facts h4 {
    margin-bottom: 12px;
    font-size: 14.5px;
  }

  .condition-facts ul { gap: 8px; }

  .condition-facts li {
    font-size: 16px;
    line-height: 1.38;
  }

  .condition-conclusion {
    margin-top: 25px;
    padding-top: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .condition-conclusion a,
  .condition-conclusion button[data-consultation] { width: 100%; }

  .diagnosis-help {
    margin-top: 16px;
    padding: 20px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    border-radius: 17px;
  }

  .diagnosis-help-mark {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .diagnosis-help h3 { font-size: 19px; }

  .diagnosis-help p {
    margin-top: 6px;
    font-size: 16px;
  }

  .diagnosis-help > a,
  .diagnosis-help > button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .media-play {
    min-height: 56px;
    padding: 9px 16px 9px 9px;
    gap: 11px;
  }

  .media-play-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .media-play-text b { font-size: 14.5px; }

  .media-play-text small { font-size: 13px; }

  .cookie-note {
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
  }

  .cookie-note p {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13.5px;
    line-height: 1.3;
  }

  .cookie-note-accept {
    width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .condition-trigger,
  .condition-trigger::before,
  .condition-trigger i,
  .condition-conclusion a,
  .condition-conclusion button[data-consultation],
  .diagnosis-help > a,
  .diagnosis-help > button { transition: none; }

  .visit-video-play { transition: none; }

  .doctor-review-track { transition: none; }

  .fact-marquee {
    padding-right: max(24px, calc(50% - 640px));
    padding-left: max(24px, calc(50% - 640px));
  }

  .fact-marquee-track {
    animation: none;
    width: 100%;
  }

  .fact-marquee-run:nth-child(2),
  .fact-marquee-repeat { display: none; }

  .fact-marquee-run {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }

  .fact-marquee-run span:last-child {
    padding-right: 0;
    margin-right: 0;
  }

  .fact-marquee-run span:last-child::after { display: none; }

  .fact-marquee::before,
  .fact-marquee::after { display: none; }

  .mp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .doctor-education > summary i,
  .mosaic-gallery figure,
  .mosaic-gallery .mosaic-play,
  .doctor-review-card,
  .diagnosis-help,
  .header-messenger { transition: none; }

  .media-play { transition: none; }

  .cookie-note-accept { transition: none; }

  .mp-clinic-directions,
  .mp-clinic-experience,
  .cookie-note { transition: none; }

  .condition-item,
  .condition-detail,
  .condition-accordion::before,
  .condition-accordion-number,
  .condition-accordion-chevron,
  .condition-teaser,
  .mp-clinic-photo,
  .mp-clinic-directions,
  .mp-clinic-experience { transition: none !important; }
}

.condition-accordion {
  display: none;
  scroll-margin-top: 88px;
}

@media (max-width: 900px) {
  .condition-browser {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    min-height: 0;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .condition-accordion {
    position: relative;
    width: 100%;
    min-height: 62px;
    padding: 14px 52px 14px 20px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
  }

  .condition-accordion::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--accent-light);
    opacity: 0;
    transform: scaleY(.4);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .condition-accordion[aria-expanded="true"]::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .condition-accordion-number {
    font: 600 13px/1 "Gilroy", sans-serif;
    letter-spacing: .05em;
    transition: color 200ms ease;
    color: #526d79;
  }

  .condition-accordion[aria-expanded="true"] .condition-accordion-number { color: var(--accent); }

  .condition-accordion-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.22;
  }

  .condition-accordion-chevron {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    margin-top: -7px;
    border-right: 2px solid #78909c;
    border-bottom: 2px solid #78909c;
    transform: rotate(45deg);
    transition: transform 220ms ease, border-color 200ms ease;
  }

  .condition-accordion[aria-expanded="true"] .condition-accordion-chevron {
    margin-top: -3px;
    border-color: var(--accent);
    transform: rotate(-135deg);
  }

  .condition-detail {
    min-height: 0;
    display: grid !important;
    grid-template-rows: 0fr;
    padding: 0;
    transition: grid-template-rows 340ms cubic-bezier(.3, .7, .3, 1);
  }

  .condition-detail[hidden] {
    display: grid !important;
    grid-template-rows: 0fr;
  }

  .condition-item.is-active .condition-detail { grid-template-rows: 1fr; }

  .condition-detail > * { min-height: 0; }

  .condition-detail-inner {
    min-height: 0;
    overflow: hidden;
    grid-row: 1;
    padding: 0 20px;
  }

  .condition-item.is-active .condition-detail-inner { padding-bottom: 24px; }

  .condition-detail .condition-count { display: none; }

  .condition-detail h3 {
    max-width: none;
    padding-top: 4px;
    font-size: clamp(22px, 3vw, 26px);
  }

  .condition-intro {
    max-width: 620px;
    margin-top: 12px;
  }

  .condition-watermark { display: none; }

  .mp-clinic-stage.is-swapped .mp-clinic-photo {
    order: 2;
    margin-top: 18px;
  }

  .mp-clinic-stage.is-swapped .mp-clinic-directions {
    order: 1;
    margin-top: 0;
  }

  .mp-clinic-video .media-play {
    bottom: 50px;
    border-radius: 0 14px 14px 0;
  }

  .mp-clinic-video.is-playing .media-play { bottom: 0; }
}

.condition-teaser {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 10px 20px 10px 10px;
  border: 1px solid rgba(20, 46, 63, .12);
  border-radius: 16px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  background: var(--blue-soft);
  border-color: rgba(39, 107, 159, .18);
  color: var(--ink);
}

.condition-teaser-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 104px;
  height: 76px;
  overflow: hidden;
  border-radius: 12px;
  background: #dfe9ec;
}

.condition-teaser-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
}

.condition-teaser-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 6px 16px rgba(20, 46, 63, .28);
}

.condition-teaser-play::before {
  content: "";
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.condition-teaser-text {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-right: 4px;
  white-space: normal;
}

.condition-teaser-text b {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.condition-teaser-text small {
  color: #4d646f;
  font-size: 13px;
  line-height: 1.2;
}

.condition-conclusion {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.condition-item[data-condition-item="hemorrhoids"] .condition-conclusion {
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto) auto;
  gap: 22px;
}

@media (max-width: 1100px) {
  .condition-item[data-condition-item="hemorrhoids"] .condition-conclusion {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 18px;
  }

  .condition-item[data-condition-item="hemorrhoids"] .condition-teaser {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.video-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 32, 44, .62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-modal[data-open="true"] { display: flex; }

.video-modal-frame {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 48px);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(12, 32, 44, .34);
}

.video-modal video {
  width: 100%;
  max-height: calc(100vh - 150px);
  display: block;
  border-radius: 14px;
  background: #eef4f6;
  object-fit: contain;
}

.video-modal-caption {
  margin: 0;
  padding: 0 4px 2px;
  color: #4d646f;
  font-size: 13.5px;
  line-height: 1.35;
  text-align: center;
}

.video-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 46, 63, .12);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 32, 44, .22);
}

@media (max-width: 620px) {
  .condition-teaser {
    min-height: 92px;
    padding: 9px 14px 9px 9px;
    gap: 12px;
  }

  .condition-teaser-thumb {
    width: 92px;
    height: 72px;
  }

  .condition-teaser-text b { font-size: 14px; }

  .condition-teaser-text small { font-size: 13.5px; }

  .video-modal { padding: 14px; }

  .video-modal-frame {
    padding: 12px;
    border-radius: 18px;
  }

  .video-modal-close {
    top: -10px;
    right: -10px;
    width: 42px;
    height: 42px;
  }

  .video-modal video { max-height: calc(100vh - 130px); }
}

.mp-clinic-photo,
.mp-clinic-directions,
.mp-clinic-experience { will-change: transform; }

@media (max-width: 360px) {
  .doctor-trust-proof article { grid-template-columns: 116px 1fr; }

  .doctor-trust-proof strong { font-size: 24px; }

  .doctor-trust-name { font-size: 27px; }

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

  .tb-item-doctor {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 6px;
  }

  .tb-item-doctor .tb-brand { grid-row: 1; }

  .tb-item-doctor .tb-value { font-size: 19px; }

  .tb-item-doctor .tb-stars i {
    width: 8px;
    height: 8px;
  }

  .tb-item-doctor .tb-count { font-size: 13px; }

  .header-inner {
    grid-template-columns: 104px 1fr auto auto auto;
    gap: 5px;
  }

  .brand { width: 100px; }

  .mobile-messenger img,
  .mobile-call svg {
    width: 20px;
    height: 20px;
  }
}

.doctor-review-track.is-dragging {
  transition: none;
  cursor: grabbing;
}


@media (max-width: 720px) {
  .tb-item-doctor {
    align-items: center;
    padding-top: 13px;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    column-gap: 14px;
    row-gap: 4px;
    margin-top: 14px;
    padding: 14px 12px 0;
    border-top: 1px solid rgba(20, 46, 63, .12);
    border-left: 0;
  }

  .tb-item-doctor .tb-brand {
    grid-column: 1;
    margin: 0;
  }

  .tb-item-doctor .tb-value {
    grid-row: 1;
    grid-column: 2;
    justify-content: flex-start;
    font-size: 21px;
  }


  .mobile-messenger::after,
  .mobile-call::after,
  .menu-button::before,
  .menu-button::after { pointer-events: none; }

  .mobile-messenger::after,
  .mobile-call::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .site-header { height: 88px; }

  .header-inner {
    align-items: center;
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr) repeat(3, 45px);
    gap: 10px;
  }

  .brand {
    width: 158px;
    max-width: 158px;
  }

  .mobile-messenger,
  .mobile-call,
  .menu-button {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 14px;
  }

  .mobile-menu { top: 88px; }


  .trust-bar { margin-top: 0; }
}

@media (max-width: 380px) {
  .header-inner { gap: 8px; }

  .brand {
    width: 148px;
    max-width: 148px;
  }
}

.tb-choice { display: none; }

@media (max-width: 720px) {
  .treatment-heading h2,
  .visit-section h2,
  .doctor-trust-title,
  .doctor-trust-name,
  .doctor-trust-reviews-head h2 {
    font-size: 27px;
    line-height: 1.15;
  }

  .condition-detail h3 { font-size: 24px; }

  .visit-promise {
    font-size: 24px;
    line-height: 1.25;
  }

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

  .trust-bar {
    border-radius: 0;
    background: rgba(255, 255, 255, .95);
  }

  .tb-inner {
    width: 100%;
    justify-content: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0;
    padding: 24px 14px 20px;
  }

  .tb-item,
  .tb-item-doctor {
    display: grid;
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    row-gap: 3px;
    margin: 0;
    padding: 0 10px;
    border-top: 0;
    border-left: 1px solid rgba(20, 46, 63, .12);
  }

  .tb-item-clinic { display: none; }

  .tb-item .tb-brand,
  .tb-item-doctor .tb-brand {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    height: auto;
    max-width: 94px;
    max-height: 18px;
  }

  .tb-item .tb-value,
  .tb-item-doctor .tb-value {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    margin-top: 5px;
    font-size: 24px;
  }

  .tb-item .tb-count,
  .tb-item-doctor .tb-count {
    grid-column: 1;
    grid-row: 3;
    display: block;
    font-size: 12.5px;
    line-height: 1.15;
  }

  .tb-item-doctor .tb-stars i {
    width: 8px;
    height: 8px;
  }

  .tb-choice {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
    padding: 13px 8px;
    border-radius: 999px;
    background: #fff3dc;
    color: #8b5a00;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
  }

  .tb-choice::before {
    content: "★";
    font-size: 14px;
  }

  .condition-intro {
    font-size: 16px;
    line-height: 1.43;
  }

  .condition-facts h4 {
    font-size: 16px;
    line-height: 1.25;
  }

  .condition-facts li {
    font-size: 16px;
    line-height: 1.4;
  }

  .condition-conclusion > p {
    font-size: 16px;
    line-height: 1.45;
  }

  .visit-exam {
    font-size: 16px;
    line-height: 1.5;
  }

  .visit-facts span {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-copy button[data-consultation],
  .condition-conclusion button[data-consultation],
  .diagnosis-help > button,
  .doctor-trust-consult,
  .contacts-actions .rest-button,
  .modal-submit { font-size: 16px; }

  .diagnosis-help p {
    font-size: 16px;
    line-height: 1.42;
  }

  .equipment-strip-label {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .equipment-strip li {
    font-size: 15px;
    line-height: 1.32;
  }

  .contacts-footer .medical-warning,
  .medical-warning {
    font-size: 14px;
    line-height: 1.45;
  }

  .condition-accordion { scroll-margin-top: 86px; }
}

@media (min-width: 901px) {
  .mp-clinic-stage.is-swapped .mp-clinic-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 64%;
    height: 610px;
  }

  .mp-clinic-stage.is-swapped .mp-clinic-directions {
    left: 0;
    right: auto;
    top: 0;
    width: 33%;
  }

  .mp-clinic-stage.is-swapped .mp-clinic-experience {
    left: 0;
    right: auto;
    bottom: 0;
    width: 33%;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .mp-clinic-stage.is-swapped .mp-clinic-experience > div { grid-template-columns: minmax(0, 1fr); }

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

  .condition-facts li {
    font-size: 16px;
    line-height: 1.42;
  }

  .condition-conclusion > p {
    font-size: 16px;
    line-height: 1.47;
  }

  .visit-facts span {
    font-size: 15px;
    line-height: 1.42;
  }
}

@media (max-width: 360px) {
  .tb-item,
  .tb-item-doctor { padding: 0 6px; }

  .tb-item .tb-value,
  .tb-item-doctor .tb-value { font-size: 21px; }

  .tb-item .tb-count,
  .tb-item-doctor .tb-count { font-size: 11.5px; }

  .tb-choice { font-size: 12.5px; }

  .equipment-strip li { font-size: 14.5px; }

  .contacts-footer .medical-warning,
  .medical-warning { font-size: 13.5px; }
}

.condition-browser.is-anchor-jump .condition-detail,
.condition-browser.is-anchor-jump .condition-detail-inner,
.condition-browser.is-anchor-jump .condition-item { transition: none !important; }

.condition-browser.is-initializing .condition-detail,
.condition-browser.is-initializing .condition-detail-inner,
.condition-browser.is-initializing .condition-item { transition: none !important; }

@media (min-width: 1101px) {
  .condition-item[data-condition-item="hemorrhoids"] .condition-conclusion {
    grid-template-columns: minmax(0, 1fr) minmax(236px, 304px) auto;
    gap: 18px;
  }
}

@media (max-width: 359px) {
  .site-header { height: 78px; }

  .header-inner {
    width: calc(100% - 20px);
    grid-template-columns: minmax(0, 1fr) repeat(3, 44px);
    gap: 6px;
  }

  .brand {
    width: 118px;
    max-width: 118px;
  }

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

  .mobile-menu {
    top: 78px;
    max-height: calc(100dvh - 74px);
    padding: 8px 12px 12px;
  }


  .mobile-menu[data-open="true"] { gap: 4px; }

  .mobile-menu > a:not(.mobile-menu-phone):not(.mobile-menu-messenger) {
    min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
  }

  .mobile-menu-phone {
    min-height: 48px;
    margin-top: 2px;
    padding: 7px 12px !important;
  }

  .mobile-menu-phone strong { font-size: 16px; }

  .mobile-menu-phone span { font-size: 12px; }

  .mobile-menu-messenger {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }

  .mobile-menu-cta {
    min-height: 44px;
    margin-top: 2px;
    font-size: 14px;
  }

  .cookie-note {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 8px;
    padding: 8px 10px;
  }

  .cookie-note p {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .cookie-note-accept {
    padding: 0 12px;
    font-size: 14px;
    min-height: 44px;
  }

  .mobile-menu > a:not(.mobile-menu-phone):not(.mobile-menu-messenger),
  .mobile-menu-messenger { min-height: 44px !important; }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  background: #123247;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transform: translateY(calc(-100% - 20px));
  transition: transform 160ms ease;
}

@media (min-width: 981px) and (max-width: 1200px) {
  .proctology-hero .hero-inner {
    width: calc(100% - 40px);
    grid-template-columns: minmax(0, 48%) 1fr;
  }

  .proctology-hero .hero-copy {
    width: 100%;
    max-width: none;
  }

  .proctology-hero .hero-copy h1 {
    max-width: none;
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 1.2;
  }

  .proctology-hero .hero-list {
    max-width: none;
    margin-top: 26px;
    gap: 14px;
  }

  .proctology-hero .hero-list li {
    font-size: clamp(19px, 1.75vw, 25px);
    line-height: 1.34;
  }

  .proctology-hero .hero-speciality {
    max-width: 470px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.36;
  }

  .proctology-hero .hero-actions { margin-top: 17px; }

  .proctology-hero .hero-photo {
    right: 0;
    width: 48%;
    object-position: 50% 40%;
  }
}

.skip-link:focus-visible { transform: translateY(0); }

#main-content:focus { outline: 0; }

.modal-fields input:focus-visible {
  outline: 3px solid #276b9f;
  outline-offset: 2px;
  border-color: #276b9f;
  background: #fff;
}

.visit-video-play small,
.media-play-text small,
.mosaic-play-text small { color: #47636f; }

@media (max-width: 900px) {
  .condition-teaser {
    padding-right: 16px;
    gap: 13px;
  }

  .condition-teaser-text { padding-right: 2px; }

  .condition-conclusion,
  .condition-item[data-condition-item="hemorrhoids"] .condition-conclusion {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
  }

  .condition-conclusion p { grid-row: 1; }

  .condition-conclusion button[data-consultation] {
    grid-row: 2;
    width: 100%;
  }

  .condition-item[data-condition-item="hemorrhoids"] .condition-teaser {
    grid-column: auto;
    grid-row: 3;
    width: 100%;
  }

  .contacts-row-body a,
  .contacts-route,
  .contacts-footer .legal-links a { min-height: 44px; }
}

@media (min-width: 721px) and (max-width: 900px) {
  .cookie-note {
    max-width: 520px;
    padding: 9px 12px;
  }

  .cookie-note p {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12.5px;
    line-height: 1.25;
  }

  .cookie-note-accept {
    min-height: 44px;
    padding: 0 16px;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .proctology-hero .hero-play { display: none; }

  .header-phone {
    min-height: 44px;
    justify-content: center;
  }

  .header-messenger {
    width: 46px;
    min-width: 46px;
    flex: 0 0 46px;
  }

  .proctology-hero {
    --tablet-copy-width: clamp(460px, 52vw, 510px);
    background: #f7fafb;
  }

  .proctology-hero .hero-photo {
    top: 92px;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(62%, calc(100% - var(--tablet-copy-width) + 120px));
    height: calc(100% - 92px);
    object-position: 50% 32%;
  }

  .proctology-hero .hero-media::after {
    display: block;
    background:
      linear-gradient(90deg,
        rgba(247, 250, 251, 1) 0,
        rgba(247, 250, 251, .995) calc(var(--tablet-copy-width) + 20px),
        rgba(247, 250, 251, .72) calc(var(--tablet-copy-width) + 40px),
        rgba(247, 250, 251, 0) calc(var(--tablet-copy-width) + 80px)),
      linear-gradient(180deg,
        rgba(247, 250, 251, .08) 0,
        rgba(247, 250, 251, 0) 64%,
        rgba(247, 250, 251, .18) 100%);
  }

  .proctology-hero .hero-inner {
    width: calc(100% - 40px);
    padding-top: 150px;
  }

  .proctology-hero .hero-copy {
    width: var(--tablet-copy-width);
    max-width: calc(100% - 40px);
    margin-left: 0;
  }

  .proctology-hero .hero-copy h1 {
    max-width: none;
    font-size: clamp(38px, 4.3vw, 42px);
    line-height: 1.01;
  }

  .proctology-hero .hero-list {
    margin-top: 20px;
    gap: 8px;
  }


  .proctology-hero .hero-speciality { margin-top: 9px; }

  .proctology-hero .hero-actions { margin-top: 16px; }

  .cookie-note {
    right: auto;
    bottom: 16px;
    left: 20px;
    width: min(460px, calc(100% - 40px));
    max-width: none;
    margin: 0;
    padding: 9px 12px;
    gap: 12px;
  }

  .cookie-note p {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12.5px;
    line-height: 1.25;
  }

  .cookie-note-accept {
    min-height: 44px;
    padding: 0 16px;
  }
}

@media (min-width: 981px) {
  .doctor-trust-profile { overflow: visible; }

  .doctor-trust-photo {
    margin: -44px -26px -16px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 64px rgba(20, 46, 63, .2);
  }

  .doctor-trust-photo img { object-position: 50% 20%; }

  .cookie-note {
    right: 20px;
    bottom: 20px;
    left: auto;
    width: min(400px, calc(100% - 40px));
    max-width: none;
    margin: 0;
    padding: 16px 18px;
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(20, 46, 63, 0.18);
  }

  .cookie-note p {
    min-width: 0;
    color: #4d646f;
    font-size: 14px;
    line-height: 1.45;
  }

  .cookie-note a {
    color: var(--accent);
    text-decoration: none;
  }

  .cookie-note-accept {
    width: 100%;
    min-height: 44px;
    padding: 0;
    border-radius: 12px;
  }
}

@media (hover: hover) and (min-width: 981px) {
  .cookie-note a:hover { text-decoration: underline; }
}

@media (max-width: 820px) {
  .doctor-trust-section {
    scroll-margin-top: 72px;
    padding: 48px 0 56px;
  }

  .doctor-trust-shell { width: calc(100% - 30px); }

  .doctor-trust-proof {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .doctor-trust-proof article {
    min-height: 82px;
    padding: 17px 0;
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 46, 63, .15);
  }

  .doctor-trust-proof article:last-child { border-bottom: 0; }

  .doctor-trust-proof strong { font-size: 26px; }

  .doctor-trust-proof span {
    margin-top: 0;
    font-size: 15px;
  }

  .doctor-trust-profile {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .doctor-trust-copy {
    grid-row: 1;
    padding: 31px 23px 28px;
  }

  .doctor-trust-facts { margin-top: 22px; }

  .doctor-trust-fact {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px 0;
  }

  .doctor-trust-consult { width: 100%; }

  .doctor-trust-price {
    padding-top: 20px;
    display: block;
  }

  .doctor-trust-price div { justify-content: space-between; }

  .doctor-trust-price p { margin-top: 7px; }

  .doctor-trust-photo {
    grid-row: 2;
    min-height: 430px;
  }

  .doctor-trust-reviews-head { display: block; }

  .doctor-trust-reviews-source { margin-top: 16px; }

  .doctor-trust-reviews {
    scroll-margin-top: 72px;
    margin-top: 55px;
  }

  .doctor-review-card {
    flex-basis: 100%;
    min-height: 390px;
  }

  .choice-badge {
    right: 16px;
    left: 16px;
    bottom: -26px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 720px) {
  .fact-marquee {
    padding: 16px 14px;
    overflow: visible;
  }

  .fact-marquee-track,
  .fact-marquee-run { width: 100%; }

  .fact-marquee-run {
    display: grid;
    gap: 0;
  }

  .fact-marquee-run span {
    margin: 0;
    padding: 10px 0 10px 18px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .fact-marquee-run span::after {
    right: auto;
    left: 0;
  }
}

@media (pointer: coarse) and (max-width: 720px) {
  .fact-marquee { padding-right: 76px; }

  .fact-marquee-toggle {
    position: absolute;
    z-index: 4;
    right: 8px;
    top: 50%;
    min-width: 62px;
    min-height: 44px;
    padding: 0 8px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(20, 46, 63, .16);
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    color: #294655;
    font: 600 12px/1.1 "Gilroy", Arial, sans-serif;
    transform: translateY(-50%);
  }

  .fact-marquee-toggle-play { display: none; }

  .fact-marquee-toggle[aria-pressed="true"] .fact-marquee-toggle-pause { display: none; }

  .fact-marquee-toggle[aria-pressed="true"] .fact-marquee-toggle-play { display: inline; }

  .fact-marquee.is-paused .fact-marquee-track { animation-play-state: paused; }
}

@media (prefers-reduced-motion: reduce) and (max-width: 720px) {
  .fact-marquee { padding-right: 14px; }

  .fact-marquee-toggle { display: none; }
}


@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}

.hero-offer,
.hero-who,
.hero-proof { display: none; }

@media (min-width: 721px) {
  .site-header .main-nav a { font-weight: 400; color: #2b4655; }
  .site-header .main-nav { gap: 32px; }
  .header-phone { flex-direction: row; align-items: center; gap: 9px; color: var(--ink); }
  .header-phone-icon { width: 17px; height: 17px; color: var(--accent); }
  .header-messenger { width: 30px; height: 30px; min-width: 0; flex: 0 0 30px; border: 0; border-radius: 0; background: none; box-shadow: none; }
  .header-messenger img { width: 30px; height: 30px; }
  .header-cta { min-height: 48px; padding: 0 22px; border-radius: 14px; font-size: 14.5px; white-space: nowrap; }

  .proctology-hero {
    min-height: 0;
    padding-bottom: 0;
    background: #eef4f6;
  }
  .proctology-hero .hero-media {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background: url("assets/hero-wall.webp") center / cover no-repeat;
  }
  .proctology-hero .hero-media::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: none;
    background: linear-gradient(180deg, rgba(248, 251, 252, .35) 0%, rgba(248, 251, 252, 0) 22%, rgba(248, 251, 252, 0) 70%, rgba(226, 234, 238, .55) 100%);
  }
  .proctology-hero .hero-media::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(248, 251, 252, .90) 0%, rgba(248, 251, 252, .86) 30%, rgba(248, 251, 252, .62) 50%, rgba(248, 251, 252, .22) 68%, rgba(248, 251, 252, .06) 82%, rgba(248, 251, 252, 0) 100%);
  }
  .proctology-hero .hero-media picture {
    position: absolute;
    top: auto;
    left: auto;
    right: max(16px, calc((100% - 1280px) / 2 - 40px));
    bottom: 0;
    z-index: 2;
    width: auto;
    height: min(82vh, 900px);
    aspect-ratio: 1692 / 1825;
    overflow: visible;
    border-radius: 0;
    background: none;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .proctology-hero .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .proctology-hero .hero-inner {
    position: relative;
    z-index: 3;
    width: min(1280px, calc(100% - 64px));
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding: 96px 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
    align-content: stretch;
  }
  .proctology-hero .hero-copy {
    width: min(680px, 56%);
    margin: 0;
    align-self: center;
    padding: 24px 0 40px;
  }
  .proctology-hero .hero-mobile-kicker,
  .proctology-hero .hero-list,
  .proctology-hero .hero-speciality { display: none; }
  .proctology-hero .hero-copy h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(50px, 4.1vw, 58px);
    line-height: .98;
    letter-spacing: -.03em;
    text-wrap: wrap;
  }
  .proctology-hero .hero-copy h1 .h1-line { display: block; white-space: normal; }
  .hero-offer {
    display: block;
    margin: 22px 0 0;
    font: 700 clamp(26px, 2.1vw, 30px) / 1.15 "Futura Medic", "Gilroy", Arial, sans-serif;
    letter-spacing: -.012em;
    color: var(--accent);
  }
  .hero-who {
    display: block;
    max-width: 560px;
    margin: 30px 0 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted);
  }
  .hero-who strong { font-weight: 600; color: var(--ink); }
  .proctology-hero .hero-actions {
    margin-top: 40px;
    display: block;
  }
  .proctology-hero .hero-actions .button-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: auto;
    min-width: 0;
    height: 60px;
    min-height: 60px;
    padding: 0 26px 0 30px;
    border-radius: 14px;
    font-size: 16px;
    letter-spacing: .005em;
    background: linear-gradient(180deg, #1193c1 0%, #0b86b3 55%, #0a7ea8 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .28) inset, 0 18px 40px -14px rgba(11, 134, 179, .55);
  }
  .proctology-hero .hero-actions .button-primary::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    width: min(760px, 58%);
    margin: 8px 0 0;
    padding: 34px 0 52px;
    list-style: none;
    border-top: 1px solid rgba(20, 46, 63, .12);
  }
  .hero-proof li {
    position: relative;
    padding: 0 38px;
  }
  .hero-proof li:first-child { padding-left: 0; }
  .hero-proof li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(20, 46, 63, .12);
  }
  .hero-proof b {
    display: block;
    font: 700 36px / 1 "Futura Medic", "Gilroy", Arial, sans-serif;
    font-feature-settings: "tnum" 1;
    letter-spacing: -.02em;
    color: var(--ink);
  }
  .hero-proof li:first-child b { color: var(--accent); }
  .hero-proof span {
    display: block;
    max-width: 240px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--muted);
  }
  .proctology-hero .hero-play {
    display: flex;
    align-items: center;
    gap: 13px;
    position: absolute;
    z-index: 4;
    top: auto;
    right: auto;
    left: calc(100% - max(16px, (100% - 1280px) / 2 - 40px) - min(82vh, 900px) * 1.0013);
    bottom: calc(min(82vh, 900px) * .26);
    width: auto;
    max-width: none;
    margin: 0;
    padding: 11px 18px 11px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .72);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 24px 60px -20px rgba(20, 54, 69, .35);
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
    transform: none;
  }
  .proctology-hero .hero-play:hover { background: rgba(255, 255, 255, .9); }
  .hero-award-medal { width: 46px; height: auto; }
  .proctology-hero .hero-play-text {
    display: grid;
    row-gap: 3px;
    text-align: left;
  }
  .proctology-hero .hero-play-text b {
    font: 600 15px / 1.15 "Gilroy", Arial, sans-serif;
    color: var(--ink);
  }
  .proctology-hero .hero-play-text span {
    font-size: 12.5px;
    line-height: 1.2;
    color: var(--muted);
  }
  .hero-award-arrow {
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 1.5px solid var(--accent);
    border-top: 1.5px solid var(--accent);
    transform: rotate(45deg);
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .proctology-hero .hero-copy { width: 58%; }
  .hero-proof { width: 100%; }
}

.care-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.care-band-bg {
  position: absolute;
  inset: 0;
}
.care-band-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/care-band.webp") center 30% / cover no-repeat;
}
.care-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(10, 34, 52, .94) 0%, rgba(12, 44, 66, .84) 38%, rgba(14, 58, 84, .58) 68%, rgba(14, 58, 84, .4) 100%);
}
.care-band-in {
  z-index: 2;
  padding: 88px 0 150px;
}
.care-band h2 {
  max-width: 820px;
  margin: 0;
  font: 700 clamp(30px, 3.3vw, 44px) / 1.06 "Futura Medic", "Gilroy", Arial, sans-serif;
  letter-spacing: -.02em;
  color: #fff;
}
.care-band p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .86);
}
.care-seam {
  z-index: 5;
  margin-top: -92px;
}
.care-seam-wrap {
  background: linear-gradient(180deg, rgba(243, 248, 250, 0) 92px, #f3f8fa 92px);
}
.care-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 8px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 48px 90px -46px rgba(20, 46, 63, .45), 0 6px 18px -8px rgba(20, 46, 63, .14);
}
.care-pit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 6px 24px;
}
.care-pit + .care-pit {
  border-left: 1px solid rgba(20, 46, 63, .1);
}
.care-pic {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
}
.care-pic img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.care-pit b {
  display: block;
  margin-bottom: 5px;
  font: 700 16px / 1.25 "Futura Medic", "Gilroy", Arial, sans-serif;
  color: var(--ink);
}
.care-pit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.about-section {
  padding: 72px 0 96px;
  background: #f3f8fa;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-photos {
  position: relative;
  margin-left: calc(-1 * max(28px, 50vw - 640px));
}
.about-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 48px 90px -42px rgba(20, 46, 63, .5), 0 8px 22px -10px rgba(20, 46, 63, .18);
}
.about-track::-webkit-scrollbar { display: none; }
.about-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.about-slide img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  overflow: hidden;
  border-radius: 0 0 24px 0;
  background: rgba(255, 255, 255, .3);
}
.about-progress i {
  display: block;
  width: 14.2857%;
  height: 100%;
  background: var(--accent-light);
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
}
.about-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 10px 26px -10px rgba(20, 46, 63, .45);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s, color .2s;
}
.about-nav svg {
  width: 18px;
  height: 18px;
}
.about-prev { left: 18px; }
.about-next { right: 18px; }
.about-nav:hover {
  background: var(--accent);
  color: #fff;
}
.about-text h2 {
  margin: 0 0 22px;
  font: 700 clamp(30px, 3.2vw, 42px) / 1.1 "Futura Medic", "Gilroy", Arial, sans-serif;
  letter-spacing: -.02em;
  color: var(--ink);
}
.about-ratings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 46, 63, .12);
  border-radius: 16px;
  background: rgba(20, 46, 63, .12);
}
.about-rating {
  display: grid;
  row-gap: 4px;
  justify-items: start;
  padding: 14px 14px 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}
.about-rating img {
  width: auto;
  height: 14px;
  max-width: 100%;
  object-fit: contain;
}
.about-rating b {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font: 700 22px / 1 "Futura Medic", "Gilroy", Arial, sans-serif;
  font-feature-settings: "tnum" 1;
}
.about-rating span:last-child {
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
}
.about-text p {
  position: relative;
  max-width: 56ch;
  margin: 0 0 15px;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #33505f;
}
.about-text p::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.about-text p b {
  font-weight: 600;
  color: var(--ink);
}
.about-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 0 22px 0 8px;
  height: 52px;
  border: 1px solid rgba(20, 46, 63, .16);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: 600 15px / 1 "Gilroy", Arial, sans-serif;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.about-video:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 28px -14px rgba(11, 134, 179, .5);
}
.about-video-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.about-video-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #fff;
}

@media (max-width: 1180px) {
  .care-card { grid-template-columns: repeat(2, 1fr); row-gap: 10px; }
  .care-pit:nth-child(3) { border-left: 0; }
  .about-ratings { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .care-band-in { padding: 64px 0 130px; }
  .care-seam { margin-top: -84px; }
  .care-seam-wrap { background: linear-gradient(180deg, rgba(243, 248, 250, 0) 84px, #f3f8fa 84px); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photos { margin-left: 0; }
  .about-track { border-radius: 24px; }
  .about-progress { border-radius: 0 0 24px 24px; }
  .about-slide img { height: 380px; }
}

@media (max-width: 720px) {
  .care-band .shell,
  .care-seam.shell,
  .about-section .shell { width: calc(100% - 28px); }
  .care-band-in { padding: 52px 0 120px; }
  .care-band p { font-size: 16px; }
  .care-card { grid-template-columns: 1fr; padding: 10px 6px; row-gap: 0; }
  .care-pit { flex-direction: row; gap: 14px; padding: 12px 12px; }
  .care-pit + .care-pit { border-left: 0; border-top: 1px solid rgba(20, 46, 63, .1); }
  .about-section { padding: 44px 0 60px; }
  .about-photos { margin: 0 -14px; }
  .about-track,
  .about-progress { border-radius: 0; }
  .about-slide img { height: 280px; }
  .about-nav { width: 40px; height: 40px; }
  .about-text h2 { margin-bottom: 18px; }
  .about-rating { padding: 12px 12px 10px; }
  .about-rating b { font-size: 20px; }
  .about-text p { font-size: 15px; }
  .about-video { width: 100%; justify-content: center; padding-left: 8px; }
}

.hero-actions-mobile,
.doctor-review-more,
.doctor-review-mobile-actions { display: none; }

@media (min-width: 981px) {
  .proctology-hero .hero-media { z-index: auto; }
}

.lightbox {
  position: fixed;
  z-index: 75;
  inset: 0;
  display: none;
  flex-direction: column;
  background: #0b1a24;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.lightbox[data-open="true"] { display: flex; }

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.lightbox-stage {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  transition: transform .18s ease;
  will-change: transform;
}

.lightbox.is-dragging .lightbox-stage img { transition: none; }

.lightbox-caption {
  flex: none;
  margin: 0;
  padding: 12px 64px 14px 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px;
  line-height: 1.35;
}

.lightbox-caption span:first-child {
  margin-right: 12px;
  color: #fff;
  font-weight: 600;
  font-feature-settings: "tnum" 1;
}

@media (max-width: 720px) {
  .proctology-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 108px 0 32px;
    background:
      linear-gradient(180deg, rgba(247, 250, 251, .62) 0%, rgba(247, 250, 251, .94) 36%, #eef4f6 68%),
      url("assets/hero-wall.webp") center 30% / cover no-repeat #eef4f6;
  }

  .proctology-hero .hero-inner {
    display: contents;
  }

  .proctology-hero .hero-copy {
    order: 1;
    width: auto;
    margin: 0 16px;
  }

  .proctology-hero .hero-mobile-kicker,
  .proctology-hero .hero-title-mobile,
  .proctology-hero .hero-list,
  .proctology-hero .hero-speciality,
  .proctology-hero .hero-actions,
  .proctology-hero .hero-who-more { display: none; }

  .proctology-hero .hero-title-desktop { display: inline; }

  .proctology-hero .hero-copy h1 {
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    font-size: clamp(25px, 7.8vw, 31px);
    line-height: 1.06;
    letter-spacing: -.03em;
    text-align: center;
    text-wrap: wrap;
  }

  .proctology-hero .hero-copy h1 .h1-line { white-space: normal; }

  .hero-offer {
    display: block;
    margin: 14px 0 0;
    font: 700 clamp(18px, 5vw, 20px) / 1.25 "Futura Medic", "Gilroy", Arial, sans-serif;
    letter-spacing: -.012em;
    color: var(--accent);
    text-align: center;
    text-wrap: wrap;
  }

  .hero-who {
    display: block;
    max-width: none;
    margin: 12px 0 0;
    color: var(--ink);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
    text-wrap: wrap;
  }

  .hero-who strong {
    color: var(--ink);
    font-weight: 600;
  }

  .proctology-hero .hero-media {
    order: 2;
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    margin: 22px 16px 0;
    aspect-ratio: 6 / 5;
    overflow: hidden;
    border-radius: 20px;
    background: #e3ecef;
    box-shadow: 0 24px 48px -28px rgba(20, 54, 69, .35);
  }

  .proctology-hero .hero-media::before,
  .proctology-hero .hero-media::after { display: none; }

  .proctology-hero .hero-media picture {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    background: none;
    overflow: hidden;
  }

  .proctology-hero .hero-photo {
    position: static;
    inset: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    transform: none;
    filter: none;
    border-radius: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .proctology-hero .hero-play {
    position: absolute;
    z-index: 3;
    top: auto;
    right: auto;
    left: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 20px);
    min-height: 56px;
    margin: 0;
    padding: 8px 14px 8px 8px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 14px;
    background: rgba(255, 255, 255, .84);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    backdrop-filter: blur(12px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 18px 40px -18px rgba(20, 54, 69, .4);
    color: var(--ink);
    text-align: left;
    transform: none;
  }

  .proctology-hero .hero-award-medal {
    width: 34px;
    height: auto;
    flex: none;
  }

  .proctology-hero .hero-play-text {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .proctology-hero .hero-play-text b {
    font: 600 14px / 1.2 "Gilroy", Arial, sans-serif;
    color: var(--ink);
  }

  .proctology-hero .hero-play-text span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
  }

  .proctology-hero .hero-award-arrow {
    flex: none;
    width: 8px;
    height: 8px;
    margin-left: 4px;
    border-right: 1.5px solid var(--accent);
    border-top: 1.5px solid var(--accent);
    transform: rotate(45deg);
  }

  .hero-proof {
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    margin: 18px 16px 0;
    padding: 16px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
  }

  .hero-proof li {
    padding: 0 10px;
    border-left: 1px solid var(--line);
  }

  .hero-proof li:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero-proof li + li::before { display: none; }

  .hero-proof b {
    display: block;
    font: 700 clamp(22px, 6.4vw, 26px) / 1 "Futura Medic", "Gilroy", Arial, sans-serif;
    font-feature-settings: "tnum" 1;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
    color: var(--ink);
  }

  .hero-proof li:first-child b { color: var(--accent); }

  .hero-proof span {
    display: block;
    max-width: none;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
  }

  .fact-marquee {
    padding: 18px 16px;
    overflow: visible;
  }

  .fact-marquee::before,
  .fact-marquee::after,
  .fact-marquee-toggle,
  .fact-marquee-run:nth-child(2),
  .fact-marquee-repeat { display: none; }

  .fact-marquee-track {
    width: 100%;
    animation: none;
    cursor: default;
    touch-action: auto;
    user-select: auto;
  }

  .fact-marquee-run {
    width: 100%;
    display: grid;
    gap: 9px;
  }

  .fact-marquee-run span {
    margin: 0;
    padding: 0 0 0 18px;
    color: #2b4a5c;
    font-size: 16px;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .fact-marquee-run span::after {
    top: .45em;
    right: auto;
    left: 0;
    width: 7px;
    height: 7px;
    margin-top: 0;
  }

  .hero-actions-mobile {
    display: block;
    width: calc(100% - 32px);
    margin: 20px auto 8px;
  }

  .hero-actions-mobile .button-primary {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    border-radius: 16px;
    font-size: 17px;
    background: linear-gradient(180deg, #1193c1 0%, #0b86b3 55%, #0a7ea8 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .28) inset, 0 14px 30px -12px rgba(11, 134, 179, .55);
  }

  .treatment-section { padding-top: 40px; }

  .condition-accordion { min-height: 60px; }

  .condition-accordion-name { font-size: 17px; }

  .visit-video {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .visit-video video { object-position: 50% 40%; }

  .equipment-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .equipment-strip li {
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid rgba(20, 46, 63, .08);
    border-radius: 12px;
    background: #fff;
    color: #385866;
    font-size: 14.5px;
  }

  .doctor-trust-proof article:nth-child(-n+2) { display: none; }

  .doctor-trust-profile {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .doctor-trust-copy { grid-row: 2; }

  .doctor-trust-photo {
    grid-row: 1;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .doctor-trust-photo img { object-position: 50% 28%; }

  .doctor-trust-photo figcaption { padding: 12px 18px; }

  .doctor-review-viewport { overflow: visible; }

  .doctor-review-track {
    display: grid;
    gap: 12px;
    transform: none;
    transition: none;
  }

  .doctor-review-card {
    display: none;
    min-height: 0;
    padding: 20px 18px 14px;
  }

  .doctor-review-card:nth-child(1),
  .doctor-review-card:nth-child(3),
  .doctor-review-card:nth-child(11) { display: flex; }

  .doctor-review-card:nth-child(n) { order: 4; }

  .doctor-review-card:nth-child(1) { order: 1; }

  .doctor-review-card:nth-child(3) { order: 2; }

  .doctor-review-card:nth-child(11) { order: 3; }

  .doctor-review-slider.is-expanded .doctor-review-card { display: flex; }

  .doctor-review-card blockquote {
    margin-top: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .doctor-review-card.is-expanded blockquote {
    display: block;
    -webkit-line-clamp: unset;
  }

  .doctor-review-card footer {
    padding-top: 8px;
    align-items: center;
  }

  .doctor-review-more {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
  }

  .doctor-review-footer { display: none; }

  .doctor-review-mobile-actions {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .doctor-review-showall {
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid rgba(20, 46, 63, .14);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
  }

  .doctor-review-slider.is-expanded .doctor-review-showall { display: none; }

  .doctor-review-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 600;
  }

  .mp-process-gallery.mosaic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 110px;
    grid-auto-flow: row dense;
    gap: 8px;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .mp-process-gallery.mosaic-gallery figure:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
    border-radius: 14px;
    cursor: pointer;
  }

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

  .mp-process-gallery.mosaic-gallery figure:focus-visible {
    outline: 3px solid rgba(39, 107, 159, .55);
    outline-offset: 2px;
  }

  .mp-reveal { transition-duration: .38s; }

  .modal-done-close::after { content: none; }

  .about-rating span:last-child,
  .doctor-review-card footer { font-size: 13px; }

  .about-nav {
    width: 44px;
    height: 44px;
  }
}
