/* ============================================================
   NAVITOLA — стили сайта. Дизайн-система «Доступность и доверие».
   Источник токенов: дизайн-система/navitola_tokens.css (light-first).
   Шрифты подключены локально — внешних CDN нет.
   ============================================================ */

/* ---------- Шрифты (локально, /assets/fonts) ---------- */
@font-face {
  font-family: 'Manrope'; font-style: normal; font-weight: 400 800;
  font-display: swap; src: url('/assets/fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope'; font-style: normal; font-weight: 400 800;
  font-display: swap; src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url('/assets/fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400 600;
  font-display: swap; src: url('/assets/fonts/jetbrains-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400 600;
  font-display: swap; src: url('/assets/fonts/jetbrains-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+2000-206F, U+2074, U+20AC, U+2122, U+2212;
}

/* ---------- Токены ---------- */
:root {
  --surface-canvas: #FFFFFF; --surface-soft: #F6F8FB; --surface-muted: #EEF2F7; --surface-sky: #F0F5FE;
  --fg-1: #0E1726; --fg-2: #3A4452; --fg-3: #5F6B7A; --fg-4: #8A94A3;
  --brand-primary: #1F6FE5; --brand-primary-hover: #1A5FCB; --brand-link: #1A5FCB;
  --brand-soft: #E7F0FE; --brand-soft-border: #CFE0FB;
  --semantic-success: #15924E; --semantic-error: #C9372C; --semantic-error-soft: #FBE9E7;
  --border-hairline: #E3E8EF; --border-default: #D5DCE6; --border-strong: #C0C9D6;
  --dark-canvas: #14161A; --dark-card: #1E222A; --dark-fg-1: #F2F4F8; --dark-fg-2: #B8C0CC; --dark-border: #2A3340;

  --font-display: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --sp-1: 4px; --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; --sp-20: 80px; --sp-24: 96px;

  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px; --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(14,23,38,.05);
  --shadow-sm: 0 2px 8px rgba(20,40,80,.06);
  --shadow-md: 0 8px 24px rgba(20,40,80,.08);
  --shadow-lg: 0 16px 48px rgba(20,40,80,.12);
  --shadow-cta: 0 6px 20px rgba(31,111,229,.28);

  --ease: cubic-bezier(.2,0,0,1);
  --wrap: 1120px;
}

/* ---------- Сброс и база ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--surface-canvas); color: var(--fg-1);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-link); text-decoration: none; transition: color 120ms var(--ease); }
a:hover { color: var(--brand-primary-hover); text-decoration: underline; }
:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 2px; border-radius: var(--r-sm); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; letter-spacing: -.01em; color: var(--fg-1); }
h1 { font-size: 30px; line-height: 1.15; }
h2 { font-size: 24px; line-height: 1.2; }
h3 { font-size: 20px; line-height: 1.28; }
h4 { font-size: 18px; line-height: 1.3; }
p { margin: 0; color: var(--fg-2); }
ul { margin: 0; padding: 0; list-style: none; }

@media (min-width: 768px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--sp-4); }
@media (min-width: 768px) { .wrap { padding: 0 var(--sp-6); } }

.section { padding: var(--sp-12) 0; }
.section--soft { background: var(--surface-soft); }
.section--sky { background: var(--surface-sky); }
@media (min-width: 768px) { .section { padding: var(--sp-16) 0; } }

.section__head { margin-bottom: var(--sp-6); }
.section__head p { margin-top: var(--sp-2); }
.lead { font-size: 18px; color: var(--fg-2); }
.caption { font-size: 13px; color: var(--fg-3); line-height: 1.45; }
.overline { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-link); }
.price { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--fg-1); }
.price--big { font-size: 24px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand-primary); color: #fff; padding: var(--sp-3) var(--sp-4); border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 48px; padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-sans); font-size: 16px; font-weight: 600; line-height: 1.2;
  border: 1px solid transparent; border-radius: var(--r-pill); cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--brand-primary-hover); color: #fff; }
.btn--secondary { background: transparent; color: var(--brand-link); border-color: var(--border-default); }
.btn--secondary:hover { background: var(--brand-soft); color: var(--brand-primary-hover); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; box-shadow: none; }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-hairline);
}
.header__inner { display: flex; align-items: center; gap: var(--sp-4); min-height: 64px; }
.header__logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--fg-1); letter-spacing: -.02em; }
.header__logo:hover { color: var(--fg-1); text-decoration: none; }
.header__logo span { color: var(--brand-primary); }
.header__nav { display: none; margin-left: auto; gap: var(--sp-5); }
.header__nav a { color: var(--fg-2); font-weight: 500; }
.header__nav a:hover { color: var(--brand-link); text-decoration: none; }
.header__phone { margin-left: auto; font-family: var(--font-mono); font-weight: 600; font-size: 15px; color: var(--fg-1); white-space: nowrap; }
.header__phone:hover { color: var(--brand-primary); text-decoration: none; }
.header__cta { display: none; }
@media (min-width: 900px) {
  .header__nav { display: flex; }
  .header__phone { margin-left: var(--sp-6); font-size: 17px; }
  .header__cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { padding: var(--sp-10) 0 var(--sp-12); }
.hero__grid { display: grid; gap: var(--sp-8); }
.hero h1 { margin-bottom: var(--sp-4); }
.hero__lead { margin-bottom: var(--sp-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.hero__media img { border-radius: var(--r-xl); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .hero { padding: var(--sp-16) 0; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: var(--sp-12); }
}

/* ---------- Hero: живой фон ---------- */
.hero--glow { position: relative; overflow: hidden; }
.hero__blob {
  position: absolute; right: -160px; top: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle at 40% 40%, rgba(31,111,229,.14), rgba(31,111,229,.05) 55%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: blob-drift 16s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-90px, 60px) scale(1.15); }
}

/* ---------- Чертёж авто с хотспотами ---------- */
.bp {
  background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-4) var(--sp-3); box-shadow: var(--shadow-lg);
  animation: bp-float 7s ease-in-out infinite alternate;
}
@keyframes bp-float { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.bp svg { display: block; width: 100%; height: auto; overflow: visible; }
.bp__car, .bp__wheel, .bp__ground {
  fill: none; stroke: #8EB8FB; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.bp__car--win { stroke-opacity: .55; stroke-width: 1.6; }
.bp__wheel--in { stroke-opacity: .55; }
.bp__ground { stroke-opacity: .25; stroke-dasharray: 4 10; }
.bp__car, .bp__wheel {
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: bp-draw 2.4s ease-out forwards;
}
.bp__wheel { stroke-dasharray: 260; stroke-dashoffset: 260; animation-delay: .9s; }
@keyframes bp-draw { to { stroke-dashoffset: 0; } }
.bp__spot { cursor: pointer; }
.bp__dot { fill: var(--brand-primary); stroke: #fff; stroke-width: 2; }
.bp__pulse {
  fill: none; stroke: var(--brand-primary); stroke-width: 2; opacity: .8;
  transform-origin: center; transform-box: fill-box;
  animation: bp-pulse 2.2s ease-out infinite;
}
.bp__spot:nth-of-type(2) .bp__pulse { animation-delay: .35s; }
.bp__spot:nth-of-type(3) .bp__pulse { animation-delay: .7s; }
.bp__spot:nth-of-type(4) .bp__pulse { animation-delay: 1.05s; }
.bp__spot:nth-of-type(5) .bp__pulse { animation-delay: 1.4s; }
.bp__spot:nth-of-type(6) .bp__pulse { animation-delay: 1.75s; }
@keyframes bp-pulse {
  0% { transform: scale(.6); opacity: .9; }
  70% { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}
.bp__label { opacity: 0; transition: opacity 160ms var(--ease); pointer-events: none; }
.bp__label rect { fill: #0E1726; stroke: #2A3340; }
.bp__label text { fill: #F2F4F8; font-family: var(--font-sans); font-size: 14px; font-weight: 600; }
.bp__label .bp__price { fill: #8EB8FB; font-family: var(--font-mono); font-size: 12.5px; font-weight: 400; }
.bp__spot:hover .bp__label, .bp__spot:focus .bp__label { opacity: 1; }
.bp__spot:hover .bp__dot, .bp__spot:focus .bp__dot { r: 7; }
.bp__hint { text-align: center; font-size: 12.5px; color: #8B93A1; margin-top: var(--sp-2); }
.bp__hit { fill: transparent; stroke: none; }
.hero__media { display: none; }
@media (min-width: 900px) { .hero__media { display: block; } }

/* ---------- Мобильная секция с чертежом и чипами ---------- */
.car-mobile { padding-bottom: var(--sp-8); }
@media (min-width: 900px) { .car-mobile { display: none; } }
.bp--flat { animation: none; padding-bottom: var(--sp-4); }
.bp--flat .bp__spot { pointer-events: none; }
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  min-height: 44px; padding: var(--sp-2) var(--sp-4);
  background: var(--surface-canvas); border: 1px solid var(--border-default); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; color: var(--fg-1);
}
.chip:hover { border-color: var(--brand-primary); color: var(--fg-1); text-decoration: none; background: var(--brand-soft); }
.chip__price { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--brand-link); white-space: nowrap; }

/* ---------- Подсветка зоны услуги на чертеже ---------- */
.hl { fill: rgba(31,111,229,.28); stroke: rgba(142,184,251,.65); stroke-width: 1; }
.hl--soft { fill: rgba(31,111,229,.10); stroke: none; }
.hl--screen { fill: rgba(142,184,251,.35); stroke: #8EB8FB; stroke-width: 1.4; animation: screen-glow 2.4s ease-in-out infinite alternate; }
@keyframes screen-glow { from { fill: rgba(142,184,251,.2); } to { fill: rgba(142,184,251,.5); } }
.radio {
  fill: none; stroke: var(--brand-primary); stroke-width: 2; opacity: 0;
  transform-origin: center; transform-box: fill-box;
  animation: radio-wave 2.1s ease-out infinite;
}
@keyframes radio-wave {
  0% { transform: scale(.4); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.eq rect { fill: #8EB8FB; height: 18px; transform-origin: center bottom; transform-box: fill-box; animation: eq-jump 900ms ease-in-out infinite alternate; }
@keyframes eq-jump { from { transform: scaleY(.35); } to { transform: scaleY(1.4); } }
.shine { fill: rgba(255,255,255,.16); animation: shine-run 3.2s ease-in-out infinite; }
@keyframes shine-run { 0% { transform: skewX(-18deg) translateX(0); } 60%, 100% { transform: skewX(-18deg) translateX(660px); } }
@media (prefers-reduced-motion: reduce) { .radio, .eq rect, .shine, .hl--screen { animation: none; } }

/* ---------- Зональная схема цен ---------- */
.zones-scheme { max-width: 900px; }
.zone__line { fill: none; stroke: #4A5A72; stroke-width: 1.4; stroke-dasharray: 3 4; }
.zone__label { fill: #F2F4F8; font-family: var(--font-sans); font-size: 15px; font-weight: 600; }
.zone__price { fill: #8EB8FB; font-family: var(--font-mono); font-size: 13px; }
@media (prefers-reduced-motion: no-preference) {
  .zone { opacity: 0; animation: zone-in 500ms var(--ease) forwards; animation-delay: inherit; }
  @keyframes zone-in { to { opacity: 1; } }
}
.zones-chips { display: none; }
@media (max-width: 699px) {
  .zones-scheme svg { display: none; }
  .zones-scheme { display: none; }
  .zones-chips { display: flex; }
}
.zones-chips .chip { cursor: default; }

/* ---------- Схема проезда ---------- */
.route-scheme { max-width: 720px; }
.map__road line { stroke: #3A4452; stroke-width: 2; }
.map__roadname text { fill: #8B93A1; font-family: var(--font-sans); font-size: 13px; letter-spacing: .04em; }
.map__block { fill: #232936; stroke: #2A3340; }
.map__block--antey { fill: #1B2A45; stroke: #2E4A78; }
.map__blockname { fill: #B8C0CC; font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.map__blockname--antey { fill: #CFE0FB; }
.map__route {
  fill: none; stroke: var(--brand-primary); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 10 12;
  animation: route-run 1.4s linear infinite;
}
@keyframes route-run { to { stroke-dashoffset: -44; } }
.map__route-arrow { fill: none; stroke: var(--brand-primary); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.map__note rect { fill: #0E1726; stroke: #2A3340; }
.map__note text { fill: #B8C0CC; font-family: var(--font-sans); font-size: 13px; }
@media (prefers-reduced-motion: reduce) { .map__route { animation: none; } }

/* ---------- Бегущая лента ---------- */
.marquee {
  overflow: hidden; background: var(--dark-canvas); border-block: 1px solid var(--dark-border);
  padding: var(--sp-3) 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; animation: marquee-run 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: inline-flex; align-items: center; }
.marquee__item {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--dark-fg-2); letter-spacing: .02em; padding: 0 var(--sp-4);
}
.marquee__sep { color: #8EB8FB; font-size: 12px; }
@keyframes marquee-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Появление при прокрутке ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-init { opacity: 0; transform: translateY(18px); }
  .reveal-in { opacity: 1; transform: none; transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
}

/* ---------- Trust-бейджи ---------- */
.trust { display: grid; gap: var(--sp-3); }
.trust__item {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  background: var(--brand-soft); border: 1px solid var(--brand-soft-border);
  border-radius: var(--r-lg); padding: var(--sp-3) var(--sp-4);
}
.trust__title { font-weight: 600; color: var(--brand-link); font-size: 15px; }
.trust__note { font-size: 13px; color: var(--fg-3); }
@media (min-width: 700px) { .trust { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Карточки ---------- */
.cards { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface-canvas); border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-xs);
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--fg-1); }
.card__price { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--brand-link); font-size: 17px; }
.card__note { font-size: 13px; color: var(--fg-3); }
.card__text { font-size: 15px; color: var(--fg-2); flex: 1; }
.card__more { font-weight: 600; font-size: 15px; }

.card--all { background: var(--dark-card); border-color: var(--dark-border); }
.card--all .card__title { color: var(--dark-fg-1); }
.card--all .card__text { color: var(--dark-fg-2); }
.card--all .card__more { color: #8EB8FB; }

/* ---------- Шаги «как работаем» ---------- */
.steps { display: grid; gap: var(--sp-5); }
.step { display: flex; gap: var(--sp-4); align-items: flex-start; }
.step__num {
  flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-link); border-radius: var(--r-pill);
  font-family: var(--font-mono); font-weight: 600; font-size: 17px;
}
.step__title { font-size: 17px; margin-bottom: var(--sp-1); }
.step__text { font-size: 15px; color: var(--fg-2); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } .step { flex-direction: column; } }

/* ---------- Посадочная услуги ---------- */
.bullets { display: grid; gap: var(--sp-2); margin-top: var(--sp-5); }
.bullets li { position: relative; padding-left: 28px; color: var(--fg-2); font-size: 15px; }
.bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--semantic-success); font-weight: 700; }
.checklist { display: grid; gap: var(--sp-3); max-width: 760px; }
.checklist li {
  position: relative; padding: var(--sp-3) var(--sp-4) var(--sp-3) 44px;
  background: var(--surface-canvas); border: 1px solid var(--border-hairline); border-radius: var(--r-md);
  color: var(--fg-2); font-size: 15px;
}
.checklist li::before { content: '✓'; position: absolute; left: 16px; top: 12px; color: var(--brand-primary); font-weight: 700; }
.price-table-wrap { overflow-x: auto; border: 1px solid var(--border-hairline); border-radius: var(--r-lg); background: var(--surface-canvas); }
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 480px; }
.price-table th {
  text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--fg-4); padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border-default);
}
.price-table td { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border-hairline); color: var(--fg-2); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table__price { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--fg-1); white-space: nowrap; }
.price-table__unit { font-size: 13px; color: var(--fg-3); }
.faq { display: grid; gap: var(--sp-3); max-width: 760px; }
.faq__item {
  background: var(--surface-canvas); border: 1px solid var(--border-hairline); border-radius: var(--r-md);
  padding: 0 var(--sp-4);
}
.faq__item summary {
  cursor: pointer; font-weight: 600; color: var(--fg-1); font-size: 16px;
  padding: var(--sp-4) 0; list-style: none; position: relative; padding-right: 32px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--brand-primary); font-size: 22px; font-weight: 400; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 0 var(--sp-4); color: var(--fg-2); font-size: 15px; }

/* ---------- Инфо-блок (контакты) ---------- */
.info { display: grid; gap: var(--sp-6); }
.info__block { display: flex; flex-direction: column; gap: var(--sp-2); }
.info__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--fg-4); }
.info__value { font-size: 18px; font-weight: 600; color: var(--fg-1); }
.info__value--phone { font-family: var(--font-mono); font-size: 22px; }
.info__note { font-size: 14px; color: var(--fg-3); }
.schedule { display: grid; gap: var(--sp-1); }
.schedule__row { display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-2) 0; border-bottom: 1px solid var(--border-hairline); }
.schedule__row:last-child { border-bottom: 0; }
.schedule__days { color: var(--fg-2); font-size: 15px; }
.schedule__hours { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; font-size: 15px; }
@media (min-width: 800px) { .info { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); } }

/* ---------- Карта ---------- */
.map { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border-hairline); background: var(--surface-muted); }
.map__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-3);
  min-height: 260px; padding: var(--sp-6); text-align: center;
}
.map iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Форма ---------- */
.form { display: grid; gap: var(--sp-4); }
.form__row { display: grid; gap: var(--sp-2); }
.form__label { font-size: 14px; font-weight: 600; color: var(--fg-2); }
.form__input, .form__textarea, .form__select {
  width: 100%; min-height: 48px; padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-sans); font-size: 16px; color: var(--fg-1);
  background: var(--surface-canvas); border: 1px solid var(--border-default); border-radius: var(--r-md);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.form__textarea { min-height: 96px; resize: vertical; }
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none; border-color: var(--brand-primary); box-shadow: 0 0 0 3px var(--brand-soft);
}
.form__input[aria-invalid="true"] { border-color: var(--semantic-error); background: var(--semantic-error-soft); }
.form__check { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: 14px; color: var(--fg-2); line-height: 1.45; cursor: pointer; }
.form__check input { width: 22px; height: 22px; margin: 0; flex: 0 0 auto; accent-color: var(--brand-primary); }
.form__error { color: var(--semantic-error); font-size: 14px; font-weight: 500; }
.form__status { font-size: 15px; font-weight: 500; }
.form__status--ok { color: var(--semantic-success); }
.form__status--err { color: var(--semantic-error); }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__grid { display: grid; gap: var(--sp-4); }
@media (min-width: 700px) { .form__grid { grid-template-columns: 1fr 1fr; } }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); margin-top: var(--sp-2); }
.form__actions .btn { min-height: 52px; padding: var(--sp-3) var(--sp-8); font-size: 17px; }
.form__alt { font-size: 15px; color: var(--fg-3); }

/* ---------- Секция заявки ---------- */
.request__card {
  max-width: 760px; margin: 0 auto; background: var(--surface-canvas);
  border: 1px solid var(--border-hairline); border-radius: var(--r-xl);
  padding: var(--sp-6); box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .request__card { padding: var(--sp-10); } }

/* ---------- Прайс и политика ---------- */
.price-cat { padding: var(--sp-6) 0; }
.price-cat h2 { font-size: 20px; }
.price-table--2col { min-width: 0; }
.price-table__star { color: #E8A13A; }
.policy h2 { font-size: 18px; margin: var(--sp-6) 0 var(--sp-2); }
.policy p { margin-bottom: var(--sp-3); font-size: 15px; }
.policy__list { list-style: disc; padding-left: var(--sp-6); display: grid; gap: var(--sp-2); color: var(--fg-2); font-size: 15px; margin-bottom: var(--sp-3); }

/* ---------- Квиз-калькулятор ---------- */
.quiz__progress { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.quiz__bar { flex: 1; height: 6px; background: var(--surface-muted); border-radius: var(--r-pill); overflow: hidden; }
.quiz__bar span { display: block; height: 100%; background: var(--brand-primary); border-radius: var(--r-pill); transition: width 240ms var(--ease); }
.quiz__count { font-size: 13px; color: var(--fg-3); white-space: nowrap; }
.quiz__q { margin-bottom: var(--sp-4); }
.quiz__options { display: grid; gap: var(--sp-3); }
@media (min-width: 700px) { .quiz__options { grid-template-columns: 1fr 1fr; } }
.quiz__option {
  min-height: 56px; padding: var(--sp-3) var(--sp-4); text-align: left;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: var(--fg-1);
  background: var(--surface-canvas); border: 1px solid var(--border-default); border-radius: var(--r-md);
  cursor: pointer; transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.quiz__option:hover { border-color: var(--brand-primary); box-shadow: 0 0 0 3px var(--brand-soft); }
.quiz__option--picked { border-color: var(--brand-primary); background: var(--brand-soft); }
.quiz__back {
  margin-top: var(--sp-4); background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--brand-link); padding: var(--sp-2) 0;
}
.quiz__back:hover { text-decoration: underline; }
.quiz__estimate { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 26px; color: var(--brand-link); margin-bottom: var(--sp-2); }
.quiz__form { margin-top: var(--sp-5); }

/* ---------- Страница «Спасибо» ---------- */
.spasibo__mark {
  width: 72px; height: 72px; margin: 0 auto var(--sp-4); display: grid; place-items: center;
  background: var(--brand-soft); color: var(--semantic-success); border-radius: var(--r-pill);
  font-size: 34px; font-weight: 700;
}

/* ---------- Подвал ---------- */
.footer { background: var(--dark-canvas); color: var(--dark-fg-2); padding: var(--sp-12) 0 var(--sp-8); margin-top: var(--sp-16); }
.footer a { color: var(--dark-fg-2); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: var(--sp-8); }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--dark-fg-1); }
.footer__logo span { color: #8EB8FB; }
.footer h4 { color: var(--dark-fg-1); font-size: 15px; margin-bottom: var(--sp-3); }
.footer__list { display: grid; gap: var(--sp-2); font-size: 15px; }
.footer__bottom {
  margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--dark-border);
  display: grid; gap: var(--sp-2); font-size: 13px; color: #8B93A1;
}
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ---------- Sticky-CTA (мобильный) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3) calc(var(--sp-2) + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-hairline);
}
.sticky-cta .btn { min-height: 46px; padding: var(--sp-2) var(--sp-4); font-size: 15px; }
body { padding-bottom: 72px; }
@media (min-width: 900px) { .sticky-cta { display: none; } body { padding-bottom: 0; } }

/* ---------- Хлебные крошки ---------- */
.crumbs { font-size: 13px; color: var(--fg-3); padding: var(--sp-4) 0 0; }
.crumbs a { color: var(--fg-3); }
.crumbs a:hover { color: var(--brand-link); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
