/* ============================================================
   MIGRAUTO — автосервис · сайт AksaFlow
   Тёмный индустриальный стиль, брендовый красный акцент
   ============================================================ */

:root {
  --bg: #0c0e11;
  --bg-2: #111419;
  --bg-3: #161a21;
  --line: #262c36;
  --line-soft: #1c212a;
  --ink: #f2f4f7;
  --ink-soft: #aab3c0;
  --ink-dim: #838d9c;   /* было #6b7583 — не дотягивало до контраста 4.5 */
  /* Красный — цвет логотипа клиента. Зелёным остаётся только WhatsApp. */
  --brand: #ff3b30;
  --brand-2: #d92218;
  --brand-soft: rgba(255, 59, 48, 0.14);
  --amber: #ff3b30;
  --amber-2: #d92218;
  --amber-soft: rgba(255, 59, 48, 0.12);
  --green: #25d366;
  /* Кнопки действия остаются зелёными: красная кнопка читается как «стоп» */
  --cta: #10b981;
  --cta-2: #14cd90;
  --mono: 'Inter', system-ui, sans-serif;
  --disp: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  /* светлые секции: чередование с тёмными даёт странице ритм */
  --paper: #eceae4;
  --paper-2: #e0ddd4;
  --paper-line: #cdc9bd;
  --ink-paper: #14161a;
  --ink-paper-soft: #4b5058;
  --wrap: 1180px;
  --radius: 14px;
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-padding-top: calc(var(--header-h) + 40px);
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--brand); color: #fff; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
/* Заголовки набираем широким начертанием Archivo — характер мастерской,
   а не дефолтного лендинга */
/* Заголовки — обычным цветом текста; красный оставляем акцентам.
   Раньше их перекрашивали правила удалённых блоков, и после чистки
   все заголовки стали красными. */
h1, h2, h3, h4 { color: var(--ink); }
.accent { color: var(--brand); }
h1, h2, h3, .sec-head__title { font-stretch: 112%; }

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

/* ---------- Demo ribbon (removed for production) ---------- */
@keyframes pulse { 50% { opacity: 0.35; } }

/* ---------- Topbar ---------- */
.topbar {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.topbar__in { display: flex; justify-content: space-between; align-items: center; min-height: 34px; gap: 12px; flex-wrap: wrap; }
.topbar__item--right { display: flex; gap: 16px; }
.topbar__link { transition: color .2s; }
.topbar__link:hover { color: var(--brand); }
.topbar__link--wa { color: var(--green); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 14, 17, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 10px; }
/* Логотип клиента: растр с прозрачным фоном, светлая версия для тёмной шапки */
.logo__img { height: 48px; width: auto; }
@media (max-width: 700px) { .logo__img { height: 40px; } }
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 0;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
}
.logo__mark svg { width: 26px; height: 26px; }
.logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.logo__accent {
  display: inline;
  color: var(--brand);
}
.logo__sub {
  margin-top: 4px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.nav { display: flex; gap: 18px; }

/* ---------- Language switcher ---------- */
.lang {
  display: flex;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 3px;
  background: rgba(255,255,255,0.03);
}
.lang__btn {
  padding: 4px 10px;
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active { background: var(--brand-2); color: #fff; font-weight: 600; }
.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: normal;
  text-align: center;
}
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.header__cta .btn { white-space: nowrap; padding: 9px 18px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--cta);
  color: #04140d;
}
.btn--primary:hover { background: var(--cta-2); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid #3a424f;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover { border-color: var(--cta); color: var(--cta); transform: translateY(-2px); }
.btn--wa { background: #25d366; color: #04140d; box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3); }
.btn--wa:hover { transform: translateY(-2px); background: #31e074; }
/* Крупная кнопка — главное действие страницы, одна на экран */
/* Тихая альтернатива рядом с ней: ссылка, а не вторая кнопка */
/* вторая кнопка первого экрана: на светлом кадре цеха её почти не было видно */
.btn--outline {
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(10, 12, 15, .55);
  backdrop-filter: blur(4px);
  color: #fff;
}
.btn--outline:hover { border-color: var(--cta); color: var(--cta); background: rgba(10, 12, 15, .75); }

/* ============================================================
   GARAGE SCENE — scroll-driven «открытие гаража»
   Фасад → ворота открываются → въезд → экскурсия по цеху → оффер
   ============================================================ */
.gs {
  position: relative;
  /* Экскурсию уже убирали за то, что до цен приходилось листать три экрана.
     Двух хватает: ворота, три зоны, оффер — и дальше страница едет дальше. */
  height: 200vh;
  background: var(--bg);
}
.gs__track {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  perspective: 1400px;
}
.gs__track::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.88) 0%, rgba(6, 8, 12, 0.72) 30%, rgba(6, 8, 12, 0.25) 60%, rgba(6, 8, 12, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.2), rgba(7, 9, 13, 0.12) 48%, rgba(7, 9, 13, 0.75) 100%);
}

/* ---------- Фасад ---------- */
.gs__facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  transition: opacity .5s ease, transform .5s ease;
}
.gs__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
}
.gs__night {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60vw 40vh at 50% 30%, #171d2b, transparent 70%),
    radial-gradient(ellipse 40vw 30vh at 20% 15%, rgba(255, 59, 48,0.05), transparent 60%),
    linear-gradient(180deg, #0b0e14, #0e1320 55%, #121826);
}
.gs__star {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #8fa3c8;
  animation: twinkle 3.2s ease-in-out infinite;
}
.gs__star:nth-child(2n) { animation-delay: 1.1s; }
.gs__star:nth-child(3n) { animation-delay: 2.2s; width: 3px; height: 3px; }
@keyframes twinkle { 50% { opacity: 0.25; transform: scale(1.4); } }
.gs__moon {
  position: absolute;
  top: 9%; right: 12%;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #e8eef9, #b9c6dd 65%, #8fa3c8);
  box-shadow: 0 0 60px rgba(200, 216, 240, 0.35), 0 0 120px rgba(200, 216, 240, 0.15);
}
.gs__moon::after {
  content: '';
  position: absolute;
  left: 20px; top: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(140, 155, 185, 0.55);
  box-shadow: 26px 22px 0 -6px rgba(140, 155, 185, 0.45), 8px 36px 0 -8px rgba(140, 155, 185, 0.4);
}

/* видео-скраб открытия ворот (Veo 3.1, кадры) */
.gs__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: #0c0e11 url('../assets/real/frames/g_01.jpg') center/cover no-repeat;
  opacity: 0;
  transition: opacity .8s ease;
}
/* видео открытия ворот: видно, как только начинает играть (и на мобилке) */
.gs.is-gate-playing .gs__vid { opacity: 1; }
.gs__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.gs.is-gate-playing .gs__video,
.gs.is-gate-done .gs__video { opacity: 1; }
/* после окончания видео — плавно открываем цех, фасад и видео гаснут */
.gs.is-gate-done .gs__facade { opacity: 0 !important; pointer-events: none; transition: opacity .9s ease; }
.gs.is-gate-done .gs__vid { opacity: 0; transition: opacity .9s ease; }
.gs.is-gate-done .gs__bay { opacity: 1; transform: none; transition: opacity .9s ease, transform .9s ease; }

/* ---------- живые секционные ворота ---------- */
.gs__gate {
  position: absolute;
  left: 39%;
  width: 22%;
  top: 35%;
  height: 33%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(255, 59, 48,0.25), inset 0 0 24px rgba(0,0,0,0.5);
}
.gs__gate-open {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.gs__slat {
  position: absolute;
  left: 0;
  width: 100%;
  height: 16.6667%;          /* 1/6 полотна */
  object-fit: cover;
  will-change: transform;
}
.gs__slat--1 { top: 0; }
.gs__slat--2 { top: 16.6667%; }
.gs__slat--3 { top: 33.3334%; }
.gs__slat--4 { top: 50.0001%; }
.gs__slat--5 { top: 66.6668%; }
.gs__slat--6 { top: 83.3335%; }
/* свет из проёма */
.gs__glow {
  position: absolute;
  left: 36%;
  bottom: 30%;
  width: 28%;
  height: 34%;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(255, 59, 48,0.5), transparent 70%);
  filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.gs__facade-label {
  position: absolute;
  left: 50%;
  bottom: 10.5%;
  transform: translateX(-50%);
  color: var(--ink);
  letter-spacing: 0.2em;
  font-size: 13px;
  background: rgba(12,14,17,0.55);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.gs__corner { position: absolute; color: var(--ink); font-size: 12px; letter-spacing: 0.16em; background: rgba(12,14,17,0.5); padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-soft); }
.gs__corner--tl { top: 18px; left: 22px; }
.gs__corner--br { bottom: 18px; right: 22px; color: var(--brand); }

/* ---------- Интерьер ---------- */
.gs__bay {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  transform: scale(1.06) translateZ(0);
  will-change: transform, opacity;
}
.gs__bay-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90vw 60vh at 50% 40%, rgba(255, 59, 48,0.05), transparent 60%),
    var(--bg);
}
.gs__pan {
  position: absolute;
  left: 0;
  top: 0;
  width: 300vw;
  height: 100%;
  will-change: transform;
}
.gs__scene {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.gs__scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,16,0.38), rgba(10,12,16,0.14) 45%, rgba(10,12,16,0.6)),
    radial-gradient(ellipse 70vw 50vh at 50% 45%, transparent 40%, rgba(10,12,16,0.4) 100%);
}
.gs__scene::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48,0.7), transparent);
  z-index: 1;
}
.gs__scene--1 { left: 0; background-image: url('../assets/real/zone1.jpg'); }
.gs__scene--2 { left: 100vw; background-image: url('../assets/real/zone2.jpg'); }
.gs__scene--3 { left: 200vw; background-image: url('../assets/real/zone3.jpg'); }
/* зонные лейблы поверх фото-панорамы */
.gs__zone {
  position: absolute;
  top: 56%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity .35s ease;
  background: rgba(12,14,17,0.78);
  border: 1px solid rgba(255, 59, 48,0.4);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.gs__zone b { display: inline-block; color: var(--brand); font-family: var(--mono); margin-right: 6px; font-size: 12px; }
.gs__zone.on { opacity: 1; }
.zl--lift  { left: 16.7%; }
.zl--diag  { left: 50%; }
.zl--tires { left: 83.3%; }

/* ---------- Инфо-карточки зон (выезжают при проезде) ---------- */
.gs__card {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: min(400px, 34vw);
  padding: 26px 28px;
  border-radius: 16px;
  background: rgba(6, 8, 12, 0.96);
  border: 1px solid rgba(255, 59, 48, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.gs__card.on { opacity: 1; pointer-events: auto; }
.gs__card--1 { left: 4%; }
.gs__card--2 { left: 37%; }
.gs__card--3 { left: 70%; }
.gs__card-kicker {
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.gs__card-title {
  font-family: var(--disp);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 8px;
}
.gs__card-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.gs__card .btn { font-size: 13px; padding: 10px 18px; }

/* ---------- Капчионы ---------- */
.gs__caps { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.gs__cap {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%, -50%);
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(24px, 4.4vw, 44px);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 0 30px rgba(0,0,0,0.6);
  color: #fff;
}
.gs__cap--1 { font-family: var(--mono); font-weight: 400; font-size: 13px; letter-spacing: 0.3em; color: #cdd6e4; top: 12%; }
.gs__cap .accent { color: var(--brand); }

/* ---------- Оффер ---------- */
.gs__offer {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: clamp(96px, 13vh, 148px) 24px 72px max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  opacity: 1;
  transition: opacity .5s ease;
  pointer-events: auto;
}
.gs__offer-copy {
  width: min(680px, 100%);
  min-width: 0;
  /* Кадр цеха местами почти белый, и одной тени тексту не хватало.
     Даём офферу такую же подложку, как у карточек зон. */
  padding: 30px 32px 32px;
  border-left: 3px solid var(--brand);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(100deg, rgba(8, 10, 13, .88) 0%, rgba(8, 10, 13, .74) 62%, rgba(8, 10, 13, .5) 100%);
  backdrop-filter: blur(7px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.gs__offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}
.gs__offer-eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(255, 59, 48,0.55);
}
.gs__offer-title {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 22px;
  max-width: 720px;
  overflow-wrap: anywhere;
}
.gs__offer-title .accent {
  color: var(--brand);
  text-shadow: 0 0 22px rgba(255, 59, 48,0.24), 0 2px 14px rgba(0,0,0,0.9);
}
.gs__offer-sub {
  color: #e8edf5;
  font-size: clamp(16px, 1.35vw, 20px);
  max-width: 620px;
  margin-bottom: 24px;
}
.gs__proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gs__proof span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: 13.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .85);
}
/* направления перечисляем строкой, а не чипами: это не фильтры, а рассказ */
.gs__proof span + span::before {
  content: '';
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 50%;
  background: var(--brand);
}
.gs__offer-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }

/* ---------- HUD / прогресс ---------- */
.gs__hud {
  position: absolute;
  left: 0; right: 0;
  bottom: 20px;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  color: #cdd6e4;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  pointer-events: none;
}
.gs__hud-item { opacity: 0; transition: opacity .4s; }
.gs__hud-item.is-visible { opacity: 1; }
.gs__progress {
  position: absolute;
  left: 0; top: 0;
  height: 3px;
  width: 100%;
  z-index: 9;
  background: rgba(255,255,255,0.04);
}
.gs__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 12px rgba(255, 59, 48,0.6);
  transition: width .1s linear;
}

/* ---------- Фазовые состояния (JS ставит классы на .gs) ---------- */
/* фасад уезжает, когда камера въезжает (масштаб управляется inline) */
.gs.is-in .gs__facade { opacity: 0; pointer-events: none; }

/* при показе оффера гасим служебные элементы */
.gs.is-offer .gs__card,
.gs.is-offer .gs__zone,
.gs.is-offer .gs__cap,
.gs.is-offer .gs__hud { opacity: 0 !important; pointer-events: none !important; transition: opacity .4s ease; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .gs { height: auto; }
  .gs__track { position: relative; height: 100vh; height: 100svh; min-height: 620px; }
  .gs__shot:not(.gs__shot--3) { display: none; }
  .gs__facade { opacity: 0; }
  .gs__bay { opacity: 1; transform: none; }
  .gs__caps { display: none; }
  .gs__offer { opacity: 1; }
}

/* ---------- Responsive scene ---------- */
@media (max-width: 700px) {
  .gs { height: auto; }
  .gs__track {
    position: relative;
    min-height: 100svh;
    height: auto;
    padding: 92px 0 54px;
    overflow: visible;
  }
  .gs__track::before {
    background:
      linear-gradient(180deg, rgba(5,7,10,.58), rgba(5,7,10,.78) 36%, rgba(5,7,10,.94) 100%),
      linear-gradient(90deg, rgba(5,7,10,.92), rgba(5,7,10,.58));
  }
  .gs__caps,
  .gs__hud,
  .gs__progress,
  .gs__corner,
  .gs__facade-label,
  .gs__gate { display: none; }
  .gs__facade { opacity: 1 !important; transform: none !important; }
  .gs__vid { display: block; }
  .gs__shot { filter: saturate(.9) contrast(1.08) brightness(.64); object-position: 58% center; }
  /* Mobile bay: intro animation via IntersectionObserver (gs-mob--in / gs-mob--gate) */
  .gs__bay {
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .8s ease, transform .8s ease, filter .6s ease;
    filter: brightness(.7);
    z-index: 2;
  }
  .gs.is-gate-done .gs__bay { z-index: 6; }
  .gs-mob--in .gs__bay {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  .gs-mob--gate .gs__bay {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  .gs-mob--in .gs__facade { opacity: 0 !important; transition: opacity .6s ease; }
  .gs-mob--in .gs__vid { opacity: 1; }
  .gs__pan { width: 300vw; }
  .gs__scene { width: 100vw; }
  .gs__scene--1 { left: 0; }
  .gs__scene--2 { left: 100vw; }
  .gs__scene--3 { left: 200vw; }
  .gs__zone { font-size: 12px; padding: 10px 12px; white-space: normal; width: 34vw; }
  .zl--lift  { left: 12%; }
  .zl--diag  { left: 50%; }
  .zl--tires { left: 88%; }
  .gs__card { width: 74vw; padding: 16px 18px; }
  .gs__card--1 { left: 10%; }
  .gs__card--2 { left: 10%; }
  .gs__card--3 { left: 10%; }
  .gs__card-title { font-size: 18px; }
  /* плавающая кнопка WhatsApp садилась на вторую кнопку оффера */
  .gs__offer { padding-bottom: 92px; }
  .gs__card-text { font-size: 14px; }
  .gs__card .btn { font-size: 12px; padding: 8px 14px; }
  .gs__offer {
    position: relative;
    min-height: calc(100svh - var(--header-h) - 146px);
    justify-content: flex-end;
    padding: 0 24px;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .gs__offer-copy { width: 100%; padding: 22px 20px 24px; border-radius: 0 12px 12px 0; }
  .gs__offer-eyebrow { font-size: 10.5px; letter-spacing: .11em; margin-bottom: 14px; }
  .gs__offer-eyebrow::before { width: 28px; }
  .gs__cap--1 { font-size: 10px; white-space: nowrap; }
  .gs__offer-title { font-size: clamp(30px, 10.2vw, 42px); line-height: 1.05; margin-bottom: 16px; }
  .gs__offer-sub { font-size: 15.5px; margin-bottom: 18px; }
  .gs__proof { gap: 8px; margin-bottom: 22px; }
  .gs__proof span {
  border: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important; min-height: 31px; padding: 6px 9px; font-size: 10.5px; }
  .gs__offer-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 20px; }
  .header__in { gap: 8px; }
  .logo { gap: 8px; }
  .logo__mark { display: none; }
  .logo__text { font-size: 13px; letter-spacing: 0.05em; }
  .lang { gap: 2px; }
  .lang__btn { padding: 4px 8px; font-size: 11px; }
  .gs__track { padding: 56px 0 36px; }
  .gs__offer { min-height: auto; padding: 0 20px; }
  .gs__offer-eyebrow { font-size: 9.5px; margin-bottom: 12px; }
  .gs__offer-title { font-size: clamp(27px, 9vw, 34px); margin-bottom: 14px; }
  .gs__offer-sub { font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
  .gs__proof { gap: 6px; margin-bottom: 18px; }
  .gs__proof span {
  border: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important; min-height: 29px; padding: 5px 8px; font-size: 9.8px; }
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

/* Ритм: якорные секции дышат, служебные — плотные */
.section--anchor { padding: 96px 0; }
.section--tight { padding: 58px 0; }

.sec-head { margin-bottom: 36px; }
.sec-head__title {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}
.sec-head__note { color: var(--ink-soft); margin-top: 12px; max-width: 560px; }

/* Якорные заголовки — крупно, это точки опоры страницы */
.section--anchor .sec-head { margin-bottom: 44px; }
.section--anchor .sec-head__title {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 18ch;
}
.section--anchor .sec-head__note { font-size: 16.5px; max-width: 52ch; }

/* Служебные — заголовок работает как подпись к содержимому, не как афиша */
.section--tight .sec-head { margin-bottom: 28px; }
.section--tight .sec-head__title { font-size: clamp(19px, 2vw, 23px); font-weight: 600; }

/* ---------- Cards ---------- */
/* Асимметрия: первая услуга — ведущая, остальные подчинены ей */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); }
.card {
  position: relative;
  border: 0;
  border-radius: 0;
  border-left: 2px solid transparent;
  padding: 30px 26px 26px;
  background: var(--bg-2);
  transition: background .25s, border-color .25s;
  overflow: hidden;
}
.card { display: flex; flex-direction: column; }
.card__foot { margin-top: auto; }
.card:hover { background: var(--bg-3); border-left-color: var(--brand); }
.card:hover .card__more { opacity: 1; }
/* Фото услуги: блок услуг был сплошным текстом и читался скучно */
.card__shot {
  display: block;
  margin: -30px -26px 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-3);
}
.card__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__shot img { transform: scale(1.04); }

@media (max-width: 900px) { .card__shot { margin: -26px -22px 16px; } }

.card__title { font-family: var(--disp); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.card__text { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 20px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px dashed #39414e; padding-top: 14px; }
.card__price { color: var(--ink); font-weight: 600; font-size: 15px; font-variant-numeric: tabular-nums; }
.card__link { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.card__link:hover { color: var(--brand); }
.card__more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--brand); opacity: .9; transition: opacity .2s; }
.card__more:hover { opacity: 1; text-decoration: underline; }

/* ---------- Prices ---------- */
.prices { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.prices__row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 15px 22px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  transition: background .2s;
}
.prices__row:last-child { border-bottom: 0; }
.prices__row:hover { background: var(--bg-3); }
.prices__name { font-weight: 500; min-width: 0; overflow-wrap: anywhere; }
.prices__dash { border-bottom: 1px dotted var(--ink-dim); opacity: 0.6; transform: translateY(-4px); min-width: 12px; }
.prices__name { display: inline-flex; align-items: center; gap: 14px; }
.prices__ico {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex: none;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink-soft);
  transition: color .2s, border-color .2s;
}
.prices__ico svg { width: 20px; height: 20px; }
.prices__row:hover .prices__ico { color: var(--brand); border-color: var(--brand); }
@media (max-width: 700px) {
  .prices__ico { width: 34px; height: 34px; }
  .prices__ico svg { width: 17px; height: 17px; }
}
.prices__val { color: var(--ink); font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.prices__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 14px;
  white-space: nowrap;
  transition: color .2s, border-color .2s, background .2s;
}
.prices__cta:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}
.prices__note { color: var(--ink-dim); font-size: 12.5px; margin-top: 14px; }

/* ---------- Estimate calculator ---------- */
.calc {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.6fr);
  gap: 34px;
  align-items: start;
}
.calc__intro { position: sticky; top: calc(var(--header-h) + 28px); }
/* левая колонка калькулятора пустовала — объясняем, что значит цифра */
.calc__prompt { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; padding: 6px 0 2px; }
.calc__panel.has-choice .calc__prompt { display: none; }
.calc__summary.is-empty { display: none; }
.btn.is-disabled { opacity: .45; pointer-events: none; }
.calc__notes { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.calc__notes li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}
.calc__notes li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.calc__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}
.calc__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.calc__service {
  min-height: 76px;
  display: grid;
  grid-template-columns: 22px 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  transition: border-color .18s, background .18s, transform .18s;
}
.calc__service:hover {
  border-color: rgba(255, 59, 48,.45);
  background: rgba(255, 59, 48,.055);
  transform: translateY(-1px);
}
/* Свой чекбокс: системный на тёмном фоне выглядит как чужой элемент */
.calc__service input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg);
  cursor: pointer;
  transition: background .18s, border-color .18s;
}
.calc__service input:hover { border-color: var(--brand); }
.calc__service input:checked { background: var(--brand); border-color: var(--brand); }
.calc__service input:checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #04140d;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.calc__service input:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Длинные названия услуг рвались посреди слова: даём колонке ширину,
   запрещаем перенос по слогам и снимаем лишнюю иконку из ряда. */
.calc__service span,
.calc__service b { overflow-wrap: normal; word-break: normal; hyphens: auto; }
.calc__service { grid-template-columns: 20px 1fr; gap: 12px; padding: 13px 14px; }
.calc__service .calc__ico { display: none; }
.calc__service b { font-size: 14px; line-height: 1.32; }

/* Заголовок калькулятора живёт в узкой колонке — своя ступень кегля */
/* Русский заголовок длиннее испанского и вылезал на карточки услуг */
.section--anchor .calc__intro .sec-head__title {
  font-size: clamp(26px, 2.6vw, 38px);
  max-width: 100%;
  overflow-wrap: normal;
  hyphens: auto;
}
.calc__ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 59, 48,.4);
  border-radius: 8px;
  background: rgba(255, 59, 48,.08);
  color: var(--brand);
}
.calc__ico svg {
  width: 18px;
  height: 18px;
  display: block;
}
.calc__service-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.calc__service-body b {
  font-size: 14.5px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.calc__service-body small { color: var(--ink-soft); font-size: 12.5px; }
.calc__side {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
}
.calc__summary {
  display: grid;
  gap: 9px;
  padding-top: 4px;
}
.calc__line,
.calc__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.calc__line { color: var(--ink-soft); font-size: 14px; min-width: 0; }
.calc__line > span { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.calc__line b {
  color: var(--ink);
  font-weight: 600;
  min-width: 0;
  flex-shrink: 0;
  max-width: 60%;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: right;
}
.calc__line--discount b { color: var(--green); }
.calc__total {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.calc__total span {
  color: var(--ink-soft);
  font-size: 14px;
  flex-shrink: 0;
}
.calc__total strong {
  color: var(--brand);
  font-size: 26px;
  line-height: 1.15;
  min-width: 0;
  flex-shrink: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: right;
}
.calc__hint,
.calc__empty {
  color: var(--ink-dim);
  font-size: 12px;
}

/* Как проходит работа: не «шаги 01–04», а когда что происходит */
.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.flow__step {
  padding: 26px 26px 30px 0;
  border-right: 1px solid var(--line);
}
.flow__step:last-child { border-right: 0; }
.flow__step + .flow__step { padding-left: 26px; }
.flow__when {
  display: block;
  color: var(--brand);
  font-size: 13px;
  margin-bottom: 12px;
}
.flow__title { font-family: var(--disp); font-size: 19px; font-weight: 600; line-height: 1.2; }
.flow__text { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; }
  .flow__step { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .flow__step + .flow__step { padding-left: 0; }
  .flow__step:last-child { border-bottom: 0; }
}

/* Три причины остаться — вместо шести обещаний с иконками */
.why { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.why__item { display: grid; gap: 9px; align-content: start; padding-top: 20px; border-top: 2px solid var(--brand); }
.why__item b { font-family: var(--disp); font-size: 17.5px; font-weight: 600; }
.why__item span { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 800px) { .why { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- Reviews (removed for production, pending real ones) ---------- */

/* ---------- Book ---------- */

/* ---------- Book ---------- */
.section--book { background: linear-gradient(160deg, rgba(255, 59, 48,0.07), transparent 45%), var(--bg); }
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px;
  background: var(--bg-2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.book__title { font-family: var(--disp); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; margin-bottom: 14px; }
.book__text { color: var(--ink-soft); margin-bottom: 26px; }
.book__contacts { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.book__form { display: grid; gap: 14px; align-content: start; }
.field { display: grid; gap: 6px; }
.field__label { font-size: 13px; color: var(--ink-soft); }
.field__input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field__input:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.18); }
.field__input::placeholder { color: var(--ink-dim); }
select.field__input { appearance: none; cursor: pointer; }
.book__form-note { color: var(--ink-dim); font-size: 11.5px; text-align: center; }
.book__ok { color: var(--green); font-size: 13.5px; text-align: center; }
.book__err { color: #ff6b6b; font-size: 13.5px; text-align: center; }

/* Поля формы: ошибки, мультивыбор услуг, фото повреждения */
.field--set { border: 0; padding: 0; margin: 0; }
.field__err { color: #ff6b6b; font-size: 12.5px; }
.field__hint { color: var(--ink-dim); font-size: 12.5px; }
.field__input--area { resize: vertical; min-height: 84px; font-family: var(--body); }
.field__input.is-invalid { border-color: #ff6b6b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.choice {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.choice:hover { border-color: #3a424f; }
.choice input { accent-color: var(--brand); width: 16px; height: 16px; flex: none; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.choice:has(input:focus-visible) { outline: 2px solid var(--brand); outline-offset: 2px; }
@media (max-width: 600px) { .choices { grid-template-columns: 1fr; } }

.drop {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s, color .18s;
}
.drop:hover, .drop.is-over { border-color: var(--brand); color: var(--ink); }
.drop__icon { color: var(--brand); }
.drop__icon svg { width: 22px; height: 22px; }

.thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.thumb { position: relative; width: 84px; height: 64px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb__x {
  position: absolute; top: 3px; right: 3px;
  width: 20px; height: 20px; line-height: 18px;
  border-radius: 50%;
  background: rgba(8, 10, 13, .82);
  color: #fff; font-size: 13px; text-align: center;
}
.thumb__x:hover { background: #ff6b6b; }
.btn--primary[disabled] { opacity: .6; cursor: default; }

/* ---------- Cars for sale ---------- */
.cars { display: grid; gap: 14px; }
.cars__meta { color: var(--ink-dim); font-size: 12.5px; letter-spacing: 0.06em; }
.cars__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.cars__trust div {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 59, 48, 0.06), transparent 65%),
    rgba(12, 14, 17, 0.56);
}
.cars__trust b,
.cars__trust span {
  display: block;
}
.cars__trust b {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
}
.cars__trust span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}
.cars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.car {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.car:hover { transform: translateY(-4px); border-color: rgba(255, 59, 48,0.48); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.car:hover .car__media img { transform: scale(1.035); }
.car__media { position: relative; aspect-ratio: 16 / 10; background: var(--bg); }
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.car__badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  color: #04140d; background: var(--brand); border-radius: 6px; font-weight: 700;
}
.car__badge--sold {
  top: 10px; left: 10px;
  color: #fff; background: rgba(12, 14, 17, 0.85);
  border: 1.5px solid var(--brand);
  padding: 4px 10px;
}
.car__price--sold,
.cm__price--sold {
  color: var(--ink-dim);
  text-decoration: line-through;
  font-weight: 500;
}
.car__checked {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12.5px;
}
.car__checked::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
.car__body { padding: 16px 16px 14px; display: grid; gap: 12px; }
.car__title { font-family: var(--disp); font-size: 15px; font-weight: 600; line-height: 1.3; }
.car__row { color: var(--ink-dim); font-size: 11.5px; letter-spacing: .03em; margin-top: -6px; }
.car__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 10px; }
.car__spec { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.car__spec b { font-family: var(--mono); font-size: 12.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.car__spec i { font-style: normal; font-size: 11px; color: var(--ink-dim); }
.car__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 12px; border-top: 1px dashed #39414e; padding-top: 12px; }
/* «a consultar» вместо цены рвалось по слогам — переносим только по словам */
.car__price { color: var(--ink); font-weight: 600; font-size: 15px; min-width: 0; overflow-wrap: normal; word-break: normal; font-variant-numeric: tabular-nums; }
.car__ask { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
.car__ask:hover { color: var(--brand); }
.car__date { color: var(--ink-dim); font-size: 10.5px; margin-top: -6px; }
.cars__empty { color: var(--ink-soft); }
.cars__demo-note { color: var(--ink-dim); font-size: 11.5px; margin-top: 18px; }

/* ---------- Blog ---------- */
.blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 34px; }
.post {
  display: grid; gap: 10px; padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
  transition: border-color .25s;
}
.post:hover { border-top-color: var(--ink-dim); }
.post__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.post__tag { font-family: var(--body); font-size: 12.5px; color: var(--ink-soft); border: 0; background: none; padding: 0; border-radius: 0; }
.post__date { font-family: var(--mono); font-size: 12.5px; color: var(--ink-dim); }
.post__title { font-family: var(--disp); font-size: 15.5px; font-weight: 600; line-height: 1.35; }
.post__excerpt { color: var(--ink-soft); font-size: 14px; }
.post__more { font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--brand); margin-top: auto; cursor: pointer; background: none; border: 0; text-align: left; padding: 0; }
.post__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.post.is-open .post.is-open .post__more { color: var(--ink-dim); }

/* ---------- FAQ ---------- */
/* Одной колонкой: в две вопросы вставали неровно, правая половина пустовала */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
}
.faq__item {
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background: none;
  padding: 20px 0;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--disp);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  float: right;
  font-family: var(--mono);
  color: var(--brand);
  margin-left: 14px;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- Car modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none !important; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 8, 11, 0.82);
  backdrop-filter: blur(6px);
  animation: modalFade .25s ease;
}
@keyframes modalFade { from { opacity: 0; } }
.modal__box {
  position: relative;
  width: 100%; max-width: 820px; max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  animation: modalPop .28s cubic-bezier(.2,.8,.3,1.05);
}
@keyframes modalPop { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,12,15,.8); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 15px;
  transition: color .2s, border-color .2s;
}
.modal__close:hover { color: var(--brand); border-color: var(--brand); }
.modal__inner { padding: 0 0 8px; }
.cm { display: grid; }
.cm__media { position: relative; aspect-ratio: 16 / 9; background: var(--bg); overflow: hidden; }
.cm__media img { width: 100%; height: 100%; object-fit: cover; }
.cm__badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: #04140d; background: var(--brand); border-radius: 7px; font-weight: 700;
}
.cm__badge--2 {
  /* правый верхний угол занят крестиком закрытия — уводим бейдж ниже */
  left: auto; right: 14px; top: 58px;
  color: var(--brand); background: rgba(10,12,15,.78);
  border: 1px solid var(--brand); font-weight: 600; letter-spacing: .06em;
}
.cm__badge--sold {
  color: #fff; background: rgba(12, 14, 17, 0.85);
  border: 1.5px solid var(--brand);
}
.cm__photo-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,12,15,.72); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 20px; line-height: 1;
  transition: color .2s, border-color .2s, background .2s;
}
.cm__photo-btn:hover { color: var(--brand); border-color: var(--brand); background: rgba(10,12,15,.92); }
.cm__photo-btn--prev { left: 12px; }
.cm__photo-btn--next { right: 12px; }
.cm__count {
  position: absolute; bottom: 12px; right: 14px;
  padding: 3px 8px; border-radius: 6px;
  background: rgba(10,12,15,.72); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 11px;
}
.cm__body { padding: 26px 30px 22px; display: grid; gap: 16px; }
.cm__title { font-family: var(--disp); font-size: clamp(19px, 2.4vw, 26px); font-weight: 600; line-height: 1.25; }
.cm__row { color: var(--ink-dim); font-family: var(--mono); font-size: 12.5px; margin-top: -10px; }
.cm__specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); padding: 14px 16px;
}
.cm__spec { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cm__spec b { font-family: var(--mono); font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cm__spec i { font-style: normal; font-size: 11.5px; color: var(--ink-dim); }
.cm__features {
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); padding: 14px 16px;
  display: grid; gap: 8px;
}
.cm__features > b {
  font-size: 12px; color: var(--ink-dim); font-weight: 500;
}
.cm__feat {
  position: relative; padding-left: 16px;
  color: var(--ink-soft); font-size: 14px; line-height: 1.45;
}
.cm__feat::before {
  content: '▸';
  position: absolute; left: 0; top: 0;
  color: var(--brand); font-family: var(--mono); font-size: 12px;
}
.cm__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px dashed #39414e; padding-top: 18px;
}
.cm__price { color: var(--ink); font-weight: 700; font-size: 26px; }
.cm__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cm__date { color: var(--ink-dim); font-family: var(--mono); font-size: 11px; margin-top: -6px; }
.cm__nav {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 0 30px 22px;
}
.cm__nav-btn {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 16px; transition: color .2s, border-color .2s;
}
.cm__nav-btn:hover { color: var(--brand); border-color: var(--brand); }
.cm__nav-btn[disabled] { opacity: .35; pointer-events: none; }
@media (max-width: 600px) {
  .faq { grid-template-columns: 1fr; }
  .cm__specs { grid-template-columns: repeat(2, 1fr); }
  .cm__body { padding: 20px 20px 16px; }
  .cm__nav { padding: 0 20px 18px; }
  .prices__row { grid-template-columns: 1fr auto; gap: 8px 12px; padding: 13px 16px; }
  .prices__dash { display: none; }
  .prices__cta { grid-column: 2; justify-self: end; padding: 6px 12px; font-size: 12px; }
  .calc__services { grid-template-columns: 1fr; }
  .calc__service { min-height: 64px; }
  .calc__side { padding: 14px; }
  .calc__line b { max-width: 55%; }
  .calc__total strong { max-width: 55%; font-size: 22px; }
}

/* ---------- Contacts ---------- */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contacts__map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  overflow: hidden;
}
.contacts__iframe { filter: invert(1) hue-rotate(180deg) grayscale(.28) contrast(.92) brightness(.92); }
.contacts__list { display: grid; gap: 18px; align-content: start; }
.contact { padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.contact:last-child { border-bottom: 0; }
.contact__label { font-size: 13px; color: var(--ink-dim); }
.contact__val { margin-top: 4px; font-size: 16.5px; font-weight: 500; }
.contact__val a { transition: color .2s; white-space: nowrap; }
.contact__val a:hover { color: var(--brand); }
.contact__sep { color: var(--ink-dim); margin: 0 6px; }
.contact__hint { margin-top: 3px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-dim); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 34px 0; background: var(--bg-2); }
.footer__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__note { color: var(--ink-dim); font-size: 13.5px; max-width: 420px; }
.footer__note a { color: var(--brand); }
.footer__note a:hover { text-decoration: underline; }

/* ---------- Floating ---------- */
/* Связь одной кнопкой: WhatsApp, звонок и TikTok — раскрываются по клику */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: grid; justify-items: end; gap: 12px; }
.fab__btn {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  transition: transform .2s, background .2s;
}
.fab__btn:hover { transform: translateY(-3px) scale(1.04); }
.fab__ico { width: 28px; height: 28px; }
.fab__ico--x { display: none; }
.fab.is-open .fab__btn { background: var(--bg-3); box-shadow: 0 10px 30px rgba(0, 0, 0, .45); }
.fab.is-open .fab__ico--wa { display: none; }
.fab.is-open .fab__ico--x { display: block; }

.fab__list { display: grid; gap: 10px; justify-items: end; }
.fab__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12, 14, 17, .94);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  animation: fabIn .18s ease both;
}
.fab__item svg { width: 18px; height: 18px; flex: none; }
.fab__item--wa svg { color: #25d366; }
.fab__item--tt svg { color: #fff; }
.fab__item--tel svg { color: var(--brand); }
.fab__item:hover { border-color: var(--brand); }
.fab__item:nth-child(2) { animation-delay: .04s; }
.fab__item:nth-child(3) { animation-delay: .08s; }
@keyframes fabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fab__item { animation: none; } }
@media (max-width: 700px) { .fab { right: 14px; bottom: 14px; } .fab__item { font-size: 13.5px; padding: 9px 14px; } }

/* иконки рядом с контактами в верхней строке */
.topbar__ico { width: 15px; height: 15px; margin-right: 6px; vertical-align: -3px; display: inline-block; }
.topbar__link { display: inline-flex; align-items: center; }

.to-top {
  position: fixed;
  right: 26px; bottom: 88px;
  z-index: 60;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--ink-soft);
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .2s, border-color .2s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
/* На телефоне кнопка «вверх» садилась на кнопку WhatsApp и накрывала текст:
   там хватает жеста прокрутки и системной кнопки браузера. */
@media (max-width: 700px) { .to-top { display: none; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cars__trust { grid-template-columns: 1fr; }
  .cars__grid, .blog { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .calc,
  .calc__panel { grid-template-columns: 1fr; }
  .calc__intro { position: static; }
  .book, .contacts { grid-template-columns: 1fr; }
  .book { padding: 30px 24px; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: calc(var(--header-h) + 34px);
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav__link::after { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .lang { order: 3; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .cards, .steps, .why { grid-template-columns: 1fr; }
  .cars__grid, .blog { grid-template-columns: 1fr; }
  .calc__services { grid-template-columns: 1fr; }
  .calc__side { padding: 16px; }
  .calc__total strong { font-size: 24px; }
  .cars__trust div { min-height: auto; }
  .topbar__item--right { width: 100%; justify-content: space-between; }
  .book__contacts .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Premium polish (28.08.2026) — глубина, фактура, HUD-детали
   ============================================================ */

/* Точечная сетка на фоне — фирменная фактура вместо плоского чёрного */
body {
  background-image: radial-gradient(rgba(255, 59, 48, 0.05) 1px, transparent 1.6px);
  background-size: 26px 26px;
}

/* Шапки секций: kicker → бейдж-пилюля с красным глитчем */

/* Акцент в заголовках секций — градиентный текст со свечением */
.sec-head__title .accent {
  background: linear-gradient(100deg, #7dffc9, var(--brand) 55%, var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 59, 48, 0.28));
}

/* Почему мы: иконки в красные бейджи, hover с красной рамкой */
.why__item { transition: border-color .2s, transform .2s, box-shadow .2s; }
.why__item:hover {
  border-color: var(--brand);
  transform: translateX(3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.why__ico {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--brand);
}

/* Поля форм: подсветка рамки при наведении */
.field__input:hover { border-color: #3a424f; }

/* Кнопка WhatsApp — мягче свечение, без резкого зелёного */
.btn--wa { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.22); }

/* Фирменный знак в подвале */
.footer__logo { display: block; line-height: 0; }
.footer__logo img { width: 76px; height: 76px; }
@media (max-width: 620px) { .footer__logo img { width: 64px; height: 64px; } }

/* ---------- Действия внутри карточек: были почти невидимы ----------
   Ссылка-действие должна читаться как кнопка, а не как строка текста. */
.post__more,
.card__more,
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s, background .2s, color .2s;
  opacity: 1;
}
.post__more { justify-self: start; margin-top: 4px; }
.card__more { margin-top: 14px; }
.post__more:hover,
.card__more:hover,
.card__link:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
  text-decoration: none;
}
.post.is-open .post__more { border-color: var(--line); color: var(--ink-soft); }
.card:hover .card__link { border-color: var(--brand); color: var(--brand); }

.prices__cta {
  border-color: #3a424f;
  background: rgba(255, 255, 255, .03);
}
.prices__cta:hover { color: #04140d; }

/* ---------- Поиск по прайсу ---------- */
.prices-search { margin-bottom: 16px; }
.prices-search__input {
  width: 100%;
  max-width: 420px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color .2s;
}
.prices-search__input::placeholder { color: var(--ink-dim); }
.prices-search__input:hover { border-color: #3a424f; }
.prices-search__input:focus { outline: none; border-color: var(--brand); }
.prices-search__empty { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }
.prices__row[hidden] { display: none; }

/* ============================================================
   Правка на сайте: карандаши для владельца (js/inline-edit.js)
   ============================================================ */
.ie-host > .ie-pencil {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 30;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .15s, transform .15s;
  pointer-events: none;
}
.ie-host > .ie-pencil svg { width: 16px; height: 16px; }
.ie-host:hover > .ie-pencil,
.ie-host:focus-within > .ie-pencil { opacity: 1; transform: scale(1); pointer-events: auto; }
.is-editable .ie-host:hover { outline: 1px dashed rgba(255, 59, 48, .55); outline-offset: 4px; }
/* у строк прайса и карточек карандаш держим внутри: снаружи его срезала сетка */
.prices__row > .ie-pencil,
.car > .ie-pencil,
.post > .ie-pencil,
.card > .ie-pencil { top: 8px; right: 8px; }

.ie-bar {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(12, 14, 17, .94);
  border: 1px solid var(--brand);
  font-size: 13px;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}
.ie-bar__link { color: var(--brand); font-weight: 600; }
.ie-bar__off { color: var(--ink-dim); font-size: 12.5px; }
.ie-bar__off:hover { color: var(--ink); }
@media (max-width: 700px) { .ie-bar { left: 12px; bottom: 76px; } }

/* Выход из экскурсии для тех, кто пришёл за ценой, а не за видом цеха */
.gs__skip {
  position: absolute;
  bottom: 26px;
  right: max(20px, calc((100vw - var(--wrap)) / 2 + 20px));
  z-index: 12;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(10, 12, 15, .5);
  backdrop-filter: blur(6px);
  color: var(--ink-soft);
  font-size: 13px;
  transition: border-color .2s, background .2s;
}
.gs__skip:hover { border-color: var(--cta); color: var(--cta); }
@media (max-width: 700px) { .gs__skip { bottom: 84px; right: 14px; font-size: 12px; padding: 6px 12px; } }

/* Пальцевые цели: на телефоне ссылки в верхней строке, переключатель языка и
   «спросить про эту машину» были ниже 32 px — легко промахнуться. */
@media (max-width: 700px) {
  .topbar__link,
  .car__ask,
  .contact__val a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
  .lang__btn { min-height: 38px; min-width: 40px; }
}


/* Живой статус и мягкий вход первого экрана: страница открывается одним
   движением, а не выпрыгивает целиком. */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 6px 13px 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 12, 15, .6);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.hero-status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-dim); }
.hero-status.is-open { color: var(--ink); border-color: rgba(16, 185, 129, .45); }
.hero-status.is-open .hero-status__dot { background: var(--cta); animation: statusPulse 2.4s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.gs__offer-copy > * { animation: offerIn .55s cubic-bezier(.22, .61, .36, 1) both; }
.gs__offer-copy > *:nth-child(1) { animation-delay: .05s; }
.gs__offer-copy > *:nth-child(2) { animation-delay: .12s; }
.gs__offer-copy > *:nth-child(3) { animation-delay: .19s; }
.gs__offer-copy > *:nth-child(4) { animation-delay: .26s; }
.gs__offer-copy > *:nth-child(5) { animation-delay: .33s; }
.gs__offer-copy > *:nth-child(6) { animation-delay: .40s; }
@keyframes offerIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .gs__offer-copy > * { animation: none; }
  .hero-status.is-open .hero-status__dot { animation: none; }
}


/* ============================================================
   Страницы услуг: что входит, вопросы, смежные работы
   ============================================================ */
.svc-includes, .svc-faq, .svc-related, .svc-when { margin-top: 54px; }
.svc-includes h2, .svc-faq h2, .svc-related h2, .svc-when h2 {
  font-family: var(--disp);
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 700;
  margin-bottom: 20px;
}
.svc-list { list-style: none; display: grid; gap: 12px; max-width: 760px; }
.svc-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.svc-price {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 760px;
}
.svc-price b { color: var(--ink); font-size: 18px; margin: 0 4px; }
.svc-price a { color: var(--brand); }
.svc-price a:hover { text-decoration: underline; }

.svc-faq__list { display: grid; gap: 0; max-width: 820px; border-top: 1px solid var(--line); }
.svc-faq__item { border-bottom: 1px solid var(--line); }
.svc-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 34px 16px 0;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}
.svc-faq__item summary::-webkit-details-marker { display: none; }
.svc-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 6px; top: 14px;
  color: var(--brand);
  font-size: 20px;
}
.svc-faq__item[open] summary::after { content: '−'; }
.svc-faq__item p { padding: 0 0 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 68ch; }
.svc-faq__ask { margin-top: 22px; color: var(--ink-soft); font-size: 15px; }

.svc-related__list { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-related__item {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s, color .2s;
}
.svc-related__item:hover { border-color: var(--brand); color: var(--brand); }


/* Зона обслуживания: посетитель ищет мастерскую вместе с названием своего посёлка */
.area { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.area li {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.area li:first-child { border-color: var(--brand); color: var(--ink); }


/* Вводный текст услуги: страницам не хватало содержания для поиска */
.svc-intro { margin-top: 40px; max-width: 74ch; display: grid; gap: 18px; }
.svc-intro p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; }


/* Хлебные крошки на страницах услуг: разметка была, видимой навигации не было */
.svc-crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--ink-dim); font-size: 13.5px; }
.svc-crumbs a:hover { color: var(--brand); }

/* Что делаем ещё: услуги без отдельных страниц — кондиционер, ITV, растаможка, подбор авто */
.more-srv {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
}
.more-srv__title { margin: 0 0 8px; font-size: 17px; }
.more-srv__text { margin: 0; color: var(--ink-soft); max-width: 78ch; }

/* Удобства на территории — компактные чипы в блоке контактов */
.area--sm { gap: 8px; margin-top: 6px; }
.area--sm li { padding: 6px 12px; font-size: 13.5px; }
.area--sm li:first-child { border-color: var(--line); color: var(--ink-soft); }
