/* BORZ AUTO — общий стиль */
:root {
  --bg: #000;
  --bg-2: #0d0d0d;
  --bg-3: #1a1a1a;
  --card: #f7f7f7;
  --white: #fff;
  --ink: #000;
  --ink-2: #232429;
  --muted: #78797b;
  --line: rgba(255, 255, 255, .12);
  --accent: #801e1d;
  --accent-2: #9d2524;
  --accent-soft: rgba(128, 30, 29, .2);
  --ok: #62c584;
  --radius: 5px;
  --radius-lg: 14px;
  --container: 1200px;
  --font: "Manrope", "TildaSans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; }
p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: #fff; color: #000; padding: 8px 12px; }

.section { padding: 70px 0; position: relative; }
.section-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: .01em;
}
.section-title--left { text-align: left; }
.divider {
  height: 1px;
  width: min(820px, 80%);
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
}

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--white { background: #fff; color: #000; }
.btn--white:hover { box-shadow: 0 10px 30px rgba(255,255,255,.15); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-2); box-shadow: 0 10px 30px rgba(128,30,29,.45); }
.btn--dark { background: #1a1a1a; color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline:hover { border-color: #fff; }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 13px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------- шапка ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s, box-shadow .25s;
}
.header.is-scrolled, .header--solid { background: rgba(0,0,0,.92); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); }
.header__inner { display: flex; align-items: center; gap: 36px; height: 100px; transition: height .25s; }
.header.is-scrolled .header__inner { height: 76px; }
.header__logo img { width: 100px; height: auto; }
.header.is-scrolled .header__logo img { width: 72px; }
.nav { display: flex; gap: 32px; margin-left: auto; }
.nav a { font-size: 16px; font-weight: 500; opacity: .9; transition: opacity .2s, color .2s; position: relative; }
.nav a:hover, .nav a.is-active { opacity: 1; color: #fff; }
.nav a.is-active::after, .nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent);
}
.nav__catalog { color: #fff; font-weight: 700 !important; }
.nav__catalog span { display: inline-block; margin-left: 6px; padding: 1px 6px; border-radius: 3px; background: var(--accent); font-size: 10px; text-transform: uppercase; vertical-align: 2px; }
.header__phone { font-size: 18px; font-weight: 700; white-space: nowrap; }
.header__socials { display: flex; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); transition: background .2s;
}
.icon-btn:hover { background: var(--accent); }
.icon-btn svg { width: 18px; height: 18px; fill: #fff; }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; background: none; border: 0; padding: 10px; }
.burger span { display: block; height: 2px; background: #fff; margin: 6px 0; transition: transform .2s, opacity .2s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 49; background: rgba(0,0,0,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 22px; font-weight: 600; }

/* ---------- первый экран ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 860px);
  display: flex;
  align-items: center;
  padding: 130px 0 60px;
  background: #000 center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.2) 100%), linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 30%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 40px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  font-size: 15px; margin-bottom: 26px;
}
.hero__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(98,197,132,.2); }
.hero h1 { font-size: clamp(30px, 4.1vw, 54px); font-weight: 800; text-transform: uppercase; margin-bottom: 36px; }
.hero h1 em { font-style: normal; color: #fff; background: linear-gradient(0deg, var(--accent) 0 35%, transparent 35%); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; max-width: 640px; }
.hero__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.hero__list img { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.hero__car { justify-self: end; width: 100%; max-width: 560px; filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)); }
ul.clean { list-style: none; margin: 0; padding: 0; }

/* ---------- эксперт + марки ---------- */
.expert { padding: 90px 0 70px; }
.expert__grid { display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: start; }
.expert__person { position: relative; }
.expert__photo { width: 100%; aspect-ratio: 298 / 448; object-fit: cover; object-position: top; border-radius: var(--radius-lg); background: linear-gradient(180deg, #1a1a1a, #000); }
.expert__card {
  position: relative; margin: -90px 20px 0; padding: 22px 24px;
  background: var(--card); color: #1a1a1a; border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.expert__card p { font-size: 14px; font-weight: 400; line-height: 1.5; margin-bottom: 12px; }
.expert__card strong { display: block; font-size: 25px; font-weight: 800; }
.expert__card small { display: block; color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.expert__lead { font-size: 24px; font-weight: 700; margin-bottom: 30px; line-height: 1.3; }
.expert__choose { font-size: 18px; font-weight: 600; margin-bottom: 18px; }
.brands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.brand {
  aspect-ratio: 1.6; border-radius: 10px; background: #fff; border: 0;
  display: flex; align-items: center; justify-content: center; padding: 14px;
  transition: transform .2s, box-shadow .2s;
}
.brand:hover { transform: translateY(-3px); box-shadow: 0 0 0 3px var(--accent); }
.brand img { max-height: 54px; width: auto; }
.brands__other { width: 100%; min-height: 56px; border-radius: var(--radius); background: #fff; color: #000; border: 0; font-size: 18px; font-weight: 600; margin-bottom: 20px; transition: background .2s, color .2s; }
.brands__other:hover { background: var(--accent); color: #fff; }
.expert__promo { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.tg-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px; border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid var(--line); margin-bottom: 16px; transition: border-color .2s;
}
.tg-card:hover { border-color: rgba(255,255,255,.4); }
.tg-card img { width: 56px; height: 56px; flex: none; }
.tg-card span { font-size: 15px; font-weight: 600; }
.note { font-size: 13px; opacity: .7; }

/* ---------- 01 02 03 ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar__num { font-size: 64px; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.45); line-height: 1; margin-bottom: 18px; }
.pillar h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pillar p { font-size: 16px; font-weight: 300; opacity: .9; }

/* ---------- почему выгодно ---------- */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why__card { display: grid; grid-template-columns: 240px 1fr; background: var(--card); color: #000; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; }
.why__card img { width: 100%; height: 100%; object-fit: cover; }
.why__body { padding: 26px 26px 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.why__body h3 { font-size: 20px; font-weight: 700; }
.why__body p { font-size: 14px; font-weight: 400; line-height: 1.55; color: #222; }

/* ---------- расчёт стоимости ---------- */
.price-inc { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.price-inc__title { font-size: 36px; font-weight: 800; text-transform: uppercase; }
.price-inc__title span { color: var(--accent); -webkit-text-stroke: 0; }
.price-inc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-inc__list li {
  display: flex; gap: 12px; align-items: center; padding: 18px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; font-weight: 600;
}
.check { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }
.check svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 3; }

/* ---------- этапы ---------- */
.steps { position: relative; max-width: 900px; margin: 0 auto; }
.steps::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--accent), rgba(128,30,29,.1)); }
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding-bottom: 44px; }
.step:last-child { padding-bottom: 0; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; background: #000; border: 2px solid var(--accent);
  display: grid; place-items: center; font-weight: 800; font-size: 20px; position: relative; z-index: 1;
}
.step h3 { font-size: 22px; font-weight: 700; margin: 12px 0 12px; }
.step p, .step li { font-size: 17px; font-weight: 300; opacity: .92; }
.step ul { margin: 8px 0; padding-left: 20px; }
.step b { font-weight: 700; }

/* ---------- форма-баннер ---------- */
.lead-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: #000 center / cover no-repeat; min-height: 460px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.lead-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.3) 100%); }
.lead-banner__body { position: relative; padding: 50px; }
.lead-banner__body h2 { font-size: 34px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.lead-banner__body > p { font-size: 17px; margin-bottom: 26px; opacity: .9; }
.lead-banner__car { position: relative; align-self: end; justify-self: end; max-width: 100%; }
.inline-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; }
.inline-form__row { display: flex; gap: 10px; }
.consent { font-size: 12px; opacity: .7; }
.consent a { text-decoration: underline; }
.msgr-links { display: flex; gap: 10px; margin-top: 18px; align-items: center; font-size: 14px; }
.msgr-links .icon-btn { width: 44px; height: 44px; background: rgba(255,255,255,.14); }

/* ---------- поля ---------- */
.field {
  width: 100%; min-height: 56px; padding: 0 18px; border-radius: var(--radius);
  border: 1px solid transparent; background: #fff; color: #000;
  font: 500 16px var(--font); outline: none; transition: border-color .2s, box-shadow .2s;
}
.field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field--dark { background: #111; color: #fff; border-color: rgba(255,255,255,.18); }
select.field { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field--dark option { background: #111; }

/* ---------- цифры ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { background: #fff; color: var(--ink-2); border-radius: var(--radius-lg); padding: 30px; display: flex; gap: 22px; align-items: center; }
.stat img { width: 80px; height: 80px; flex: none; }
.stat strong { display: block; font-size: 30px; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.stat span { display: block; margin-top: 6px; font-size: 13px; text-transform: uppercase; color: var(--muted); }

/* ---------- о нас ---------- */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.about__text { background: var(--card); color: #000; border-radius: var(--radius-lg); padding: 36px; }
.about__text p { font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.about__text .btn { margin-top: 8px; }
.about__img { border-radius: var(--radius-lg); }

/* ---------- видео-ленты ---------- */
.reel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 20px 14px; scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }
.reel::-webkit-scrollbar { height: 6px; }
.reel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.reel__item {
  flex: none; width: 250px; aspect-ratio: 250 / 463; border-radius: var(--radius-lg); overflow: hidden;
  background: #111; scroll-snap-align: start; position: relative; border: 1px solid var(--line);
}
.reel__item iframe { width: 100%; height: 100%; border: 0; }
.reel__cover {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: #0a0a0a center / cover no-repeat; border: 0; color: #fff; width: 100%;
  font-weight: 600; font-size: 14px;
}
.reel__cover::before { content: ""; width: 64px; height: 64px; border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z' fill='white'/%3E%3C/svg%3E") center / 28px no-repeat; }
.reel__wrap { max-width: var(--container); margin: 0 auto; }
.reel__hint { text-align: center; font-size: 13px; opacity: .6; margin-top: 10px; }

/* ---------- риски ---------- */
.risks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.risk { display: flex; gap: 22px; padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(128,30,29,.35), rgba(128,30,29,.08)); border: 1px solid rgba(128,30,29,.5); }
.risk img { width: 80px; height: 80px; flex: none; }
.risk h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.risk p { font-size: 14px; text-transform: uppercase; opacity: .85; line-height: 1.5; }

/* ---------- гарантии ---------- */
.guarantee { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #000 center / cover no-repeat; padding: 60px 50px; }
.guarantee::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.guarantee > * { position: relative; }
.guarantee__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.guarantee__list { display: flex; flex-direction: column; gap: 16px; }
.guarantee__list li { display: flex; gap: 14px; align-items: center; padding: 18px 20px; border-radius: 10px; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); border: 1px solid var(--line); font-size: 16px; }
.guarantee__list img { width: 26px; height: 26px; flex: none; }

/* ---------- команда ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member { background: var(--card); color: #000; border-radius: var(--radius-lg); overflow: hidden; }
.member img { width: 100%; aspect-ratio: 260 / 300; object-fit: cover; object-position: top; background: #ddd; }
.member div { padding: 16px 18px 20px; }
.member strong { display: block; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.member span { font-size: 13px; color: #333; line-height: 1.4; display: block; }

/* ---------- договор ---------- */
.contract { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contract img { border-radius: var(--radius-lg); }
.contract__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contract p { font-size: 17px; opacity: .9; }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 50px 24px 0; position: relative;
  font-size: 20px; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 28px; height: 28px; margin-top: -14px;
  border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='white' stroke-width='2.5'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; font-size: 17px; opacity: .9; }

/* ---------- контакты ---------- */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contacts__info p { font-size: 18px; font-weight: 300; margin-bottom: 20px; }
.contacts__lines { display: flex; flex-direction: column; gap: 10px; font-size: 16px; margin-bottom: 26px; }
.contacts__lines a:hover { color: #fff; text-decoration: underline; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 40px; background: rgba(255,255,255,.08); font-size: 14px; font-weight: 600; transition: background .2s; }
.social:hover { background: var(--accent); }
.contacts__form { background: var(--card); color: #000; padding: 32px; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 12px; }
.contacts__form h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contacts__form .field { background: #fff; border-color: #ddd; }
.contacts__form .consent { opacity: .75; color: #000; }

/* ---------- YouTube ---------- */
.yt { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center; background: linear-gradient(135deg, #1a1a1a, #0a0a0a); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 50px; overflow: hidden; }
.yt h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.yt p { font-size: 17px; opacity: .85; margin-bottom: 26px; }
.yt__phone { max-height: 460px; justify-self: center; margin-bottom: -50px; }
.yt__btn img { width: 30px; height: auto; }

/* ---------- подвал ---------- */
.footer { border-top: 1px solid var(--line); padding: 50px 0 40px; margin-top: 40px; font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand img { width: 70px; flex: none; }
.footer__brand p { opacity: .7; line-height: 1.6; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; opacity: .5; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a:hover { text-decoration: underline; }
.footer__bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; opacity: .6; font-size: 13px; }

/* ---------- модалка / квиз ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(0,0,0,.8); opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__box {
  position: relative; width: 100%; max-width: 560px; max-height: calc(100vh - 40px); overflow: auto;
  background: #fff; color: #000; border-radius: var(--radius-lg); padding: 40px 36px 32px;
  transform: translateY(16px); transition: transform .25s;
}
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; background: none; font-size: 30px; line-height: 1; color: #000; }
.modal h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; padding-right: 30px; }
.modal__sub { font-size: 15px; color: #444; margin-bottom: 22px; }
.quiz__progress { height: 4px; background: #eee; border-radius: 2px; margin-bottom: 8px; overflow: hidden; }
.quiz__progress i { display: block; height: 100%; background: var(--accent); transition: width .25s; }
.quiz__step-label { font-size: 13px; color: #888; margin-bottom: 18px; }
.quiz__q { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.options { display: flex; flex-direction: column; gap: 8px; }
.option {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-radius: 6px;
  background: #f7f7f7; border: 2px solid transparent; font-size: 16px; font-weight: 400; cursor: pointer; transition: border-color .15s, background .15s;
}
.option:hover { border-color: #ddd; }
.option input { accent-color: var(--accent); width: 18px; height: 18px; margin: 0; }
.option:has(input:checked) { border-color: var(--accent); background: #fff6f6; }
.quiz__nav { display: flex; gap: 10px; margin-top: 22px; }
.quiz__nav .btn { flex: 1; }
.btn--ghost { background: #f1f1f1; color: #000; }
.modal .field { border-color: #ddd; }
.modal .consent { color: #333; opacity: 1; display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.modal .consent input { accent-color: var(--accent); margin-top: 3px; }
.form-stack { display: flex; flex-direction: column; gap: 12px; }
.success { text-align: center; padding: 20px 0; }
.success__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--ok); margin: 0 auto 18px; display: grid; place-items: center; }
.success__icon svg { width: 36px; height: 36px; stroke: #fff; fill: none; stroke-width: 3; }
.form-error { color: #c62828; font-size: 14px; min-height: 0; }

/* ---------- плавающая кнопка ---------- */
.float-cta { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: flex; flex-direction: column; gap: 10px; }
.float-cta a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .2s; }
.float-cta a:hover { transform: scale(1.08); }
.float-cta svg { width: 28px; height: 28px; fill: #fff; }
.float-cta .wa { background: #25d366; }
.float-cta .tg { background: #229ed9; }

/* ---------- появление ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ======================================================= КАТАЛОГ */
.page-head { padding: 140px 0 30px; background: radial-gradient(ellipse at 70% 0%, rgba(128,30,29,.35), transparent 60%); }
.crumbs { font-size: 14px; opacity: .6; margin-bottom: 14px; }
.crumbs a:hover { text-decoration: underline; }
.page-head h1 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.page-head__sub { font-size: 17px; opacity: .85; max-width: 760px; }
.live { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 8px 14px; border-radius: 30px; background: rgba(255,255,255,.07); font-size: 14px; }
.live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(98,197,132,.6); } 100% { box-shadow: 0 0 0 10px rgba(98,197,132,0); } }

.brand-strip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 14px; scrollbar-width: none; }
.brand-strip::-webkit-scrollbar { display: none; }
.brand-chip {
  flex: none; display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 40px;
  background: #111; border: 1px solid var(--line); color: #fff; font-size: 14px; font-weight: 600; transition: border-color .2s, background .2s;
}
.brand-chip img { width: 34px; height: 34px; border-radius: 50%; background: #fff; padding: 5px; object-fit: contain; }
.brand-chip small { opacity: .5; font-weight: 500; }
.brand-chip:hover { border-color: rgba(255,255,255,.4); }
.brand-chip.is-active { background: var(--accent); border-color: var(--accent); }

.catalog { display: grid; grid-template-columns: 290px 1fr; gap: 28px; align-items: start; padding-bottom: 60px; }
.filters { position: sticky; top: 96px; background: #0d0d0d; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; max-height: calc(100vh - 116px); overflow: auto; scrollbar-width: thin; }
.filters__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.filters__head h2 { font-size: 18px; font-weight: 800; }
.filters__reset { background: none; border: 0; color: #fff; opacity: .6; font-size: 13px; text-decoration: underline; }
.filters__reset:hover { opacity: 1; }
.fgroup { margin-bottom: 16px; }
.fgroup > label:not(.fcheck), .fgroup > .flabel { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; opacity: .6; margin-bottom: 8px; }
.fgroup .field { min-height: 46px; font-size: 15px; padding: 0 14px; }
.frange { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { padding: 8px 12px; border-radius: 30px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; font-size: 13px; font-weight: 500; transition: background .15s, border-color .15s; }
.pill:hover { border-color: rgba(255,255,255,.5); }
.pill.is-active { background: var(--accent); border-color: var(--accent); }
.fcheck { display: flex; gap: 10px; align-items: center; font-size: 14px; padding: 6px 0; cursor: pointer; }
.fcheck input { width: 18px; height: 18px; accent-color: var(--accent); margin: 0; }
.filters__apply { display: none; }

.results__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.results__count { font-size: 16px; }
.results__count b { font-size: 22px; }
.results__tools { display: flex; gap: 10px; align-items: center; }
.results__tools .field { min-height: 44px; width: auto; font-size: 14px; }
.filters-toggle { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px 6px 12px; border-radius: 20px; background: rgba(255,255,255,.08); font-size: 13px; border: 0; color: #fff; }
.chip::after { content: "×"; font-size: 16px; opacity: .6; }
.chip:hover { background: var(--accent); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.card {
  display: flex; flex-direction: column; background: #0f0f0f; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.3); box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: #1a1a1a; overflow: hidden; }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.card__dots { position: absolute; left: 0; right: 0; bottom: 8px; display: flex; justify-content: center; gap: 4px; }
.card__dots i { width: 18px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.45); }
.card__dots i.is-on { background: #fff; }
.card__zones { position: absolute; inset: 0; display: flex; }
.card__zones span { flex: 1; }
.card__tags { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.tag { padding: 4px 8px; border-radius: 4px; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.tag--ok { background: rgba(38,120,66,.9); }
.tag--accent { background: var(--accent); }
.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.card__badge { font-size: 13px; opacity: .6; margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card__specs { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; opacity: .85; margin-bottom: 16px; }
.card__specs span { display: inline-flex; align-items: center; gap: 5px; }
.card__specs svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; opacity: .6; }
.card__price { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.card__price strong { display: block; font-size: 21px; font-weight: 800; }
.card__price small { display: block; font-size: 12px; opacity: .55; }
.card__go { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--accent); display: grid; place-items: center; transition: transform .2s; }
.card:hover .card__go { transform: translateX(3px); }
.card__go svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; }

.skeleton { background: linear-gradient(90deg, #141414 25%, #1f1f1f 50%, #141414 75%); background-size: 200% 100%; animation: sk 1.2s infinite; border-radius: var(--radius-lg); height: 380px; }
@keyframes sk { to { background-position: -200% 0; } }
.empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.empty h3 { font-size: 22px; margin-bottom: 10px; }
.empty p { opacity: .7; margin-bottom: 20px; }
.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 30px; flex-wrap: wrap; }
.pager button { min-width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--line); background: #0f0f0f; color: #fff; font-weight: 600; padding: 0 12px; }
.pager button:hover { border-color: rgba(255,255,255,.4); }
.pager button.is-active { background: var(--accent); border-color: var(--accent); }
.pager button[disabled] { opacity: .35; pointer-events: none; }
.pager span { opacity: .5; padding: 0 4px; }

.cta-inline {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 28px;
  border-radius: var(--radius-lg); background: linear-gradient(90deg, var(--accent), #3a0d0c); flex-wrap: wrap;
}
.cta-inline h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.cta-inline p { font-size: 14px; opacity: .85; }

/* ======================================================= КАРТОЧКА АВТО */
.car { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: start; padding-bottom: 50px; }
.gallery__main { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; background: #111; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__arrow { position: absolute; top: 50%; margin-top: -24px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(0,0,0,.6); color: #fff; font-size: 22px; display: grid; place-items: center; transition: background .2s; }
.gallery__arrow:hover { background: var(--accent); }
.gallery__arrow--prev { left: 12px; }
.gallery__arrow--next { right: 12px; }
.gallery__counter { position: absolute; right: 12px; bottom: 12px; padding: 4px 10px; border-radius: 20px; background: rgba(0,0,0,.65); font-size: 13px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 10px; max-height: 196px; overflow: auto; scrollbar-width: thin; }
.gallery__thumbs button { padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; background: #111; opacity: .65; transition: opacity .15s, border-color .15s; }
.gallery__thumbs button.is-active, .gallery__thumbs button:hover { opacity: 1; border-color: var(--accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.car__side { position: sticky; top: 96px; }
.car__title { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; margin-bottom: 6px; }
.car__grade { font-size: 16px; opacity: .65; margin-bottom: 18px; }
.car__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.price-box { background: #0f0f0f; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 16px; }
.price-box__label { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; opacity: .55; }
.price-box__rub { font-size: 36px; font-weight: 800; line-height: 1.15; margin: 4px 0; }
.price-box__krw { font-size: 14px; opacity: .6; }
.price-box__note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; opacity: .85; }
.price-box .btn { margin-top: 16px; }
.car__actions { display: grid; gap: 10px; }
.car__msgr { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn--tg { background: #229ed9; color: #fff; }
.btn--wa { background: #25d366; color: #fff; }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.specs div { background: #0a0a0a; padding: 14px 18px; }
.specs dt { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; opacity: .55; margin-bottom: 4px; }
.specs dd { margin: 0; font-size: 16px; font-weight: 600; }
.car-section { margin-top: 36px; }
.car-section h2 { font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.history { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.hist { padding: 16px 18px; border-radius: 12px; background: #0f0f0f; border: 1px solid var(--line); display: flex; gap: 12px; align-items: flex-start; }
.hist__dot { width: 12px; height: 12px; border-radius: 50%; flex: none; margin-top: 6px; background: var(--ok); }
.hist--warn .hist__dot { background: #f0b23b; }
.hist--bad .hist__dot { background: #f95d51; }
.hist strong { display: block; font-size: 15px; }
.hist span { font-size: 13px; opacity: .65; }
.panels { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.panels span { padding: 6px 10px; border-radius: 6px; background: rgba(240,178,59,.12); border: 1px solid rgba(240,178,59,.35); font-size: 13px; }
.muted { opacity: .6; font-size: 14px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-row div { padding: 18px; border-radius: 12px; background: linear-gradient(135deg, rgba(128,30,29,.3), rgba(128,30,29,.06)); border: 1px solid rgba(128,30,29,.45); font-size: 14px; }
.trust-row b { display: block; font-size: 15px; margin-bottom: 4px; }
.car-error { text-align: center; padding: 160px 20px 100px; }
.car-error h1 { font-size: 30px; margin-bottom: 14px; }
.car-error p { opacity: .7; margin-bottom: 24px; }

/* ======================================================= адаптив */
@media (max-width: 1100px) {
  .nav { gap: 20px; }
  .nav a { font-size: 15px; }
  .header__socials { display: none; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .why__card { grid-template-columns: 1fr; }
  .why__card img { height: 220px; }
}
@media (max-width: 960px) {
  .nav, .header__phone { display: none; }
  .burger { display: block; }
  .header__inner { height: 76px; }
  .header__logo img { width: 72px; }
  .hero__grid, .expert__grid, .price-inc, .about, .contract, .contacts, .yt, .guarantee__grid, .lead-banner, .car { grid-template-columns: 1fr; }
  .hero__car { justify-self: center; max-width: 440px; }
  .expert__grid { gap: 40px; }
  .expert__person { max-width: 420px; margin: 0 auto; width: 100%; }
  .pillars, .stats { grid-template-columns: 1fr; gap: 24px; }
  .why, .risks { grid-template-columns: 1fr; }
  .lead-banner__car { justify-self: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .yt__phone { display: none; }
  .catalog { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0; z-index: 90; max-height: none; border-radius: 0; top: 0;
    transform: translateX(-100%); transition: transform .25s; padding-bottom: 90px;
  }
  .filters.is-open { transform: none; }
  .filters__apply { display: flex; position: fixed; left: 16px; right: 16px; bottom: 16px; }
  .filters-toggle { display: inline-flex; }
  .car__side { position: static; }
  .trust-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 24px; margin-bottom: 30px; }
  .hero { padding-top: 110px; min-height: auto; }
  .hero__list { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; white-space: normal; text-align: center; }
  .brands { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .brand { padding: 8px; }
  .price-inc__list { grid-template-columns: 1fr; }
  .price-inc__title { font-size: 28px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step__num { width: 44px; height: 44px; font-size: 16px; }
  .steps::before { left: 21px; }
  .step h3 { font-size: 19px; margin-top: 8px; }
  .step p, .step li { font-size: 15px; }
  .lead-banner__body { padding: 30px 22px; }
  .lead-banner__body h2 { font-size: 26px; }
  .inline-form__row { flex-direction: column; }
  .risk { flex-direction: column; }
  .guarantee { padding: 36px 20px; }
  .team { grid-template-columns: 1fr 1fr; gap: 12px; }
  .faq summary { font-size: 17px; }
  .faq details p { font-size: 15px; }
  .yt { padding: 30px 22px; }
  .yt h2 { font-size: 26px; }
  .modal__box { padding: 34px 20px 24px; }
  .stat { padding: 22px; }
  .stat strong { font-size: 24px; }
  .grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .price-box__rub { font-size: 30px; }
  .results__tools { width: 100%; }
  .results__tools .field { flex: 1; }
  .float-cta { right: 12px; bottom: 12px; }
  .float-cta a { width: 50px; height: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* колонки сетки не должны распирать страницу длинным содержимым */
.hero__grid > *, .expert__grid > *, .catalog > *, .price-inc > *, .about > *, .contract > *,
.contacts > *, .yt > *, .guarantee__grid > *, .lead-banner > *, .car > *, .results { min-width: 0; }
@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; }
  .hero__badge { font-size: 13px; }
}
.brands { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.brand { min-width: 0; }
.brand img { max-width: 100%; height: auto; }
.results__tools { min-width: 0; }
.results__tools .field { min-width: 0; max-width: 100%; }

/* вкладки «Корея / Китай» */
.country-tabs { display: inline-flex; gap: 6px; padding: 5px; border-radius: 40px; background: rgba(255,255,255,.07); border: 1px solid var(--line); margin-bottom: 18px; }
.country-tabs a { padding: 9px 20px; border-radius: 30px; font-weight: 700; font-size: 15px; opacity: .75; transition: background .2s, opacity .2s; }
.country-tabs a:hover { opacity: 1; }
.country-tabs a.is-active { background: var(--accent); opacity: 1; }
.brand-chip--text { padding: 10px 18px; }
