/* ============ ТрансАвто — дизайн-система ============ */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2212;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-cyr.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116, U+20BD;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/fonts/unbounded-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2212;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/fonts/unbounded-cyr.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116, U+20BD;
}

:root {
  --ink: #10151b;
  --ink-2: #171e26;
  --panel: #1d2631;
  --line-dark: #2a3542;
  --text-on-dark: #eef1f5;
  --muted-on-dark: #9aa7b5;
  --paper: #ffffff;
  --paper-gray: #f3f5f8;
  --line-light: #e3e8ee;
  --text: #1a212a;
  --muted: #5b6673;
  --accent: #ff8a00;
  --accent-hot: #ff6a00;
  --accent-soft: #ffb25e;
  --tg: #2aabee;
  --max: #7c5cff;
  --ok: #22c55e;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px rgba(9, 14, 20, 0.12);
  --shadow-accent: 0 12px 32px rgba(255, 122, 0, 0.35);
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Unbounded', 'Manrope', system-ui, sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.ic { width: 1.25em; height: 1.25em; flex: none; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
.container-narrow { width: min(860px, 100% - 40px); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--ink); padding: 10px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ============ Кнопки ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 14px; border: 2px solid transparent;
  font: 700 16px/1.2 var(--font-body); letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #17110a; box-shadow: var(--shadow-accent);
}
.btn-accent:hover { box-shadow: 0 16px 40px rgba(255, 122, 0, 0.5); transform: translateY(-2px); }
.btn-tg { background: var(--tg); color: #fff; box-shadow: 0 10px 28px rgba(42, 171, 238, 0.35); }
.btn-tg:hover { background: #1b9be0; transform: translateY(-2px); }
.btn-max { background: linear-gradient(135deg, #8f6bff, #6a3df0); color: #fff; box-shadow: 0 10px 28px rgba(124, 92, 255, 0.35); }
.btn-max:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.section .btn-ghost, .section-gray .btn-ghost { color: var(--text); }
.section .btn-ghost:hover, .section-gray .btn-ghost:hover { background: rgba(16, 21, 27, 0.06); }
.btn-outline { background: transparent; border-color: var(--line-light); color: var(--text); font-weight: 700; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hot); }
.btn-small { padding: 10px 18px; font-size: 15px; border-radius: 11px; }
.btn-wide { width: 100%; }

/* ============ Шапка ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16, 21, 27, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text {
  font: 700 21px/1 var(--font-display); letter-spacing: 0.02em;
  display: flex; flex-direction: column; gap: 4px;
}
.logo-name { white-space: nowrap; }
.logo-text em { font-style: normal; color: var(--accent); }
.logo-text small { font: 600 10.5px/1 var(--font-body); color: var(--muted-on-dark); letter-spacing: 0.06em; text-transform: uppercase; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 13px; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 15px; color: var(--text-on-dark);
  transition: background 0.2s, color 0.2s;
}
.nav a:hover { background: rgba(255, 255, 255, 0.08); color: var(--accent-soft); }
.nav a[aria-current] { color: var(--accent); }
.header-contact { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font: 800 17px/1 var(--font-body); color: var(--text-on-dark); white-space: nowrap;
}
.header-phone .ic { color: var(--accent); }
.header-phone:hover { color: var(--accent-soft); }
.burger { display: none; }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 20px 24px;
  background: var(--ink); border-bottom: 1px solid var(--line-dark);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { text-decoration: none; font-weight: 700; padding: 13px 10px; border-radius: 10px; color: var(--text-on-dark); }
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.07); }
.mobile-menu-phone { color: var(--accent) !important; font-size: 20px; }
.mobile-menu-msg { display: flex; gap: 10px; padding: 8px 10px 0; }
.mobile-menu-msg .btn { flex: 1; }

/* ============ Hero ============ */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(255, 138, 0, 0.16), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(42, 171, 238, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 6px;
  background: repeating-linear-gradient(-45deg, var(--accent) 0 22px, #171e26 22px 44px);
  opacity: 0.85;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding: 72px 0 84px;
}
.hero h1 {
  font: 700 clamp(28px, 3.4vw, 44px)/1.14 var(--font-display);
  letter-spacing: 0.005em; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted-on-dark); max-width: 54ch; margin-bottom: 24px; }
.hero-bullets { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.hero-bullets li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.hero-bullets .ic { color: var(--ok); margin-top: 3px; }
.hero-price-tag {
  display: inline-block; margin-bottom: 26px; padding: 10px 20px; border-radius: 999px;
  background: rgba(255, 138, 0, 0.12); border: 1px solid rgba(255, 138, 0, 0.4);
  font-size: 17px; color: var(--accent-soft);
}
.hero-price-tag strong { font: 700 22px/1 var(--font-display); color: var(--accent); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--line-dark);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-badge { display: flex; flex-direction: column; gap: 2px; }
.hero-badge b { font: 700 24px/1.1 var(--font-display); color: var(--accent); }
.hero-badge span { font-size: 13.5px; color: var(--muted-on-dark); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; margin-bottom: 26px; }
.hero-tags .hero-price-tag { margin-bottom: 0; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
  border-radius: 999px; text-decoration: none;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-dark);
  transition: border-color 0.2s;
}
.rating-badge:hover { border-color: var(--accent); }
.rating-score { font: 700 20px/1 var(--font-display); color: #ffd76a; white-space: nowrap; }
.rating-note { font: 600 11.5px/1.3 var(--font-body); color: var(--muted-on-dark); }

/* ============ Фото с объектов ============ */
.photos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.photo-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--paper);
  border: 1px solid var(--line-light); box-shadow: 0 6px 26px rgba(9, 14, 20, 0.08);
}
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-card figcaption { padding: 14px 20px 16px; font-size: 14.5px; color: var(--muted); font-weight: 600; }

.footer-req { font-size: 13px !important; color: #7b8794; line-height: 1.6; }

/* ============ Секции ============ */
.section { padding: 84px 0; background: var(--paper); }
.section-gray { background: var(--paper-gray); }
.section-dark { background: linear-gradient(180deg, var(--ink-2), var(--ink)); color: var(--text-on-dark); }
.section-title {
  font: 700 clamp(25px, 3vw, 38px)/1.2 var(--font-display);
  letter-spacing: 0.005em; margin-bottom: 18px;
}
.section-sub { color: var(--muted); max-width: 70ch; margin: -6px 0 34px; }
.section-dark .section-sub { color: var(--muted-on-dark); }
.section-title + .fleet-grid, .section-title + .adv-grid, .section-title + .steps-grid,
.section-title + .price-wrap, .section-title + .faq { margin-top: 36px; }

/* ============ Карточки техники ============ */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.fleet-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fleet-card {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255, 138, 0, 0.5); }
.fleet-img { background: linear-gradient(180deg, #1a212b, #232d3a); display: block; }
.fleet-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.3s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.04); }
.fleet-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fleet-body h3 { font: 700 20px/1.25 var(--font-display); }
.fleet-body h3 a { text-decoration: none; }
.fleet-body h3 a:hover { color: var(--accent-hot); }
.fleet-body p { color: var(--muted); font-size: 15.5px; flex: 1; }
.fleet-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 6px; }
.fleet-price { font: 700 21px/1.1 var(--font-display); color: var(--text); white-space: nowrap; }
.fleet-price small { display: block; font: 600 12px/1.4 var(--font-body); color: var(--muted); }

/* ============ Преимущества ============ */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.adv-card {
  background: var(--panel); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.adv-card:hover { transform: translateY(-4px); border-color: rgba(255, 138, 0, 0.55); }
.adv-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(255, 138, 0, 0.14); color: var(--accent); margin-bottom: 18px;
}
.adv-icon .ic { width: 26px; height: 26px; }
.adv-card h3 { font: 700 18.5px/1.3 var(--font-display); margin-bottom: 10px; }
.adv-card p { color: var(--muted-on-dark); font-size: 15.5px; }

/* ============ Этапы ============ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  position: relative; padding: 28px 24px 26px; border-radius: var(--radius-lg);
  background: var(--paper-gray); border: 1px solid var(--line-light);
}
.step-num {
  font: 700 42px/1 var(--font-display);
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.step-card h3 { font: 700 18px/1.3 var(--font-display); margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 15px; }
.steps-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }

/* ============ Прайс ============ */
.price-wrap { max-width: 900px; }
.price-table {
  width: 100%; border-collapse: collapse; background: var(--paper);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line-light);
}
.price-table th {
  text-align: left; font: 700 13px/1.2 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--ink); color: var(--muted-on-dark); padding: 16px 24px;
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td { padding: 15px 24px; border-top: 1px solid var(--line-light); font-weight: 600; }
.price-table tbody tr:hover { background: #fff7ec; }
.price-cell { font: 700 17px/1.2 var(--font-display); color: var(--accent-hot); white-space: nowrap; }
.price-note { margin-top: 14px; color: var(--muted); font-size: 14.5px; max-width: 72ch; }

/* ============ Характеристики ============ */
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.spec {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 18px 20px;
}
.section-dark .spec { background: var(--panel); border-color: var(--line-dark); }
.spec dt { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.section-dark .spec dt { color: var(--muted-on-dark); }
.spec dd { font: 700 17px/1.35 var(--font-body); }

/* ============ Отзывы ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.review-card {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  padding: 28px 30px; box-shadow: 0 4px 20px rgba(9, 14, 20, 0.05);
}
.review-stars { color: var(--accent); letter-spacing: 4px; margin-bottom: 14px; font-size: 15px; }
.review-card p { font-size: 16px; margin-bottom: 18px; }
.review-card footer { display: flex; flex-direction: column; gap: 2px; }
.review-card footer span { color: var(--muted); font-size: 14px; }

/* ============ География ============ */
.cities-cloud { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.cities-cloud li {
  padding: 9px 18px; border-radius: 999px; background: var(--paper-gray);
  border: 1px solid var(--line-light); font-weight: 600; font-size: 15px;
}
.cities-cloud li:hover { border-color: var(--accent); color: var(--accent-hot); }
.cities-more { background: var(--ink) !important; color: var(--accent) !important; border-color: var(--ink) !important; }

/* ============ FAQ ============ */
.faq { display: grid; gap: 14px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(255, 138, 0, 0.5); box-shadow: 0 6px 24px rgba(9, 14, 20, 0.07); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 24px; cursor: pointer; font-weight: 700; font-size: 16.5px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow { transform: rotate(90deg); color: var(--accent); transition: transform 0.25s; }
.faq-item[open] .faq-arrow { transform: rotate(-90deg); }
.faq-answer { padding: 0 24px 20px; color: var(--muted); }

/* ============ CTA-полоса ============ */
.cta-band {
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(255, 178, 94, 0.25), transparent 60%),
    linear-gradient(120deg, #b35400 0%, var(--accent-hot) 45%, var(--accent) 100%);
  color: #1b1206; padding: 64px 0;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { font: 700 clamp(23px, 2.6vw, 34px)/1.2 var(--font-display); margin-bottom: 10px; }
.cta-band p { font-weight: 600; max-width: 52ch; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn-accent { background: var(--ink); color: #fff; box-shadow: 0 12px 32px rgba(16, 21, 27, 0.4); }
.cta-band .btn-ghost { color: #1b1206; border-color: rgba(27, 18, 6, 0.55); }
.cta-band .btn-ghost:hover { background: rgba(27, 18, 6, 0.09); }

/* ============ Хлебные крошки ============ */
.breadcrumbs { background: var(--ink-2); color: var(--muted-on-dark); font-size: 13.5px; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.breadcrumbs a { color: var(--muted-on-dark); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-soft); }
.bc-sep { margin: 0 10px; opacity: 0.5; }
.breadcrumbs span[aria-current] { color: var(--text-on-dark); }

/* ============ Футер ============ */
.footer { background: var(--ink); color: var(--muted-on-dark); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer .logo { margin-bottom: 16px; }
.footer .logo-text { color: var(--text-on-dark); }
.footer-about p { font-size: 14.5px; margin-bottom: 10px; }
.footer-legal-name { color: var(--text-on-dark); font-weight: 700; }
.footer-col h3 { font: 700 13px/1.2 var(--font-body); letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 16px; }
.footer-col a { display: block; text-decoration: none; padding: 5px 0; font-size: 15px; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-col p { font-size: 14.5px; padding: 5px 0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13.5px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted-on-dark); }
.footer-links a:hover { color: var(--accent-soft); }

/* ============ Плавающие кнопки ============ */
.fab-bar {
  position: fixed; z-index: 90; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  border: none; cursor: pointer; text-decoration: none; color: #fff;
  box-shadow: 0 10px 30px rgba(9, 14, 20, 0.35);
  transition: transform 0.15s;
}
.fab:hover { transform: scale(1.08); }
.fab .ic { width: 24px; height: 24px; }
.fab span { display: none; }
.fab-call { background: linear-gradient(135deg, var(--accent), var(--accent-hot)); animation: pulse 2.4s infinite; }
.fab-tg { background: var(--tg); }
.fab-max { background: linear-gradient(135deg, #8f6bff, #6a3df0); }
.fab-order { background: var(--ink); border: 1px solid var(--line-dark); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(9, 14, 20, 0.35), 0 0 0 0 rgba(255, 138, 0, 0.45); }
  50% { box-shadow: 0 10px 30px rgba(9, 14, 20, 0.35), 0 0 0 14px rgba(255, 138, 0, 0); }
}

/* ============ Модалка ============ */
.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 14, 19, 0.72); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; width: min(520px, 100%); max-height: calc(100dvh - 40px); overflow: auto;
  background: var(--paper); border-radius: var(--radius-lg); padding: 34px 34px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.modal-card h2 { font: 700 24px/1.2 var(--font-display); margin-bottom: 10px; }
.modal-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.modal-sub a { color: var(--accent-hot); font-weight: 700; text-decoration: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-light); background: var(--paper); font-size: 15px; cursor: pointer;
}
.modal-close:hover { background: var(--paper-gray); }
.modal form { display: grid; gap: 16px; }
.modal label { display: grid; gap: 7px; font-weight: 700; font-size: 14px; }
.modal input, .modal select {
  font: 600 16px/1.3 var(--font-body); color: var(--text);
  padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line-light);
  background: var(--paper-gray); width: 100%;
}
.modal input:focus, .modal select:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; font-size: 13px !important; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent-hot); }
.consent a { color: var(--accent-hot); }
.form-alt { text-align: center; font-size: 14px; color: var(--muted); }
.form-alt a { color: var(--accent-hot); font-weight: 700; text-decoration: none; }
.form-done { text-align: center; padding: 18px 0 8px; display: grid; gap: 14px; justify-items: center; }
.form-done h3 { font: 700 21px/1.2 var(--font-display); color: var(--ok); }
.form-done[hidden] { display: none; }

/* ============ Cookie ============ */
.cookie-bar {
  position: fixed; z-index: 120; left: 20px; bottom: 20px; width: min(430px, calc(100% - 40px));
  background: var(--ink); color: var(--muted-on-dark); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 16px; align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); font-size: 13.5px;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar a { color: var(--accent-soft); }
.cookie-bar .btn { flex: none; }

/* ============ Текстовые страницы (политика) ============ */
.legal { padding: 56px 0 84px; }
.legal h1 { font: 700 clamp(24px, 3vw, 36px)/1.25 var(--font-display); margin-bottom: 28px; }
.legal h2 { font: 700 20px/1.3 var(--font-display); margin: 34px 0 14px; }
.legal p, .legal li { color: #333c47; margin-bottom: 10px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 14px; }
.legal-updated { color: var(--muted); font-size: 14px; }

/* ============ Контакты ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  padding: 30px;
}
.contact-card h3 { font: 700 13px/1.2 var(--font-body); letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.contact-card a.big { font: 700 24px/1.3 var(--font-display); text-decoration: none; display: block; margin-bottom: 6px; }
.contact-card a.big:hover { color: var(--accent-hot); }
.contact-card p { color: var(--muted); }
.contact-msg { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }

/* ============ Sale badge / прочее ============ */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.tag { padding: 7px 16px; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid var(--line-dark); font-size: 14px; font-weight: 600; color: var(--muted-on-dark); }

/* ============ Адаптив ============ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .adv-grid, .fleet-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .header-contact .btn { display: none; }
  .burger {
    display: grid; gap: 5px; margin-left: auto; background: none; border: none; cursor: pointer; padding: 10px;
  }
  .burger span { width: 24px; height: 2.5px; background: var(--text-on-dark); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .header-inner { gap: 14px; }
  .header-contact { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 46px 0 62px; }
  .hero-media { order: -1; }
  .hero-media img { max-width: 520px; margin-inline: auto; }
  .fleet-grid, .fleet-grid-3, .reviews-grid, .contact-grid, .photos-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .fab-bar { flex-direction: row; right: 12px; left: 12px; bottom: 12px; }
  .fab { flex: 1; border-radius: 14px; height: 52px; display: flex; gap: 8px; }
  .fab span { display: inline; font-weight: 700; font-size: 14px; }
  .cookie-bar { bottom: 76px; left: 12px; }
}
@media (max-width: 600px) {
  .header-inner { gap: 8px; }
  .header-phone {
    width: 44px; height: 44px; border-radius: 12px; justify-content: center;
    background: rgba(255, 138, 0, 0.14); border: 1px solid rgba(255, 138, 0, 0.4);
  }
  .header-phone span { display: none; }
  .header-phone .ic { width: 21px; height: 21px; }
}
@media (max-width: 560px) {
  .steps-grid, .specs, .adv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta .btn, .steps-cta .btn, .cta-band-btns .btn { width: 100%; }
  .logo-text small { display: none; }
  .container { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
