/* ========== FONTS ========== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-400-cyr.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-500-cyr.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-600-cyr.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-700-cyr.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/montserrat-800-cyr.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/montserrat-800.woff2') format('woff2');
}

/* ========== VARIABLES ========== */
:root {
  --red: #CF0F18;
  --red-dark: #a80c14;
  --black: #121212;
  --dark: #1a1a1a;
  --gray: #707D85;
  --light-gray: #E3E0DB;
  --bg: #ffffff;
  --font: 'Montserrat', Helvetica, Arial, sans-serif;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font); }

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--black);
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 40px;
}
.text-red { color: var(--red); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover { background: var(--black); color: #fff; }
.btn--outline.btn--white {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline.btn--white:hover { background: rgba(255,255,255,.15); }
.btn--text {
  background: none;
  border: none;
  color: var(--gray);
  padding: 10px 0;
  font-size: 14px;
}
.btn--text:hover { color: var(--black); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--header { padding: 11px 22px; font-size: 14px; font-weight: 600; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18,18,18,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.header__logo img { height: 48px; width: auto; object-fit: contain; }
.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.header__nav a:hover { color: #fff; }
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.header__phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.header__phones a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  transition: color .2s;
}
.header__phones a:hover { color: var(--red); }
.header__socials {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 4px;
}
.soc-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, opacity .2s;
  text-decoration: none;
  overflow: hidden;
  flex-shrink: 0;
}
.soc-icon img {
  width: 26px; height: 26px;
  object-fit: contain;
  display: block;
}
.soc-icon:hover { transform: scale(1.1); opacity: .85; }
.soc-max { background: #8B5CF6; padding: 5px; }
.soc-tg  { background: transparent; }
.soc-vk  { background: #0077FF; padding: 6px; }
.soc-vk img { filter: brightness(10); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  background: #fff;
  padding: 24px;
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu nav > a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--black);
}
.mobile-menu__phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-menu__phones a {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.mobile-menu__socials {
  display: flex;
  gap: 10px;
  padding: 8px 0;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background: #fff;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}
.hero__content { color: var(--black); }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}
.badge--outline {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.15);
  color: var(--black);
  backdrop-filter: blur(6px);
}
.hero__sub {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--black);
  text-align: left;
}
.hero__title .text-red { color: var(--red); }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn--hero-calc {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 20px 48px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.btn--hero-calc:hover { background: var(--red-dark); }
.hero__image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__image img {
  width: 100%;
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}
.car-shadow {
  width: 95%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 45%, transparent 72%);
  border-radius: 50%;
  margin-top: -18px;
  animation: shadow-float 5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes shadow-float {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(.78); opacity: .4; }
}

/* ========== BENEFITS ========== */
.benefits {
  padding: 70px 0;
  background: #fff;
}
.benefits .section-title { margin-bottom: 28px; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
  overflow: visible;
}
.benefit-card {
  background: #fff;
  border-radius: 4px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.benefit-card--border-left {
  border-left: 4px solid var(--red);
}
.benefit-card--red {
  background: var(--red);
  color: #fff;
  display: block;
}
.benefit-card--red h3 { color: #fff; }
.benefit-card--red p { color: rgba(255,255,255,.92); }
.benefit-card--red u { color: #fff; }
.benefit-card__body { flex: 1; }
.benefit-card__img {
  flex-shrink: 0;
  width: 80px;
  align-self: flex-end;
  overflow: visible;
}
.benefit-card__img img { width: 80px; height: 80px; object-fit: contain; }
.benefit-card__img--truck {
  width: 110px;
  margin-bottom: -10px;
}
.benefit-card__img--truck img {
  width: 110px;
  height: 80px;
  transform: translateY(0);
}
.benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--black);
}
.benefit-card p { font-size: 13px; line-height: 1.6; color: #555; }

/* Bottom row */
.benefits__bottom {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 14px;
  align-items: stretch;
  overflow: visible;
}
.benefits__bottom .benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefit-card--red-title h3 {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 8px;
}
.benefit-card--red-title .red-text {
  color: var(--red);
  text-decoration: underline;
  text-decoration-style: solid;
}
.benefits__cta-card {
  background: #fff;
  border-radius: 4px;
  padding: 22px 24px 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  border: 1px solid rgba(0,0,0,.07);
  overflow: visible;
}
.benefits__cta-text {
  padding-bottom: 22px;
  flex: 1;
}
.benefits__cta-text h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.benefits__cta-text p { font-size: 13px; color: #555; margin-bottom: 14px; }
.benefits__cta-car { flex-shrink: 0; }
.benefits__cta-car img {
  width: 220px;
  object-fit: contain;
  display: block;
  transform: translateY(0);
  margin-bottom: -4px;
}

/* ========== QUIZ SECTION (Block 3) ========== */
.quiz-section {
  position: relative;
}
.quiz-header {
  background: var(--red);
  padding: 22px 0;
  text-align: left;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  color: #fff;
}
.quiz-body {
  background-image: url('img/quiz-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 48px 0 60px;
}
.quiz-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.93);
}
.quiz-wrap {
  position: relative;
  max-width: 810px;
}
.quiz-step { display: none; flex-direction: column; gap: 14px; }
.quiz-step--active { display: flex; }
.quiz-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.quiz-title {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.quiz-step__label { font-size: 14px; color: #555; margin-top: -4px; }
input.quiz-input,
textarea.quiz-input {
  background: #fff !important;
  border: 1.5px solid #ddd !important;
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--black) !important;
  font-size: 15px;
  font-family: var(--font);
  width: 100%;
  max-width: 630px;
}
input.quiz-input::placeholder { color: #aaa !important; }
input.quiz-input:focus,
textarea.quiz-input:focus {
  outline: none;
  border-color: var(--red) !important;
}
.quiz-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.quiz-next-btn { padding: 11px 28px; font-size: 15px; border-radius: 4px; }
.quiz-enter-hint { font-size: 13px; color: #999; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; max-width: 670px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  background: #fff;
  transition: all .2s;
}
.quiz-opt:hover { border-color: var(--red); }
.quiz-opt input[type="radio"] { accent-color: var(--red); width: 16px; height: 16px; flex-shrink: 0; margin: 0; }
.quiz-opt:has(input:checked) { border-color: var(--red); background: rgba(207,15,24,.06); font-weight: 600; }
.quiz-channels { display: flex; flex-direction: column; gap: 10px; max-width: 610px; }
.quiz-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.quiz-contact-btn:hover { opacity: .88; }
.quiz-contact-btn img { width: 22px; height: 22px; object-fit: contain; }
.quiz-contact-btn--max { background: #8B5CF6; }
.quiz-contact-btn--tg { background: #229ED9; }
.quiz-contact-btn--phone { background: #555; }
.quiz-btn-back {
  background: none;
  border: none;
  color: #999;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
}
.quiz-btn-back:hover { color: var(--black); }

/* ========== SLIDER COMMON ========== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,0,0,.1);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  color: var(--black);
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.slider-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.slider-arrow--prev { left: -20px; }
.slider-arrow--next { right: -20px; }
.slider-arrow--dark { background: var(--black); color: #fff; border-color: var(--black); }
.slider-arrow--dark:hover { background: var(--red); border-color: var(--red); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  transition: all .2s;
}
.slider-dots .dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ========== CATALOG ========== */
.catalog {
  padding: 80px 0;
  background: #fffff1;
}

/* Desktop: grid */
.catalog__wrap { position: relative; }
.catalog__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-arrow { display: none; }
.catalog-dots { display: none; }
.car-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.car-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.13); transform: translateY(-3px); }
.car-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f0f0f0;
  display: block;
}
.car-card--video .car-card__video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--black);
}
.car-card--video .car-card__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(207, 15, 24, .9);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  padding-left: 4px;
}
.play-btn--sm { width: 48px; height: 48px; font-size: 18px; }
.youtube-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
}
.car-card__info { padding: 16px 18px 20px; }
.car-card__name {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 4px;
  color: var(--black);
}
.car-card__meta { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.car-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}
.car-card__more {
  display: block;
  font-size: 13px;
  color: #555;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,.25);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color .2s;
}
.car-card__more:hover { color: var(--red); text-decoration-color: var(--red); }
.car-card__link {
  display: block;
  font-size: 13px;
  color: var(--gray);
  text-decoration: underline;
  margin-bottom: 14px;
}
.car-card__link:hover { color: var(--red); }

/* ========== REVIEWS ========== */
.reviews {
  padding: 80px 0;
  background: var(--black);
  overflow: hidden;
}
.reviews .section-title { color: #fff; }
.reviews__slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 4px;
}
.reviews__track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}
.review-card {
  flex: 0 0 220px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .2s;
}
.review-card:hover { transform: scale(1.03); }
.review-card__video {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #111;
}
.review-card__video img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.review-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  transition: transform .2s;
}
.review-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

/* Video modal */
.video-modal__box {
  position: relative;
  z-index: 101;
  width: 90vw;
  max-width: 480px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-modal__box .modal__close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 10;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.reviews .slider-dots .dot { background: rgba(255,255,255,.3); }
.reviews .slider-dots .dot.active { background: var(--red); }

/* ========== HOW WE WORK ========== */
.how {
  padding: 80px 0;
  background-image: url('img/how-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.93);
}
.how .container { position: relative; }
.how .section-title { text-align: center; margin-bottom: 56px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.step__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 12px;
}
.step__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.step__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.step__arrow {
  font-size: 28px;
  color: var(--red);
  margin-top: 40px;
  flex-shrink: 0;
  font-weight: 300;
}
.how__cta {
  text-align: center;
  margin-top: 56px;
}

/* ========== FAQ ========== */
.faq {
  padding: 80px 0;
  background: #f9f8f7;
}
.faq .section-title { text-align: center; margin-bottom: 48px; }
.faq__list {
  max-width: 800px;
  margin: 0 auto 64px;
}
.faq__item {
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--black);
  gap: 16px;
}
.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq__question.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 0 20px;
}
.faq__answer.open { display: block; }
.faq__answer p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ========== CONTACT FORM ========== */
.faq__contact {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.faq__contact h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}
.faq__contact p { color: var(--gray); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  transition: border-color .2s;
  background: #fafafa;
  color: var(--black);
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder { color: #aaa; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.form-policy {
  font-size: 12px;
  color: rgba(0,0,0,.4);
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}
.footer__brand img { margin-bottom: 10px; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.5); }
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contacts a {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  font-weight: 600;
}
.footer__contacts a:hover { color: var(--red); }
.footer__copy { font-size: 13px; color: rgba(255,255,255,.3); }

/* ========== MODALS ========== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  max-height: 90vh;
  overflow-y: auto;
}
.modal__box--wide { max-width: 600px; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,.06);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal__close:hover { background: rgba(0,0,0,.14); }
.modal__box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal__box p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 15px;
}
.modal__box form { display: flex; flex-direction: column; gap: 14px; }
.modal__or {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin: 16px 0 12px;
  position: relative;
}
.modal__or::before, .modal__or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(0,0,0,.1);
}
.modal__or::before { left: 0; }
.modal__or::after { right: 0; }
.modal__success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal__success h3 { font-size: 26px; margin-bottom: 8px; }
.modal__success p { color: var(--gray); margin-bottom: 24px; }

/* ========== CALC STEPS ========== */
.calc-progress {
  height: 4px;
  background: rgba(0,0,0,.1);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}
.calc-progress__fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width .4s ease;
}
.calc-step__num {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
}
.calc-step { display: none; flex-direction: column; gap: 16px; }
.calc-step.active { display: flex; }
.calc-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.budget-options { display: flex; flex-direction: column; gap: 10px; }
.budget-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all .2s;
}
.budget-opt:hover { border-color: var(--red); background: rgba(207,15,24,.03); }
.budget-opt input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  margin: 0;
  flex-shrink: 0;
}
.budget-opt:has(input:checked) {
  border-color: var(--red);
  background: rgba(207,15,24,.05);
  font-weight: 600;
}

/* ========== MESSENGER BUTTONS ========== */
.hero__contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__phone {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.hero__messengers {
  display: flex;
  gap: 10px;
}
.btn-messenger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: opacity .2s, transform .15s;
}
.btn-messenger:hover { opacity: .85; transform: translateY(-1px); }
.btn-max { background: #8B5CF6; }
.btn-tg { background: #229ED9; }

.modal__messengers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.btn-messenger-big {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}
.btn-messenger-big:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.btn-max-big { background: #8B5CF6; }
.btn-tg-big { background: #229ED9; }
.btn-phone-big { background: var(--black); }
.btn-msg-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.calc-phone-option { padding-top: 8px; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #2e7d32;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  z-index: 2000;
  transition: transform .4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__right { display: none; }
  .burger { display: flex; }
  .step__arrow { display: none; }
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .steps > .step__arrow { display: none; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
    background-attachment: scroll;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero__image { order: -1; }
  .hero__image img { max-width: 75%; margin: 0 auto; }
  .car-shadow { width: 60%; margin: 0 auto; margin-top: -8px; }
  .hero__badges { justify-content: center; }
  .hero__sub { margin: 0 auto 20px; }
  .hero__actions { justify-content: center; }

  /* Benefits: horizontal swipe slider */
  .benefits { padding: 48px 0; }
  .benefits__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    padding-left: 4px;
    scrollbar-width: none;
    margin-bottom: 12px;
    grid-template-columns: unset;
  }
  .benefits__grid::-webkit-scrollbar { display: none; }
  .benefit-card {
    flex: 0 0 240px;
    min-width: 240px;
    scroll-snap-align: start;
  }
  .benefit-card__img { width: 56px; }
  .benefit-card__img img { width: 56px; height: 56px; }
  .benefits__bottom { grid-template-columns: 1fr; }
  .benefits__cta-card { flex-direction: column; }
  .benefits__cta-car img { width: 160px; margin: 0 auto; }

  /* Quiz */
  .quiz-inner { grid-template-columns: 1fr; padding: 24px 16px; gap: 16px; }
  .quiz-progress { display: none; }

  /* Slider arrows */
  .slider-arrow--prev { left: 0; }
  .slider-arrow--next { right: 0; }

  /* Catalog: mobile slider */
  .catalog { padding: 48px 0; }
  .catalog__wrap { overflow: hidden; padding: 0 44px; }
  .catalog__cards {
    display: flex;
    gap: 14px;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
    grid-template-columns: unset;
  }
  .catalog-arrow { display: flex; }
  .catalog-dots { display: flex; }
  .car-card { flex: 0 0 256px; min-width: 256px; }

  /* Reviews */
  .reviews { padding: 48px 0; }
  .reviews__slider-wrap { padding: 0 44px; }
  .review-card { flex: 0 0 256px; }

  /* How we work */
  .how { padding: 48px 0; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
  .step__arrow { display: none; }

  /* FAQ */
  .faq { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .faq__contact { padding: 28px 20px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer__contacts { align-items: center; }

  /* Modal */
  .modal__box { padding: 24px 18px; margin: 16px; }

  /* Typography */
  .section-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .btn--lg { padding: 14px 24px; font-size: 15px; }
  .hero__title { font-size: 36px; }
  .car-card { flex: 0 0 240px; }
  .review-card { flex: 0 0 240px; }
  .catalog__slider-wrap { padding: 0 32px; }
  .reviews__slider-wrap { padding: 0 32px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 22px; }
}
