﻿:root {
  --bg: #f5f8f2;
  --surface: #ffffff;
  --accent: #89b441;
  --accent-dark: #678c2f;
  --accent-soft: #eaf2dd;
  --text: #222831;
  --muted: #5a6572;
  --brand-navy: #223f6f;
  --brand-navy-soft: #324f80;
  --brand-blue: #5d79dc;
  --brand-blue-dark: #4f6fd0;
  --brand-green-cta: #63b48f;
  --brand-green-cta-dark: #58a883;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(34, 40, 49, 0.08);
  --fs-hero: clamp(2rem, 4vw, 2.9rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.1rem, 1.5vw, 1.3rem);
  --fs-title-sm: clamp(1.2rem, 1.8vw, 1.5rem);
  --fs-body: clamp(1rem, 1.15vw, 1.08rem);
  --fs-small: 0.95rem;
  --mobile-header-collapse: 124px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fcf6 0%, #f2f6ee 100%);
  line-height: 1.55;
  font-size: var(--fs-body);
}
.container { width: min(1140px, 92%); margin: 0 auto; }
.topbar { position: sticky; top: 0; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-bottom: 1px solid #e4e8e0; z-index: 10; }
.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "logo meta cta"
    "menu menu menu";
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
  padding: 12px 0;
}
.topbar__promo,
.topbar__mobile-actions {
  display: none;
}
.logo { font-weight: 800; font-size: 1.2rem; color: var(--text); text-decoration: none; }
.site-menu {
  grid-area: menu;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.site-menu__link {
  text-decoration: none;
  color: var(--brand-navy-soft);
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1.2;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.site-menu__link:hover {
  color: var(--brand-navy);
  background: #edf3e3;
}
.site-menu__link[aria-current="page"] {
  color: var(--brand-navy);
  border-color: #d4e0c4;
  background: #f4f8ec;
}
.topbar__mobile-menu-toggle {
  display: none;
}
.phone-link { color: var(--accent-dark); font-weight: 700; text-decoration: none; }
.topbar__desktop-meta {
  grid-area: meta;
  display: grid;
  gap: 2px;
  color: var(--brand-navy-soft);
  min-width: 0;
  justify-self: center;
  text-align: center;
}
.topbar__desktop-meta p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.25;
}
.topbar__desktop-contacts {
  grid-area: cta;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.logo {
  grid-area: logo;
}
.topbar__desktop-cta {
  text-decoration: none;
  background: var(--accent);
  color: #172108;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 800;
  white-space: nowrap;
}
.topbar__desktop-cta:hover {
  background: #95c650;
}
.mobile-menu {
  display: none;
}
.breadcrumbs {
  padding-top: 12px;
}
.breadcrumbs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #5f6f88;
  font-size: 0.92rem;
}
.breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs__list li + li::before {
  content: "/";
  margin-right: 6px;
  color: #9aabc1;
}
.breadcrumbs__list a {
  color: #2f4f82;
  text-decoration: none;
}
.breadcrumbs__list a:hover {
  text-decoration: underline;
}
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; padding: 44px 0 26px; align-items: center; }
.badge { display: inline-block; padding: 6px 14px; border-radius: 30px; background: #e7f0d7; color: #3f5d17; font-size: var(--fs-small); }
h1 { font-size: var(--fs-hero); line-height: 1.15; margin: 16px 0; }
.hero__lead { color: var(--muted); max-width: 58ch; }
.hero__lead--strong {
  color: var(--brand-navy-soft);
  font-weight: 600;
}
.hero-points {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--brand-navy-soft);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #89b441 0 45%, #d8e7bd 46% 100%);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.hero-actions .btn,
.hero-actions .hero-phone {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-actions .btn {
  margin-top: 0;
}
.hero-phone {
  text-decoration: none;
  color: var(--brand-navy);
  font-weight: 800;
  background: #eaf2dd;
  border: 1px solid #d0ddbe;
  border-radius: 999px;
}
.hero-visual {
  position: relative;
}
.hero-visual__alert {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dae7ca;
  border-radius: 14px;
  padding: 10px 12px;
}
.hero-visual__alert strong {
  display: block;
  color: var(--brand-navy);
}
.hero-visual__alert p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.hero-visual__grid {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hero-metric {
  background: rgba(31, 55, 104, 0.9);
  border-radius: 12px;
  padding: 10px;
}
.hero-metric__value {
  display: block;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
}
.hero-metric__label {
  display: block;
  margin-top: 2px;
  color: #dbe7ff;
  font-size: 0.86rem;
  line-height: 1.25;
}
.hero__image img { width: 100%; height: auto; border-radius: 24px; box-shadow: var(--shadow); }
.btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; margin-top: 12px; background: var(--accent); color: #172108; padding: 12px 22px; border-radius: 999px; text-decoration: none; font-weight: 700; }
.btn:hover { background: #95c650; }
.btn--max {
  background: linear-gradient(135deg, #5e48e8 0%, #3f77ff 52%, #66c7ff 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(63, 119, 255, 0.35);
}
.btn--max:hover {
  background: linear-gradient(135deg, #5340d4 0%, #366ef0 52%, #58b9f0 100%);
}
.section { padding: 34px 0; }
h2 { margin: 0 0 8px; font-size: var(--fs-h2); line-height: 1.2; }
h3 { margin: 0 0 20px; color: var(--muted); font-size: var(--fs-h3); line-height: 1.4; font-weight: 500; }
.cards, .price-grid, .doctors { display: grid; gap: 16px; }
.cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card, .price-item, .doctor { background: var(--surface); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.cards .card {
  position: relative;
  background: linear-gradient(180deg, #f8fbf4 0%, #f2f7ea 100%);
  border: 1px solid #dce7cc;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(34, 63, 111, 0.08);
  overflow: hidden;
}
.cards .card strong {
  display: block;
  color: var(--brand-navy);
  margin-bottom: 12px;
  font-size: 1.9rem;
  line-height: 1.15;
}
.cards .card p {
  margin: 0;
  color: var(--brand-navy-soft);
}
.cards .card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -36px;
  width: 120px;
  height: 120px;
  border: 3px solid #d6e4ef;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 26px 0 90px;
  opacity: 0.8;
  pointer-events: none;
}
.cards .card::after {
  content: "";
  position: absolute;
  right: 52px;
  top: 0;
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, #d6e4ef 0%, rgba(214, 228, 239, 0) 100%);
  transform: rotate(-26deg);
  transform-origin: top center;
  pointer-events: none;
}
.section--soft { background: #eef4e3; border-radius: 20px; padding: 24px; }
.price-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.price { font-weight: 800; color: var(--accent-dark); }
.price-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: var(--fs-body);
}
.price-list {
  display: grid;
  gap: 10px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.price-row__name {
  color: var(--accent-dark);
  font-size: var(--fs-title-sm);
  line-height: 1.2;
}
.price-row__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-left: auto;
  color: var(--text);
  font-size: var(--fs-title-sm);
  white-space: nowrap;
}
.price-row__value strong {
  font-weight: 800;
}
.price-row::before {
  content: "";
  order: 2;
  flex: 1;
  min-width: 18px;
  border-bottom: 1px solid #cfdcc2;
  transform: translateY(-0.25em);
}
.price-row__name {
  order: 1;
}
.price-row__value {
  order: 3;
}
.price-list__group {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 800;
}
.doctors-carousel {
  position: relative;
  padding: 0;
}
.doctors-viewport {
  overflow: visible;
}
.doctors {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.doctor img {
  width: 100%;
  aspect-ratio: 3 / 2.4;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  display: block;
}
#doctors {
  background: #eef4e3;
  border-radius: 24px;
  padding: 30px;
  margin-top: 28px;
}
.doctor {
  padding: 0;
  overflow: hidden;
  border: 1px solid #d5deeb;
}
.doctor__body {
  padding: 16px 16px 18px;
}
.doctor h4 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  line-height: 1.15;
  color: var(--brand-navy);
}
.doctor__exp {
  display: inline-block;
  margin-top: 10px;
  background: #e4ecf8;
  color: var(--brand-navy-soft);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.doctor__role {
  margin: 12px 0 10px;
  color: var(--brand-navy-soft);
  font-size: var(--fs-body);
}
.doctor__list {
  margin: 0;
  padding-left: 18px;
  color: #4c6287;
  font-size: var(--fs-body);
}
.doctor__list li {
  margin: 6px 0;
}
.doctor__btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent);
  color: #172108;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}
.doctor__btn:hover {
  background: #95c650;
}
.protocol {
  background: linear-gradient(180deg, #f4f8ec 0%, #edf4e2 100%);
  border: 1px solid #d7e3c9;
  border-radius: 24px;
  padding: 24px;
}
.protocol__head h2 {
  margin-bottom: 6px;
}
.protocol__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}
.protocol-stat {
  background: #fff;
  border: 1px solid #e3ead7;
  border-radius: 14px;
  padding: 14px;
}
.protocol-stat__value {
  display: block;
  font-size: var(--fs-title-sm);
  font-weight: 800;
  color: var(--brand-navy);
}
.protocol-stat__label {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: var(--fs-small);
}
.protocol__content {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: start;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps--infographic li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 0 0 12px;
}
.steps--infographic li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 42px;
  bottom: 6px;
  width: 2px;
  background: #cfdcc2;
}
.step-index {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dfeacb;
  color: #2f4a1b;
  font-weight: 800;
  font-size: 1.05rem;
}
.step-body {
  background: #fff;
  border: 1px solid #e3ead7;
  border-radius: 14px;
  padding: 12px 14px;
}
.step-body strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.step-body p {
  margin: 0;
  color: var(--muted);
}
.protocol-note {
  background: #fff;
  border: 1px solid #d9e5cb;
  border-radius: 16px;
  padding: 16px;
  position: sticky;
  top: 96px;
  align-self: start;
}
.protocol-note h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--brand-navy);
}
.protocol-note ul {
  margin: 0 0 10px;
  padding-left: 18px;
}
.protocol-note li {
  margin: 5px 0;
}
.protocol-note p {
  margin: 0;
  color: var(--muted);
}
.section--cta .btn {
  margin-top: 16px;
}
.reviews {
  background: #edf3e3;
  border-radius: 20px;
  padding: 24px;
  margin-top: 14px;
}
.reviews__title {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}
.reviews__subtitle {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.4;
  font-weight: 500;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-card {
  background: #f4f7ff;
  border: 1px solid #dbe4f3;
  border-radius: 14px;
  padding: 14px;
}
.review-card--yandex {
  background: linear-gradient(180deg, #f6f8ff 0%, #eef3ff 100%);
}
.review-card--2gis {
  background: linear-gradient(180deg, #f5faff 0%, #edf7f0 100%);
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cfd7e6;
}
.review-card__service {
  font-size: 1.35rem;
  color: #243657;
}
.review-card__rating {
  font-size: 1.25rem;
  font-weight: 800;
  color: #243657;
}
.review-stars {
  color: #f2b324;
  letter-spacing: 1px;
}
.review-card__bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #30486f;
}
.review-card__bottom a {
  color: #304e80;
  font-weight: 700;
}
.package-plans {
  background: #eef4e3;
  border-radius: 20px;
  padding: 24px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.package-card {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #ccd9f0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.package-card--basic {
  background: #f8fbf4;
}
.package-card--standard {
  background: linear-gradient(180deg, #e6efda 0%, #dce8cd 100%);
  border-color: #cedeb8;
  color: var(--brand-navy);
}
.package-card--advanced {
  background: linear-gradient(180deg, #d7e5c4 0%, #cddfb6 100%);
  border-color: #c3d8aa;
  color: var(--brand-navy);
}
.package-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(52, 80, 125, 0.2);
}
.package-card__head h4 {
  margin: 0;
  font-size: clamp(1.85rem, 1.9vw, 2.35rem);
  line-height: 1.1;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (min-width: 861px) {
  .package-card__head h4 {
    font-size: 1.35rem;
    line-height: 1.1;
  }
}
.package-card__price {
  background: #fff;
  color: #2b4679;
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: clamp(1.15rem, 1.15vw, 1.45rem);
}
.package-card__list {
  list-style: none;
  margin: 14px 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.package-card__list li {
  position: relative;
  padding-left: 28px;
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 1vw, 1.32rem);
  line-height: 1.35;
}
.package-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.package-card__btn {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
  background: var(--accent);
  color: #172108;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 800;
}
.package-card__btn:hover {
  background: #95c650;
}
.intent-topics {
  background: #eef4e3;
  border-radius: 20px;
  padding: 24px;
  margin-top: 18px;
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.intent-card {
  border: 1px solid #d5deeb;
  border-radius: 14px;
  background: #ffffff;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.intent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(34, 40, 49, 0.1);
  border-color: #c6d4ec;
}
.intent-card__title {
  display: block;
  color: var(--brand-navy);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}
.intent-card__text {
  display: block;
  margin-top: 8px;
  color: var(--brand-navy-soft);
}
.intent-template-title {
  margin: 0 0 8px;
  color: var(--brand-navy);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  font-weight: 800;
  line-height: 1.3;
}
.intent-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}
.intent-modal.is-open {
  display: grid;
  place-items: center;
}
.intent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 57, 0.58);
}
.intent-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  background: #fff;
  border: 1px solid #d8e2f2;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(22, 35, 60, 0.28);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
}
.intent-modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #eaf0fa;
  color: #26406c;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.intent-modal__title {
  margin: 0 44px 12px 0;
  color: var(--brand-navy);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}
.intent-modal__content {
  overflow: auto;
  padding-right: 8px;
}
.intent-modal__content h4 {
  margin: 0 0 8px;
  color: var(--brand-navy);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
}
.intent-modal__content p {
  margin: 0 0 12px;
  color: var(--brand-navy-soft);
  font-size: var(--fs-body);
  line-height: 1.5;
}
.intent-modal__content ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #425d86;
}
body.modal-open {
  overflow: hidden;
}
.faq {
  background: #f1f6e9;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
}
.faq-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 8px 16px 12px;
  box-shadow: var(--shadow);
  width: 100%;
}
.faq-item + .faq-item { margin-top: 12px; }
.faq-question {
  display: block;
}

@media (min-width: 861px) {
  #faq {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--text);
  padding: 10px 28px 10px 0;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--accent-dark);
}
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
  padding-top: 2px;
  font-size: var(--fs-body);
}
.call-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
  animation: callWidgetFloat 2.8s ease-in-out infinite;
}
body.has-consent-banner .call-widget {
  bottom: 116px;
}
.call-widget__toggle {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, #ff4b4b 0%, #e32626 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(227, 38, 38, 0.38);
  position: relative;
  overflow: hidden;
  animation: callWidgetGlow 1.8s ease-in-out infinite, callWidgetNudge 2.9s ease-in-out infinite;
}
.call-widget__toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -42%;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.32) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: callWidgetShine 2.6s linear infinite;
}
.call-widget__pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7fd13e;
  box-shadow: 0 0 0 0 rgba(127, 209, 62, 0.8);
  animation: callPulse 1.2s infinite;
}
.call-widget__panel {
  width: min(320px, calc(100vw - 28px));
  background: #ffffff;
  border: 1px solid #d8e3cb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: none;
}
.call-widget.is-open .call-widget__panel {
  display: block;
}
.call-widget__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
}
.call-widget__text {
  margin: 6px 0 12px;
  color: var(--muted);
}
.call-widget__action {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--accent);
  color: #172108;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 800;
}
.call-widget__action:hover {
  background: #95c650;
}
.call-widget__close {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #5a6572;
  padding: 4px 0 0;
  cursor: pointer;
}
@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 209, 62, 0.8);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(127, 209, 62, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(127, 209, 62, 0);
  }
}
@keyframes callWidgetShine {
  0% {
    left: -45%;
  }
  55% {
    left: 118%;
  }
  100% {
    left: 118%;
  }
}
@keyframes callWidgetGlow {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(227, 38, 38, 0.38);
  }
  50% {
    box-shadow: 0 16px 36px rgba(227, 38, 38, 0.6);
  }
}
@keyframes callWidgetFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes callWidgetNudge {
  0%, 72%, 100% {
    transform: translateX(0);
  }
  78% {
    transform: translateX(-3px);
  }
  84% {
    transform: translateX(3px);
  }
  90% {
    transform: translateX(-2px);
  }
}
@keyframes topbarCallPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 180, 143, 0.45);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(99, 180, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 180, 143, 0);
  }
}
.footer { background: #222831; color: #d6dde8; margin-top: 26px; }
.footer__inner { padding: 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer__brand { max-width: 680px; }
.footer__legal { margin-top: 10px; }
.footer__legal p { margin: 4px 0; color: #c6d1e0; font-size: var(--fs-small); }
.footer__nav a { color: #b7c4d7; margin-right: 14px; text-decoration: none; }
.legal-page {
  max-width: 980px;
}
.legal-page h1 {
  margin-bottom: 8px;
}
.legal-page h2 {
  margin-top: 22px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
.legal-page p,
.legal-page li {
  color: #2c3f5d;
}
.legal-page ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.legal-updated {
  color: var(--muted);
  margin: 0 0 16px;
}
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: #ffffff;
  border: 1px solid #d9e5cb;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
}
.consent-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.consent-banner__text {
  margin: 0;
  color: var(--brand-navy-soft);
  font-size: 0.96rem;
}
.consent-banner__text a {
  color: #2d4f85;
}
.consent-banner__actions {
  display: flex;
  gap: 8px;
}
.consent-btn {
  border: 0;
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
}
.consent-btn--accept {
  background: var(--accent);
  color: #172108;
}
.consent-btn--accept:hover {
  background: #95c650;
}
.consent-btn--policy {
  background: #ebf1df;
  color: #2a3f20;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 860px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  .topbar {
    position: static;
    border-bottom: 0;
    backdrop-filter: none;
    background: #f6f8f3;
  }
  .topbar__promo {
    display: block;
    background: #eef4e3;
    color: var(--brand-navy);
    text-align: center;
    padding: 8px 12px;
    border-bottom: 1px solid #dce7cc;
  }
  .topbar__promo p {
    margin: 0;
    line-height: 1.2;
    font-size: 0.9rem;
  }
  .topbar__promo p + p {
    margin-top: 2px;
    font-size: 0.82rem;
    color: var(--brand-navy-soft);
  }
  .hero { grid-template-columns: 1fr; }
  .breadcrumbs {
    padding-top: 8px;
  }
  .breadcrumbs__list {
    font-size: 0.86rem;
  }
  .hero h1 {
    margin-top: 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-phone {
    text-align: center;
  }
  .hero-visual__alert {
    position: static;
    margin-bottom: 10px;
  }
  .hero-visual__grid {
    position: static;
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .topbar__inner {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0 12px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8d8;
  }
  .site-menu {
    display: none;
  }
  .topbar__desktop-meta {
    display: none;
  }
  .topbar__desktop-contacts {
    display: block;
  }
  .topbar__desktop-cta {
    display: none;
  }
  .topbar__mobile-menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d2dec2;
    border-radius: 999px;
    background: #f4f8ec;
    color: var(--brand-navy);
    font-weight: 800;
    padding: 8px 11px;
    cursor: pointer;
  }
  .logo {
    font-size: 2rem;
    line-height: 1.1;
  }
  .phone-link {
    font-size: 1.35rem;
  }
  .topbar__mobile-actions {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 30;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fbf4;
    border-bottom: 1px solid #dce7cc;
    box-shadow: 0 8px 18px rgba(34, 40, 49, 0.08);
  }
  .topbar__city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--brand-navy-soft);
    text-decoration: none;
    font-size: 0.92rem;
  }
  .topbar__city span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar__dot {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    flex: 0 0 auto;
  }
  .topbar__mobile-call {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #63b48f 0%, #58a883 100%);
    color: #122910;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 800;
    flex: 0 0 auto;
    box-shadow: 0 8px 20px rgba(88, 168, 131, 0.32);
    animation: topbarCallPulse 1.9s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .topbar__mobile-call-icon {
    font-size: 1.05rem;
    line-height: 1;
  }
  .topbar__mobile-call-text {
    line-height: 1;
    white-space: nowrap;
  }
  .topbar__mobile-call:hover,
  .topbar__mobile-call:active {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(88, 168, 131, 0.4);
  }
  .topbar__mobile-call:focus-visible {
    outline: 3px solid #223f6f;
    outline-offset: 2px;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(22, 32, 52, 0.35);
    display: none;
  }
  .mobile-menu.is-open {
    display: block;
  }
  .mobile-menu[hidden] {
    display: none !important;
  }
  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100%;
    background: #ffffff;
    box-shadow: -14px 0 34px rgba(34, 40, 49, 0.22);
    padding: 16px 14px 18px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
  }
  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }
  .mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #e1e8d4;
    padding-bottom: 10px;
  }
  .mobile-menu__head strong {
    font-size: 1.2rem;
    color: var(--brand-navy);
  }
  .mobile-menu__close {
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef4e3;
    color: var(--brand-navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-menu__nav {
    display: grid;
    gap: 8px;
    align-content: start;
    overflow: auto;
    padding-right: 2px;
  }
  .mobile-menu__nav a {
    text-decoration: none;
    color: #243657;
    background: #f7fbf2;
    border: 1px solid #dce7cc;
    border-radius: 10px;
    padding: 11px 12px;
    font-weight: 700;
    line-height: 1.25;
  }
  .mobile-menu__nav a[aria-current="page"] {
    background: #ebf4dd;
    border-color: #cfe0b8;
    color: #1f3313;
  }
  .mobile-menu__actions {
    display: grid;
    gap: 8px;
    border-top: 1px solid #e1e8d4;
    padding-top: 12px;
  }
  .mobile-menu__call,
  .mobile-menu__messenger {
    text-decoration: none;
    border-radius: 10px;
    padding: 11px 12px;
    font-weight: 800;
    text-align: center;
  }
  .mobile-menu__call {
    background: #89b441;
    color: #172108;
  }
  .mobile-menu__messenger {
    background: #e9eef8;
    color: var(--brand-navy);
    border: 1px solid #d3deee;
  }
  .footer__inner { flex-direction: column; }
  #doctors { padding: 18px; }
  .doctor h4 { font-size: 1.5rem; }
  .doctors {
    grid-template-columns: 1fr;
  }
  .section.section--cta.container {
    padding-bottom: 14px;
  }
  .faq {
    padding: 14px;
    border-radius: 16px;
    margin-top: 8px;
  }
  .reviews {
    padding: 14px;
    border-radius: 16px;
    margin-top: 10px;
  }
  .package-plans {
    padding: 14px;
    border-radius: 16px;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .intent-grid {
    grid-template-columns: 1fr;
  }
  .intent-topics {
    padding: 14px;
    border-radius: 16px;
    margin-top: 12px;
  }
  .intent-card {
    padding: 12px;
    border-radius: 12px;
  }
  .intent-modal__dialog {
    width: calc(100vw - 14px);
    max-height: calc(100vh - 14px);
    border-radius: 14px;
    padding: 14px 12px 12px;
  }
  .intent-modal__title {
    margin-right: 38px;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .intent-modal__close {
    right: 8px;
    top: 8px;
  }
  .package-card__head h4 {
    font-size: 1.55rem;
  }
  .package-card__price {
    font-size: 1.05rem;
    padding: 5px 10px;
  }
  .package-card__list li {
    font-size: 1.04rem;
    line-height: 1.32;
  }
  .reviews__subtitle {
    margin-bottom: 14px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cards .card strong {
    font-size: 1.55rem;
  }
  .review-card__service {
    font-size: 1.2rem;
  }
  .review-card__rating {
    font-size: 1.1rem;
  }
  #faq h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  #faq h3 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 14px;
  }
  .faq-item {
    border-radius: 12px;
    padding: 6px 10px 10px;
  }
  .faq-item + .faq-item {
    margin-top: 10px;
  }
  .faq-question {
    font-size: 1rem;
    line-height: 1.35;
    padding: 10px 28px 8px 8px;
  }
  .faq-question::after {
    right: 8px;
    font-size: 1.15rem;
  }
  .faq-answer p {
    font-size: 0.98rem;
    line-height: 1.45;
    padding: 2px 8px 0;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #dbe6cf;
    border-radius: 12px;
    padding: 10px 12px;
  }
  .price-row::before {
    display: none;
  }
  .price-row__name {
    font-size: 1.2rem;
    line-height: 1.25;
  }
  .price-row__value {
    margin-left: 0;
    font-size: 1.15rem;
    line-height: 1.2;
    white-space: normal;
  }
  .price-list {
    gap: 10px;
  }
  .price-list__group {
    margin: 8px 0 2px;
    padding: 4px 0;
    font-size: 1.28rem;
  }
  .call-widget {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
  body.has-consent-banner .call-widget {
    bottom: 148px;
  }
  .call-widget__toggle {
    width: 100%;
    justify-content: center;
  }
  .call-widget__panel {
    width: 100%;
  }
  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }
  .consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-banner__actions {
    width: 100%;
  }
  .consent-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .protocol {
    padding: 16px;
    border-radius: 18px;
  }
  .protocol__stats {
    grid-template-columns: 1fr;
    margin: 14px 0 16px;
  }
  .protocol__content {
    grid-template-columns: 1fr;
  }
  .protocol-note {
    position: static;
    top: auto;
  }
  .steps--infographic li {
    grid-template-columns: 46px 1fr;
    gap: 10px;
    padding-bottom: 10px;
  }
  .step-index {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
  }
  .steps--infographic li:not(:last-child)::after {
    left: 22px;
    top: 36px;
  }
}





