/* ===================================================================
   ОСА-58 — Оперативная служба автопомощи
   Брутальный тёмный лендинг. Mobile-first.
   =================================================================== */

:root {
  --yellow: #F5C400;
  --yellow-deep: #E0B200;
  --black: #0A0A0A;
  --ink: #0D0D0D;
  --panel: #141414;
  --panel-2: #191919;
  --line: #262626;
  --line-soft: #1E1E1E;
  --text: #F2F2F2;
  --muted: #A0A0A0;
  --muted-2: #6E6E6E;
  --green: #37D67A;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Oswald', 'Inter', sans-serif;

  --maxw: 1180px;
  --gutter: 20px;
  --header-h: 64px;
  --topbar-h: 34px;
  --section-y: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 8px);
  padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: rgba(245,196,0,0.25); }
ul, ol { list-style: none; }

::selection { background: var(--yellow); color: var(--black); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Section heads --- */
.section-label {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--yellow);
  margin-bottom: 18px;
}

.section-head { max-width: 760px; margin-bottom: 28px; }

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 6.5vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.section-desc {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
}
.btn-yellow:hover { background: #fff; transform: translate(-1px,-1px); box-shadow: 6px 6px 0 rgba(0,0,0,0.6); }
.btn-yellow:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,0.6); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-lg { padding: 17px 28px; font-size: 17px; }
.btn-xl { padding: 20px 40px; font-size: clamp(20px, 6vw, 28px); }

/* Big call button with subline */
.btn-call-ico { font-size: 20px; }
.btn-call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.btn-call-text b { font-size: clamp(18px, 5.5vw, 22px); letter-spacing: 0.01em; }
.btn-call-text small { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; opacity: 0.75; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
  font-size: 12px;
}
.topbar-status { display: inline-flex; align-items: center; gap: 8px; }
.topbar-status i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--black);
  animation: blink 1.6s infinite;
}
.topbar-region { opacity: 0.72; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: auto;
  height: 46px;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand-desc { font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.02em; }

.nav { display: none; }

.header-phone-block { text-align: right; display: flex; flex-direction: column; }
.header-phone-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2);
}
.header-phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(17px, 5vw, 21px);
  letter-spacing: 0.01em;
  color: var(--yellow);
  white-space: nowrap;
}
.header-phone:hover { color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 82% 8%, rgba(245,196,0,0.14), transparent 60%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 22px),
    var(--black);
}
.hero-mark {
  position: absolute;
  right: 0;
  top: 38%;
  transform: translateY(-50%);
  width: min(430px, 42%);
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: lighten;
}
.hero-mark img { width: 100%; display: block; }

@media (max-width: 720px) {
  .hero-mark {
    top: 42%;
    right: -8%;
    width: 66vw;
    opacity: 0.08;
  }
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 12vw, 82px);
  line-height: 0.98;
  letter-spacing: 0.003em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }

.hero-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  background: var(--panel);
}
.stat {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.stat:last-child { border-bottom: none; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--yellow);
}
.stat strong span { font-size: 15px; color: var(--muted); margin-left: 4px; letter-spacing: 0.02em; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; display: block; }

/* ===================== FLEET ===================== */
.fleet { padding: 24px 0 var(--section-y); background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fleet-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.fleet-card {
  padding: 26px 24px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.fleet-card:hover { transform: translateY(-3px); border-color: var(--line); }
.fleet-card--featured { border-color: var(--yellow); box-shadow: 5px 5px 0 rgba(245,196,0,0.14); }

.fleet-card-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.fleet-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green);
  padding: 5px 12px;
  border: 1px solid rgba(55,214,122,0.35);
}
.fleet-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: blink 1.8s infinite;
}
.fleet-type {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.fleet-card h3 {
  font-family: var(--display); font-weight: 700; font-size: 23px;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 12px;
}
.fleet-card > p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }

.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-specs li {
  font-size: 13px; font-weight: 500; color: var(--text);
  padding: 7px 12px; background: var(--panel-2); border: 1px solid var(--line);
}

.fleet-note {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  background: var(--yellow);
  color: var(--black);
}
.fleet-note-ico {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.fleet-note strong { display: block; font-size: 16px; margin-bottom: 3px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.01em; }
.fleet-note p { font-size: 14px; font-weight: 500; opacity: 0.85; }

/* ===================== SERVICES ===================== */
.services { padding: var(--section-y) 0 24px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.service-item {
  position: relative;
  padding: 26px 24px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { background: var(--panel); }
.service-num {
  font-family: var(--display); font-weight: 700; font-size: 14px;
  color: var(--yellow); letter-spacing: 0.1em; display: block; margin-bottom: 12px;
}
.service-item h3 { font-family: var(--display); font-weight: 600; font-size: 21px; text-transform: uppercase; margin-bottom: 8px; }
.service-item p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.service-price {
  font-family: var(--display); font-weight: 700; font-size: 22px;
  color: var(--text); letter-spacing: 0.01em;
}

/* ===================== STEPS ===================== */
.steps { padding: 24px 0 var(--section-y); background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-list { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); }
.steps-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 22px;
  border-bottom: 1px solid var(--line);
}
.steps-list li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--black);
  font-family: var(--display); font-weight: 700; font-size: 22px;
}
.steps-list strong { font-family: var(--display); font-weight: 600; font-size: 19px; text-transform: uppercase; display: block; margin-bottom: 4px; }
.steps-list p { color: var(--muted); font-size: 15px; }

/* ===================== COVERAGE ===================== */
.coverage { padding: var(--section-y) 0; }
.coverage-inner { display: grid; grid-template-columns: 1fr; gap: 36px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.coverage-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cp-item {
  padding: 22px 18px; background: var(--panel); border: 1px solid var(--line);
}
.cp-item strong {
  display: block; font-family: var(--display); font-weight: 700; font-size: 30px;
  color: var(--yellow); line-height: 1; margin-bottom: 6px;
}
.cp-item span { font-size: 13px; color: var(--muted); }
.cp-item--accent { grid-column: span 2; background: var(--yellow); }
.cp-item--accent strong { color: var(--black); font-size: 18px; text-transform: uppercase; }
.cp-item--accent a { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--black); }

/* ===================== TRUST ===================== */
.trust { padding: var(--section-y) 0; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); }
.trust-item { padding: 24px 22px; border-bottom: 1px solid var(--line); }
.trust-item:last-child { border-bottom: none; }
.trust-item strong {
  font-family: var(--display); font-weight: 600; font-size: 19px; text-transform: uppercase;
  display: block; margin-bottom: 6px; color: var(--yellow);
}
.trust-item p { color: var(--muted); font-size: 15px; }

/* Partners — нам доверяют */
.partners-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-desc { margin-left: auto; margin-right: auto; }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 28px 24px 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color 0.15s ease;
  height: 100%;
}
.partner-card:hover { border-color: var(--yellow); }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  flex-shrink: 0;
  padding: 16px 20px;
  border-radius: 4px;
  box-sizing: border-box;
}
.partner-logo--light { background: #fff; }
.partner-logo--dark { background: var(--black); border: 1px solid var(--line); }
.partner-logo img { width: auto; object-fit: contain; }
.partner-logo--light img { max-height: 100px; max-width: 110px; }
.partner-logo--dark img { max-height: 56px; max-width: 200px; }
.partner-info { width: 100%; flex: 1; display: flex; flex-direction: column; }
.partner-info h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--yellow);
  min-height: 2.65em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-info p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.partner-info strong { color: var(--text); }

/* ===================== REVIEWS ===================== */
.reviews { padding: var(--section-y) 0; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.review {
  padding: 26px 24px; background: var(--panel); border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
}
.review p { font-size: 15.5px; line-height: 1.65; color: var(--text); margin-bottom: 14px; }
.review footer { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

/* ===================== FAQ ===================== */
.faq { padding: var(--section-y) 0; background: var(--ink); border-top: 1px solid var(--line); }
.faq-list { border: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); background: var(--panel); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: 0.01em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; font-weight: 400; color: var(--yellow); line-height: 1; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ===================== CTA ===================== */
.cta {
  padding: 72px 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(245,196,0,0.14), transparent 65%),
    var(--black);
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-logo { width: min(300px, 72%); height: auto; margin-bottom: 22px; mix-blend-mode: lighten; }
.cta-eyebrow {
  font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.cta h2 { margin-bottom: 12px; }
.cta-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.cta .btn-xl { width: 100%; max-width: 420px; }
.cta-wa {
  margin-top: 16px; font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
  background: none; border: none; cursor: pointer; padding: 6px 0;
}
.cta-wa:hover { color: var(--yellow); }

/* ===================== FOOTER ===================== */
.footer { padding: 44px 0 108px; background: var(--black); border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark { width: auto; height: 54px; object-fit: contain; mix-blend-mode: lighten; }
.footer-brand .brand-name { font-size: 22px; display: block; margin-bottom: 4px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-phone { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--yellow); }
.footer-contacts a { font-weight: 600; }
.footer-contacts span { font-size: 13px; color: var(--muted-2); }
.footer-request {
  align-self: flex-start;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  color: var(--yellow);
}
.footer-request:hover { color: #fff; }
.footer-copy {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted-2);
}

/* ===================== STICKY CALL BAR (mobile) ===================== */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: var(--yellow); color: var(--black);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.call-bar-ico {
  font-size: 22px; width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--yellow);
}
.call-bar-text { display: flex; flex-direction: column; line-height: 1.1; }
.call-bar-text small { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.75; }
.call-bar-text strong { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: 0.01em; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   MOBILE — до 619px (основной телефон)
   =================================================================== */
@media (max-width: 619px) {
  :root {
    --gutter: 16px;
    --header-h: 56px;
    --topbar-h: 32px;
  }

  .container { width: 100%; }

  /* Topbar — короче на узком экране */
  .topbar-inner { font-size: 10px; letter-spacing: 0.02em; }
  .topbar-region { display: none; }

  /* Header — лого + бургер, телефон внизу */
  .header-phone-block { display: none; }
  .brand-desc { display: none; }
  .brand-mark { height: 36px; }
  .brand-name { font-size: 17px; }
  .brand { gap: 10px; min-width: 0; }

  /* Hero */
  .hero { padding: 36px 0 48px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(32px, 10.5vw, 42px); margin-bottom: 16px; }
  .hero-text { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { margin-bottom: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-call-text { align-items: center; text-align: center; width: 100%; }
  .stat { padding: 18px 16px; }
  .stat strong { font-size: 28px; }

  /* Секции — компактнее */
  .services, .fleet, .steps, .coverage, .trust, .reviews, .faq { --section-y: 32px; }
  .services { padding-bottom: 16px; }
  .fleet { padding-top: 16px; }
  .steps { padding-top: 16px; }
  .blog-preview { padding: 32px 0; }
  .partners-block { margin-bottom: 40px; padding-bottom: 40px; }
  .section-head { margin-bottom: 22px; }
  h2 { font-size: clamp(24px, 7vw, 32px); }

  /* Услуги, шаги */
  .service-item { padding: 22px 18px; }
  .steps-list li { padding: 20px 16px; gap: 14px; }
  .step-num { width: 40px; height: 40px; font-size: 20px; }

  /* География */
  .coverage-inner { gap: 28px; }
  .coverage-tags { gap: 6px; }
  .coverage-tag { font-size: 12px; padding: 10px 12px; }
  .coverage-panel { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cp-item { padding: 18px 14px; }
  .cp-item strong { font-size: 26px; }
  .cp-item--accent a { font-size: 20px; }

  /* Партнёры */
  .partner-card { padding: 22px 16px 26px; gap: 16px; }
  .partner-logo { height: 120px; padding: 14px 16px; }
  .partner-info h3 { font-size: 17px; min-height: 2.5em; }
  .partner-info p { font-size: 14px; }

  /* Блог */
  .blog-card { padding: 18px 16px 20px; }
  .blog-card h3 { font-size: 16px; }
  .blog-more .btn { width: 100%; }

  /* FAQ — крупнее зона нажатия */
  .faq-item summary { padding: 18px 16px; font-size: 15px; min-height: 52px; }
  .faq-item p { padding: 0 16px 18px; font-size: 14px; }

  /* CTA */
  .cta { padding: 56px 0; }
  .cta .btn-xl { width: 100%; padding: 18px 20px; }
  .cta-logo { width: min(240px, 70%); }

  /* Footer */
  .footer { padding: 36px 0 100px; }
  .footer-phone { font-size: 22px; }
  .footer-request { font-size: 16px; padding: 4px 0; }

  /* Липкая кнопка звонка */
  .call-bar-text strong { font-size: 19px; }

  /* Модалка */
  .modal-box h3 { font-size: 20px; }
}

/* Очень узкие экраны — iPhone SE и т.п. */
@media (max-width: 380px) {
  .topbar-status { font-size: 9px; }
  .hero h1 { font-size: 30px; }
  .btn-call-text b { font-size: 17px; }
  .call-bar-text strong { font-size: 17px; }
  .coverage-panel { grid-template-columns: 1fr; }
  .cp-item--accent { grid-column: span 1; }
}

/* ===================================================================
   RESPONSIVE — tablet & desktop
   =================================================================== */
@media (min-width: 620px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .stat { border-bottom: none; border-right: 1px solid var(--line); }
  .stat:last-child { border-right: none; }
  .fleet-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .service-item:nth-child(1), .service-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .service-item:nth-child(3), .service-item:nth-child(4) { border-bottom: none; }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .steps-list li:nth-child(odd) { border-right: 1px solid var(--line); }
  .steps-list li:nth-child(1), .steps-list li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps-list li:nth-child(3), .steps-list li:nth-child(4) { border-bottom: none; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-copy { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
  .fleet, .services, .steps, .coverage, .trust, .reviews, .faq { --section-y: 56px; }
  .services { padding-bottom: 28px; }
  .fleet { padding-top: 28px; }
  .steps { padding-top: 28px; }
  .hero { padding: 92px 0 96px; }
  .coverage-inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .nav { display: flex; align-items: center; gap: 26px; }
  .nav a {
    font-family: var(--display); font-weight: 500; font-size: 14px;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
    transition: color 0.15s ease;
  }
  .nav a:hover { color: var(--yellow); }
  .call-bar { display: none; }
  .footer { padding-bottom: 44px; }
}

/* Mobile nav overlay */
@media (max-width: 899px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: calc(var(--header-h) + var(--topbar-h)) 0 0 0;
    background: var(--black);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; padding: 8px 0;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 90; overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav.open { transform: translateX(0); display: flex; }
  .nav a {
    width: 100%; padding: 18px var(--gutter);
    font-family: var(--display); font-weight: 600; font-size: 20px;
    text-transform: uppercase; letter-spacing: 0.02em;
    border-bottom: 1px solid var(--line-soft); color: var(--text);
  }
  .nav a:active { color: var(--yellow); }
  body.nav-open { overflow: hidden; }
}

/* ===================== REQUEST MODAL ===================== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal.open { display: flex; }
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  padding: 28px 22px calc(28px + env(safe-area-inset-bottom));
  animation: slideUp 0.28s ease;
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } }

.modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  font-size: 30px; line-height: 1; color: var(--muted);
}
.modal-close:hover { color: var(--yellow); }

.modal-box h3 {
  font-family: var(--display); font-weight: 700; font-size: 24px;
  text-transform: uppercase; line-height: 1.1; margin: 6px 0 8px;
}
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.modal-sub a { color: var(--yellow); font-weight: 700; white-space: nowrap; }

.request-form { display: flex; flex-direction: column; gap: 14px; }
.request-form label { display: flex; flex-direction: column; gap: 6px; }
.request-form label span {
  font-family: var(--display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
}
.request-form label span i { color: var(--yellow); font-style: normal; margin-left: 2px; }
.request-form input,
.request-form textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font); font-size: 16px;
  padding: 14px 14px;
  outline: none;
  transition: border-color 0.15s ease;
  resize: vertical;
}
.request-form input:focus,
.request-form textarea:focus { border-color: var(--yellow); }
.request-form input::placeholder,
.request-form textarea::placeholder { color: var(--muted-2); }
.request-form input.invalid { border-color: #ff5252; }
.modal-error {
  margin: 0 0 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #ffb4b4;
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.35);
}
.modal-submit { width: 100%; margin-top: 4px; }
.modal-submit:disabled { opacity: 0.65; cursor: wait; }
.modal-note { font-size: 11.5px; color: var(--muted-2); line-height: 1.5; }

.modal-success { text-align: center; padding: 20px 6px 8px; }
.modal-success-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; margin-bottom: 16px;
  background: var(--yellow); color: var(--black);
  font-size: 32px; font-weight: 700;
}
.modal-success p { color: var(--muted); font-size: 15px; margin: 8px 0 24px; }
.modal-success p a { color: var(--yellow); font-weight: 700; white-space: nowrap; }
.modal-success .btn { width: 100%; }

@media (min-width: 620px) {
  .modal { align-items: center; }
  .modal-box { border: 1px solid var(--line); border-top: 4px solid var(--yellow); padding: 34px 32px; }
}
