/* ===== СТО Лайнер — общая дизайн-система (Premium) ===== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=JetBrains+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink:        #0b1622;
  --ink-2:      #43576e;
  --ink-3:      #7a8aa1;
  --brand:      #1a4fd6;
  --brand-700:  #0e36a6;
  --brand-50:   #ebf1ff;
  --accent:     #e11d14;
  --accent-700: #b8120b;
  --accent-50:  #fdecea;
  --bg:         #ffffff;
  --paper:      #f6f8fc;
  --bg-soft:    #f1f4fa;
  --bg-soft-2:  #e9eef7;
  --line:       #e7ebf3;
  --line-2:     #d6dde9;
  --ink-line:   rgba(11,22,34,.12);

  --radius:     16px;
  --radius-lg:  26px;
  --radius-sm:  10px;

  --shadow-sm:  0 1px 2px rgba(11,22,34,.05);
  --shadow:     0 18px 42px -22px rgba(11,22,34,.30);
  --shadow-lg:  0 40px 80px -34px rgba(11,22,34,.34);

  --container:  1200px;
  --font:         'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.07; letter-spacing: -.03em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--paper { background: var(--paper); }
.section--tight { padding: 60px 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.h-display { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.0; }
.h-1 { font-size: clamp(32px, 4.2vw, 50px); }
.h-2 { font-size: clamp(25px, 3vw, 36px); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.62; }
.muted { color: var(--ink-2); }
.section-head { max-width: 740px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-1, .section-head .h-2 { margin: 14px 0 0; }
.section-head p { margin-top: 16px; }
.section-head.center .eyebrow { justify-content: center; }

/* Нумерация секций: 01 / УСЛУГИ */
.sec-index { font-family: var(--font-mono); color: var(--accent); font-weight: 600; letter-spacing: .08em; }
.sec-index::after { content: "/"; margin: 0 .55em; color: var(--ink-3); opacity: .55; font-weight: 400; }
.eyebrow:has(.sec-index)::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: .2s cubic-bezier(.2,.7,.3,1); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -12px rgba(225,29,20,.55), inset 0 1px 0 rgba(255,255,255,.18); }
.btn--primary:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(225,29,20,.6), inset 0 1px 0 rgba(255,255,255,.18); }
.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 14px 30px -12px rgba(26,79,214,.5), inset 0 1px 0 rgba(255,255,255,.2); }
.btn--brand:hover { background: var(--brand-700); transform: translateY(-2px); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { color: var(--brand); }
.btn--lg { padding: 18px 36px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  font-size: 14px; color: var(--ink-2);
  background: var(--ink); color: #cfe0ff;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.header-top a { color: #eaf1ff; }
.header-top .ht-left { display: flex; align-items: center; gap: 22px; }
.header-top .ht-item { display: inline-flex; align-items: center; gap: 7px; }
.header-top .ht-item svg { width: 15px; height: 15px; opacity: .8; }
.header-top .ht-right { display: flex; align-items: center; gap: 18px; }
@media (max-width: 860px) { .header-top { display: none; } }

.header-main .container { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.main-nav a {
  position: relative; padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: 15.5px; color: var(--ink-2); transition: .15s;
}
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); }
.main-nav a.active { color: var(--brand); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s;
}
.has-menu:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--ink-2); }
.dropdown a:hover { background: var(--brand-50); color: var(--brand); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.header-phone { font-weight: 800; font-size: 18px; color: var(--ink); white-space: nowrap; }
.header-phone span { display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1px; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); background: #fff; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }
@media (max-width: 1080px) { .main-nav, .header-cta .btn { display: none; } }
@media (max-width: 1080px) { .burger { display: inline-flex; } .header-cta { margin-left: auto; } }
@media (max-width: 560px) { .header-phone { display: none; } }

/* MAX icon button in header */
/* Кликабельный адрес в шапке и футере */
.ht-item--link {
  transition: color .15s;
  cursor: pointer;
}
.ht-item--link:hover { color: var(--brand); }
.fc--link {
  transition: color .15s;
  cursor: pointer;
}
.fc--link:hover { color: var(--brand); }
.fc--link:hover span { text-decoration: underline; }

/* MAX icon button in header */
.header-max-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s;
  flex-shrink: 0;
}
.header-max-btn img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: block;
}
.header-max-btn:hover {
  transform: translateY(-2px) scale(1.07);
  box-shadow: 0 8px 24px -6px rgba(90,60,220,.35);
}
.header-max-tip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 230px;
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 15px;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px) scale(.97);
  transition: opacity .2s, transform .2s cubic-bezier(.2,.7,.3,1);
  white-space: normal;
  box-shadow: 0 12px 32px -8px rgba(11,22,34,.35);
  z-index: 200;
}
.header-max-tip-arrow {
  position: absolute;
  top: -6px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 2px;
  transform: rotate(45deg);
}
.header-max-btn:hover .header-max-tip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu .scrim { position: absolute; inset: 0; background: rgba(13,27,42,.45); }
.mobile-menu .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; padding: 22px; overflow-y: auto; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu .panel .close { align-self: flex-end; border: none; background: var(--bg-soft); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; font-size: 20px; }
.mobile-menu .panel a { padding: 13px 12px; border-radius: 10px; font-weight: 700; color: var(--ink); }
.mobile-menu .panel a:hover { background: var(--bg-soft); }
.mobile-menu .panel .m-sub { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin: 14px 0 2px; padding: 0 12px; font-weight: 700; }
.mobile-menu .panel .m-svc { font-weight: 600; color: var(--ink-2); font-size: 15px; padding: 9px 12px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: .25s cubic-bezier(.2,.7,.3,1);
}
.card--link:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-4px); }

.svc-card { display: flex; flex-direction: column; height: 100%; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line); color: var(--brand); margin-bottom: 20px; transition: .25s;
}
.svc-card:hover .svc-ico { background: var(--brand); border-color: var(--brand); color: #fff; }
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 21px; }
.svc-card p { color: var(--ink-2); font-size: 15.5px; margin-top: 10px; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.price-from { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
.price-from b { color: var(--accent); }
.svc-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; }
.svc-arrow svg { width: 16px; height: 16px; transition: .15s; }
.svc-card:hover .svc-arrow svg { transform: translateX(3px); }

/* Feature / advantage */
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat .fi { flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--accent); font-weight: 800; box-shadow: var(--shadow-sm); }
.feat .fi svg { width: 24px; height: 24px; }
.feat h3 { font-size: 18px; }
.feat p { color: var(--ink-2); font-size: 15px; margin-top: 6px; }

/* Stat */
.stat .num { font-family: var(--font-display); font-size: clamp(40px, 4.6vw, 56px); font-weight: 700; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.stat .lbl { font-family: var(--font-mono); color: var(--ink-3); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-top: 10px; }

/* Image placeholder — фирменный синий дуотон */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(26,79,214,.30), rgba(11,22,34,.06)),
    linear-gradient(135deg, #0c2a72 0%, var(--brand) 55%, #2a63ea 100%);
  border: 1px solid var(--line); display: grid; place-items: center; min-height: 240px;
}
.ph::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(120% 120% at 30% 20%, #000, transparent 80%);
  mask-image: radial-gradient(120% 120% at 30% 20%, #000, transparent 80%);
}
.ph::after {
  content: attr(data-label); position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: #eaf1ff;
  background: rgba(11,22,34,.30); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
}
.ph .ph-mark {
  position: absolute; top: 14px; left: 16px; z-index: 1;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(234,241,255,.7);
}
.ph .ph-mark::before { content: "◢ "; color: var(--accent); }

/* Дуотон для реальных фото — единый сине-фирменный стиль */
.duotone {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: #0c2a72; isolation: isolate;
}
.duotone img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
  mix-blend-mode: luminosity; opacity: .92; transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s ease, opacity .5s ease;
}
.duotone::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(11,22,34,.55), rgba(26,79,214,.55));
  mix-blend-mode: screen; opacity: .85; transition: opacity .5s ease;
}
.duotone:hover img { transform: scale(1.05); }
.duotone--full { width: 100%; height: 100%; }

/* ---------- Слайд-шоу ---------- */
.slideshow { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.slideshow .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slideshow .slide.is-on { opacity: 1; }
.slideshow .slide .ph { width: 100%; height: 100%; min-height: 0; border: 0; border-radius: 0; }
.slideshow .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slideshow-dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 7px; z-index: 3; }
.slideshow-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); cursor: pointer; transition: .25s cubic-bezier(.2,.7,.3,1); }
.slideshow-dots button.on { background: #fff; width: 22px; }

/* Steps */
/* Steps + анимированный таймлайн */
.steps { counter-reset: step; position: relative; }
.step { position: relative; z-index: 1; padding-left: 0; }
@media (min-width: 981px) {
  .steps::before, .steps::after { content: ""; position: absolute; top: 25px; height: 2px; border-radius: 2px; z-index: 0; }
  .steps::before { left: 12.5%; width: 75%; background: var(--line-2); }
  .steps::after { left: 12.5%; width: 0; background: linear-gradient(90deg, var(--accent), var(--brand)); transition: width 1.3s cubic-bezier(.4,0,.2,1) .15s; }
  html.js-on .steps.steps-in::after { width: 75%; }
  html:not(.js-on) .steps::after { width: 75%; }
}
@media (prefers-reduced-motion: reduce) { .steps::after { width: 75% !important; transition: none !important; } }
.step .sn {
  position: relative; z-index: 1;
  width: 50px; height: 50px; border-radius: 13px; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 21px; margin-bottom: 16px;
}
.step h3 { font-size: 19px; }
.step p { color: var(--ink-2); font-size: 15px; margin-top: 8px; }

/* Reviews */
.review { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.review .stars { color: #f5a623; letter-spacing: 2px; font-size: 17px; }
.review p { color: var(--ink); font-size: 16px; line-height: 1.62; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; font-weight: 800; }
.review .who b { font-size: 15px; font-family: var(--font-display); letter-spacing: -.01em; }
.review .who span { font-size: 13.5px; color: var(--ink-3); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #0c2a72 0%, var(--brand) 58%, #2a63ea 100%);
  border-radius: var(--radius-lg); padding: 60px; color: #fff; position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background: rgba(255,255,255,.08); }
.cta-band::after { content:""; position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 44px 44px; -webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000, transparent 60%); mask-image: radial-gradient(120% 120% at 100% 0%, #000, transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(28px, 3.1vw, 40px); color: #fff; }
.cta-band p { color: #d7e4ff; margin-top: 14px; font-size: 18px; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 11px; background: #fff; width: 100%;
  transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 13px; color: var(--ink-3); }
.form-note a { color: var(--brand); }
.form-ok {
  display: none; background: #ecfbf0; border: 1px solid #b7e9c6; color: #14663a;
  padding: 16px 18px; border-radius: 12px; font-weight: 600;
}
.form-ok.show { display: block; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item + .faq-item { margin-top: 14px; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-display);
  padding: 24px 26px; font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: var(--bg-soft); display: grid; place-items: center; transition: .2s; color: var(--brand); font-size: 22px; }
.faq-item.open .faq-q .ic { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a .inner { padding: 0 24px 22px; color: var(--ink-2); font-size: 16px; }

/* ---------- Breadcrumbs / page hero ---------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 48px 0 56px; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 46px 46px; opacity:.4;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 92%); mask-image: linear-gradient(180deg, #000 0%, transparent 92%); }
.page-hero > .container { position: relative; }
.crumbs { display: flex; gap: 9px; align-items: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-3); margin-bottom: 20px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { opacity: .5; }
.page-hero h1 { font-size: clamp(34px, 4.4vw, 54px); }
.page-hero p { margin-top: 16px; max-width: 680px; }

/* ---------- Tables (prices) ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table th { text-align: left; background: var(--bg-soft); font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); padding: 16px 22px; font-weight: 500; }
.price-table td { padding: 16px 22px; border-top: 1px solid var(--line); font-size: 16px; }
.price-table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 700; white-space: nowrap; letter-spacing: -.02em; }
.price-table td:last-child b { color: var(--accent); }
.price-table tr:hover td { background: #fbfcfe; }
.price-cat { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; margin: 0 0 16px; display: flex; align-items: center; gap: 12px; }
.price-cat::before { content:""; width: 6px; height: 24px; background: var(--accent); border-radius: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9c7da; padding: 64px 0 0; }
.site-footer a { color: #cdd8e8; }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { height: 44px; background: #fff; padding: 7px 10px; border-radius: 10px; margin-bottom: 18px; }
.foot-brand p { font-size: 15px; line-height: 1.6; }
.foot-col h4 { font-family: var(--font-mono); color: #fff; font-size: 12px; margin-bottom: 18px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; display: grid; gap: 11px; font-size: 15px; }
.foot-contact { display: grid; gap: 14px; font-size: 15px; }
.foot-contact .fc { display: flex; gap: 11px; align-items: flex-start; }
.foot-contact .fc svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.foot-phone { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -.02em; color: #fff !important; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .02em; color: #7e90a8; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 17px; font-size: 14px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.chip svg { width: 16px; height: 16px; color: var(--brand); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr !important; gap: 36px; } }
.list-check { list-style: none; padding: 0; display: grid; gap: 14px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.list-check li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--brand); margin-top: 1px; }
.tag { display: inline-block; background: var(--accent-50); color: var(--accent-700); font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }

/* ---------- MAX канал ---------- */
.ht-max { color: #fff !important; font-weight: 600; }
.ht-max:hover { opacity: .85; }
.foot-max { display: flex; align-items: center; gap: 12px; margin-top: 8px; padding: 13px 15px; border-radius: 12px; background: rgba(42,91,215,.16); border: 1px solid rgba(120,160,255,.3); }
.foot-max:hover { background: rgba(42,91,215,.26); }
.foot-max svg { width: 26px; height: 26px; flex-shrink: 0; color: #9cc0ff; }
.foot-max span { display: block; font-size: 13px; line-height: 1.4; color: #aebfd6; }
.foot-max b { display: block; color: #fff; font-size: 14.5px; }
.max-promo {
  display: flex; align-items: center; gap: 26px;
  background: linear-gradient(120deg, #1f4fd0 0%, #2a5bd7 55%, #3f74e8 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 34px 40px; position: relative; overflow: hidden;
}
.max-promo::before { content:""; position:absolute; right:-50px; bottom:-70px; width:240px; height:240px; border-radius:50%; background:rgba(255,255,255,.08); }
.max-promo-ico { flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.max-promo-ico svg { width: 34px; height: 34px; color: #fff; }
.max-promo-text { flex: 1; position: relative; }
.max-promo-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #cfe0ff; margin-bottom: 8px; }
.max-promo-text h3 { font-size: clamp(19px, 2vw, 24px); color: #fff; line-height: 1.22; }
.max-promo-text p { color: #d7e4ff; font-size: 15px; margin-top: 8px; max-width: 640px; }
.max-promo-btn { flex-shrink: 0; background: #fff; color: #1f4fd0; box-shadow: 0 10px 24px -10px rgba(0,0,0,.4); }
.max-promo-btn:hover { background: #f0f5ff; transform: translateY(-1px); }
@media (max-width: 820px) { .max-promo { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px; } .max-promo-btn { width: 100%; } }

/* ---------- Марки автомобилей ---------- */
.dropdown--brands { display: grid; grid-template-columns: 1fr 1fr; min-width: 360px; }

/* ---------- Вложенное подменю в дропдауне ---------- */
.has-submenu { position: relative; }
.submenu-parent {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sub-arr {
  width: 14px; height: 14px; flex-shrink: 0;
  opacity: .45;
  transition: transform .15s, opacity .15s;
}
.has-submenu:hover .sub-arr { opacity: .8; transform: rotate(0deg); }
.subdropdown {
  position: absolute;
  top: 0;
  left: calc(100% + 6px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px -8px rgba(11,22,34,.14);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: .15s;
  z-index: 20;
}
.has-submenu:hover .subdropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.subdrop-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 12px !important;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ink-2) !important;
}
.subdrop-link:hover { background: var(--brand-50) !important; color: var(--brand) !important; }
.subdrop-link:hover svg { opacity: .8 !important; }
.brand-logo { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; max-height: 100%; overflow: hidden; }
.brand-logo img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.brand-wm { display: none; align-items: center; justify-content: center; font-weight: 800; letter-spacing: .04em; color: var(--ink); font-size: 22px; text-align: center; line-height: 1.1; }

.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
.brand-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px 22px; transition: .25s cubic-bezier(.2,.7,.3,1);
}
.brand-card:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-4px); }
.bc-num {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink-3); opacity: .65; transition: .25s;
}
.brand-card:hover .bc-num { color: var(--accent); opacity: 1; }
.brand-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card .bc-logo { height: 56px; width: 100%; display: grid; grid-template-rows: 56px; place-items: center; overflow: hidden; margin-top: 6px; }
.brand-card .bc-logo img { max-height: 52px; filter: grayscale(1); opacity: .72; transition: filter .3s ease, opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1); }
.brand-card:hover .bc-logo img { filter: grayscale(0); opacity: 1; transform: scale(1.07); }
.brand-card .bc-logo .brand-wm { font-size: 21px; transition: color .25s; }
.brand-card:hover .bc-logo .brand-wm { color: var(--brand); }
.brand-card .bc-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: var(--ink); }
.brand-card .bc-link { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.brand-card:hover .bc-link svg { transform: translateX(3px); }
.brand-card .bc-link svg { width: 14px; height: 14px; transition: .15s; }

.brand-hero-logo { width: 132px; height: 92px; background: #fff; border: 1px solid var(--line); border-radius: 16px; display: grid; grid-template-rows: 1fr; place-items: center; padding: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.brand-hero-logo img { max-height: 60px; }
.brand-hero-logo .brand-wm { font-size: 24px; }

/* ---------- MAX поп-ап ---------- */
.max-pop { position: fixed; right: 24px; bottom: 24px; left: auto; top: auto; z-index: 300; display: block; width: min(360px, calc(100vw - 32px)); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.max-pop.open { opacity: 1; pointer-events: auto; }
.max-pop-scrim { display: none; }
.max-pop-card {
  position: relative; width: 100%; background: #fff; border-radius: 18px; padding: 22px 22px 20px; text-align: left;
  box-shadow: 0 24px 60px -18px rgba(11,22,34,.45), 0 4px 14px -6px rgba(11,22,34,.25);
  border: 1px solid var(--line);
  transform: translateY(14px) translateX(14px) scale(.98); transition: transform .32s cubic-bezier(.2,.7,.3,1);
}
.max-pop.open .max-pop-card { transform: none; }
.max-pop-x { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border: none; background: var(--bg-soft); border-radius: 9px; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.max-pop-x:hover { background: var(--line); }
.max-pop-badge { display: inline-block; background: var(--accent-50); color: var(--accent-700); font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.max-pop-ico { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, #2a5bd7, #3f74e8); display: grid; place-items: center; margin: 14px 0 12px; }
.max-pop-ico svg { width: 26px; height: 26px; color: #fff; }
.max-pop-card h3 { font-size: 19px; line-height: 1.2; }
.max-pop-card p { color: var(--ink-2); font-size: 14px; margin-top: 9px; line-height: 1.5; }
.max-pop-btn { background: #2a5bd7; color: #fff; width: 100%; margin-top: 16px; box-shadow: 0 12px 26px -10px rgba(42,91,215,.6); }
.max-pop-btn:hover { background: #1f4fd0; transform: translateY(-1px); }
.max-pop-later { display: block; width: 100%; margin-top: 8px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink-3); padding: 7px; }
.max-pop-later:hover { color: var(--ink); }
@media (max-width: 520px) { .max-pop { right: 12px; bottom: 12px; width: calc(100vw - 24px); } }

/* ---------- Калькулятор шиномонтажа ---------- */
.calc { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
@media (max-width: 920px) { .calc { grid-template-columns: 1fr; } }
.calc-controls { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: grid; gap: 28px; box-shadow: var(--shadow-sm); }
.calc-group { display: grid; gap: 13px; }
.calc-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.seg { display: flex; flex-wrap: wrap; gap: 9px; }
.seg button {
  font-family: inherit; font-size: 15px; font-weight: 700; color: var(--ink-2);
  padding: 11px 18px; border-radius: 11px; border: 1.5px solid var(--line-2); background: #fff; cursor: pointer; transition: .16s;
}
.seg button:hover { border-color: var(--ink-3); }
.seg button.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 8px 18px -8px rgba(26,79,214,.5); }
.stepper { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--line-2); border-radius: 12px; padding: 5px; width: max-content; }
.stepper button { width: 44px; height: 44px; border: none; background: var(--bg-soft); border-radius: 9px; font-size: 22px; font-weight: 700; color: var(--ink); cursor: pointer; transition: .15s; display: grid; place-items: center; }
.stepper button:hover { background: var(--brand-50); color: var(--brand); }
.stepper span { min-width: 54px; text-align: center; font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.calc-extras { display: grid; gap: 10px; }
.calc-extras .opt {
  display: flex; align-items: center; gap: 13px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; transition: .16s; user-select: none;
}
.calc-extras .opt:hover { border-color: var(--line-2); background: var(--paper); }
.calc-extras .opt:has(input:checked) { border-color: var(--brand); background: var(--brand-50); }
.calc-extras input { width: 21px; height: 21px; accent-color: var(--brand); flex-shrink: 0; cursor: pointer; }
.calc-extras .opt-name { flex: 1; font-weight: 600; font-size: 15.5px; color: var(--ink); }
.calc-extras .opt-price { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); white-space: nowrap; }

.calc-result {
  position: sticky; top: 96px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.calc-result::before { content:""; position:absolute; right:-50px; top:-60px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.05); }
.calc-result > * { position: relative; }
.calc-total-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #8fa3bf; }
.calc-total { font-family: var(--font-display); font-size: clamp(40px, 5vw, 52px); font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-top: 8px; }
.calc-total span { transition: color .2s; }
.calc-breakdown { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 11px; }
.calc-breakdown li { display: flex; justify-content: space-between; gap: 14px; font-size: 14.5px; color: #c5d2e4; }
.calc-breakdown li b { color: #fff; font-weight: 700; white-space: nowrap; }
.calc-note { font-size: 12.5px; color: #7e90a8; margin-top: 16px; line-height: 1.5; }
.calc-form { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 12px; }
.calc-form .field input, .calc-form .field select { background: #fff; }
.calc-form .form-note { color: #8fa3bf; text-align: center; }
.calc-form .form-ok { background: #0f3a22; border-color: #1f6b3f; color: #c8f4d8; }

@media (max-width: 560px) {
  .map-wrap iframe { height: 280px; }
  .map-nav-btns { gap: 8px; }
  .map-nav-btn { padding: 9px 14px; font-size: 13px; }
}

/* ---------- Карта с маршрутом ---------- */
.reviews-widget {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.reviews-widget iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}
@media (max-width: 560px) {
  .reviews-widget iframe { height: 520px; }
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.map-nav-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}
.map-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.map-nav-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand);
}
.map-nav-btn:hover {
  background: var(--brand-50);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

/* ---------- Спойлер телефонов ---------- */
.phone-spoiler { cursor: pointer; }
.btn.phone-spoiler { gap: 9px; }
.btn.phone-spoiler .ph-ico { width: 17px; height: 17px; }
.phone-spoiler--text { display: inline-flex; flex-direction: column; gap: 2px; cursor: pointer; }
.phone-spoiler--text .ph-lead {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 400; letter-spacing: .01em;
  color: var(--ink-3);
  border-bottom: 1px dashed currentColor;
  width: fit-content;
  transition: color .15s;
}
.phone-spoiler--text:hover .ph-lead { color: var(--ink-2); }
.phone-spoiler--text .ph-eye { width: 13px; height: 13px; opacity: .7; }
.phone-spoiler--text .ph-num {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .01em;
  filter: blur(3px); opacity: .4; transition: .15s;
  user-select: none;
}
.phone-spoiler--text:hover .ph-num { opacity: .55; }
.phone-spoiler.is-revealed { cursor: pointer; }
/* На тёмных карточках (zapis) подпись делаем светлее */
.calc-result .phone-spoiler--text .ph-lead,
.card[style*="--ink"] .phone-spoiler--text .ph-lead { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.3); }
/* ---------- Motion: scroll reveal (transform-only, opacity всегда 1 — контент не пропадает) ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  html.js-on .reveal:not(.in) { transform: translateY(22px); }
  html.js-on .reveal {
    transition: transform .7s cubic-bezier(.2,.7,.3,1);
    will-change: transform;
  }
  html.js-on .reveal.in { transform: none; }
}

/* ---------- Спотлайт под курсором ---------- */
.svc-card, .brand-card, .feat, .card--link { position: relative; isolation: isolate; }
.svc-card::after, .brand-card::after, .feat::after, .card--link::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(26,79,214,.10), transparent 62%);
  opacity: 0; transition: opacity .35s ease;
}
.svc-card:hover::after, .brand-card:hover::after, .feat:hover::after, .card--link:hover::after { opacity: 1; }
.svc-card > *, .brand-card > *, .feat > * { position: relative; z-index: 1; }

/* ============================================================
   МОБИЛЬНАЯ АДАПТАЦИЯ — единый слой полировки под телефоны
   Покрывает популярные разрешения: 430, 414, 393, 390, 375, 360.
   Планшеты и десктоп используют базовые правила выше.
   ============================================================ */

/* ---- Планшеты и узкие окна (≤ 820px) ---- */
@media (max-width: 820px) {
  .section        { padding: 68px 0; }
  .section--tight { padding: 46px 0; }
  .cta-band       { padding: 44px 34px; }
}

/* ---- Телефоны (≤ 600px) ---- */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  /* Шапка: поджимаем, чтобы логотип + MAX + бургер помещались без переполнения */
  .header-main .container { gap: 12px; height: 64px; }
  .header-cta { gap: 10px; }
  .brand img { height: 36px; }
  .header-max-btn, .header-max-btn img { width: 38px; height: 38px; }
  .burger { width: 42px; height: 42px; }

  .section        { padding: 54px 0; }
  .section--tight { padding: 38px 0; }
  .section--soft, .section--paper { }

  .section-head { margin-bottom: 34px; }

  /* Заголовки: не даём тексту прижиматься к краям */
  .h-display { line-height: 1.06; }
  .hero-a h1 br { display: none; }

  /* Кнопки-крупные во всю ширину — удобно для большого пальца */
  .btn--lg { width: 100%; }
  /* Ряды кнопок (hero, page-hero, cta) растягиваем на всю строку */
  .page-hero .btn, .hero-a .btn { flex: 1 1 100%; }

  /* Слайд-шоу в hero пониже, чтобы не занимало весь экран */
  .hero-visual .slideshow { min-height: 260px !important; }
  .hero-badge { left: 12px !important; top: 12px; padding: 12px 15px; }
  .hero-badge .hb-ico { width: 36px; height: 36px; font-size: 17px; }
  .hero-badge b { font-size: 14.5px; }
  .hero-badge span { font-size: 12px; }

  /* Карточки, FAQ, CTA — уменьшаем внутренние отступы */
  .card { padding: 22px; }
  .cta-band { padding: 34px 22px; border-radius: 22px; }
  .cta-band p { font-size: 16px; }
  .faq-q { padding: 18px 18px; font-size: 17px; }
  .faq-q .ic { width: 26px; height: 26px; font-size: 19px; }
  .faq-a .inner { padding: 0 18px 18px; font-size: 15.5px; }

  /* CTA-band: кнопки на всю ширину, выравнивание по левому краю */
  .cta-band .split > div:last-child { justify-content: stretch !important; }
  .cta-band .split .btn { width: 100%; }

  /* Прайс-таблицы: компактнее, без переполнения */
  .price-table td, .price-table th { padding: 13px 14px; font-size: 15px; }
  .price-table td:first-child { padding-left: 16px; }
  .price-table td:last-child  { padding-right: 16px; }
  .price-cat { font-size: 19px; }

  /* Калькулятор шиномонтажа */
  .calc-controls { padding: 22px; }
  .calc-result { padding: 24px; position: static; }

  /* Формы: 16px inputs (без авто-зума iOS) уже заданы; чуть плотнее */
  .field input, .field select, .field textarea { padding: 12px 14px; }

  /* Марки: логотипы в 2 колонки уже; поджимаем карточки */
  .svc-card h3 { font-size: 19px; }

  /* Steps: убираем декоративную линию (она только ≥981px) — вертикальный стек */
  .steps { gap: 20px; }
}

/* ---- Компактные телефоны (≤ 400px): 393/390/375/360 ---- */
@media (max-width: 400px) {
  .container { padding: 0 15px; }
  .section        { padding: 46px 0; }

  .btn--lg { padding: 15px 22px; font-size: 15.5px; }
  .eyebrow { font-size: 11px; }

  .cta-band { padding: 28px 18px; }
  .card { padding: 18px; }

  .hero-visual .slideshow { min-height: 220px !important; }

  /* Крошки на очень узких экранах не должны рвать вёрстку */
  .crumbs { font-size: 11px; gap: 6px; }
}

/* ---- Ландшафт-телефон (низкая высота): экономим вертикаль ---- */
@media (max-height: 480px) and (max-width: 900px) {
  .section { padding: 40px 0; }
  .exv-sticky { min-height: 0; }
}
