/* ============================================================
   Azia Medical — design system
   Минимализм + бело-голубая палитра
   ============================================================ */

:root {
  /* Палитра — фирменная бирюза под логотип AsiaMed.
     (имена токенов исторически --blue-*, но значения бирюзовые;
     --blue-600 затемнён до контраста AA для белого текста на кнопках) */
  --blue-50:  #edfaf8;
  --blue-100: #d2f2ee;
  --blue-200: #a3e6df;
  --blue-300: #67d3c9;
  --blue-500: #16b3a6;
  --blue-600: #0a8076;
  --blue-700: #086a62;
  --blue-900: #06433d;

  --ink-50:   #f8fafc;
  --ink-100:  #f1f5f9;
  --ink-200:  #e2e8f0;
  --ink-300:  #cbd5e1;
  --ink-500:  #64748b;
  --ink-600:  #475569;
  --ink-700:  #334155;
  --ink-800:  #1e293b;
  --ink-900:  #0f172a;

  --white:    #ffffff;
  --bg:       #f8fafc;
  --success:  #10b981;
  --warning:  #f59e0b;
  --danger:   #ef4444;

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

  /* Радиусы */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-full: 999px;

  /* Тени */
  --sh-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --sh-sm: 0 2px 8px rgba(15, 23, 42, .05);
  --sh-md: 0 8px 24px rgba(15, 23, 42, .06);
  --sh-lg: 0 20px 50px rgba(15, 23, 42, .08);
  --sh-blue: 0 12px 30px rgba(10, 128, 118, .28);

  /* Раскладка */
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(64px, 9vw, 120px);

  /* Прочее */
  --tr-fast: 150ms cubic-bezier(.2, .8, .2, 1);
  --tr-base: 250ms 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: 88px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-800);
  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(--blue-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(48px, 6vw, 80px) 0; }

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

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-900);
}
.h1, h1 { font-size: clamp(2rem, 5vw, var(--fs-5xl)); }
.h2, h2 { font-size: clamp(1.625rem, 3.6vw, var(--fs-3xl)); }
.h3, h3 { font-size: clamp(1.25rem, 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; }
.text-muted { color: var(--ink-500); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

/* ============================================================
   Кнопки
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  font-weight: 600;
  font-size: var(--fs-base);
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: transform var(--tr-fast), box-shadow var(--tr-base), background var(--tr-base), color var(--tr-base);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--sh-blue);
}
.btn--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 36px rgba(10, 128, 118, .35);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink-800);
  border-color: var(--ink-200);
}
.btn--ghost:hover {
  border-color: var(--blue-300);
  color: var(--blue-700);
}

.btn--wa {
  background: #25d366;
  color: var(--white);
}
.btn--wa:hover { background: #1ebe5d; }

.btn--lg { height: 56px; padding: 0 28px; font-size: var(--fs-md); }
.btn--sm { height: 40px; padding: 0 16px; font-size: var(--fs-sm); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg svg { width: 20px; height: 20px; }

.btn--block { width: 100%; }

/* ============================================================
   Topbar (тонкая полоса вверху с телефоном + графиком)
   ============================================================ */

.topbar {
  background: var(--ink-900);
  color: rgba(255,255,255,.85);
  font-size: var(--fs-sm);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 40px;
}
.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(--blue-300); }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__item svg { width: 16px; height: 16px; opacity: .8; }
.topbar__item--wa { color: #25d366; font-weight: 600; }
.topbar__item--wa svg { opacity: 1; }
.topbar__item--wa:hover { color: #4ade80; }

@media (max-width: 720px) {
  .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, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-100);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.logo__img { height: 46px; width: auto; display: block; }
.mnav__head .logo__img { height: 40px; }
.footer__brand .logo__img { height: 42px; }
@media (max-width: 520px) { .logo__img { height: 40px; } }
.logo__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  border-radius: 10px;
  box-shadow: var(--sh-blue);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__name { line-height: 1; }
.logo__name small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--ink-200);
  color: var(--ink-800);
}
.burger svg { width: 22px; height: 22px; }
.burger:hover { border-color: var(--blue-300); color: var(--blue-700); }

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

/* Мобильное меню (drawer) */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, .35);
  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: 24px;
  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: 16px;
}
.mnav__close {
  width: 40px; height: 40px;
  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: 600;
  font-size: var(--fs-md);
  border-radius: var(--r-md);
  color: var(--ink-800);
}
.mnav__link:hover { background: var(--blue-50); color: var(--blue-700); }
.mnav__footer { margin-top: auto; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 8vw, 120px);
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(10, 128, 118, .07), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(22, 179, 166, .05), transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  margin-top: 24px;
  font-size: clamp(2rem, 5.4vw, 3.75rem);
}
.hero__title span { color: var(--blue-600); }
.hero__sub {
  margin-top: 20px;
  font-size: var(--fs-md);
  color: var(--ink-600);
  max-width: 48ch;
}
.hero__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  justify-content: start;
}
.hero__trust b {
  display: block;
  font-size: var(--fs-2xl);
  color: var(--ink-900);
  font-weight: 800;
}
.hero__trust span {
  font-size: var(--fs-sm);
  color: var(--ink-500);
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-2xl);
  background:
    linear-gradient(135deg, var(--blue-100), var(--blue-50));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(10, 128, 118, .15), transparent 50%);
}
.hero__visual-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-md);
  width: min(80%, 320px);
  text-align: left;
}
.hero__visual-card .row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-100);
}
.hero__visual-card .row:last-child { border-bottom: 0; }
.hero__visual-card .ic {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 10px;
  flex-shrink: 0;
}
.hero__visual-card .ic svg { width: 18px; height: 18px; }
.hero__visual-card .tx b { display: block; color: var(--ink-900); font-weight: 700; font-size: var(--fs-sm); }
.hero__visual-card .tx span { font-size: var(--fs-xs); color: var(--ink-500); }
.hero__visual-card .tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  background: var(--success);
  color: var(--white);
  border-radius: var(--r-full);
  letter-spacing: .04em;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; }
  .hero__trust { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .hero__trust { grid-template-columns: 1fr 1fr; }
  .hero__trust b { font-size: var(--fs-lg); }
}

/* ============================================================
   Features (преимущества)
   ============================================================ */

.features {
  background: var(--bg);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--blue-200);
  box-shadow: var(--sh-md);
}
.feature__ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--fs-lg); margin-bottom: 6px; }
.feature p { font-size: var(--fs-sm); color: var(--ink-500); }

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

/* Быстрые ответы (Q&A) */
.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(-2px);
  border-color: var(--blue-200);
  box-shadow: var(--sh-md);
}
.qa__ic {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: var(--r-md);
  margin-bottom: 14px;
}
.qa__ic svg { width: 21px; height: 21px; }
.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(--blue-700); font-weight: 600; white-space: nowrap; }
.qa p a:hover { text-decoration: underline; }

@media (max-width: 960px) { .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: 28px;
  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: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  opacity: 0;
  transition: opacity var(--tr-base);
}
.service:hover {
  transform: translateY(-3px);
  border-color: var(--blue-200);
  box-shadow: var(--sh-md);
}
.service:hover::before { opacity: 1; }
.service__ic {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.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: 18px; }
.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: 500;
  font-size: var(--fs-xs);
  color: var(--ink-500);
  margin-left: 4px;
}
.service__more {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--blue-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: 960px) { .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: 24px;
  position: relative;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
}
.step__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: var(--sh-blue);
}
.step h3 { font-size: var(--fs-md); margin-bottom: 4px; }
.step p { font-size: var(--fs-sm); }

@media (max-width: 960px) { .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: 1fr 1fr;
  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(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border: 0;
}
.price-card--accent h3 { color: var(--white); }
.price-card--accent .price-row { border-color: rgba(255,255,255,.12); }
.price-card--accent .price-row b { color: var(--white); }
.price-card--accent .price-row span { color: rgba(255,255,255,.7); }
.price-card h3 { font-size: var(--fs-xl); margin-bottom: 20px; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 14px 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: 700; font-size: var(--fs-md);
  color: var(--ink-800);
  white-space: nowrap;
}
.price-card .btn { margin-top: 20px; }

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

/* ============================================================
   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(--blue-200); }
.faq-item[open] {
  border-color: var(--blue-200);
  box-shadow: var(--sh-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--blue-600);
  transition: transform var(--tr-base);
  width: 24px; text-align: center;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body {
  padding: 0 24px 22px;
  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: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--r-md);
}
.contact-block__ic svg { width: 22px; height: 22px; }
.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(--blue-700); }

.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  min-height: 360px;
  background:
    linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: grid;
  place-items: center;
  text-align: center;
}
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.map__placeholder {
  padding: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.map__placeholder svg { width: 56px; height: 56px; color: var(--blue-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: 32ch; }
.map__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

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

/* ============================================================
   CTA блок
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: var(--r-2xl);
  padding: clamp(36px, 5vw, 56px);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 50ch; }
.cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn--ghost {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.18); color: var(--white); }

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

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.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,.7); transition: color var(--tr-fast); }
.footer__col a:hover { color: var(--white); }
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer__about { font-size: var(--fs-sm); line-height: 1.6; }
.footer__bottom {
  padding-top: 24px;
  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: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Плавающая WhatsApp-кнопка
   ============================================================ */

.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
  transition: transform var(--tr-base), box-shadow 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 #25d366;
  opacity: .4;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.85); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   Reveal-анимации
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2, .8, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Inner-страницы (услуги, контакты)
   ============================================================ */

.page-hero {
  padding: clamp(48px, 7vw, 84px) 0 clamp(36px, 5vw, 56px);
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(10, 128, 118, .06), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--ink-100);
}
.breadcrumbs {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  margin-bottom: 18px;
  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(--blue-700); }
.breadcrumbs span { color: var(--ink-700); }
.breadcrumbs::before { content: ''; }

.page-hero__title { font-size: clamp(1.875rem, 4vw, 2.75rem); margin-bottom: 14px; }
.page-hero__lead { font-size: var(--fs-md); color: var(--ink-600); max-width: 60ch; }

.article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article__body { font-size: var(--fs-base); line-height: 1.7; color: var(--ink-700); }
.article__body h2 {
  margin-top: 40px; margin-bottom: 14px;
  font-size: var(--fs-xl);
}
.article__body h3 { margin-top: 24px; margin-bottom: 10px; font-size: var(--fs-lg); }
.article__body p { margin-bottom: 16px; color: var(--ink-700); }
.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__aside { position: sticky; top: 96px; }
.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: 10px; }
.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; }
}

/* ============================================================
   Бейджи в hero (доп. trust)
   ============================================================ */

.badge-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.badge-row .b {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--white);
  color: var(--ink-700);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-full);
}
.badge-row .b svg { width: 14px; height: 14px; color: var(--success); }
