/* Universal box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ============================================================
   ДИЗАЙН-СИСТЕМА «МосВывоз» — чистая версия без дублей
   Основной: зелёный #1a7f37. CTA: оранжевый #f97316.
   Шрифт: system-ui stack. Сетка: 8px rhythm.
   ============================================================ */

/* ---------- ТОКЕНЫ ---------- */
:root {
  /* Цвета — нейтральный рамп */
  --clr-ink:        #1a1e1b;
  --clr-body:       #374151;
  --clr-muted:      #6b7280;
  --clr-border:     #e5e9e7;
  --clr-surface:    #ffffff;
  --clr-raised:     #f6f9f7;
  --clr-bg:         #ffffff;

  /* Акцент — зелёный */
  --clr-green-950:  #052e16;
  --clr-green-800:  #166534;
  --clr-green-700:  #15803d;
  --clr-green-600:  #1a7f37;
  --clr-green-500:  #22c55e;
  --clr-green-100:  #dcfce7;
  --clr-green-50:   #f0fdf4;

  /* Акцент — оранжевый (CTA) */
  --clr-orange-600: #ea580c;
  --clr-orange-500: #f97316;
  --clr-orange-100: #ffedd5;

  /* Алиасы для удобства */
  --green:       var(--clr-green-600);
  --green-dark:  var(--clr-green-700);
  --green-light: var(--clr-green-50);
  --orange:      var(--clr-orange-500);
  --orange-dark: var(--clr-orange-600);
  --ink:         var(--clr-ink);
  --muted:       var(--clr-muted);
  --line:        var(--clr-border);
  --bg:          var(--clr-bg);
  --bg-soft:     var(--clr-raised);

  /* Радиусы */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;

  /* Тени */
  --shadow-sm:  0 1px 3px hsl(150 15% 10% / .07);
  --shadow-md:  0 4px 16px hsl(150 15% 10% / .09);
  --shadow-lg:  0 8px 32px hsl(150 15% 10% / .12);
  --shadow-hov: 0 8px 28px hsl(150 15% 10% / .13);

  /* Отступы — единый ритм 8px */
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* Секционный отступ — fluid */
  --section-py: clamp(32px, 4vw, 56px);

  /* Контейнер */
  --maxw: 1140px;

  /* Типографика */
  --font: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--clr-body);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(28px, 4.2vw, 44px); letter-spacing: -.02em; }
h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: var(--sp-5); }
h3 { font-size: clamp(17px, 2vw, 21px); margin-bottom: var(--sp-3); }
p  { margin-bottom: var(--sp-4); }
ul, ol { margin: 0 0 var(--sp-4) var(--sp-5); }
li { margin-bottom: var(--sp-2); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Ограничение контента внутри калькулятора */
.calc .container > * {
  max-width: 100% !important;
}


@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

/* Секционный ритм — применяется к секциям в <main> */
main > section,
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
main > section:nth-child(even) { background: var(--bg-soft); }

/* Подзаголовок секции */
.section__lead {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 680px;
  margin-bottom: var(--sp-8);
}

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  border: 2px solid var(--green);
  background: var(--green);
  color: #fff;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:focus-visible {
  outline: 3px solid var(--clr-green-500);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 14px hsl(25 95% 53% / .30);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
}
.btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn--wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover {
  background: var(--green);
  color: #fff;
}
.btn--lg  { padding: 15px 32px; font-size: 17px; }
.btn--sm  { padding: 7px 16px; font-size: 13px; border-width: 1.5px; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo::before {
  content: "♻";
  font-size: 22px;
  line-height: 1;
}
.main-nav {
  display: flex;
  gap: var(--sp-5);
  margin-left: auto;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--clr-ink);
  font-weight: 600;
  font-size: 14px;
  padding: 4px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--green); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.header-phone {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone:hover { color: var(--green); }
.header-cta { padding: 9px 18px; font-size: 13px; }

/* Бургер */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 3px; width: 22px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
  margin-inline: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(150deg, var(--clr-green-50) 0%, #fff 65%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__content h1 { margin-bottom: var(--sp-4); }
.hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--clr-body);
  margin-bottom: var(--sp-6);
  line-height: 1.65;
}
.hero__lead strong {
  color: var(--ink);
  display: block;
  margin-top: var(--sp-3);
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: .01em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
/* Социальное доказательство в hero */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.hero__stars {
  display: flex;
  gap: 2px;
}
.star { color: #d1d5db; }
.star--filled { color: #f59e0b; }
.hero__rating-val {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.hero__rating-label {
  font-size: 13px;
  color: var(--muted);
}
.hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   КАРТОЧКИ УСЛУГ
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  text-decoration: none;
}
.service-card:hover {
  box-shadow: var(--shadow-hov);
  transform: translateY(-3px);
  border-color: var(--clr-green-500);
}
.service-card__icon {
  display: block;
  font-size: 32px;
  margin-bottom: var(--sp-3);
  line-height: 1;
}
.service-card__title {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.service-card:hover .service-card__title { color: var(--green); }
.service-card__desc {
  display: block;
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.service-card__price {
  display: inline-block;
  font-weight: 800;
  color: var(--green);
  font-size: 16px;
  background: var(--clr-green-50);
  padding: 5px 12px;
  border-radius: var(--r-sm);
  margin-top: auto;
}

/* ============================================================
   ПРЕИМУЩЕСТВА
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-hov);
  transform: translateY(-2px);
}
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--clr-green-50);
  border-radius: 50%;
  margin-bottom: var(--sp-4);
  color: var(--green);
}
.feature-card__title {
  font-size: 17px;
  margin-bottom: var(--sp-2);
}
.feature-card__desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   КАЛЬКУЛЯТОР
   ============================================================ */

/* ============================================================
   ШАГИ «КАК МЫ РАБОТАЕМ»
   ============================================================ */
.how-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-top: var(--sp-6);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.step-card__title { font-size: 17px; margin-bottom: var(--sp-2); }
.step-card__desc  { color: var(--muted); font-size: 14px; margin: 0; }
.how-media__img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ДО И ПОСЛЕ
   ============================================================ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.before-after__item {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.before-after__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.before-after__label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(4px);
}
.before-after__label--before { background: hsl(0 40% 30% / .80); }
.before-after__label--after  { background: hsl(142 50% 25% / .80); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 840px;
  margin: var(--sp-6) auto 0;
}
.faq__item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--clr-green-100); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px var(--sp-6);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  transition: transform .2s;
  line-height: 1;
}
.faq__item[open] .faq__q { color: var(--green); }
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a {
  padding: 0 var(--sp-6) var(--sp-5);
  border-top: 1px solid var(--line);
}
.faq__a p { color: var(--muted); margin: var(--sp-4) 0 0; }

/* Страница цен — FAQ как div, не details */
.faq__item.faq__item--static {
  padding: var(--sp-4) var(--sp-6);
}
.faq__item--static .faq__q {
  padding: 0;
  font-size: 15px;
  margin-bottom: var(--sp-2);
  cursor: default;
}
.faq__item--static .faq__q::after { display: none; }
.faq__item--static .faq__a {
  padding: 0;
  border: none;
}
.faq__item--static .faq__a p { margin: 0; font-size: 14px; }

/* ============================================================
   РАЙОНЫ НА ГЛАВНОЙ
   ============================================================ */
.districts-home__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.districts-home__okrug {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.districts-home__okrug-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 var(--sp-3);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.districts-home__okrug-title span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0;
}
.districts-home__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.districts-home__list a {
  font-size: 13px;
  color: var(--clr-body);
  line-height: 1.6;
  text-decoration: none;
  transition: color .15s;
}
.districts-home__list a:hover { color: var(--green); }

/* ============================================================
   INLINE CTA-ФОРМА (главная, низ)
   ============================================================ */
.cta-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  background: var(--clr-green-50);
  border: 1px solid var(--clr-green-100);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
}
.cta-form__title {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: var(--sp-4);
  color: var(--ink);
}
.cta-form__text {
  color: var(--clr-body);
  font-size: 15px;
  margin-bottom: var(--sp-5);
}
.cta-form__perks {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.cta-form__perks li {
  font-size: 14px;
  color: var(--clr-green-800);
  padding-left: 22px;
  position: relative;
}
.cta-form__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* ============================================================
   ФОРМА ЗАЯВКИ (lead-form)
   ============================================================ */
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-md);
}
.lead-form--compact {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.lead-form__head { margin-bottom: var(--sp-5); }
.lead-form__title { margin-bottom: var(--sp-2); font-size: 20px; }
.lead-form__sub { color: var(--muted); font-size: 13px; margin: 0; }
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-4);
}
.lead-form__label { font-weight: 600; font-size: 13px; color: var(--ink); }
.lead-form__req   { color: var(--orange); }
.lead-form__opt   { color: var(--muted); font-weight: 400; font-size: 12px; }
.lead-form__input {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.lead-form__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px hsl(142 70% 45% / .12);
}
.lead-form__textarea { resize: vertical; min-height: 72px; }
.lead-form__submit   { position: relative; margin-top: var(--sp-2); }
.lead-form__submit:disabled { opacity: .7; cursor: not-allowed; }
.lead-form__submit-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lead-form__legal {
  font-size: 12px;
  color: var(--muted);
  margin: var(--sp-3) 0 0;
  text-align: center;
}
.lead-form__legal a { color: var(--muted); text-decoration: underline; }
.lead-form__msg {
  margin-top: var(--sp-4);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
}
.lead-form__msg--ok    { background: var(--clr-green-50);  color: var(--clr-green-800); }
.lead-form__msg--error { background: #fef2f2; color: #b91c1c; }

/* ============================================================
   МОДАЛЬНОЕ ОКНО
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: hsl(0 0% 0% / .5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--sp-5);
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 460px;
  width: 100%;
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0;
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 20px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  line-height: 1;
}
.modal-close:hover { background: var(--line); color: var(--ink); }
[data-modal-open] { cursor: pointer; }

/* ============================================================
   ВИДЖЕТ ОТЗЫВОВ
   ============================================================ */
.reviews-widget__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.reviews-widget__head h2 { margin: 0; }
.reviews-widget__summary {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.reviews-stars { display: flex; gap: 2px; }
.reviews-widget__score {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.reviews-widget__count { font-size: 13px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.review-card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
}
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.review-card__author { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-card__verified {
  font-size: 11px;
  color: var(--clr-green-700);
  font-weight: 600;
  background: var(--clr-green-50);
  padding: 2px 8px;
  border-radius: 20px;
}
.review-card__stars { display: flex; gap: 2px; }
.review-card__text  { font-size: 14px; color: var(--clr-body); line-height: 1.6; margin: 0; flex: 1; }
.review-card__date  { font-size: 12px; color: var(--muted); }
.reviews-widget__footer { text-align: center; }

/* ============================================================
   СТРАНИЦА ЦЕНЫ
   ============================================================ */
.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: var(--sp-5) 0 var(--sp-8);
}
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  margin-bottom: var(--sp-3);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 460px;
}
.price-table thead { background: var(--bg-soft); }
.price-table th {
  padding: 12px var(--sp-4);
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--line);
}
.price-table td {
  padding: 13px var(--sp-4);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--bg-soft); }
.price-table__price {
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.price-table td:last-child { font-weight: inherit; color: inherit; }
.price-table a { color: var(--clr-green-700); font-size: 13px; }
.price-table a:hover { text-decoration: underline; }
.price-note { font-size: 13px; color: var(--muted); margin-top: var(--sp-2); }
.price-factors {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: var(--sp-6) 0 var(--sp-10);
}
.price-factor {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
}
.price-factor__icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.price-factor__title { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--ink); }
.price-factor__desc  { font-size: 14px; color: var(--clr-body); margin: 0; }

/* ============================================================
   ТАБЛИЦА ЦЕН — полоса CTA
   ============================================================ */
.cta-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--clr-green-50);
  border: 1px solid var(--clr-green-100);
  margin-top: var(--sp-10);
}
.cta-strip p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-green-800);
}

/* ============================================================
   СТРАНИЦА УСЛУГИ
   ============================================================ */
.service { padding-bottom: var(--section-py); }
.service__intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 780px;
  margin-bottom: var(--sp-5);
  line-height: 1.65;
}
.service__price {
  font-size: 16px;
  background: var(--clr-green-50);
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
}
.service__price strong { color: var(--clr-green-800); font-size: 20px; }
.service h2 {
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-2);
  border-top: 2px solid var(--clr-green-50);
}
.service h2:first-of-type { border-top: 0; }
.service ul {
  list-style: none;
  margin-left: 0;
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(2, 1fr);
}
.service ul li {
  position: relative;
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 38px;
  color: var(--clr-body);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin: 0;
  font-size: 14px;
}
.service ul li::before {
  content: "✓";
  position: absolute;
  left: 13px; top: 12px;
  color: var(--green);
  font-weight: 900;
}
.service ol {
  list-style: none;
  margin-left: 0;
  counter-reset: svc;
  display: grid;
  gap: var(--sp-3);
}
.service ol li {
  position: relative;
  padding: 12px var(--sp-4) 12px 52px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
}
.service ol li::before {
  counter-increment: svc;
  content: counter(svc);
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.service__seo {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  color: var(--muted);
  max-width: 880px;
}
.service__seo p { margin-bottom: var(--sp-4); font-size: 15px; line-height: 1.7; }

/* блок районов на странице услуги */
.service-districts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-4) 0 var(--sp-3);
}
.service-districts__group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.service-districts__okrug {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.service-districts__link {
  font-size: 13px;
  color: var(--clr-green-700);
  text-decoration: none;
  line-height: 1.5;
}
.service-districts__link:hover { text-decoration: underline; }

/* ============================================================
   СТРАНИЦА РАЙОНОВ
   ============================================================ */
.districts-okrug-title,
.districts-section__okrug {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
  margin: var(--sp-10) 0 var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--clr-green-100);
}
.districts-okrug-title:first-child,
.districts-section__okrug:first-child { margin-top: var(--sp-2); }
.districts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.district-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.district-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.district-card__name  { font-size: 14px; font-weight: 600; color: var(--ink); }
.district-card__metro { font-size: 12px; color: var(--muted); }

/* ============================================================
   СТРАНИЦА КОНТАКТОВ
   ============================================================ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  margin-top: var(--sp-6);
}
.contact-line { margin: 0 0 var(--sp-4); font-size: 15px; }
.contact-line strong {
  display: inline-block;
  min-width: 130px;
  color: var(--muted);
}
.contact-line a { color: var(--clr-green-700); }
.contact-line a:hover { text-decoration: underline; }
.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.contacts-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}
.contacts-sep { border: none; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }
.contacts-legal { font-size: 13px; color: var(--muted); line-height: 1.65; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; margin-top: var(--sp-2); }

/* ============================================================
   СТРАНИЦА О КОМПАНИИ
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-bottom: var(--sp-10);
}
.about-intro__img {
  width: 100%; height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
}
.about-stat {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.about-stat__num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.about-stat__label {
  display: block;
  margin-top: var(--sp-2);
  font-size: 13px;
  color: var(--muted);
}
.about-list, .about-steps {
  padding-left: var(--sp-5);
  line-height: 1.75;
  margin: var(--sp-4) 0 var(--sp-8);
}
.about-list li, .about-steps li { margin-bottom: var(--sp-2); font-size: 15px; }
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.about-how {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-10);
  align-items: start;
  margin-top: var(--sp-4);
}
.about-how__img {
  width: 260px; height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   СТРАНИЦА ОТЗЫВОВ
   ============================================================ */
.page-lead { font-size: 17px; color: var(--clr-body); margin-bottom: var(--sp-8); max-width: 680px; }
.lead      { font-size: 17px; color: var(--muted); margin-bottom: var(--sp-5); max-width: 68ch; }

/* ============================================================
   ХЛЕБНЫЕ КРОШКИ
   ============================================================ */
.breadcrumbs { padding: var(--sp-4) 0; font-size: 13px; }
.breadcrumbs__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
}
.breadcrumbs__item { display: flex; align-items: center; }
.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: var(--sp-2);
  color: var(--muted);
}
.breadcrumbs__link { color: var(--green); }
.breadcrumbs__link:hover { text-decoration: underline; }
.breadcrumbs__current { color: var(--muted); }

/* ============================================================
   HEADER — кнопка CTA
   ============================================================ */
@media (max-width: 860px) {
  .nav-toggle  { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: var(--sp-2) var(--sp-5) var(--sp-4);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    z-index: 60;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .main-nav a::after { display: none; }
  .header-inner { position: relative; }
  .header-actions { margin-left: auto; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f2018;
  color: #c3cdc6;
  padding: clamp(36px, 5vw, 56px) 0 var(--sp-8);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.footer-logo { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: var(--sp-3); }
.footer-col p { margin-bottom: var(--sp-2); color: #c3cdc6; }
.footer-col__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-nav { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-nav a,
.footer-col a { color: #7fd79a; }
.footer-nav a:hover,
.footer-col a:hover { color: #a8e8bd; }
.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.footer-messengers a {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #c3cdc6;
  transition: border-color .15s, color .15s;
}
.footer-messengers a:hover { border-color: #7fd79a; color: #7fd79a; }
.footer-sep {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 0 0 var(--sp-5);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: 12px;
  color: #7a8a7e;
}
.footer-bottom p { margin: 0; }

/* ============================================================
   МОБИЛЬНЫЙ STICKY-БАР
   ============================================================ */
.mobile-bar { display: none; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1024px) {
  .districts-home__grid { grid-template-columns: repeat(3, 1fr); }
  .service-districts     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .how-wrap    { grid-template-columns: 1fr; }
  .how-media   { display: none; }
  .about-how   { grid-template-columns: 1fr; }
  .about-how__media { display: none; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-8);
  }
  .hero__content  { align-items: center; }
  .hero__actions  { justify-content: center; }
  .hero__trust    { justify-content: center; }
  .hero__media    { order: -1; }
  .hero__img      { max-height: 220px; width: 100%; }
  .about-intro    { grid-template-columns: 1fr; }
  .cta-form-wrap  { grid-template-columns: 1fr; }
  .contacts-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .districts-home__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .calc__grid     { grid-template-columns: 1fr; }
  .calc__result   { flex-direction: column; align-items: stretch; }
}
@media (max-width: 640px) {
  .header-phone   { display: none; }
  body            { padding-bottom: 64px; }
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -3px 14px hsl(0 0% 0% / .08);
  }
  .mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    border-right: 1px solid var(--line);
  }
  .mobile-bar a:last-child { border-right: 0; }
  .mobile-bar a.mb-call  { color: var(--green); }
  .mobile-bar a.mb-calc  { background: var(--orange); color: #fff; }
  .before-after          { grid-template-columns: 1fr; }
  .service ul            { grid-template-columns: 1fr; }
  .service-districts     { grid-template-columns: 1fr; }
  .lead-form__row        { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }

  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .service-card         { padding: var(--sp-4); }
  .service-card__icon   { font-size: 26px; }
  .service-card__title  { font-size: 15px; }
  .service-card__desc   { font-size: 13px; }
  .services-grid .service-card__price { font-size: 14px; padding: 4px 10px; }
  .features-grid        { grid-template-columns: 1fr; }
  .feature-card__proof  { display: none; }
  .feature-card         { padding: var(--sp-4); }
  .feature-card__title  { font-size: 15px; }
  .feature-card__desc   { font-size: 13px; }
  .calc__checkbox       { min-height: 48px; padding: 4px 0; }
  .calc__checkbox span  { font-size: 14px; }
  .cta-form-wrap .btn    { width: 100%; }
}
@media (max-width: 480px) {
  .districts-home__grid { grid-template-columns: 1fr; }
  .districts-grid       { grid-template-columns: 1fr; }
  .steps-grid           { grid-template-columns: 1fr; }
  .header-cta           { display: none; }
}


/* ===== Stats block ===== */
.stats { padding-block: var(--section-py); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.stats__num {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
.stats__label {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Hero CTA ===== */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero__cta-hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 240px;
}

/* ===== Feature card proof ===== */
.feature-card__proof {
  display: block;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-green-700);
  line-height: 1.4;
}

/* ===== Service urgency ===== */
.service__urgency {
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-orange-100);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm);
  font-size: 15px;
  line-height: 1.5;
  color: #7c2d12;
}

/* ===== Price context ===== */
.price-context {
  margin: var(--sp-8) 0 var(--sp-10);
  padding: var(--sp-6);
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.price-context h2 {
  margin: 0 0 var(--sp-4);
  font-size: 1.5rem;
  color: var(--ink);
}
.price-context ul {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-5);
}
.price-context li {
  margin-bottom: var(--sp-3);
  line-height: 1.6;
}
.price-context__summary {
  margin: var(--sp-4) 0 0;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-green-50);
  border-left: 3px solid var(--green);
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--clr-green-800);
}

/* ===== Calculator ===== */
main > section.calc {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-block: clamp(32px, 5vw, 64px);
  padding-block: clamp(40px, 5.5vw, 72px);
  background: var(--clr-green-50);
  border-top: 1px solid var(--clr-green-100);
  border-bottom: 1px solid var(--clr-green-100);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.calc__title {
  margin: 0 0 var(--sp-2);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
}
.calc__subtitle {
  margin: 0 0 var(--sp-8);
  font-size: 1rem;
  color: var(--muted);
}
.calc__grid {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.calc__field label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.calc__field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.calc__field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px hsl(142 70% 45% / .12);
}
.calc__field--check {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.calc__checkbox {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
  user-select: none;
  min-height: 44px;
}
.calc__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--green);
}
.calc__checkbox span {
  font-size: 15px;
  color: var(--clr-body);
}
.calc__result {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  margin-bottom: var(--sp-4);
}
.calc__price {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.calc__price-label {
  font-size: 14px;
  color: var(--muted);
}
.calc__price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}
.calc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.calc__note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
@media (min-width: 640px) {
  .calc__grid { grid-template-columns: repeat(2, 1fr); }
  .calc__field--check {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: var(--sp-8);
  }
  .calc__result {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .calc__price {
    flex-direction: row;
    align-items: baseline;
    gap: var(--sp-3);
  }
}
@media (min-width: 768px) {
  .calc__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   СРАВНЕНИЕ (ВЫВОЗИМ САМИ VS С НАМИ)
   ============================================================ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin: var(--sp-6) 0 var(--sp-8);
}
.comparison__col {
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 2px solid var(--line);
  background: var(--bg);
}
.comparison__col--bad {
  border-color: #fca5a5;
  background: #fef2f2;
}
.comparison__col--good {
  border-color: var(--clr-green-500);
  background: var(--clr-green-50);
}
.comparison__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 var(--sp-4);
  color: var(--ink);
}
.comparison__col--bad .comparison__title { color: #b91c1c; }
.comparison__col--good .comparison__title { color: var(--clr-green-800); }
.comparison__list {
  list-style: none;
  margin: 0 0 var(--sp-5);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.comparison__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.comparison__col--bad .comparison__list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: #b91c1c;
  font-weight: 800;
}
.comparison__col--good .comparison__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}
.comparison__total {
  font-size: 16px;
  font-weight: 700;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  margin: 0;
  text-align: center;
}
.comparison__col--bad .comparison__total {
  background: #fee2e2;
  color: #7f1d1d;
}
.comparison__col--good .comparison__total {
  background: #d1fae5;
  color: var(--clr-green-800);
}
@media (max-width: 760px) {
  .comparison { grid-template-columns: 1fr; }
}

/* ============================================================
   СРАВНЕНИЕ ТРАНСПОРТА (КАКОЙ ВЫБРАТЬ)
   ============================================================ */
.transport-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0 var(--sp-8);
}
.transport-card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 2px solid var(--line);
  background: var(--bg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.transport-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.transport-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 var(--sp-2);
  color: var(--ink);
}
.transport-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 var(--sp-4);
}
.transport-card__best {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin: 0 0 var(--sp-3);
}
.transport-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.transport-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-body);
}
.transport-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   ПРИМЕРЫ РАСЧЁТОВ
   ============================================================ */
.price-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-6) 0 var(--sp-8);
}
.price-example {
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--clr-green-50);
  box-shadow: var(--shadow-sm);
}
.price-example__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 var(--sp-3);
  color: var(--clr-green-800);
}
.price-example__desc {
  font-size: 14px;
  color: var(--clr-body);
  margin: 0 0 var(--sp-4);
  line-height: 1.6;
}
.price-example__breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.price-example__breakdown li {
  font-size: 14px;
  color: var(--clr-body);
  padding-left: 20px;
  position: relative;
}
.price-example__breakdown li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-example__total {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-green-800);
  padding: var(--sp-3) var(--sp-4);
  background: #d1fae5;
  border-radius: var(--r-md);
  margin: 0;
  text-align: center;
}
@media (max-width: 760px) {
  .transport-comparison { grid-template-columns: 1fr; }
  .price-examples { grid-template-columns: 1fr; }
}

/* ============================================================
   СРАВНЕНИЕ ОКРУГОВ (ЦЕНТР VS СПАЛЬНЫЕ VS НОВОСТРОЙКИ)
   ============================================================ */
.districts-comparison {
  margin: var(--sp-6) 0 var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.districts-comparison__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.districts-comparison__row:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.districts-comparison__cell--head {
  display: flex;
  align-items: center;
}
.districts-comparison__cell--head h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--clr-green-800);
}
.districts-comparison__cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.districts-comparison__cell li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--clr-body);
}
.districts-comparison__cell li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 760px) {
  .districts-comparison__row {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
}

/* ============================================================
   ОСОБЕННОСТИ РАЙОНА
   ============================================================ */
.district-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-6) 0 var(--sp-8);
}
.district-feature {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.district-feature:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.district-feature__icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.district-feature__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 var(--sp-2);
  color: var(--ink);
}
.district-feature__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--clr-body);
  margin: 0;
}
@media (max-width: 760px) {
  .district-features { grid-template-columns: 1fr; }
}
