/* ============================================================
   AUTOGEAR — component styles
   ============================================================ */

/* ---------------- TopBar ---------------- */
.topbar {
  position: relative; z-index: 60;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px; gap: 24px;
}
.topbar__rates { display: flex; align-items: center; gap: 18px; color: var(--text-2); flex-wrap: wrap; }
.topbar__rates-label { color: var(--text-3); letter-spacing: .04em; }
.rate { display: inline-flex; align-items: center; gap: 6px; }
.rate__flag { font-size: 14px; filter: saturate(.85); }
.rate b { color: var(--text); font-weight: 700; }
.rate__val { color: var(--gold); }
.topbar__right { display: flex; align-items: center; gap: 20px; color: var(--text-2); }
.topbar__office-link { color: var(--text-2); white-space: nowrap; }
.topbar__office-link:hover { color: var(--gold); }
.topbar__online { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); }
.topbar__online i { width: 7px; height: 7px; border-radius: 50%; background: #4ec77f; box-shadow: 0 0 0 0 rgba(78,199,127,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(78,199,127,0); } 100% { box-shadow: 0 0 0 0 rgba(78,199,127,0); } }

/* ---------------- Header ---------------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.hdr--scrolled { background: var(--header-bg-solid); border-bottom-color: var(--line-soft); }
.hdr__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 28px; }
.hdr__logo { display: flex; align-items: center; }
.hdr__logo img {
  height: 60px; width: 60px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}
.hdr__nav { display: flex; align-items: center; gap: 34px; }
.hdr__nav a {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2); position: relative; padding: 4px 0;
  transition: color .2s;
}
.hdr__nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold-grad); transition: width .25s; }
.hdr__nav a:hover { color: var(--text); }
.hdr__nav a:hover::after { width: 100%; }
.hdr__right { display: flex; align-items: center; gap: 18px; }
.hdr__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .03em; white-space: nowrap; }
.hdr__phone svg { color: var(--gold); }
.hdr__phone:hover { color: var(--gold); }
.hdr__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hdr__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------------- Messengers ---------------- */
.msgr { display: inline-flex; gap: 10px; }
.msgr__btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  color: var(--msgr-color, var(--text));
  background: color-mix(in srgb, var(--msgr-color, var(--text)) 12%, transparent);
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.msgr__btn--tg { --msgr-color: #229ED9; }
.msgr__btn--max { --msgr-color: #6B5CFF; }
.msgr__btn--wa { --msgr-color: #25D366; }
.msgr__btn:hover {
  background: var(--msgr-color, var(--text));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px -14px var(--msgr-color, rgba(0,0,0,.35));
  transform: translateY(-2px);
}
.msgr--sm .msgr__btn { width: 38px; height: 38px; }
.msgr--md .msgr__btn { width: 46px; height: 46px; }

/* ---------------- Hero ---------------- */
.hero { position: relative; z-index: 1; padding: 64px 0 88px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__title {
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.98; text-transform: uppercase; letter-spacing: .01em;
  margin: 22px 0 0;
}
.hero__lead { color: var(--text-2); font-size: 18px; max-width: 480px; margin: 22px 0 0; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat b {
  font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stat span { font-size: 13px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; }

/* ---------------- Calculator ---------------- */
.calc {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255,255,255,0.04);
}
.calc__head { padding: 8px 8px 0; }
.calc__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--inset-bg); border-radius: 14px; padding: 6px; }
.calc__tabs button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px; border: none; border-radius: 10px; background: transparent;
  color: var(--text-2); font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: .05em; text-transform: uppercase; transition: .2s;
}
.calc__tabs button.is-active { background: var(--gold-grad); color: #1a1206; box-shadow: 0 8px 20px -8px rgba(216,168,76,.6); }
.calc__tabs button:not(.is-active):hover { color: var(--text); }

.calc__panel { padding: 20px 18px 6px; display: flex; flex-direction: column; gap: 18px; }
.calc__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* fields */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 13px; color: var(--text-3); letter-spacing: .03em; text-transform: uppercase; font-weight: 600; }
.field__select { position: relative; }
.field__select svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--gold); pointer-events: none; }
.field__select select, .field--light input, .field input[type="text"], .field input[type="tel"] {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: var(--input-bg); border: 1px solid var(--line-soft); border-radius: 11px;
  color: var(--text); font-family: var(--font-body); font-size: 16px; font-weight: 600;
  padding: 13px 38px 13px 14px; cursor: pointer; transition: border-color .2s;
}
.field__select select:focus, .field input:focus { outline: none; border-color: var(--gold); }
.field__rangehead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.field__rangehead .field__label { white-space: nowrap; }
.field__rangeval { font-family: var(--font-display); font-size: 18px; color: var(--gold); white-space: nowrap; }

/* range slider */
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: #2a2a2e; outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad); cursor: pointer; box-shadow: 0 4px 12px -2px rgba(216,168,76,.6); border: 3px solid var(--input-bg); }
.range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid var(--input-bg); }
.range__scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-3); margin-top: 6px; }

/* calc result */
.calc__result { background: var(--inset-bg); border: 1px solid var(--line-soft); border-radius: 14px; padding: 16px; }
.calc__result-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.calc__result-headline { display: flex; align-items: center; gap: 12px; }
.calc__result-count { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 0.9; }
.calc__result-label { color: var(--text-2); font-size: 13px; line-height: 1.25; }
.calc__result-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.calc__result-link:hover { gap: 10px; }
.calc__matches { display: flex; flex-direction: column; gap: 6px; }
.matchrow {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; align-items: center;
  padding: 11px 13px; border-radius: 10px; background: var(--surface); border: 1px solid transparent; transition: .2s;
}
.matchrow:hover { border-color: var(--line); transform: translateX(3px); }
.matchrow__name { font-weight: 700; font-size: 15px; }
.matchrow__price { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 17px; grid-row: span 2; }
.matchrow__meta { font-size: 12px; color: var(--text-3); }
.calc__empty { color: var(--text-2); font-size: 14px; margin: 4px 0; line-height: 1.5; }

/* breakdown */
.calc__breakdown { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.brk { display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.brk span { color: var(--text-2); }
.brk b { font-weight: 600; }
.calc__total { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.calc__total-label { display: block; font-family: var(--font-display); font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.calc__total-note { display: block; font-size: 12px; color: var(--text-3); margin-top: 2px; }
.calc__total-val { font-family: var(--font-display); font-size: 30px; font-weight: 700; white-space: nowrap; }

.calc__cta { margin: 16px 8px 8px; width: calc(100% - 16px); }

/* ---------------- Section alt bg ---------------- */
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---------------- Catalog chips + grid ---------------- */
.chips { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line-soft);
  background: transparent; color: var(--text-2); font-family: var(--font-display);
  font-size: 15px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; transition: .2s;
}
.chip:hover { color: var(--text); border-color: var(--line); }
.chip.is-active { background: var(--gold-grad); color: #1a1206; border-color: transparent; }
.chips__all { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-size: 14px; font-weight: 600; }
.chips__all:hover { gap: 11px; }

.cars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ---------------- Car card ---------------- */
.car {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, border-color .25s, box-shadow .25s;
}
.car:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-card); }
.car__media { position: relative; display: block; aspect-ratio: 16/11; background: var(--media-bg); color: inherit; }
.car__media image-slot { display: block; }
.car__tag { position: absolute; top: 12px; left: 12px; background: var(--gold-grad); color: #1a1206; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.car__flag { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); color: #fff; font-size: 12px; padding: 5px 10px; border-radius: 6px; }
.car__body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car__name { font-size: 21px; line-height: 1.05; }
.car__config { font-size: 13px; color: var(--text-3); margin: 0; }
.car__price { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.car__price-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }
.car__price-val { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold); }
.car__specs { display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; gap: 8px 10px; }
.spec { display: flex; align-items: center; gap: 7px; min-width: 0; }
.spec__ic { color: var(--gold); opacity: .85; display: inline-flex; flex-shrink: 0; }
.spec__txt { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.spec__txt b { font-size: 14px; font-weight: 700; white-space: nowrap; }
.spec__txt i { font-style: normal; font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: .02em; }
.car__btn { margin-top: auto; padding: 12px; font-size: 14px; }

/* ---------------- Why us ---------------- */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 26px; transition: border-color .25s, transform .25s; }
.why:hover { border-color: var(--line); transform: translateY(-4px); }
.why__ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: rgba(216,168,76,0.08); color: var(--gold); margin-bottom: 18px; }
.why__t { font-size: 22px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .01em; }
.why__d { color: var(--text-2); font-size: 15px; }

/* ---------------- Steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.step__n { font-family: var(--font-display); font-size: 44px; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step__t { font-size: 21px; margin: 12px 0 8px; text-transform: uppercase; }
.step__d { color: var(--text-2); font-size: 14px; }
.step__line { position: absolute; top: 44px; right: -10px; width: 20px; height: 1px; background: var(--line); z-index: 2; }

/* ---------------- Cases ---------------- */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.case { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .25s, transform .25s; }
.case:hover { border-color: var(--line); transform: translateY(-4px); }
.case__media { position: relative; aspect-ratio: 16/10; background: var(--media-bg); }
.case__media image-slot { display: block; }
.case__days { position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,.6); backdrop-filter: blur(6px); color: #fff; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 8px; }
.case__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.case__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.case__car { font-size: 20px; text-transform: uppercase; }
.case__price { font-family: var(--font-display); font-size: 20px; font-weight: 700; white-space: nowrap; }
.case__text { color: var(--text-2); font-size: 15px; line-height: 1.55; flex: 1; }
.case__author { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.case__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-grad); color: #1a1206; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.case__author > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.2; }
.case__author b { font-size: 14px; }
.case__author i { font-style: normal; font-size: 12px; color: var(--text-3); }
.case__stars { margin-left: auto; color: var(--gold); font-size: 14px; letter-spacing: 1px; }

/* ---------------- FAQ ---------------- */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-head .section-title { margin: 16px 0 16px; }
.faq-head p { color: var(--text-2); margin: 0 0 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.is-open { border-color: var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; color: var(--text); font-family: var(--font-display); font-size: 19px; font-weight: 500; text-align: left; letter-spacing: .01em; }
.faq-toggle { display: inline-flex; color: var(--gold); transition: transform .25s; flex-shrink: 0; }
.faq-item.is-open .faq-toggle { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p { margin: 0; padding: 0 22px 22px; color: var(--text-2); font-size: 15px; }

/* ---------------- SEO ---------------- */
.seo__title { font-size: clamp(26px, 3vw, 38px); text-transform: uppercase; margin-bottom: 20px; }
.seo__body { color: var(--text-2); max-width: 920px; }
.seo__body p { margin: 0 0 16px; line-height: 1.7; }
.seo__hidden { display: none; }
.seo__body.is-open .seo__hidden { display: block; }
.seo__more { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; color: var(--gold); font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; padding: 0; }
.seo__more svg { transition: transform .25s; }
.seo__body.is-open + .seo__more svg { transform: rotate(180deg); }

/* ---------------- CTA ---------------- */
.cta { position: relative; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(216,168,76,.10), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 56px; }
.cta__copy .section-title { margin: 16px 0 16px; }
.cta__copy p { color: var(--text-2); max-width: 380px; }
.cta__phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); }
.cta__phone svg { color: var(--gold); }
.cta__phone:hover { color: var(--gold); }
.cta__form { display: flex; flex-direction: column; gap: 14px; }
.field--light input { background: var(--input-bg); }
.cta__note { font-size: 12px; color: var(--text-3); text-align: center; margin: 2px 0 0; }
.cta__done { text-align: center; padding: 20px 0; }
.cta__done-ic { display: inline-flex; width: 64px; height: 64px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(216,168,76,.1); color: var(--gold); margin-bottom: 16px; }
.cta__done h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }
.cta__done p { color: var(--text-2); }

/* ---------------- Footer ---------------- */
.footer { background: var(--footer-bg); border-top: 1px solid var(--line-soft); padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer__brand img { height: 64px; width: 64px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.footer__brand p { color: var(--text-2); font-size: 14px; margin: 16px 0 18px; max-width: 280px; }
.footer__col h4 { font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin: 0 0 18px; font-weight: 600; }
.footer__col a { display: block; color: var(--text-2); font-size: 14px; margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__phone { font-family: var(--font-display) !important; font-size: 22px !important; font-weight: 700; color: var(--text) !important; }
.footer__note { display: block; font-size: 12px; color: var(--text-3); margin: -4px 0 14px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; color: var(--text-3); font-size: 13px; }

/* ---------------- Hero media ---------------- */
.hero__media { position: relative; width: 100%; aspect-ratio: 5/4.2; min-height: 440px; }
.hero__media image-slot { display: block; box-shadow: 0 40px 90px -45px rgba(0,0,0,0.8), 0 0 0 1px var(--line); border-radius: 20px; }
.hero__badge {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 18px; box-shadow: var(--shadow-card);
}
.hero__badge-flag { font-size: 26px; }
.hero__badge b { display: block; font-family: var(--font-display); font-size: 17px; letter-spacing: .02em; text-transform: uppercase; }
.hero__badge i { display: block; font-style: normal; font-size: 13px; color: var(--text-2); margin-top: 1px; }

/* ---------------- Big calculator section ---------------- */
.bigcalc {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 16px; box-shadow: var(--shadow-1);
}
.bigcalc__tabs { display: flex; gap: 6px; background: var(--inset-bg); border-radius: 14px; padding: 6px; margin-bottom: 18px; max-width: 540px; }
.bigcalc__tabs button {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; border: none; border-radius: 10px; background: transparent;
  color: var(--text-2); font-family: var(--font-display); font-weight: 600;
  font-size: 16px; letter-spacing: .05em; text-transform: uppercase; transition: .2s;
}
.bigcalc__tabs button.is-active { background: var(--gold-grad); color: #1a1206; box-shadow: 0 8px 20px -8px rgba(216,168,76,.6); }
.bigcalc__tabs button:not(.is-active):hover { color: var(--text); }

.bigcalc__body { display: grid; grid-template-columns: 340px 1fr; gap: 22px; }
.bigcalc__controls { background: var(--inset-bg); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 18px; align-self: start; }
.field--budget { padding-top: 4px; }
.field__rangeval--lg { font-size: 23px; }
.bigcalc__hint { display: flex; gap: 10px; font-size: 12.5px; color: var(--text-3); line-height: 1.45; margin: 2px 0 0; }
.bigcalc__hint svg { color: var(--gold); flex-shrink: 0; width: 22px; height: 22px; }

.bigcalc__results { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.bigcalc__results-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bigcalc__found { display: flex; align-items: baseline; gap: 10px; font-family: var(--font-display); font-size: 26px; text-transform: uppercase; letter-spacing: .01em; line-height: 1; }
.bigcalc__found b { font-size: 40px; line-height: 0.85; }
.bigcalc__found-sub { display: block; color: var(--text-2); font-size: 14px; margin-top: 8px; font-family: var(--font-body); text-transform: none; letter-spacing: 0; max-width: 360px; }
.bigcalc__go { padding: 13px 26px; }
.bigcalc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bigcalc__empty { background: var(--inset-bg); border: 1px dashed var(--line); border-radius: var(--radius); padding: 36px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.bigcalc__empty p { color: var(--text-2); margin: 0; max-width: 440px; }

/* ---------------- Подбор по бюджету (reworked) ---------------- */
.podbor { display: flex; flex-direction: column; gap: 24px; }
.podbor__step { font-family: var(--font-display); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.podbor__step--inline { grid-column: 1 / -1; }

.podbor__budget { background: var(--inset-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.podbor__budget-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.podbor__budget-val { font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 50px); font-weight: 700; line-height: 1; }
.range--lg { height: 6px; }
.range--lg::-webkit-slider-thumb { width: 26px; height: 26px; }
.podbor__presets { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.podbor__preset { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-soft); background: transparent; color: var(--text-2); font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; transition: .2s; }
.podbor__preset:hover { color: var(--text); border-color: var(--line); }
.podbor__preset.is-active { background: var(--gold-grad); color: #1a1206; border-color: transparent; }
body.theme-light .podbor__preset.is-active { color: #221703; }

.podbor__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; align-items: end; }
.podbor__hint { display: flex; gap: 10px; font-size: 13px; color: var(--text-3); line-height: 1.5; margin: -4px 0 0; max-width: 760px; }
.podbor__hint svg { color: var(--gold); flex-shrink: 0; width: 22px; height: 22px; }

.podbor__results { display: flex; flex-direction: column; gap: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.podbor__results-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.podbor__summary { display: flex; align-items: center; gap: 16px; }
.podbor__summary b { font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 0.8; }
.podbor__summary span { color: var(--text-2); font-size: 15px; line-height: 1.35; }
.podbor__summary span b { font-family: var(--font-body); font-size: 15px; color: var(--text); }
.podbor__summary-empty { color: var(--text-2); font-size: 15px; line-height: 1.45; }
.podbor__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.podbor__empty { padding: 4px 0; }

.calc__breakdown--lg { background: var(--inset-bg); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px; gap: 14px; margin: 0; }
.calc__breakdown--lg .brk { font-size: 16px; }
.calc__total--lg { padding: 20px 24px; background: var(--inset-bg); border: 1px solid var(--line); border-radius: var(--radius); }
.calc__total--lg .calc__total-val { font-size: 36px; }
.calc__total--lg .calc__total-label { font-size: 18px; }

/* ---------------- Catalog applied banner ---------------- */
.catalog-foot { display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.catalog-foot__note { color: var(--text-3); font-size: 14px; }

.catalog-applied { display: flex; align-items: center; gap: 12px; background: var(--inset-bg); border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; margin-bottom: 22px; }
.catalog-applied__ic { color: var(--gold); display: inline-flex; }
.catalog-applied__txt { color: var(--text-2); font-size: 14.5px; }
.catalog-applied__txt b { color: var(--text); }
.catalog-applied__reset { margin-left: auto; background: none; border: 1px solid var(--line-soft); color: var(--text-2); border-radius: 999px; padding: 8px 15px; font-size: 13px; font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; transition: .2s; white-space: nowrap; }
.catalog-applied__reset:hover { border-color: var(--gold); color: var(--gold); }

/* ---------------- Catalog page ---------------- */
.catpage-hero { position: relative; z-index: 1; padding: 44px 0 8px; }
.catpage-hero .eyebrow { margin-top: 18px; }
.catpage-hero__title { font-size: clamp(40px, 5.4vw, 68px); text-transform: uppercase; letter-spacing: .02em; margin: 18px 0 0; }
.catpage-hero p { color: var(--text-2); max-width: 600px; font-size: 17px; margin: 18px 0 0; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-3); letter-spacing: .03em; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--gold); }

.catpage { display: grid; grid-template-columns: 308px 1fr; gap: 30px; align-items: start; position: relative; z-index: 1; padding-top: 38px; padding-bottom: 96px; }

.catfilters { position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 22px; }
.catfilters__group { display: flex; flex-direction: column; gap: 12px; }
.catfilters__group + .catfilters__group { padding-top: 22px; border-top: 1px solid var(--line-soft); }
.catfilters__title { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.catfilters__bhead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.catfilters__bval { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.catfilters__presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.catfilters__presets .podbor__preset { padding: 8px 13px; font-size: 12.5px; }
.chips--filter { margin: 0; gap: 8px; }
.chips--filter .chip { padding: 8px 15px; font-size: 13px; }
.catfilters__reset { background: none; border: 1px solid var(--line-soft); color: var(--text-2); border-radius: 999px; padding: 11px 16px; font-family: var(--font-display); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; transition: .2s; }
.catfilters__reset:hover { border-color: var(--gold); color: var(--gold); }
@media (min-width: 1081px) {
  .catfilters {
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }
  .catfilters::-webkit-scrollbar { width: 6px; }
  .catfilters::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
}

.catmain { min-width: 0; }
.catmain__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.catmain__count { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: .01em; line-height: 1.1; }
.catmain__count b { font-size: 34px; }
.catmain__count-sub { display: inline-block; font-family: var(--font-body); font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--text-3); margin-left: 8px; }
.catmain__sort { display: flex; align-items: center; gap: 12px; }
.catmain__sort > span { font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.catmain__sort .field__select { min-width: 200px; }
.catmain__filtbtn { display: none; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; margin-bottom: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .05em; text-transform: uppercase; }
.catmain__filtbtn svg { color: var(--gold); }

.cars-grid--cat { grid-template-columns: repeat(3, 1fr); }

.catmain__empty { background: var(--inset-bg); border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; display: flex; flex-direction: column; gap: 22px; align-items: center; }
.catmain__empty p { color: var(--text-2); margin: 0; max-width: 480px; font-size: 16px; line-height: 1.55; }
.catmain__empty-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.catpage-cta { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.catpage-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.catpage-cta .section-title { margin-top: 14px; }

/* ---------------- Car detail page ---------------- */
.carpage { position: relative; z-index: 1; padding-top: 28px; padding-bottom: 24px; }
.carpage__crumb { margin-bottom: 26px; }
.carpage__top { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 38px; align-items: start; }

/* gallery */
.cargal { display: flex; flex-direction: column; gap: 14px; }
.cargal__main { position: relative; aspect-ratio: 16/10; background: var(--media-bg); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.cargal__main image-slot { display: block; }
.cargal__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cargal__thumb { aspect-ratio: 16/11; background: var(--media-bg); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.cargal__thumb image-slot { display: block; }
.cargal__media { appearance: none; padding: 0; border: 1px solid var(--line-soft); color: inherit; text-align: left; cursor: zoom-in; }
.cargal__media:disabled { cursor: default; }
.cargal__media:hover { border-color: rgba(216,168,76,.55); }
.cargal__media:focus-visible { outline: 3px solid rgba(216,168,76,.35); outline-offset: 3px; }
.cargal__zoom { position: absolute; right: 14px; bottom: 14px; z-index: 3; padding: 8px 12px; border-radius: 8px; background: rgba(11,14,18,.72); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; opacity: 0; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease; }
.cargal__main:hover .cargal__zoom, .cargal__main:focus-visible .cargal__zoom { opacity: 1; transform: translateY(0); }
.photo-viewer-open { overflow: hidden; }
.photo-viewer { position: fixed; inset: 0; z-index: 1000; display: grid; grid-template-rows: auto 1fr; background: rgba(8,10,14,.92); backdrop-filter: blur(10px); padding: 18px; }
.photo-viewer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #fff; font-size: 14px; font-weight: 700; }
.photo-viewer__tools { display: flex; gap: 8px; }
.photo-viewer__tools button, .photo-viewer__nav { appearance: none; border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.1); color: #fff; border-radius: 8px; cursor: pointer; font-weight: 800; }
.photo-viewer__tools button { width: 42px; height: 38px; font-size: 18px; }
.photo-viewer__tools button:hover, .photo-viewer__nav:hover { background: rgba(255,255,255,.18); }
.photo-viewer__stage { min-height: 0; display: flex; align-items: center; justify-content: center; overflow: auto; padding: 18px 70px 6px; }
.photo-viewer__stage img { max-width: 100%; max-height: calc(100vh - 110px); object-fit: contain; transition: transform .18s ease; transform-origin: center; }
.photo-viewer__nav { position: absolute; top: 50%; width: 48px; height: 64px; transform: translateY(-50%); font-size: 42px; line-height: 1; }
.photo-viewer__nav--prev { left: 18px; }
.photo-viewer__nav--next { right: 18px; }
@media (max-width: 720px) {
  .photo-viewer { padding: 12px; }
  .photo-viewer__stage { padding: 16px 0 72px; }
  .photo-viewer__nav { top: auto; bottom: 14px; width: 46px; height: 46px; font-size: 34px; transform: none; }
  .photo-viewer__nav--prev { left: 50%; margin-left: -54px; }
  .photo-viewer__nav--next { right: 50%; margin-right: -54px; }
  .cargal__zoom { opacity: 1; transform: none; }
}

/* buy panel */
.carbuy { position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); }
.carbuy__title { font-size: clamp(28px, 3.2vw, 40px); text-transform: uppercase; letter-spacing: .01em; margin: 14px 0 8px; line-height: 1.02; }
.carbuy__config { color: var(--text-2); font-size: 15px; margin: 0 0 22px; }
.carbuy__price { background: var(--inset-bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.carbuy__price-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.carbuy__price-label { font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.field__select--sm select { padding: 8px 32px 8px 12px; font-size: 14px; border-radius: 9px; }
.field__select--sm svg { width: 16px; height: 16px; right: 9px; }
.carbuy__price-val { font-family: var(--font-display); font-size: clamp(34px, 4vw, 46px); font-weight: 700; line-height: 1; margin: 2px 0 8px; }
.carbuy__price-note { font-size: 12.5px; color: var(--text-3); line-height: 1.4; }
.carbuy__brk { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.carbuy__brk .brk { font-size: 14px; }
.carbuy__brk .brk:last-child { padding-top: 10px; border-top: 1px solid var(--line-soft); }
.carbuy__actions { display: flex; flex-direction: column; gap: 14px; }
.carbuy__msgr { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--text-3); font-size: 13px; }
.carbuy__hint { display: flex; gap: 10px; font-size: 12.5px; color: var(--text-3); line-height: 1.45; margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.carbuy__hint svg { color: var(--gold); flex-shrink: 0; width: 22px; height: 22px; }

/* sections */
.carsec { padding: 40px 0 0; }
.carsec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.carsec__title { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; letter-spacing: .02em; margin: 0 0 22px; }
.carsec__head .carsec__title { margin-bottom: 0; }
.carsec__head { margin-bottom: 22px; }

.carspecs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.carspec { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 16px 18px; }
.carspec__ic { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(216,168,76,0.08); color: var(--gold); flex-shrink: 0; }
.carspec__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.carspec__txt i { font-style: normal; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .03em; }
.carspec__txt b { font-size: 15px; font-weight: 700; line-height: 1.15; }

.carincl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.carincl__item { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 24px; }
.carincl__ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(216,168,76,0.08); color: var(--gold); flex-shrink: 0; }
.carincl__item h3 { font-size: 18px; text-transform: uppercase; letter-spacing: .01em; margin: 4px 0 6px; }
.carincl__item p { color: var(--text-2); font-size: 14px; margin: 0; }

.cardesc { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 920px; margin: 0; }

/* ---------------- About page ---------------- */
.about-hero { padding-bottom: 24px; }
.about-hero__stats { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.about-hero__stats .hero__stat b { font-size: clamp(28px, 3.2vw, 36px); white-space: nowrap; }

.about-lead { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.about-lead__copy .section-title { margin: 16px 0 22px; }
.about-lead__copy p { color: var(--text-2); font-size: 16px; line-height: 1.7; margin: 0 0 16px; max-width: 520px; }
.about-lead__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.about-lead__media { position: relative; width: 100%; aspect-ratio: 4/4.4; min-height: 420px; }
.about-lead__media image-slot { display: block; box-shadow: 0 40px 90px -45px rgba(0,0,0,0.8), 0 0 0 1px var(--line); border-radius: 20px; }
.about-lead__badge { position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 13px 18px; box-shadow: var(--shadow-card); }
.about-lead__badge-flag { font-size: 26px; }
.about-lead__badge b { display: block; font-family: var(--font-display); font-size: 17px; letter-spacing: .02em; text-transform: uppercase; }
.about-lead__badge i { display: block; font-style: normal; font-size: 13px; color: var(--text-2); margin-top: 1px; }

.about-cycle { grid-template-columns: repeat(3, 1fr); }
.about-cycle .carincl__item { position: relative; }
.about-cycle__n { position: absolute; top: 16px; right: 18px; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--line); line-height: 1; }

/* ---------------- Responsive ---------------- */
/* ---- Laptop band (1081–1480): tune the full-width white layout ---- */
@media (min-width: 1081px) and (max-width: 1480px) {
  /* tighter gutters so the full-bleed layout uses laptop width well */
  body.theme-white .wrap { padding: 0 clamp(28px, 3.2vw, 56px); }
  /* a touch less vertical air for shorter laptop screens */
  .section { padding: 78px 0; }
  .section--tight { padding: 58px 0; }
  .hero { padding: 52px 0 72px; }
  /* calculators: narrower control rail keeps result cards roomy */
  .bigcalc__body { grid-template-columns: 300px 1fr; }
  /* catalog: narrower sidebar, tighter column gap */
  .catpage { grid-template-columns: 280px 1fr; gap: 26px; }
  /* keep dense card rows from getting cramped */
  .steps { gap: 14px; }
  .step { padding: 24px 18px; }
  .step__t { font-size: 19px; }
  .why-grid, .cars-grid { gap: 18px; }
  .why { padding: 26px 22px; }
  /* car detail: balance gallery vs sticky buy panel */
  .carpage__top { grid-template-columns: 1.1fr 0.9fr; gap: 30px; }
}
@media (max-width: 1080px) {
  /* let single-column grid tracks shrink below their content's min-content */
  .hero__inner > *, .about-lead > * { min-width: 0; }
  .hero__media, .about-lead__media,
  .hero__media image-slot, .about-lead__media image-slot { min-width: 0; max-width: 100%; }
  .hero__title, .section-title, .catpage-hero__title, .carbuy__title, .seo__title { overflow-wrap: anywhere; }
  .about-lead { grid-template-columns: 1fr; gap: 40px; }
  .about-lead__media { min-height: 340px; aspect-ratio: 16/10; max-width: 620px; order: -1; }
  .about-cycle { grid-template-columns: repeat(2, 1fr); }
  .about-hero__stats { gap: 28px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { min-height: 360px; aspect-ratio: 16/10; max-width: 620px; }
  .cars-grid { grid-template-columns: repeat(2,1fr); }
  .bigcalc__body { grid-template-columns: 1fr; }
  .catpage { grid-template-columns: 1fr; }
  .catfilters { position: static; }
  .cars-grid--cat { grid-template-columns: repeat(2,1fr); }
  .carpage__top { grid-template-columns: 1fr; gap: 28px; }
  .carbuy { position: static; }
  .carspecs { grid-template-columns: repeat(2,1fr); }
  .bigcalc__grid { grid-template-columns: repeat(2,1fr); }
  .podbor__grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step__line { display: none; }
  .cases-grid { grid-template-columns: 1fr; max-width: 560px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner { grid-template-columns: 1fr; gap: 36px; padding: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .hdr__nav { position: fixed; top: 78px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s; }
  .hdr__nav.is-open { max-height: 400px; }
  .hdr__nav a { padding: 16px 28px; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .hdr__burger { display: flex; }
  .hdr__phone-num { display: none; }
  .hdr .msgr--sm { display: none; }
  .topbar__right { display: none; }
  /* collapse catalog filters into a toggle drawer on phones/small tablets */
  .catmain__filtbtn { display: flex; }
  .catfilters { display: none; }
  .catfilters.is-open { display: flex; }
}
/* ============================================================
   SPLIT HERO — featured car panel
   ============================================================ */

.hero--split {
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: calc(100vh - 40px - 78px);
  padding: 0;
}

/* Left column: copy */
.hero--split .hero__copy {
  padding: clamp(52px, 7vh, 100px) clamp(28px, 4.5vw, 88px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line);
}

/* Override generic hero__title sizing for split rows */
.hero--split .hero__title {
  font-size: unset;
  line-height: 1;
  margin: 20px 0 22px;
}

.hero__row-1 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 142px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; line-height: .88;
  color: var(--text);
}
.hero__row-ghost {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; line-height: .92;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29, 26, 20, 0.18);
}
.hero__row-3 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 142px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; line-height: .88;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Right column: featured car */
.hero__featured {
  position: relative;
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(32px, 4vh, 60px) clamp(28px, 4vw, 64px);
  overflow: hidden;
}
.hero__featured-media { position: absolute; inset: 0; z-index: 0; opacity: .78; }
.hero__featured::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-2) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero__featured::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 72px; height: 72px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: .45;
}

.hero__featured-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 190px);
  font-weight: 700; text-transform: uppercase;
  color: rgba(176, 124, 38, 0.07);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: .04em; line-height: 1;
  z-index: 0;
}

.hero__featured-content {
  position: relative; z-index: 1;
}
.hero__featured-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 4px;
  margin-bottom: 18px;
}
.hero__featured-brand {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 4px;
}
.hero__featured-name {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; line-height: .92;
  color: var(--text); margin-bottom: 18px;
}
.hero__featured-specs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 26px;
}
.fspec {
  font-size: 12px; font-weight: 500;
  color: var(--text-2);
  padding: 4px 11px;
  background: rgba(29, 26, 20, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.hero__featured-price-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.hero__featured-price {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__featured-note {
  font-size: 11px; color: var(--text-3); margin-top: 5px;
}
.catalog-load-more { display: flex; justify-content: center; margin-top: 34px; }

.hero__featured-btn {
  flex-shrink: 0;
  padding: 11px 22px !important;
  font-size: 13px !important;
  white-space: nowrap;
}

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands {
  background: var(--topbar-bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 0 clamp(28px, 4.5vw, 88px);
  height: 52px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}
.brands__eyebrow {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-3); flex-shrink: 0; margin-right: 24px;
}
.brands__items { display: flex; align-items: center; }
.brand-item {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); padding: 0 18px; white-space: nowrap;
  transition: color .15s;
  opacity: 0; transform: translateY(5px);
  transition: opacity .4s ease, transform .4s ease, color .15s;
}
.brand-item.in-view { opacity: 1; transform: translateY(0); }
.brand-item:hover { color: var(--gold); }
.brand-sep { width: 1px; height: 14px; background: var(--line-soft); flex-shrink: 0; }

/* ============================================================
   CAR CARD GHOST
   ============================================================ */
.car__ghost {
  position: absolute;
  bottom: -6px; right: -4px;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; line-height: 1;
  color: rgba(176, 124, 38, 0.08);
  pointer-events: none; user-select: none;
  white-space: nowrap; z-index: 0;
  transition: transform .4s ease, color .3s ease;
}
.car:hover .car__ghost {
  transform: scale(1.06) translateX(-4px);
  color: rgba(176, 124, 38, 0.13);
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes ag-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ag-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ag-slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero--split .hero__copy .eyebrow   { animation: ag-fadeIn  .5s ease both; animation-delay: .05s; }
.hero--split .hero__row-1            { animation: ag-fadeUp  .7s ease both; animation-delay: .15s; }
.hero--split .hero__row-ghost        { animation: ag-fadeUp  .7s ease both; animation-delay: .28s; }
.hero--split .hero__row-3            { animation: ag-fadeUp  .7s ease both; animation-delay: .41s; }
.hero--split .hero__lead             { animation: ag-fadeIn  .6s ease both; animation-delay: .58s; }
.hero--split .hero__actions          { animation: ag-fadeUp  .5s ease both; animation-delay: .72s; }
.hero--split .hero__trust            { animation: ag-fadeIn  .6s ease both; animation-delay: .88s; }
.hero--split .hero__featured-content { animation: ag-slideRight .7s ease both; animation-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .hero--split * { animation-duration: .01ms !important; }
}

/* ============================================================
   RESPONSIVE — split hero collapse
   ============================================================ */
@media (max-width: 1080px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero--split .hero__copy {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .hero__featured { min-height: 380px; }
  .hero__featured-ghost { font-size: clamp(72px, 18vw, 140px); }
}

@media (max-width: 600px) {
  .hero__row-1, .hero__row-3 { font-size: clamp(64px, 18vw, 110px); }
  .hero__row-ghost { font-size: clamp(32px, 9vw, 56px); }
  .hero__featured { min-height: 320px; }
  .hero__featured-price-row { flex-direction: column; gap: 16px; }
  .hero__featured-btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  /* topbar: drop the label, let the rate strip sit on one tidy line */
  .topbar__inner { height: auto; min-height: 40px; padding: 7px 0; gap: 12px; }
  .topbar__rates { gap: 8px 14px; font-size: 12px; }
  .topbar__rates-label { display: none; }
  /* hero / about CTAs: full-width stacked buttons, no text wrap */
  .hero__actions, .about-lead__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .about-lead__actions .btn { width: 100%; white-space: nowrap; padding: 15px 18px; }
  .about-cycle { grid-template-columns: 1fr; }
  .about-hero__stats { gap: 22px 32px; }
  .cars-grid { grid-template-columns: 1fr; }
  .bigcalc__grid { grid-template-columns: 1fr; }
  .podbor__grid { grid-template-columns: 1fr; }
  .podbor__row { grid-template-columns: 1fr; }
  .podbor__summary b { font-size: 44px; }
  .cars-grid--cat { grid-template-columns: 1fr; }
  .catmain__sort { width: 100%; }
  .catmain__sort .field__select { flex: 1; min-width: 0; }
  .carincl { grid-template-columns: 1fr; }
  .carpage__top { gap: 22px; }
  .bigcalc__tabs { max-width: none; }
  .bigcalc__tabs button { font-size: 14px; padding: 12px 8px; }
  .why-grid, .steps { grid-template-columns: 1fr; }
  .calc__fields { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__trust { gap: 24px; }
  .section { padding: 64px 0; }
  .calc__total-val { font-size: 24px; }
}

/* ====================================================================
   FLOATING CONTACTS
   ==================================================================== */
.float-contacts {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px;
}
.float-contacts__btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .18s, box-shadow .18s;
  color: #fff;
}
.float-contacts__btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.float-contacts__btn svg { width: 24px; height: 24px; }
.float-contacts__btn--tg { background: #229ED9; }
.float-contacts__btn--wa { background: #25D366; }
@media (max-width: 600px) { .float-contacts { bottom: 16px; right: 14px; } }

/* ====================================================================
   SCROLL PROGRESS BAR
   ==================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; pointer-events: none;
  background: linear-gradient(90deg, var(--gold) 0%, #d4973a 100%);
  transition: width .08s linear;
}

/* ====================================================================
   DISPATCH TIMER
   ==================================================================== */
.hero__dispatch {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 13px; color: var(--muted);
}
.hero__dispatch-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #4CAF50; box-shadow: 0 0 0 2px rgba(76,175,80,.3);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(76,175,80,.3); }
  50% { box-shadow: 0 0 0 5px rgba(76,175,80,.12); }
}
.hero__dispatch-txt b { color: var(--gold); }

/* ====================================================================
   CAR CARD — savings badge + compare button
   ==================================================================== */
.car__saved {
  position: absolute; bottom: 8px; left: 8px; z-index: 2;
  background: rgba(20,18,14,.82); backdrop-filter: blur(4px);
  color: #5adb7c; font-size: 11px; font-weight: 700;
  letter-spacing: .03em; padding: 4px 8px; border-radius: 6px;
  pointer-events: none;
}
.car__foot {
  display: flex; gap: 8px; align-items: stretch;
}
.car__foot .car__btn { flex: 1; }
.car__compare {
  width: 44px; flex-shrink: 0; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg-2);
  cursor: pointer; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background .15s, color .15s, border-color .15s;
}
.car__compare:hover, .car__compare.is-active {
  background: rgba(176,124,38,.12);
  border-color: var(--gold); color: var(--gold);
}

/* ====================================================================
   WHATSAPP BUTTON
   ==================================================================== */
.btn--wa {
  background: #25D366; color: #fff; border: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn--wa:hover { background: #1fb959; color: #fff; }
.btn--wa svg { width: 18px; height: 18px; }

/* ====================================================================
   PODBOR WA CTA
   ==================================================================== */
.podbor__wa-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 24px; padding: 18px 24px;
  background: var(--bg-2); border-radius: 12px; border: 1px solid var(--line);
}
.podbor__wa-cta > span { font-size: 15px; color: var(--muted); }
@media (max-width: 600px) {
  .podbor__wa-cta { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ====================================================================
   COMPARE BAR
   ==================================================================== */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--bg-2); border-top: 1px solid var(--line);
  padding: 14px 24px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.14);
  animation: ag-slideUp .22s ease;
}
@keyframes ag-slideUp {
  from { transform: translateY(100%); }
  to { transform: none; }
}
.compare-bar__count { font-weight: 600; white-space: nowrap; font-size: 14px; }
.compare-bar__cars { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.compare-bar__car {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-3); border-radius: 6px;
  padding: 5px 10px; font-size: 13px;
}
.compare-bar__car button {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 0; line-height: 1; font-size: 12px;
}
.compare-bar__car button:hover { color: var(--text); }
.compare-bar__go { padding: 10px 20px; white-space: nowrap; }
.compare-bar__clear {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 13px; padding: 8px; white-space: nowrap;
}
.compare-bar__clear:hover { color: var(--text); }

/* ====================================================================
   COMPARE MODAL
   ==================================================================== */
.compare-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.compare-modal__box {
  background: var(--bg-1); border-radius: 16px; padding: 32px;
  max-width: 960px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative;
}
.compare-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--muted); padding: 8px; border-radius: 8px;
  transition: background .12s;
}
.compare-modal__close:hover { background: var(--bg-2); color: var(--text); }
.compare-modal__title { font-size: 22px; font-weight: 700; margin: 0 0 24px; }
.compare-modal__table { display: grid; gap: 1px; background: var(--line); }
.cmt-head, .cmt-label, .cmt-val { background: var(--bg-1); padding: 14px 16px; }
.cmt-head { background: var(--bg-2); }
.cmt-head b { display: block; font-size: 14px; font-weight: 700; }
.cmt-head span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.cmt-head a { display: block; font-size: 12px; color: var(--gold); margin-top: 6px; }
.cmt-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.cmt-val { font-size: 14px; }
@media (max-width: 600px) {
  .compare-modal { padding: 8px; }
  .compare-modal__box { padding: 20px 16px; border-radius: 12px; }
  .compare-bar { padding: 10px 16px; gap: 8px; }
}

/* ====================================================================
   STICKY CAR BAR
   ==================================================================== */
.car-sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  background: var(--bg-1); border-bottom: 1px solid var(--line);
  padding: 12px 24px;
  display: flex; align-items: center; gap: 16px;
  transform: translateY(-100%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.car-sticky--show { transform: none; }
.car-sticky__name {
  font-weight: 600; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.car-sticky__price { font-weight: 700; font-size: 17px; white-space: nowrap; }
.car-sticky .btn { padding: 10px 20px; white-space: nowrap; }
@media (max-width: 600px) {
  .car-sticky { padding: 10px 16px; gap: 10px; }
  .car-sticky__name { font-size: 13px; }
  .car-sticky__price { font-size: 14px; }
  .car-sticky .btn { padding: 9px 14px; font-size: 13px; }
}

/* ====================================================================
   TOPBAR OFFICES DROPDOWN
   ==================================================================== */
.topbar__offices { position: relative; }
.topbar__offices-btn {
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: inherit; padding: 2px 0; opacity: .9;
}
.topbar__offices-btn:hover { opacity: 1; }
.topbar__offices-btn svg { width: 11px; height: 11px; }
.topbar__offices-drop {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: 12px; min-width: 270px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  padding: 8px; z-index: 700;
  animation: ag-fadeDown .16s ease;
}
@keyframes ag-fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.topbar__office {
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto;
  gap: 1px 12px; padding: 10px 12px; border-radius: 8px;
  text-decoration: none; color: inherit; transition: background .12s;
}
.topbar__office:hover { background: var(--bg-2); }
.topbar__office b { font-size: 14px; grid-column: 1; grid-row: 1; font-weight: 600; }
.topbar__office i { font-size: 11px; color: var(--muted); font-style: normal; grid-column: 1; grid-row: 2; }
.topbar__office span { font-size: 13px; color: var(--gold); grid-column: 2; grid-row: 1 / 3; align-self: center; white-space: nowrap; }
@media (max-width: 768px) { .topbar__office-link { display: none; } }

/* Home proof hero and compact real delivery previews. */
.hero--proof { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); min-height: calc(100vh - 118px); padding: 0; }
.hero--proof .hero__copy { padding: clamp(52px, 7vh, 94px) clamp(28px, 5vw, 88px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.hero__headline { font-family: var(--font-display); font-size: clamp(52px, 6.2vw, 96px); font-weight: 700; line-height: .92; text-transform: uppercase; margin: 18px 0 0; }
.hero--proof .hero__lead { max-width: 560px; margin-top: 24px; }
.hero__trust--proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.hero__proof-item { border-top: 1px solid var(--line); padding-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.hero__proof-item b { font-family: var(--font-display); font-size: 16px; letter-spacing: .03em; text-transform: uppercase; }
.hero__proof-item span { color: var(--text-3); font-size: 12px; line-height: 1.35; }
.hero__proof-card { position: relative; min-height: 560px; overflow: hidden; background: #171511; color: #fff; display: flex; align-items: flex-end; }
.hero__proof-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: #22201b; }
.hero__proof-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 34%, rgba(0,0,0,.42) 100%); z-index: 1; }
.hero__proof-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(13,12,10,.9) 100%); z-index: 2; }
.hero__proof-media img { position: relative; z-index: 0; display: block; height: 82%; width: auto; max-width: 82%; object-fit: cover; box-shadow: 0 24px 70px rgba(0,0,0,.42); }
.hero__proof-content { position: relative; z-index: 3; padding: 32px clamp(24px, 3vw, 48px); max-width: 560px; }
.hero__proof-kicker { display: block; margin-bottom: 8px; color: #e3b55d; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero__proof-content h2 { font-size: clamp(28px, 3vw, 42px); text-transform: uppercase; margin: 0; }
.hero__proof-content p { margin: 12px 0 16px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero__proof-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 700; }
.hero__proof-link svg { width: 15px; height: 15px; color: #e3b55d; }

.proofcases__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.proofcase { display: grid; grid-template-columns: 112px minmax(0, 1fr); min-height: 168px; overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); color: inherit; text-decoration: none; transition: border-color .2s, transform .2s; }
.proofcase:hover { border-color: var(--line); transform: translateY(-3px); }
.proofcase__media { position: relative; min-height: 100%; overflow: hidden; background: var(--media-bg); }
.proofcase__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proofcase__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.72) 100%); }
.proofcase__media span { position: absolute; z-index: 1; left: 9px; bottom: 9px; color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.proofcase__body { padding: 15px; min-width: 0; display: flex; flex-direction: column; }
.proofcase__body time { color: var(--text-3); font-size: 12px; }
.proofcase__body p { margin: 8px 0; color: var(--text-2); font-size: 13px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.proofcase__body b { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-family: var(--font-display); font-size: 12px; letter-spacing: .03em; text-transform: uppercase; }
.proofcase__body b svg { width: 13px; height: 13px; }

@media (max-width: 1080px) {
  .hero--proof { grid-template-columns: 1fr; min-height: auto; }
  .hero--proof .hero__copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero__proof-card { min-height: 480px; }
  .proofcases__grid { grid-template-columns: 1fr; max-width: 720px; }
}
@media (max-width: 650px) {
  .hero--proof .hero__copy { padding: 46px 18px 42px; }
  .hero__headline { font-size: 54px; }
  .hero__trust--proof { grid-template-columns: 1fr; gap: 12px; }
  .hero__proof-card { min-height: 440px; }
  .hero__proof-content { padding: 24px 18px; }
  .hero__proof-media img { height: 78%; max-width: 78%; }
  .proofcase { grid-template-columns: 96px minmax(0, 1fr); min-height: 146px; }
}
/* Compact catalog header and saved cars. */
.catpage-hero--compact { padding: 28px 0 6px; }
.catpage-hero--compact .catpage-hero__title { margin-top: 14px; font-size: clamp(38px, 4.25vw, 58px); white-space: nowrap; }
.catpage-hero--compact p { max-width: none; margin-top: 10px; }
.catpage--compact { padding-top: 20px; }
.catmain__tools { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.catmain__favorites, .hdr__favorites, .car__favorite { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--surface); color: var(--text-2); cursor: pointer; transition: color .18s, border-color .18s, background .18s, transform .18s; }
.catmain__favorites { height: 45px; gap: 8px; padding: 0 13px; border-radius: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.catmain__favorites svg { width: 18px; height: 18px; }
.catmain__favorites b { min-width: 16px; color: var(--gold); }
.catmain__favorites:hover, .catmain__favorites.is-active, .hdr__favorites:hover, .car__favorite:hover, .car__favorite.is-active { color: var(--gold); border-color: rgba(216,168,76,.62); background: rgba(216,168,76,.08); }
.hdr__favorites { position: relative; width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.hdr__favorites svg { width: 18px; height: 18px; }
.hdr__favorites span { position: absolute; top: -5px; right: -5px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 50%; background: var(--gold); color: #1a1206; font-size: 10px; font-weight: 800; line-height: 16px; text-align: center; }
.car { position: relative; }
.car__favorite { position: absolute; z-index: 4; right: 12px; top: 12px; width: 36px; height: 36px; border-radius: 50%; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.car__favorite svg { width: 18px; height: 18px; }
@media (max-width: 1080px) { .catpage-hero--compact .catpage-hero__title { white-space: normal; } }
@media (max-width: 650px) {
  .catpage-hero--compact { padding-top: 24px; }
  .catmain__tools, .catmain__favorites, .catmain__sort { width: 100%; }
  .catmain__favorites { justify-content: center; }
  .hdr__favorites { width: 34px; height: 34px; }
}
/* SEO service pages: shared white AUTOGEAR template. */
.service-hero { border-bottom: 1px solid var(--line); background: var(--bg-1); }
.service-hero__inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
.service-hero__copy { padding: 58px 0 64px; max-width: 880px; }
.service-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--text-3); font-size: 12px; }
.service-breadcrumb a { color: inherit; text-decoration: none; }
.service-breadcrumb a:hover { color: var(--gold); }
.service-hero h1 { margin: 14px 0 0; font-family: var(--font-display); font-size: clamp(44px, 5vw, 76px); font-weight: 700; line-height: .98; letter-spacing: 0; text-transform: uppercase; }
.service-hero__copy > p { max-width: 680px; margin: 20px 0 0; color: var(--text-2); font-size: 16px; line-height: 1.7; }
.service-hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.service-hero__actions .text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 700; text-decoration: none; }
.service-hero__actions .text-link:hover { color: var(--gold); }
.service-hero__actions svg, .service-hero__aside svg { width: 15px; height: 15px; }
.service-hero__aside { align-self: stretch; display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 52px 0 52px 54px; border-left: 1px solid var(--line); }
.service-hero__aside span { color: var(--gold); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-hero__aside b { max-width: 340px; font-family: var(--font-display); font-size: 27px; line-height: 1.05; text-transform: uppercase; }
.service-hero__aside a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 14px; font-weight: 700; text-decoration: none; }
.service-hero__aside a:hover { color: var(--gold); }
.service-section { padding: 76px 0; }
.service-section--soft { background: var(--bg-2); }
.section-head--line { align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.section-head--line p { max-width: 460px; }
.service-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--line); }
.service-step { min-height: 190px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-step span { color: var(--gold); font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.service-step h3 { max-width: 260px; margin: 40px 0 0; font-size: 20px; line-height: 1.2; }
.service-copy { max-width: 920px; }
.service-copy h2 { margin-top: 14px; }
.service-copy p { max-width: 820px; color: var(--text-2); font-size: 16px; line-height: 1.7; }
.service-proof { border-top: 1px solid var(--line); }
@media (max-width: 900px) { .service-hero__inner { grid-template-columns: 1fr; } .service-hero__aside { padding: 34px 0; border-left: 0; border-top: 1px solid var(--line); } .service-steps { grid-template-columns: 1fr; } .service-step { min-height: 120px; } .service-step h3 { margin-top: 22px; } }
@media (max-width: 650px) { .service-hero__copy, .service-section { padding-top: 42px; padding-bottom: 42px; } .service-hero h1 { font-size: 46px; } .service-hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; } .service-hero__aside b { font-size: 24px; } .service-step { padding: 22px 18px; } }
.car__inquiry { min-height: 42px; flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 10px; border: 1px solid #22b95f; border-radius: 8px; color: #12863f; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .03em; text-decoration: none; text-transform: uppercase; }
.car__inquiry:hover { background: rgba(34,185,95,.09); }
.car__inquiry svg { width: 16px; height: 16px; }
.car__foot { flex-wrap: wrap; }
.car__foot .car__btn { min-width: 0; flex: 1 1 140px; }
@media (max-width: 650px) { .car__inquiry { flex-basis: calc(100% - 48px); } }