/* ============================================================
   Справки.мед — дизайн-система (яркий продающий)
   Бирюза + янтарный акцент, акцент на скорость «25 минут»,
   крупные CTA, триггеры доверия, отзывы.
   ============================================================ */

:root {
  /* Бирюза (фирменный) */
  --tl-50:  #f0fdfa;
  --tl-100: #ccfbf1;
  --tl-200: #99f6e4;
  --tl-300: #5eead4;
  --tl-400: #2dd4bf;
  --tl-500: #14b8a6;
  --tl-600: #0d9488;
  --tl-700: #0f766e;
  --tl-800: #115e59;
  --tl-900: #134e4a;

  /* Янтарный акцент (срочность / «25 минут» / цены) */
  --am-100: #fef3c7;
  --am-300: #fcd34d;
  --am-400: #fbbf24;
  --am-500: #f59e0b;
  --am-600: #d97706;

  /* Нейтральные */
  --ink-50:  #f8fafc;
  --ink-100: #f1f5f9;
  --ink-200: #e2e8f0;
  --ink-300: #cbd5e1;
  --ink-400: #94a3b8;
  --ink-500: #64748b;
  --ink-600: #475569;
  --ink-700: #334155;
  --ink-800: #1e293b;
  --ink-900: #0f172a;

  --white:   #ffffff;
  --bg:      #f6fbfa;
  --wa:      #25d366;
  --wa-dark: #1ebe5d;
  --success: #10b981;
  --danger:  #ef4444;

  /* Типографика */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fs-xs:   0.8125rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  3.75rem;
  --fs-6xl:  4.5rem;

  /* Радиусы */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Тени */
  --sh-xs: 0 1px 2px rgba(15, 23, 42, .05);
  --sh-sm: 0 2px 10px rgba(15, 23, 42, .06);
  --sh-md: 0 10px 30px rgba(15, 23, 42, .08);
  --sh-lg: 0 24px 60px rgba(15, 23, 42, .12);
  --sh-tl: 0 14px 34px rgba(13, 148, 136, .32);
  --sh-am: 0 14px 30px rgba(245, 158, 11, .3);
  --sh-wa: 0 14px 30px rgba(37, 211, 102, .35);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(60px, 8vw, 112px);

  --tr-fast: 150ms cubic-bezier(.2, .8, .2, 1);
  --tr-base: 260ms cubic-bezier(.2, .8, .2, 1);
}

/* ============================================================
   Сброс
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--tl-300); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   Утилиты
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(44px, 6vw, 76px) 0; }
.text-center { text-align: center; }
.text-muted { color: var(--ink-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--tl-50);
  color: var(--tl-700);
  font-size: var(--fs-sm);
  font-weight: 700;
  border-radius: var(--r-full);
  letter-spacing: .01em;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--tl-500);
  border-radius: 50%;
}
.eyebrow--amber { background: var(--am-100); color: var(--am-600); }
.eyebrow--amber::before { background: var(--am-500); }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.1rem, 5.4vw, var(--fs-6xl)); }
h2 { font-size: clamp(1.7rem, 3.8vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.2rem, 2vw, var(--fs-xl)); }
h4 { font-size: var(--fs-lg); }
p { color: var(--ink-600); }
.lead { font-size: var(--fs-md); color: var(--ink-600); max-width: 60ch; }

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 60px);
}
.section__head .lead { max-width: 58ch; }

.accent { color: var(--tl-600); }
.accent-am { color: var(--am-600); }

/* ============================================================
   Кнопки
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 24px;
  font-weight: 700;
  font-size: var(--fs-base);
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  transition: transform var(--tr-fast), box-shadow var(--tr-base), background var(--tr-base), color var(--tr-base), border-color var(--tr-base);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary { background: var(--tl-600); color: var(--white); box-shadow: var(--sh-tl); }
.btn--primary:hover { background: var(--tl-700); box-shadow: 0 18px 40px rgba(13, 148, 136, .4); transform: translateY(-2px); }

.btn--wa { background: var(--wa); color: var(--white); box-shadow: var(--sh-wa); }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

.btn--amber { background: var(--am-500); color: var(--white); box-shadow: var(--sh-am); }
.btn--amber:hover { background: var(--am-600); transform: translateY(-2px); }

.btn--ghost { background: var(--white); color: var(--ink-800); border-color: var(--ink-200); }
.btn--ghost:hover { border-color: var(--tl-400); color: var(--tl-700); transform: translateY(-2px); }

.btn--lg { height: 58px; padding: 0 30px; font-size: var(--fs-md); }
.btn--sm { height: 42px; padding: 0 18px; font-size: var(--fs-sm); }
.btn--block { width: 100%; }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn--lg svg { width: 21px; height: 21px; }

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  background: var(--ink-900);
  color: rgba(255, 255, 255, .82);
  font-size: var(--fs-sm);
}
.topbar__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 42px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: inherit; transition: color var(--tr-fast); }
.topbar a:hover { color: var(--tl-300); }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 16px; height: 16px; opacity: .85; }
.topbar__item--wa { color: var(--wa); font-weight: 700; }
.topbar__item--wa svg { opacity: 1; }
.topbar__item--wa:hover { color: #4ade80; }
.topbar__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  background: rgba(245, 158, 11, .18);
  color: var(--am-300);
  border-radius: var(--r-full);
  font-weight: 700; font-size: var(--fs-xs);
}
@media (max-width: 760px) {
  .topbar__left .topbar__item--addr { display: none; }
  .topbar__right .topbar__item--hours { display: none; }
}

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}
.header.is-scrolled { border-bottom-color: var(--ink-100); box-shadow: var(--sh-sm); }
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}

/* Логотип-знак «Справки.мед» (без картинки) */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--tl-400), var(--tl-700));
  color: var(--white);
  border-radius: 13px;
  box-shadow: var(--sh-tl);
  flex-shrink: 0;
}
.logo__mark svg { width: 26px; height: 26px; }
.logo__name { line-height: 1.05; }
.logo__name b {
  display: block;
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.logo__name b i { font-style: normal; color: var(--tl-600); }
.logo__name small {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 3px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700);
  padding: 8px 0; position: relative; transition: color var(--tr-fast);
}
.nav__link:hover, .nav__link.is-active { color: var(--tl-700); }
.nav__link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--tl-500); border-radius: 2px;
}
.nav__cta { margin-left: 8px; }

.burger {
  display: none; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 12px; border: 1.5px solid var(--ink-200); color: var(--ink-800);
}
.burger svg { width: 22px; height: 22px; }
.burger:hover { border-color: var(--tl-400); color: var(--tl-700); }

@media (max-width: 980px) {
  .nav__link, .nav__cta { display: none; }
  .burger { display: inline-flex; }
}

/* Мобильное меню */
.mnav {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 23, 42, .4);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity var(--tr-base);
}
.mnav.is-open { opacity: 1; pointer-events: auto; }
.mnav__panel {
  position: absolute; top: 0; right: 0;
  width: min(360px, 92vw); height: 100%;
  background: var(--white); padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform var(--tr-base);
  overflow-y: auto;
}
.mnav.is-open .mnav__panel { transform: translateX(0); }
.mnav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mnav__close {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink-100); color: var(--ink-700);
}
.mnav__link {
  display: block; padding: 14px 12px; font-weight: 700; font-size: var(--fs-md);
  border-radius: var(--r-md); color: var(--ink-800);
}
.mnav__link:hover { background: var(--tl-50); color: var(--tl-700); }
.mnav__footer { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(44px, 7vw, 88px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(ellipse 70% 60% at 88% -5%, rgba(45, 212, 191, .18), transparent 60%),
    radial-gradient(ellipse 60% 50% at -5% 105%, rgba(245, 158, 11, .09), transparent 55%),
    linear-gradient(180deg, var(--tl-50), var(--white) 55%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero__title { margin-top: 22px; }
.hero__title .hl {
  position: relative;
  color: var(--tl-700);
  white-space: nowrap;
}
.hero__title .hl::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: .08em;
  height: .32em; background: var(--am-300); opacity: .55; z-index: -1;
  border-radius: 4px;
}
.hero__sub { margin-top: 20px; font-size: var(--fs-md); color: var(--ink-600); max-width: 50ch; }
.hero__sub strong { color: var(--ink-900); }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note {
  margin-top: 14px; font-size: var(--fs-sm); color: var(--ink-500);
  display: flex; align-items: center; gap: 8px;
}
.hero__note svg { width: 16px; height: 16px; color: var(--success); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge-row .b {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; font-size: var(--fs-sm); font-weight: 700;
  background: var(--white); color: var(--ink-700);
  border: 1.5px solid var(--ink-200); border-radius: var(--r-full);
  box-shadow: var(--sh-xs);
}
.badge-row .b svg { width: 15px; height: 15px; color: var(--success); }

/* Hero визуал — карточка-таймер «25 минут» */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__timer {
  position: relative; z-index: 2;
  width: min(100%, 380px);
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 30px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--ink-100);
}
.hero__timer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero__timer-top .tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; font-size: var(--fs-xs); font-weight: 800;
  background: var(--success); color: var(--white);
  border-radius: var(--r-full); letter-spacing: .03em;
}
.hero__timer-top .tag svg { width: 13px; height: 13px; }
.hero__big {
  display: flex; align-items: baseline; gap: 10px; justify-content: center;
  padding: 14px 0 6px;
}
.hero__big b {
  font-size: clamp(3.4rem, 9vw, 5rem); font-weight: 800; line-height: 1;
  color: var(--tl-700); letter-spacing: -0.04em;
}
.hero__big span { font-size: var(--fs-xl); font-weight: 800; color: var(--ink-400); }
.hero__big-cap { text-align: center; font-size: var(--fs-sm); color: var(--ink-500); margin-bottom: 18px; }
.hero__timer .row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--ink-100);
}
.hero__timer .ic {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--tl-50); color: var(--tl-700); border-radius: 11px; flex-shrink: 0;
}
.hero__timer .ic svg { width: 19px; height: 19px; }
.hero__timer .tx b { display: block; color: var(--ink-900); font-weight: 700; font-size: var(--fs-sm); }
.hero__timer .tx span { font-size: var(--fs-xs); color: var(--ink-500); }
.hero__blob {
  position: absolute; z-index: 1; border-radius: 50%; filter: blur(8px);
}
.hero__chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; font-size: var(--fs-sm); font-weight: 700;
  background: var(--white); border-radius: var(--r-full);
  box-shadow: var(--sh-md); border: 1px solid var(--ink-100);
  color: var(--ink-800);
}
.hero__chip svg { width: 16px; height: 16px; color: var(--am-500); }
.hero__chip--tl { left: -14px; bottom: 60px; }
.hero__chip--star { right: -10px; top: 36px; }
.hero__chip--star svg { color: var(--am-400); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 8px; }
  .hero__chip--tl { left: 4px; }
  .hero__chip--star { right: 4px; }
}

/* ============================================================
   Полоса доверия (числа с count-up)
   ============================================================ */
.trust {
  background: var(--ink-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 15% 0%, rgba(13, 148, 136, .35), transparent 60%),
    radial-gradient(ellipse 40% 80% at 90% 100%, rgba(245, 158, 11, .18), transparent 60%);
}
.trust__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: clamp(36px, 5vw, 56px) 0;
}
.trust__item { text-align: center; }
.trust__item b {
  display: block; font-size: clamp(2rem, 4vw, var(--fs-4xl));
  font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1;
}
.trust__item b i { font-style: normal; color: var(--tl-300); }
.trust__item span { display: block; margin-top: 8px; font-size: var(--fs-sm); color: rgba(255,255,255,.66); }
@media (max-width: 620px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}

/* ============================================================
   Быстрые ответы (Q&A)
   ============================================================ */
.features { background: var(--bg); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.qa__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.qa {
  display: flex; flex-direction: column; padding: 24px 22px;
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.qa:hover { transform: translateY(-3px); border-color: var(--tl-200); box-shadow: var(--sh-md); }
.qa__ic {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--tl-50); color: var(--tl-600); border-radius: var(--r-md); margin-bottom: 14px;
}
.qa__ic svg { width: 22px; height: 22px; }
.qa h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.qa p { font-size: var(--fs-sm); color: var(--ink-600); }
.qa p strong { color: var(--ink-900); }
.qa p a { color: var(--tl-700); font-weight: 700; white-space: nowrap; }
.qa p a:hover { text-decoration: underline; }
@media (max-width: 980px) { .qa__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .qa__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Услуги
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  position: relative; display: flex; flex-direction: column; padding: 26px;
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
  overflow: hidden;
}
.service::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--tl-500), var(--tl-300));
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr-base);
}
.service:hover { transform: translateY(-4px); border-color: var(--tl-200); box-shadow: var(--sh-md); }
.service:hover::before { transform: scaleX(1); }
.service--hot { border-color: var(--am-300); box-shadow: 0 0 0 3px var(--am-100); }
.service__flag {
  position: absolute; top: 14px; right: -34px;
  transform: rotate(45deg);
  background: var(--am-500); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 4px 40px; box-shadow: var(--sh-xs);
}
.service__ic {
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--tl-50); color: var(--tl-700); border-radius: 15px; margin-bottom: 16px;
}
.service__ic svg { width: 28px; height: 28px; }
.service h3 { font-size: var(--fs-lg); margin-bottom: 6px; }
.service p { color: var(--ink-500); font-size: var(--fs-sm); margin-bottom: 16px; }
.service__meta {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: space-between;
}
.service__price { font-weight: 800; color: var(--ink-900); font-size: var(--fs-lg); }
.service__price small { font-weight: 600; font-size: var(--fs-xs); color: var(--ink-500); margin-right: 3px; }
.service__more {
  font-size: var(--fs-sm); font-weight: 700; color: var(--tl-700);
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--tr-fast);
}
.service__more::after { content: '→'; transition: transform var(--tr-fast); }
.service:hover .service__more { gap: 10px; }
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Как это работает
   ============================================================ */
.steps { background: linear-gradient(180deg, var(--white), var(--bg)); }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 28px 24px; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--ink-100); }
.step__num {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--tl-500), var(--tl-700));
  color: var(--white); border-radius: 50%; font-weight: 800; margin-bottom: 18px;
  box-shadow: var(--sh-tl); font-size: var(--fs-lg);
}
.step h3 { font-size: var(--fs-md); margin-bottom: 4px; }
.step p { font-size: var(--fs-sm); }
@media (max-width: 980px) { .steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Цены
   ============================================================ */
.prices { background: var(--bg); }
.prices__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.price-card { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-xl); padding: 32px; }
.price-card--accent {
  background: linear-gradient(150deg, var(--tl-800), var(--tl-600));
  color: var(--white); border: 0; position: relative; overflow: hidden;
}
.price-card--accent::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}
.price-card--accent h3, .price-card--accent .price-row b { color: var(--white); }
.price-card--accent .price-row { border-color: rgba(255,255,255,.14); }
.price-card--accent .price-row span { color: rgba(255,255,255,.92); }
.price-card h3 { font-size: var(--fs-xl); margin-bottom: 18px; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--ink-100);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row b { color: var(--ink-900); font-weight: 600; font-size: var(--fs-sm); }
.price-row span { font-weight: 800; font-size: var(--fs-md); color: var(--ink-900); white-space: nowrap; }
.price-card--accent .price-row span { color: var(--am-300); }
.price-card .btn { margin-top: 22px; }
.price-note { margin-top: 14px; font-size: var(--fs-xs); color: var(--ink-500); }
.price-card--accent .price-note { color: rgba(255,255,255,.7); }
@media (max-width: 760px) { .prices__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Отзывы
   ============================================================ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  display: flex; flex-direction: column; gap: 14px; padding: 28px;
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.review__stars { display: flex; gap: 3px; color: var(--am-400); }
.review__stars svg { width: 18px; height: 18px; }
.review__text { color: var(--ink-700); font-size: var(--fs-base); line-height: 1.6; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__ava {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--tl-400), var(--tl-700)); color: var(--white);
  font-weight: 800; font-size: var(--fs-md); flex-shrink: 0;
}
.review__who b { display: block; color: var(--ink-900); font-size: var(--fs-sm); }
.review__who span { font-size: var(--fs-xs); color: var(--ink-500); }
@media (max-width: 920px) { .reviews__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}
.faq-item:hover { border-color: var(--tl-200); }
.faq-item[open] { border-color: var(--tl-200); box-shadow: var(--sh-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 21px 24px; font-weight: 700; color: var(--ink-900); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--tl-600);
  transition: transform var(--tr-base); width: 24px; text-align: center; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body { padding: 0 24px 21px; color: var(--ink-600); }

/* ============================================================
   Контакты + карта
   ============================================================ */
.contacts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-block {
  display: flex; gap: 16px; padding: 22px;
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-lg); margin-bottom: 16px;
}
.contact-block__ic {
  flex-shrink: 0; width: 50px; height: 50px; display: grid; place-items: center;
  background: var(--tl-50); color: var(--tl-700); border-radius: var(--r-md);
}
.contact-block__ic svg { width: 23px; height: 23px; }
.contact-block b { display: block; color: var(--ink-900); font-weight: 700; margin-bottom: 4px; }
.contact-block p, .contact-block a { color: var(--ink-600); font-size: var(--fs-sm); display: block; }
.contact-block a:hover { color: var(--tl-700); }
.contact-block a.lnk { color: var(--tl-700); font-weight: 700; margin-top: 4px; }

.map {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--ink-100); min-height: 380px;
  background: linear-gradient(135deg, var(--tl-50), var(--tl-100));
  display: grid; place-items: center; text-align: center;
}
.map__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,148,136,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,148,136,.07) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.map__placeholder { position: relative; padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.map__placeholder svg { width: 56px; height: 56px; color: var(--tl-600); }
.map__placeholder b { font-size: var(--fs-lg); color: var(--ink-900); }
.map__placeholder p { color: var(--ink-600); font-size: var(--fs-sm); max-width: 34ch; }
.map__placeholder .btn { margin-top: 6px; }
@media (max-width: 800px) { .contacts__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA-блок
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--tl-700), var(--tl-900));
  border-radius: var(--r-2xl); padding: clamp(34px, 5vw, 56px); color: var(--white);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.cta-band::after {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.22), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; }
.cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn--ghost {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25);
  color: var(--white); backdrop-filter: blur(6px);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.22); color: var(--white); }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink-900); color: rgba(255,255,255,.68); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 32px; margin-bottom: 38px; }
.footer .logo__name b, .footer .logo__name b i { color: var(--white); }
.footer .logo__name small { color: rgba(255,255,255,.55); }
.footer__about { font-size: var(--fs-sm); line-height: 1.6; margin-top: 16px; }
.footer__col h4 { color: var(--white); font-size: var(--fs-sm); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; font-size: var(--fs-sm); }
.footer__col a { color: rgba(255,255,255,.68); transition: color var(--tr-fast); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: var(--fs-xs); color: rgba(255,255,255,.5);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Плавающая WhatsApp + sticky mobile CTA
   ============================================================ */
.float-wa {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px; display: grid; place-items: center;
  background: var(--wa); color: var(--white); border-radius: 50%; z-index: 90;
  box-shadow: var(--sh-wa); transition: transform var(--tr-base);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }
.float-wa::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--wa); opacity: .4; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.85); opacity: .6; } 100% { transform: scale(1.4); opacity: 0; } }

/* Нижняя липкая панель CTA на мобильных */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  display: none; gap: 10px; padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-200);
}
.mcta .btn { flex: 1; height: 52px; }
@media (max-width: 720px) {
  .mcta { display: flex; }
  .float-wa { bottom: 84px; width: 52px; height: 52px; }
  .float-wa svg { width: 26px; height: 26px; }
  body { padding-bottom: 0; }
}

/* ============================================================
   Reveal-анимации
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .float-wa::before { display: none; }
}

/* ============================================================
   Внутренние страницы (услуги, контакты)
   ============================================================ */
.page-hero {
  padding: clamp(44px, 7vw, 80px) 0 clamp(34px, 5vw, 54px);
  background:
    radial-gradient(ellipse 60% 50% at 88% -10%, rgba(45,212,191,.16), transparent 60%),
    linear-gradient(180deg, var(--tl-50), var(--white));
  border-bottom: 1px solid var(--ink-100);
}
.breadcrumbs { font-size: var(--fs-sm); color: var(--ink-500); margin-bottom: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.breadcrumbs a { color: var(--ink-500); transition: color var(--tr-fast); }
.breadcrumbs a:hover { color: var(--tl-700); }
.breadcrumbs span { color: var(--ink-700); }
.page-hero__title { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-bottom: 14px; }
.page-hero__lead { font-size: var(--fs-md); color: var(--ink-600); max-width: 62ch; }

.article { display: grid; grid-template-columns: 1fr 330px; gap: 48px; align-items: start; }
.article__body { font-size: var(--fs-base); line-height: 1.75; color: var(--ink-700); }
.article__body h2 { margin-top: 38px; margin-bottom: 14px; font-size: var(--fs-xl); }
.article__body h2:first-child { margin-top: 0; }
.article__body h3 { margin-top: 24px; margin-bottom: 10px; font-size: var(--fs-lg); }
.article__body p { margin-bottom: 16px; }
.article__body ul, .article__body ol { margin: 0 0 16px 0; padding-left: 24px; list-style: disc; }
.article__body ol { list-style: decimal; }
.article__body li { margin-bottom: 8px; padding-left: 6px; }
.article__body strong { color: var(--ink-900); }
.article__body a { color: var(--tl-700); font-weight: 600; }
.article__body a:hover { text-decoration: underline; }

.article__aside { position: sticky; top: 100px; }
.aside-card { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--sh-sm); }
.aside-card h3 { font-size: var(--fs-lg); margin-bottom: 6px; }
.aside-card .price { margin-top: 12px; font-size: var(--fs-3xl); font-weight: 800; color: var(--ink-900); }
.aside-card .price small { display: block; font-size: var(--fs-sm); font-weight: 500; color: var(--ink-500); margin-top: 2px; }
.aside-card hr { border: 0; border-top: 1px solid var(--ink-100); margin: 20px 0; }
.aside-card ul { font-size: var(--fs-sm); color: var(--ink-600); display: flex; flex-direction: column; gap: 11px; }
.aside-card ul li { display: flex; align-items: start; gap: 10px; }
.aside-card ul li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 920px) { .article { grid-template-columns: 1fr; } .article__aside { position: static; } }
