/* ============================================================
   МРТ Диагност — дизайн-система макетов
   Домен-плейсхолдер: kt-diagnost.ru
   Используется всеми страницами-макетами (главная, листинг,
   карточка клиники, статичные). Меняем здесь — меняется везде.
   ============================================================ */

:root {
  /* Палитра — медицинская, доверительная (МРТ Прайс: sapphire) */
  --brand:        #1E5BC3;   /* основной sapphire */
  --brand-dark:   #154A9C;
  --brand-700:    #1853B0;
  --brand-light:  #E6EEF9;
  --brand-tint:   #F1F6FC;

  --cta:          #FF6B35;   /* «Записаться» — тёплый, контрастный */
  --cta-hover:    #E8551D;

  --ink:          #15232E;   /* основной текст */
  --ink-soft:     #33485A;
  --muted:        #5E7384;   /* вторичный текст */
  --faint:        #8A9AA8;

  --line:         #E3E9EE;
  --line-soft:    #EDF1F4;
  --bg:           #F4F7F9;
  --card:         #FFFFFF;

  --success:      #1BA672;   /* открыто / круглосуточно */
  --success-bg:   #E7F6F0;
  --warn:         #C9772A;
  --warn-bg:      #FCF1E5;
  --star:         #F6A609;   /* рейтинг */
  --discount:     #E5484D;   /* скидка/акция */
  --discount-bg:  #FDECEC;

  --radius:       14px;
  --radius-sm:    10px;
  --radius-lg:    20px;

  --shadow-sm:    0 1px 2px rgba(16,40,56,.06), 0 1px 3px rgba(16,40,56,.04);
  --shadow:       0 4px 16px rgba(16,40,56,.08);
  --shadow-lg:    0 12px 40px rgba(16,40,56,.14);

  --container:    1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "PT Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }

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

h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.02em; }
h2 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -.01em; }
h3 { font-size: 19px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* акцент бренда в SEO-текстах: рендер **текст** */
.hl { color: var(--brand); font-weight: 700; }

/* ---------- Мета-полоса макета (служебная, не часть дизайна сайта) ---------- */
.mockmeta {
  background: #1d2b36;
  color: #c7d3db;
  font-size: 12px;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: .02em;
}
.mockmeta b { color: #fff; }
.mockmeta a { color: #6fd0d8; }

/* ============================================================
   Кнопки
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .05s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--cta      { background: var(--cta); color: #fff; }
.btn--cta:hover{ background: var(--cta-hover); color: #fff; }

.btn--brand      { background: var(--brand); color: #fff; }
.btn--brand:hover{ background: var(--brand-dark); color: #fff; }

.btn--ghost {
  background: #fff; color: var(--brand-dark);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--soft {
  background: var(--brand-light); color: var(--brand-dark);
}
.btn--soft:hover { background: #d8edee; }

.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============================================================
   Хедер
   ============================================================ */
.topbar {
  background: var(--brand-dark);
  color: #cfe6e8;
  font-size: 13px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px;
}
.topbar a { color: #cfe6e8; }
.topbar a:hover { color: #fff; }
.topbar__links { display: flex; gap: 22px; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex; align-items: center; gap: 28px;
  height: 72px;
}
/* Логотип V12b — IBM Plex Sans, иерархия размеров.
   «МРТ» крупнее тёмным, «Прайс» меньше бирюзовым с оранжевым подчёркиванием. */
.logo {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: 'IBM Plex Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 700;
  color: var(--ink); letter-spacing: -.02em; line-height: 1;
  text-decoration: none;
}
.logo:hover { color: var(--ink); }
.logo__kt    { color: var(--ink); font-size: 28px; }
.logo__price {
  color: var(--brand); font-size: 18px;
  border-bottom: 2px solid var(--cta);
  padding-bottom: 1px;
}
/* legacy: dot не используется в V12b, mark/small — со старой разметки */
.logo__dot, .logo__mark { display: none; }
.logo small { display: none; }

.city-select {
  position: relative;
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--ink-soft);
  cursor: pointer; padding: 8px 10px; border-radius: 8px;
}
.city-select:hover { background: var(--brand-tint); }
.city-select svg { color: var(--brand); }
.city-select .chev { color: var(--faint); font-size: 11px; }
.city-select__menu {
  position: absolute; top: 110%; left: 0; z-index: 60;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 230px;
  display: none; grid-template-columns: 1fr 1fr; gap: 2px;
}
.city-select:hover .city-select__menu,
.city-select:focus-within .city-select__menu { display: grid; }
.city-select__menu a {
  padding: 7px 10px; border-radius: 7px; font-size: 14px;
  font-weight: 500; color: var(--ink-soft);
}
.city-select__menu a:hover { background: var(--brand-light); color: var(--brand-dark); }
.city-select__menu a.is-active { color: var(--brand); font-weight: 700; }

.header__nav {
  display: flex; gap: 22px; margin-left: auto;
  font-weight: 600; font-size: 15px;
}
.header__nav a { color: var(--ink-soft); }
.header__nav a:hover { color: var(--brand); }

.header__burger { display: none; }

/* ============================================================
   Hero + поиск
   ============================================================ */
.hero {
  background:
    radial-gradient(900px 380px at 82% -10%, #d7edef 0, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef5f6 100%);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 38px;
}
.hero__crumbs {
  font-size: 13px; color: var(--muted); margin-bottom: 14px;
}
.hero__crumbs a { color: var(--muted); }
.hero__crumbs a:hover { color: var(--brand); }
.hero h1 { margin-bottom: 12px; max-width: 880px; }
.hero h1 .accent { color: var(--brand); }
.hero__lead {
  font-size: 17px; color: var(--ink-soft); max-width: 720px;
  margin-bottom: 26px;
}

/* Hero листинга — компактнее главной, без поиска */
.lhero {
  background:
    radial-gradient(900px 280px at 82% -10%, #d7edef 0, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef5f6 100%);
  border-bottom: 1px solid var(--line);
  padding: 32px 0 12px;
}
.lhero__crumbs {
  font-size: 13px; color: var(--muted); margin-bottom: 12px;
}
.lhero__crumbs a { color: var(--muted); }
.lhero__crumbs a:hover { color: var(--brand); }
.lhero h1 {
  font-size: clamp(24px, 3vw, 34px); line-height: 1.15; letter-spacing: -.02em;
  font-weight: 800; max-width: 880px; margin-bottom: 10px;
}
.lhero h1 .accent { color: var(--brand); }
.lhero__lead {
  font-size: 16px; color: var(--ink-soft); max-width: 720px;
  line-height: 1.5; margin-bottom: 0;
}
.lhero__lead b { color: var(--ink); font-weight: 800; }

/* Hero 2-кол: текст слева + сводка справа (locallab-паттерн) */
.lhero__layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: stretch;
}
.lhero__main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.lhero__p1, .lhero__p2 {
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; max-width: 720px;
}
.lhero__p1 b { color: var(--ink); font-weight: 800; }
.lhero__summary {
  background: transparent; border: 0; padding: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  align-self: stretch;
}
.lhero__sum-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 0; border-top: 1px solid var(--line);
}
.lhero__sum-item:first-child { border-top: 0; padding-top: 0; }
.lhero__sum-item:last-child { padding-bottom: 0; }
.lhero__sum-lbl {
  font-size: 11.5px; color: var(--muted); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.lhero__sum-val { font-size: 14.5px; font-weight: 700; color: var(--ink); }
@media (max-width: 880px) {
  .lhero__layout { grid-template-columns: 1fr; gap: 20px; }
}

/* листинг: фильтры + список в одной секции, прижато под Hero */
.section.section--listing { padding-top: 22px; padding-bottom: 56px; }

/* ============================================================
   Фильтры — одна строка, воздушно, минимально
   ============================================================ */
.lfilters {
  display: flex; align-items: center; gap: 18px;
  font-size: 14px; flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 0 rgba(14,32,48,.02);
}
.lfilters__divider {
  width: 1px; height: 18px; background: var(--line); margin: 0 4px;
}
.lfilters__sort {
  display: inline-flex; align-items: baseline; gap: 5px;
  color: var(--ink); cursor: pointer;
  transition: color .14s;
}
.lfilters__sort:hover { color: var(--brand); }
.lfilters__sort-lbl { color: var(--muted); font-weight: 500; }
.lfilters__sort b { color: var(--ink); font-weight: 800; }
.lfilters__sort .lfilters__chev { color: var(--muted); font-size: 11px; }
.lfilters__chip {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink-soft); font-weight: 500;
  transition: color .14s;
}
.lfilters__chip::before {
  content: ""; width: 14px; height: 14px;
  border: 1.5px solid var(--line);
  flex: none; transition: .14s;
}
.lfilters__chip:hover { color: var(--brand); }
.lfilters__chip:hover::before { border-color: var(--brand); }
.lfilters__chip.is-active { color: var(--brand-dark); font-weight: 700; }
.lfilters__chip.is-active::before {
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
  border-color: var(--brand);
}
.lfilters__spacer { flex: 1; }
.lfilters__count { color: var(--muted); font-weight: 500; white-space: nowrap; }
.lfilters__count b { color: var(--ink); font-weight: 800; }
.lfilters__more {
  color: var(--brand); font-weight: 600; white-space: nowrap;
}
.lfilters__more:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .lfilters { gap: 14px; }
  .lfilters__spacer { display: none; }
}

.searchbox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  display: flex; gap: 10px;
  max-width: 880px;
}
.searchbox__field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 0 14px; border-radius: var(--radius-sm);
  background: var(--bg);
}
.searchbox__field svg { color: var(--brand); flex: none; }
.searchbox__field input {
  border: 0; background: transparent; outline: none;
  font: inherit; font-size: 15.5px; width: 100%; padding: 15px 0;
  color: var(--ink);
}
.searchbox .btn { flex: none; }

.quick-tags {
  display: flex; flex-wrap: nowrap; gap: 8px;
  margin-top: 16px; align-items: center;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.quick-tags::-webkit-scrollbar { display: none; }
.quick-tags__label { font-size: 13px; color: var(--muted); flex: none; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 13.5px; font-weight: 600;
  padding: 7px 13px; border-radius: 7px; flex: none; white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s;
}
.chip:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-tint); }
.chip:focus-visible { border-color: var(--brand); color: var(--brand); outline: none; }

/* trust-карточка (единая белая плашка, один ряд) */
.trust-card {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
}
.trust-card__item { display: flex; align-items: center; gap: 14px; min-width: 0; }
.trust-card__ic {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center;
}
.trust-card__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--faint); line-height: 1.2;
}
.trust-card__val {
  font-size: 16px; font-weight: 800; color: var(--ink);
  margin-top: 3px; line-height: 1.2; white-space: nowrap;
}

/* ============================================================
   Секции
   ============================================================ */
.section { padding: 36px 0; }
.section--tint { background: var(--brand-tint); }
.section--alt  { background: #fff; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 26px;
}
.section__head p { color: var(--muted); margin-top: 6px; font-size: 15px; }
.section__more { font-weight: 600; font-size: 15px; color: var(--brand); white-space: nowrap; }

/* ---------- Виды МРТ — «Чаще всего ищут» + каталог по зонам ---------- */
.vidy-sub {
  font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 14px;
}
.vidy-sub--mt { margin-top: 34px; }

.vidy-pop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vidy-pcard {
  position: relative; display: block;
  background: #fff; border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 15px 46px 15px 18px;
  transition: border-color .14s, box-shadow .14s, transform .12s;
}
.vidy-pcard:hover {
  box-shadow: var(--shadow-sm); transform: translateY(-2px);
  border-color: var(--brand); border-left-color: var(--brand-dark);
}
.vidy-pcard__t { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.vidy-pcard:hover .vidy-pcard__t { color: var(--brand-dark); }
.vidy-pcard__m { font-size: 13px; color: var(--muted); margin-top: 6px; }
.vidy-pcard__m .p { color: var(--brand); font-weight: 800; }
.vidy-pcard__ar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--faint); font-size: 16px; transition: color .14s, transform .14s;
}
.vidy-pcard:hover .vidy-pcard__ar { color: var(--brand); transform: translateY(-50%) translateX(3px); }

/* Сгруппированный список по зонам (паттерн iOS Settings / Stripe sidebar):
   мелкая UPPERCASE-подпись группы НАД карточкой, внутри карточки — строки с
   тонкими разделителями, цена цветом, стрелка справа. */
.vidy-grp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vgrp { display: flex; flex-direction: column; gap: 8px; }
/* Карточки не растягиваем — верх выровнен по сетке, низы естественной высоты */
.vgrp__more { margin-top: 0; }
.vgrp__more summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff;
  transition: border-color .14s, background .14s;
}
.vgrp__more summary::-webkit-details-marker { display: none; }
.vgrp__more summary::after { content: "▾"; font-size: 11px; transition: transform .14s; }
.vgrp__more[open] summary::after { transform: rotate(180deg); }
.vgrp__more summary:hover { border-color: var(--brand); background: var(--brand-tint); }
.vgrp__more .vgrp__list--ext { margin-top: 6px; }
.vgrp__cap {
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint);
  padding: 0 4px; display: flex; justify-content: space-between; align-items: center;
  gap: 8px; flex-wrap: nowrap;
}
.vgrp__cap b {
  color: var(--ink); font-weight: 800; flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vgrp__cap span {
  flex: none; font-size: 10.5px; font-weight: 700; color: var(--faint);
  letter-spacing: .04em;
}
.vgrp__list {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.vgrp__row {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-top: 1px solid var(--line);
  transition: background .12s;
}
.vgrp__row:first-child { border-top: 0; }
.vgrp__row:hover { background: var(--brand-tint); }
.vgrp__nm {
  flex: 1; min-width: 0;
  font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vgrp__row:hover .vgrp__nm { color: var(--brand-dark); }
.vgrp__pr {
  color: var(--brand); font-weight: 800; font-size: 13.5px;
  white-space: nowrap;
}
.vgrp__ar {
  color: var(--faint); flex: none; font-size: 18px; line-height: 1;
  transition: transform .14s, color .14s;
}
.vgrp__row:hover .vgrp__ar { color: var(--brand); transform: translateX(3px); }

/* ---------- Города — компактный список-сетка ссылок ---------- */
.geo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.geo__city {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 16px;
  transition: border-color .14s, box-shadow .14s;
}
.geo__city:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.geo__pin { color: var(--faint); flex: none; display: grid; place-items: center; }
.geo__city:hover .geo__pin { color: var(--brand); }
.geo__t { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.geo__t .cnt { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-top: 3px; }
.geo__city:hover .geo__t { color: var(--brand-dark); }
.geo__city.is-current {
  border-color: var(--brand); background: var(--brand-tint);
}
.geo__city.is-current .geo__pin { color: var(--brand); }
.geo__city.is-current .geo__t { color: var(--brand-dark); }
.geo__badge {
  margin-left: auto; font-size: 11px; font-weight: 700; color: var(--brand-dark);
  background: #fff; border: 1px solid var(--brand-light);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Лучшие цены на дату — карточки «Сделка» ---------- */
.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.deal {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column;
  transition: border-color .14s, box-shadow .14s, transform .12s;
}
.deal:hover { border-color: #cfe2e3; box-shadow: var(--shadow); transform: translateY(-3px); }
.deal__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--discount); color: #fff;
  font-size: 12px; font-weight: 800; padding: 4px 9px; border-radius: 7px;
}
.deal__s {
  font-size: 16px; font-weight: 800; color: var(--ink);
  padding-right: 52px; line-height: 1.25;
}
.deal__s:hover { color: var(--brand); }
.deal__c { font-size: 13px; color: var(--muted); margin: 8px 0 16px; }
.deal__c b { color: var(--ink); font-weight: 600; }
.deal__pr {
  display: flex; align-items: baseline; gap: 9px;
  margin-top: auto; margin-bottom: 14px;
}
.deal__p { font-size: 24px; font-weight: 800; color: var(--ink); }
.deal__old { font-size: 13px; color: var(--faint); text-decoration: line-through; }
.deal .btn { width: 100%; }
@media (max-width: 1080px) { .deals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .deals { grid-template-columns: 1fr; } }

/* ============================================================
   Карточка клиники (листинг / топ)
   ============================================================ */
/* список карточек */
.lclinic-list { display: flex; flex-direction: column; gap: 10px; }
.lclinic {
  display: grid; grid-template-columns: 200px 1fr 200px; gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px;
  transition: box-shadow .14s, border-color .14s;
}
.lclinic:hover { box-shadow: var(--shadow); border-color: #cfe2e3; }

/* фото + бейджи + счётчик фото */
.lclinic__media {
  position: relative; height: 170px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, #dfeef0, #c9e2e4);
}
.lclinic__media img { width: 100%; height: 100%; object-fit: cover; }
.lclinic__photos {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(13,30,38,.72); color: #fff;
  font-size: 12px; font-weight: 600; padding: 4px 9px; border-radius: 999px;
}
.lclinic__badges {
  position: absolute; left: 10px; top: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}

/* центральная колонка */
.lclinic__info { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.lclinic__name { font-size: 19px; font-weight: 800; line-height: 1.25; }
.lclinic__name a { color: var(--ink); }
.lclinic__name a:hover { color: var(--brand); }
.lclinic__rating {
  display: flex; align-items: baseline; gap: 7px;
  font-size: 13.5px; margin-bottom: 2px;
}
.lclinic__stars { color: var(--star); font-size: 15px; letter-spacing: 1px; line-height: 1; }
.lclinic__rating-val { font-weight: 800; color: var(--ink); font-size: 14.5px; }
.lclinic__rating-cnt { color: var(--muted); }
.lclinic__addr { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-top: 4px; }
.lclinic__addr b { color: var(--ink); font-weight: 700; }
.lclinic__addr .walk { color: var(--muted); }
.lclinic__status { font-size: 13.5px; font-weight: 600; }
.lclinic__status--open { color: var(--success); }
.lclinic__status--closed { color: var(--warn); }

/* Цена услуги в карточке — типографический word-mark по принципу логотипа.
   Лейбл («МРТ лёгких») обычным тёмным, цена бирюзовой с оранжевым подчёркиванием. */
.lclinic__price-rect {
  margin-top: 10px; align-self: flex-start;
  display: inline-flex; align-items: baseline; gap: 6px;
  background: transparent; border: 0; padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  letter-spacing: -.01em; line-height: 1.1;
}
.lclinic__price-rect .lbl {
  font-size: 14px; color: var(--ink-soft); font-weight: 600;
}
.lclinic__price-rect b {
  font-size: 20px; font-weight: 700; color: var(--brand);
  border-bottom: 2px solid var(--cta); padding-bottom: 1px;
}

/* правая колонка — телефон-текст + CTA */
.lclinic__action {
  display: flex; flex-direction: column; gap: 12px;
  align-self: center; align-items: stretch;
}
.lclinic__phone-r {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 19px; font-weight: 700; color: var(--ink); text-align: center;
  letter-spacing: -.01em;
  font-family: 'IBM Plex Sans', sans-serif;
  transition: color .14s;
}
.lclinic__phone-r svg { color: var(--brand); flex: none; width: 17px; height: 17px; }
.lclinic__phone-r:hover { color: var(--brand); }
.lclinic__action .btn { width: 100%; }
/* бейджи (используются в .lclinic над фото) */
.badge {
  font-size: 11.5px; font-weight: 700; padding: 4px 9px;
  border-radius: 7px; letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; color: var(--ink-soft);
}
.badge--lic  { color: var(--brand-dark); background: #fff; }
.badge--24   { color: #fff; background: var(--success); }
.badge--sale { color: #fff; background: var(--discount); }
.badge--top  { color: #fff; background: var(--star); }

@media (max-width: 880px) {
  .lclinic { grid-template-columns: 180px 1fr; gap: 16px; }
  .lclinic__action {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .lclinic__target { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .lclinic { grid-template-columns: 1fr; gap: 14px; padding: 14px; }
  .lclinic__media { height: 180px; }
  .lclinic__action { grid-template-columns: 1fr; }
}

/* ============================================================
   Как это работает
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px; position: relative;
}
.step__n {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand-dark);
  font-weight: 800; font-size: 17px;
  display: grid; place-items: center; margin-bottom: 14px;
}
.step h3 { font-size: 16px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); }
.step__arrow {
  position: absolute; right: -13px; top: 38px; color: var(--line);
  z-index: 1;
}
.step:last-child .step__arrow { display: none; }

/* ============================================================
   Преимущества
   ============================================================ */
/* тёмная контрастная полоса — секция-преимуществ */
.adv-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
.adv-section h2 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  max-width: 820px;
}
.adv-section__sub {
  color: #bfe1e3;
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 720px;
}
.adv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.adv__item { display: flex; gap: 18px; }
.adv__ic {
  width: 56px; height: 56px; border-radius: 14px; flex: none;
  background: rgba(255,255,255,.14); color: #fff;
  display: grid; place-items: center;
}
.adv__item h3 {
  color: #fff; font-size: 18px; font-weight: 800;
  margin-bottom: 7px; letter-spacing: -.01em;
}
.adv__item p { color: #cfe6e8; font-size: 14.5px; line-height: 1.55; }
@media (max-width: 880px) { .adv { grid-template-columns: 1fr; gap: 22px; } }

/* ============================================================
   Отзывы
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column;
}
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__who b { font-size: 14.5px; color: var(--ink); display: block; }
.review__who span { font-size: 12.5px; color: var(--faint); }
.review__stars { color: var(--star); margin-left: auto; font-size: 14px; letter-spacing: 1px; }
.review__text { font-size: 14px; color: var(--ink-soft); flex: 1; }
.review__clinic {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
.review__clinic a { color: var(--brand); font-weight: 600; }

/* ============================================================
   SEO-текст
   ============================================================ */
.seotext {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 38px;
}
.seotext h2 { margin-bottom: 16px; }
.seotext h3 { margin: 22px 0 8px; font-size: 18px; }
.seotext p { color: var(--ink-soft); margin-bottom: 12px; max-width: 900px; }
.seotext .clamp { max-height: 168px; overflow: hidden; position: relative; }
.seotext .clamp::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(transparent, #fff);
}
.seotext__toggle {
  margin-top: 14px; color: var(--brand); font-weight: 600;
  font-size: 14.5px; cursor: pointer; display: inline-block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.faq-cards__c {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px;
}
.faq-cards__cat {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-dark); background: var(--brand-light);
  padding: 4px 9px; border-radius: 6px; margin-bottom: 10px;
}
.faq-cards__c h3 {
  font-size: 15.5px; font-weight: 800; color: var(--ink);
  margin-bottom: 8px; line-height: 1.3;
}
.faq-cards__c p {
  color: var(--ink-soft); font-size: 14px; line-height: 1.55;
}
@media (max-width: 980px) { .faq-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .faq-cards { grid-template-columns: 1fr; } }

/* ============================================================
   Футер
   ============================================================ */
.footer {
  background: #102832; color: #9fb4be; font-size: 14px;
  padding: 50px 0 26px; margin-top: 10px;
}
.footer a { color: #b9c9d2; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 34px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__col h4 {
  color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 700;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__about p { margin: 14px 0; line-height: 1.6; color: #8fa4ae; }
.footer__logo {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700; letter-spacing: -.02em; line-height: 1;
}
.footer__logo .logo__kt    { color: #fff; font-size: 24px; }
.footer__logo .logo__price {
  color: #7CD0D6; font-size: 16px;
  border-bottom: 2px solid var(--cta); padding-bottom: 1px;
}
.footer__logo .logo__dot { display: none; }
.footer__contacts b { color: #fff; font-size: 18px; display: block; margin-bottom: 4px; }
.footer__bottom {
  padding-top: 22px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #6f8590;
}
.footer__bottom a { color: #8fa4ae; }
.footer__disclaimer {
  font-size: 12px; color: #5f7682; margin-top: 14px; line-height: 1.6;
  max-width: 980px;
}
.footer__seolinks {
  margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px 16px;
  font-size: 13px;
}

/* ============================================================
   Модалка заявки (двухшаговый SMS-флоу) — превью
   ============================================================ */
.modal-wrap {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(13,30,38,.55);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-wrap:target { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  width: 100%; max-width: 460px; box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
}
.modal__head {
  padding: 24px 28px 0; position: relative;
}
.modal__close {
  position: absolute; right: 18px; top: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); color: var(--muted);
  display: grid; place-items: center; font-size: 18px;
}
.modal__close:hover { background: var(--line); color: var(--ink); }
.modal__clinic { font-size: 13px; color: var(--muted); }
.modal h3 { font-size: 21px; margin: 4px 0 6px; }
.modal__sub { font-size: 14px; color: var(--muted); padding: 0 28px; }
.modal__body { padding: 18px 28px 28px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 15px;
  padding: 13px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg); color: var(--ink);
  outline: none; transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus { border-color: var(--brand); background: #fff; }
.field textarea { resize: vertical; min-height: 70px; }
.modal__step2 { display: none; }
.modal__steps {
  display: flex; gap: 8px; padding: 14px 28px 0; font-size: 12px; color: var(--faint);
}
.modal__steps span { display: flex; align-items: center; gap: 6px; }
.modal__steps .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.modal__steps .dot.is-active { background: var(--brand); color: #fff; }
.code-inputs { display: flex; gap: 10px; margin-bottom: 14px; }
.code-inputs input {
  width: 52px; height: 58px; text-align: center; font-size: 22px; font-weight: 700;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink); outline: none;
}
.modal__legal { font-size: 11.5px; color: var(--faint); margin-top: 12px; line-height: 1.5; }
.modal__legal a { color: var(--brand); }

/* мобильная sticky-CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 16px; display: none; gap: 10px;
  box-shadow: 0 -6px 20px rgba(16,40,56,.08);
}
.mobile-cta .btn { flex: 1; }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 1080px) {
  .vidy-grp { grid-template-columns: 1fr 1fr; }
  .geo { grid-template-columns: repeat(3, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .step__arrow { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 860px) {
  .header__nav, .topbar__links { display: none; }
  .header__burger {
    display: grid; place-items: center; margin-left: auto;
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--brand-tint); color: var(--brand-dark);
  }
  .header .container { gap: 14px; }
  .reviews, .adv { grid-template-columns: 1fr; }
  .geo { grid-template-columns: repeat(2, 1fr); }
  .vidy-pop { grid-template-columns: 1fr; }
  .searchbox { flex-direction: column; }
  .section { padding: 28px 0; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .seotext { padding: 24px 22px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}
@media (max-width: 980px) {
  .trust-card {
    flex-wrap: wrap; justify-content: flex-start;
    gap: 18px 28px; padding: 20px 24px;
  }
  .trust-card__item { flex: 1 1 calc(50% - 28px); }
}
@media (max-width: 560px) {
  .geo, .steps { grid-template-columns: 1fr; }
  .vidy-grp { grid-template-columns: 1fr; }
  .trust-card { gap: 16px; padding: 18px 20px; }
  .trust-card__item { flex: 1 1 100%; }
  .trust-card__val { white-space: normal; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 30px 0 28px; }
}

/* ============================================================
   Пагинация листинга
   ============================================================ */
.lpaging-wrap { margin-top: 28px; }
.lpaging-info {
  text-align: center; color: var(--muted); font-size: 13.5px;
  margin-bottom: 12px;
}
.lpaging-info b { color: var(--ink); font-weight: 700; }
.lpaging {
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
  font-size: 14.5px; font-weight: 600;
  flex-wrap: wrap;
}
.lpaging a, .lpaging .lpaging__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink);
  transition: .14s;
}
.lpaging a:hover { border-color: var(--brand); color: var(--brand); }
.lpaging__num--active {
  background: var(--brand); border-color: var(--brand); color: #fff;
  cursor: default;
}
.lpaging__nav { padding: 0 14px; gap: 4px; }
.lpaging__ellipsis {
  padding: 0 6px; color: var(--muted);
  display: inline-flex; align-items: center; height: 40px;
}

/* ============================================================
   Блок «Другие виды МРТ в группе»
   ============================================================ */
.kt-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kt-related__c {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 6px;
  transition: .14s;
}
.kt-related__c:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.kt-related__name {
  font-size: 15.5px; font-weight: 800; color: var(--ink); line-height: 1.25;
}
.kt-related__c:hover .kt-related__name { color: var(--brand-dark); }
.kt-related__meta {
  font-size: 13px; color: var(--muted); line-height: 1.4;
}
.kt-related__meta b { color: var(--ink); font-weight: 700; }
@media (max-width: 880px) { .kt-related { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kt-related { grid-template-columns: 1fr; } }

/* ============================================================
   Блок популярных МРТ-исследований (чипы)
   ============================================================ */
.kt-popular { display: flex; flex-wrap: wrap; gap: 8px; }
.kt-popular a {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 14px; font-size: 13.5px; color: var(--ink-soft); font-weight: 500;
  transition: .14s; white-space: nowrap;
}
.kt-popular a:hover {
  border-color: var(--brand); color: var(--brand-dark);
  background: var(--brand-tint);
}
.kt-popular a .cnt { color: var(--muted); margin-left: 6px; font-weight: 500; font-size: 12.5px; }
.kt-popular a:hover .cnt { color: var(--brand); }

/* ============================================================
   Карточка клиники — Hero + sticky-контакты
   ============================================================ */
.chero {
  background:
    radial-gradient(800px 250px at 78% -10%, #d7edef 0, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef5f6 100%);
  border-bottom: 1px solid var(--line);
  padding: 26px 0 36px;
}
.chero__crumbs {
  font-size: 13px; color: var(--muted); margin-bottom: 16px;
}
.chero__crumbs a { color: var(--muted); }
.chero__crumbs a:hover { color: var(--brand); }

.chero__layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 32px;
  align-items: start;
}
.chero__main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }

.chero__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.chero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.7); border: 1px solid #cfdee0;
  color: var(--ink-soft); font-size: 12.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 100px;
}
.chero__badge--lic { color: var(--success); border-color: #c6e2cd; }
.chero__badge--lic svg { color: var(--success); }

.chero h1 {
  font-size: clamp(24px, 3vw, 32px); line-height: 1.15; letter-spacing: -.02em;
  font-weight: 800; margin: 4px 0 2px;
}

.chero__rating { display: flex; align-items: baseline; gap: 8px; font-size: 14.5px; flex-wrap: wrap; }
.chero__stars { color: var(--star); font-size: 17px; letter-spacing: 1px; line-height: 1; }
.chero__rating-val { font-weight: 800; font-size: 16px; color: var(--ink); }
.chero__rating-cnt { color: var(--muted); }
.chero__rating-dot { color: var(--faint); }
.chero__rating-link { color: var(--brand); font-weight: 600; }
.chero__rating-link:hover { text-decoration: underline; }

.chero__addr {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14.5px; color: var(--ink-soft); margin-top: 6px;
}
.chero__addr-row { display: flex; align-items: center; gap: 8px; }
.chero__addr-row b { color: var(--ink); font-weight: 700; }
.chero__addr-row svg { color: var(--muted); flex: none; }

.chero__status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; margin-top: 4px;
}
.chero__status--open { color: var(--success); }
.chero__status--closed { color: var(--muted); }
.chero__status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; flex: none;
}

.chero__lead {
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
  max-width: 640px; margin-top: 8px;
}

/* sticky-контакты — брендовый акцент (V2). Top отступ увеличен чтобы
   верх блока (лейбл) был всегда виден при скролле — особенно на коротких viewport. */
.chero__contacts {
  background: linear-gradient(160deg, var(--brand-tint) 0%, #fff 100%);
  border: 1px solid #b9dcdd; border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 12px 30px -18px rgba(31,132,137,.35);
  position: sticky; top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.chero__lbl {
  font-size: 11px; font-weight: 700; color: var(--brand-dark);
  text-transform: uppercase; letter-spacing: .06em; text-align: center;
}
.chero__phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 23px; font-weight: 800; color: var(--brand-dark); letter-spacing: .01em;
  padding: 2px 0;
}
.chero__phone svg { color: var(--brand); flex: none; }
.chero__phone:hover { color: var(--brand); }

.chero__cta {
  padding: 13px 14px; font-size: 15px; text-align: center; border-radius: 10px;
  box-shadow: 0 6px 18px -6px rgba(247,127,0,.45);
}

.chero__hint {
  text-align: center; font-size: 12px; color: var(--brand-dark); font-weight: 600;
}

@media (max-width: 880px) {
  .chero__layout { grid-template-columns: 1fr; }
  .chero__contacts { position: static; }
}

.chero__open { color: var(--success); font-weight: 700; }

/* ============================================================
   Карточка клиники — Галерея (одна линия)
   ============================================================ */
.cgallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.cgallery__item {
  position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 10px;
  background: #f0f4f6; cursor: pointer;
}
.cgallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.cgallery__item:hover img { transform: scale(1.05); }
.cgallery__more {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,32,48,.55); color: #fff; font-weight: 700; font-size: 15px;
}
@media (max-width: 880px) { .cgallery { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .cgallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .cgallery { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Карточка клиники — About
   ============================================================ */
.cabout { display: flex; flex-direction: column; gap: 14px; }
.cabout p { color: var(--ink-soft); line-height: 1.65; font-size: 15px; max-width: 800px; }
.cabout p b { color: var(--ink); font-weight: 700; }

/* ============================================================
   Карточка клиники — Прайс (поиск + список с раскрытием)
   ============================================================ */
.cprice__search { margin-bottom: 14px; position: relative; }
.cprice__search input {
  width: 100%; padding: 12px 16px 12px 44px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  font-size: 14.5px; color: var(--ink);
  transition: .14s;
}
.cprice__search input:focus {
  border-color: var(--brand); outline: none;
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.cprice__search::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B8A95' stroke-width='2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3'/></svg>") no-repeat center/contain;
}
.cprice__wrap {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; position: relative;
}
.cprice__list {
  max-height: 460px; overflow: hidden; position: relative;
}
.cprice__list::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 90%);
  pointer-events: none;
}
.cprice__wrap.is-expanded .cprice__list { max-height: none; }
.cprice__wrap.is-expanded .cprice__list::after { display: none; }
.cprice__row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 18px; align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  transition: background .14s;
}
.cprice__row:first-child { border-top: 0; }
.cprice__row:hover { background: #fafcfc; }
.cprice__name { font-size: 14.5px; color: var(--ink); font-weight: 600; line-height: 1.3; }
.cprice__price { font-size: 15.5px; color: var(--ink); font-weight: 800; white-space: nowrap; }
.cprice__price .from { color: var(--muted); font-weight: 600; font-size: 13px; margin-right: 3px; }
.cprice__btn { padding: 8px 14px !important; font-size: 13px !important; border-radius: 8px !important; }
.cprice__more {
  display: block; text-align: center; padding: 14px;
  background: var(--bg); color: var(--brand-dark); font-weight: 700; font-size: 14px;
  border-top: 1px solid var(--line);
}
.cprice__more:hover { background: var(--brand-tint); }
.cprice__highlight { background: rgba(30, 91, 195, .10); }
.cprice__highlight .cprice__name::before {
  content: "👁 Вы смотрели · "; color: var(--brand-dark); font-weight: 700;
}
@media (max-width: 560px) {
  .cprice__row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   Карточка клиники — Акции
   ============================================================ */
.cpromo { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.cpromo__c {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.cpromo__c--main {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border-color: #fdba74;
}
.cpromo__c::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,.35); pointer-events: none;
}
.cpromo__lbl {
  font-size: 11.5px; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  position: relative; z-index: 1;
}
.cpromo__c--main .cpromo__lbl { color: #c2410c; }
.cpromo__title {
  font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1.25;
  position: relative; z-index: 1;
}
.cpromo__desc {
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
  position: relative; z-index: 1; max-width: 480px;
}
.cpromo__until {
  font-size: 12px; color: var(--muted); font-weight: 600;
  position: relative; z-index: 1; margin-top: 2px;
}
@media (max-width: 720px) { .cpromo { grid-template-columns: 1fr; } }

/* ============================================================
   Карточка клиники — Сводка рейтинга + темы отзывов
   ============================================================ */
.crating-block { display: grid; grid-template-columns: 280px 1fr; gap: 28px; margin-bottom: 22px; align-items: center; }
.crating-summary {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px; text-align: center;
}
.crating-summary__val { font-size: 48px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.crating-summary__stars { color: var(--star); font-size: 19px; letter-spacing: 2px; margin: 8px 0 4px; }
.crating-summary__cnt { font-size: 13px; color: var(--muted); }
.crating-bars { display: flex; flex-direction: column; gap: 8px; }
.crating-bar { display: grid; grid-template-columns: 32px 1fr 60px; gap: 12px; align-items: center; font-size: 13px; }
.crating-bar__lbl { color: var(--muted); font-weight: 600; }
.crating-bar__track {
  height: 8px; background: var(--line); border-radius: 4px; overflow: hidden;
}
.crating-bar__fill { height: 100%; background: var(--star); border-radius: 4px; }
.crating-bar__cnt { color: var(--muted); text-align: right; font-size: 12.5px; font-weight: 600; }
@media (max-width: 720px) { .crating-block { grid-template-columns: 1fr; } }

/* ============================================================
   Карточка клиники — Карта
   ============================================================ */
.cmap { display: grid; grid-template-columns: 1fr 300px; gap: 18px; }
.cmap__visual {
  aspect-ratio: 16/9;
  border: 1px solid var(--line); border-radius: 12px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e7f0f1 0%, #d7edef 100%); /* fallback до загрузки Leaflet */
}
.cmap__visual > .leaflet-container { width: 100%; height: 100%; }
.cmap__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,132,137,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,132,137,.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cmap__pin {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(31,132,137,.55);
  position: relative; z-index: 2;
}
.cmap__info {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 14px;
}
.cmap__addr { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.cmap__metros { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.cmap__metro {
  display: grid; grid-template-columns: 16px 1fr auto; gap: 8px; align-items: center;
  font-size: 13.5px; color: var(--ink-soft);
}
.cmap__metro svg { color: var(--muted); }
.cmap__metro b { color: var(--ink); font-weight: 700; }
.cmap__metro .time { color: var(--muted); font-size: 13px; }
@media (max-width: 720px) { .cmap { grid-template-columns: 1fr; } }

/* ============================================================
   Карточка клиники — Лицензии и сертификаты
   ============================================================ */
.ccerts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ccert {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px; display: flex; flex-direction: column; gap: 8px;
  transition: .14s; color: inherit;
}
.ccert:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.ccert__visual {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #f8fafb 0%, #eef5f6 100%);
  border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; position: relative;
}
.ccert__visual img {
  width: 100%; height: 100%; object-fit: contain;
  background: #fff;
}
.ccert__title { font-size: 13px; font-weight: 600; color: var(--ink-soft); line-height: 1.3; text-align: center; }
@media (max-width: 720px) { .ccerts { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Статичные страницы — About, Privacy, Partners, Contacts
   Узкая центральная колонка, типографика для длинных текстов.
   ============================================================ */
.static-page { padding: 56px 0 88px; }
.static-page .container { max-width: 860px; }

.static-page__crumbs { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.static-page__crumbs a { color: var(--muted); }
.static-page__crumbs a:hover { color: var(--brand); }
.static-page__crumbs .sep { margin: 0 8px; color: var(--faint); }

.static-hero { margin-bottom: 56px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.static-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.static-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.static-section { margin-bottom: 44px; scroll-margin-top: 80px; }
.static-section:last-child { margin-bottom: 0; }
.static-section__heading {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.static-section__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.static-section__body p:last-child { margin-bottom: 0; }
.static-section__body strong { font-weight: 700; color: var(--ink); }

/* ── Декоративный градиент за hero ─────────────────────── */
.static-page__hero-wrap {
  position: relative;
  margin-bottom: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.static-page__hero-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -56px;
  width: 100vw;
  max-width: 1400px;
  height: 360px;
  transform: translateX(-50%);
  background:
    radial-gradient(620px 240px at 25% 30%, rgba(14,124,134,.10), transparent 65%),
    radial-gradient(520px 220px at 80% 20%, rgba(255,107,53,.07), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.static-page__hero-wrap .static-hero {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* ── Блок «МРТ Прайс в цифрах» — 4 ячейки ─────────────────── */
.static-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.static-stats__cell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: .14s;
}
.static-stats__cell:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.static-stats__ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.static-stats__val {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.static-stats__label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── Блок «Мы работаем в N городах» ──────────────────────── */
.static-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.static-cities__cell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink) !important;
  transition: .14s;
  text-decoration: none !important;
}
.static-cities__cell:hover {
  border-color: var(--brand);
  background: var(--brand-tint);
}
.static-cities__name {
  font-weight: 600;
  font-size: 15px;
}
.static-cities__count {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.static-cities__cell:hover .static-cities__count {
  background: #fff;
  color: var(--brand-dark);
}

@media (max-width: 960px) {
  .static-stats { grid-template-columns: repeat(2, 1fr); }
  .static-cities { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .static-page { padding: 36px 0 64px; }
  .static-page__hero-wrap { margin-bottom: 40px; padding-bottom: 28px; }
  .static-section { margin-bottom: 36px; }
  .static-section__body p { font-size: 16px; line-height: 1.65; }
  .static-stats { gap: 12px; margin-bottom: 40px; }
  .static-stats__cell { padding: 16px; gap: 12px; }
  .static-stats__ic { width: 40px; height: 40px; }
  .static-stats__val { font-size: 22px; }
  .static-cities { grid-template-columns: 1fr; }
}

/* ── revision label под H1 на статичных страницах ───────────── */
.static-hero__revision {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  background: var(--brand-tint);
  border: 1px solid var(--line-soft);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0;
}

/* ── Блок «Главное в двух словах» на /privacy ───────────────── */
.privacy-summary {
  background: linear-gradient(180deg, var(--brand-tint) 0%, var(--card) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
  margin-bottom: 56px;
}
.privacy-summary__heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-summary__heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--brand);
  border-radius: 2px;
}
.privacy-summary__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.privacy-summary__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.privacy-summary__ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.privacy-summary__label {
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0 6px;
  font-size: 15px;
}
.privacy-summary__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 720px) {
  .privacy-summary { padding: 22px; }
  .privacy-summary__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── список юр.разделов: убираем default padding на статичных p ── */
.static-section__body p:has(> br),
.static-section__body p {
  /* нумерация в headings уже идёт сама, body должен быть сплошным текстом */
}

/* ── контактный CTA в конце статичной страницы ────────────── */
.static-page__footer-cta {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.static-page__footer-cta-text {
  font-size: 15px;
  color: var(--ink-soft);
}
.static-page__footer-cta-text strong { color: var(--ink); font-weight: 700; }
.static-page__footer-cta-email {
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-dark);
}
.static-page__footer-cta-email:hover { color: var(--brand); }

/* ============================================================
   /partners — лендинг для клиник
   ============================================================ */

/* Главный CTA сразу после hero */
.partners-hero-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.partners-hero-cta .btn--lg {
  padding: 14px 26px;
  font-size: 16px;
}
.partners-hero-cta__note {
  font-size: 14px;
  color: var(--muted);
}

/* «Что получает клиника» — 4 карточки */
.partners-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 4px;
}
.partners-features__cell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  transition: .14s;
}
.partners-features__cell:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.partners-features__ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.partners-features__label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--ink);
  margin: 4px 0 6px;
}
.partners-features__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* «Как это работает» — нумерованные шаги */
.partners-steps {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}
.partners-steps__cell {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
}
.partners-steps__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(14,124,134,.25);
}
.partners-steps__body { padding: 4px 0; }
.partners-steps__title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 6px;
}
.partners-steps__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* «Условия и оплата» — список с галочками */
.partners-conditions {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.partners-conditions li {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.partners-conditions li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(45deg, var(--brand) 50%, transparent 50%);
}
.partners-conditions li::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 22px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* FAQ — accordion на details */
.partners-faq {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.partners-faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .14s;
}
.partners-faq__item[open] {
  border-color: var(--brand);
}
.partners-faq__q {
  padding: 16px 20px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.partners-faq__q::-webkit-details-marker { display: none; }
.partners-faq__q::after {
  content: '+';
  font-weight: 400;
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
  transition: transform .14s;
}
.partners-faq__item[open] .partners-faq__q::after {
  content: '−';
}
.partners-faq__a {
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Контактный блок-CTA для партнёров (большая карточка в конце) */
.partners-contact {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.partners-contact__heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #fff;
}
.partners-contact__lead {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  margin: 0;
}
.partners-contact__channels {
  display: grid;
  gap: 12px;
}
.partners-contact__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: .14s;
  backdrop-filter: blur(8px);
}
.partners-contact__channel:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
.partners-contact__channel svg { color: rgba(255,255,255,.9); }

@media (max-width: 960px) {
  .partners-features { grid-template-columns: 1fr; }
  .partners-contact { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 720px) {
  .partners-steps__cell { grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 18px; }
  .partners-steps__num { width: 44px; height: 44px; font-size: 18px; }
  .partners-contact { padding: 26px; }
  .partners-contact__heading { font-size: 22px; }
}

/* ============================================================
   /contacts — минимальная контактная страница
   ============================================================ */

/* Главная карточка с email */
.contacts-main {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 48px;
  color: #fff;
}
.contacts-main__email-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.contacts-main__email {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff !important;
  letter-spacing: -0.01em;
  text-decoration: none !important;
}
.contacts-main__email:hover { color: rgba(255,255,255,.85) !important; }

.contacts-main__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff;
  color: var(--brand-dark) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: .14s;
}
.contacts-main__cta:hover { background: rgba(255,255,255,.92); transform: translateY(-1px); }
.contacts-main__cta svg { color: var(--brand-dark); }

.contacts-main__note {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  margin: 0;
  max-width: 720px;
}

/* Карточки часов и юр.инфы — сетка 2 колонки */
.contacts-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.contacts-info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.contacts-info-card__heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-info-card__heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--brand);
  border-radius: 2px;
}
.contacts-info-card__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.contacts-info-card__body p:last-child { margin-bottom: 0; }
.contacts-info-card__body strong { color: var(--ink); font-weight: 700; }
.contacts-info-card__link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-dark);
}
.contacts-info-card__link:hover { color: var(--brand); }

@media (max-width: 720px) {
  .contacts-main { padding: 28px; }
  .contacts-main__email { font-size: 22px; }
  .contacts-info-grid { grid-template-columns: 1fr; }
}


/* ===== Мобильное меню (#29) ===== */
.mobilemenu { position: fixed; inset: 0; z-index: 1000; }
.mobilemenu__backdrop { position: absolute; inset: 0; background: rgba(10, 22, 32, .45); }
.mobilemenu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 80%; max-width: 320px;
  background: #fff; box-shadow: -10px 0 36px rgba(0, 0, 0, .18);
  padding: 20px 20px 28px; display: flex; flex-direction: column;
  animation: mm-slide .18s ease-out;
}
@keyframes mm-slide { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobilemenu__close {
  align-self: flex-end; width: 42px; height: 42px; border: none; cursor: pointer;
  background: var(--brand-tint); color: var(--brand-dark); border-radius: 10px; font-size: 18px;
}
.mobilemenu__panel ul { list-style: none; margin: 10px 0 0; padding: 0; }
.mobilemenu__panel li { border-bottom: 1px solid #eef2f5; }
.mobilemenu__panel a { display: block; padding: 15px 4px; color: var(--ink); font-weight: 600; font-size: 16px; text-decoration: none; }
.mobilemenu__panel a:hover { color: var(--brand); }

/* ===== Списки HTML-карты сайта и индекса клиник ===== */
.sitemap-list {
  list-style: none; margin: 0; padding: 0;
  columns: 3; column-gap: 28px;
}
.sitemap-list li { break-inside: avoid; margin-bottom: 9px; }
.sitemap-list a { color: var(--brand-dark); text-decoration: none; font-size: 14px; }
.sitemap-list a:hover { color: var(--brand); text-decoration: underline; }
@media (max-width: 860px) { .sitemap-list { columns: 2; } }
@media (max-width: 520px) { .sitemap-list { columns: 1; } }
