.hero {
  position: relative;
  min-height: clamp(460px, 62vw, 660px);
  background: #0E2547;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 95% at 66% 46%, #1B4174 0%, #0E2547 52%, #071426 100%);
}
.hero__photo {
  position: absolute;
  right: 60px; bottom: 132px;
  width: min(860px, 58vw); height: 372px;
  border: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: .5;
}
.hero__photo span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__vertical {
  position: absolute;
  left: 34px;
  top: 23%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__inner { position: relative; padding-block: clamp(28px, 6vw, 96px) 96px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .82;
  white-space: nowrap;
}
.hero__title span { display: block; font-size: clamp(48px, 12.6vw, 182px); color: #fff; }
.hero__title span + span {
  padding-left: clamp(0px, 22vw, 330px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .85);
}
.hero__claim {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(20px, 4vw, 46px);
}
.hero__claim::before {
  content: "";
  flex: none;
  width: 3px; height: 52px;
  background: var(--red);
  transform: skewX(-16deg);
}
.hero__claim p {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.45;
  color: var(--mist);
  max-width: 330px;
}
.hero__stats {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .16);
  height: 76px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  margin-top: clamp(24px, 4vw, 44px);
}
.hero__stat { display: flex; align-items: baseline; gap: 10px; }
.hero__stat b {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero__stat span {
  font-size: clamp(9px, .8vw, 11px);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
}
.hero__stat i { font-style: normal; color: var(--red); font-weight: 700; font-size: 18px; margin-left: 20px; }
@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero__inner { padding-block: 28px 36px; }
  .hero__stats { margin-top: 26px; }
}
@media (max-width: 900px) {
  .hero__photo, .hero__vertical { display: none; }
  .hero__title { white-space: normal; }
  .hero__title span + span { padding-left: 0; -webkit-text-stroke-width: 1.5px; }
  .hero__stats { height: auto; padding-block: 16px; flex-wrap: wrap; gap: 14px 22px; }
  .hero__stat i { display: none; }
}
.searchbar {
  position: relative;
  z-index: 5;
  margin-top: -56px;
  margin-bottom: 0;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: stretch;
}
.searchbar::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 46px;
  background: var(--red);
  transform: skewX(-9deg);
  clip-path: polygon(7% 0%, 100% 0%, 80% 100%, 36% 100%);
}
.searchbar__fields {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding-left: 56px;
  min-width: 0;
}
.searchbar__cell {
  flex: 1;
  min-width: 0;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.searchbar__cell:last-of-type { border-right: 0; }
.searchbar__cell .field__label { margin-bottom: 6px; }
.searchbar__cell .select__button {
  height: auto;
  padding: 0;
  border: 0;
  font-size: 18px;
  font-weight: 500;
}
.searchbar__cell .select__button:hover { color: var(--red); }
.searchbar__go { display: flex; align-items: center; padding: 12px 22px 12px 8px; }
@media (min-width: 641px) and (max-width: 1100px) {
  .searchbar {
    flex-direction: column; margin-top: -30px;
  }
  .searchbar::before {
    display: none;
  }
  .searchbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    position: relative;
  }
  .searchbar__fields {
    display: contents;
  }
  .searchbar__cell:first-child {
    grid-column: 1;
    grid-row: 1;
    border-bottom: 1px solid var(--border);
  }
  .searchbar__cell:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    border-bottom: 1px solid var(--border);
  }
  .searchbar__cell--wide {
    grid-column: 1 / 3;
    grid-row: 2;
    border-right: 1px solid var(--border) !important;
    width: calc(100% - 237px);
  }
  .searchbar__go {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
  .searchbar__go .btn {
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .searchbar { flex-direction: column; margin-top: -30px; }
  .searchbar::before { display: none; }
  .searchbar__fields { flex-direction: column; padding-left: 0; }
  .searchbar__cell { border-right: 0; border-bottom: 1px solid var(--border); padding: 14px 18px; }
  .searchbar__go { padding: 14px; }
  .searchbar__go .btn { width: 100%; }
}
.brands-grid {
  display: grid;
  grid-template-columns: 96px 604px minmax(0, 1fr);
  align-items: start;
}
.brands__head { padding-right: 56px; }
.brands__list { display: flex; flex-direction: column; }
.brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  cursor: pointer;
  transition: color .22s var(--ease);
}
.brand-row__bar {
  width: 44px; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.brand-row__name { flex: 1; }
.brand-row__count {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}
.brand-row.is-active,
.brand-row:hover { color: var(--red); }
.brand-row.is-active .brand-row__bar,
.brand-row:hover .brand-row__bar { transform: scaleX(1); }
.brand-preview {
  position: relative;
  height: 70%;
  margin-top: auto;
  overflow: hidden;
}
.brand-preview__note {
  position: absolute;
  left: 40px; top: 40px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
.brand-preview__body {
  position: absolute;
  left: 40px; right: 40px; bottom: 40px;
}
.brand-preview__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
}
.brand-preview__model {
  font-size: 16px;
  color: var(--mist);
  margin-top: 0px;
}
.brand-preview__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 5px;
}
.brand-preview__price b {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.brand-preview__price span {
  font-size: clamp(24px, 2.6vw, 34px);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--white);
}
.brand-preview.is-swapping .brand-preview__body { animation: bzFadeIn .35s var(--ease); }
@media (max-width: 1200px) {
  .brands-grid { grid-template-columns: 96px minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 1100px) {
  .brands-grid { grid-template-columns: 1fr; gap: 18px; }
  .brands__head { padding-right: 0; }
  .brand-preview { display: none; }
  .brand-row { font-size: 22px; padding: 12px 0; }
  .brand-row__bar { display: none; }
}
/* «01 · марки» на главной. Числа сняты замером трёх кадров макета
   «Главная 1a - адаптив.dc.html» (1440, 768, 390). Превью — по решению
   владельца: его высота, цвета и отступы не трогаются; с 1100px оно скрыто,
   и блок, как «услуги» и «почему мы», переходит к раскладке планшета. */
/* Метка — как у «услуг» (решение владельца 19.09.2026, поверх макета, где у
   «марок» отступ 8px и линия светлее). */
.brands-grid .rail { padding-top: 0; }
.brands-grid .rail__num,
.brands-grid .rail__label { line-height: normal; }
.brands-grid .rail__line { background: var(--border-alt); }
.brand-row { line-height: normal; }
@media (min-width: 1101px) {
  /* Метка стоит в левом поле страницы, превью доходит до правого края. */
  .brands-grid { margin-inline: calc(var(--pad) * -1); }
  .brands__head .display { font-size: 72px; }
  .brands__lead { font-size: 15px; line-height: normal; }
}
/* Планшет и телефон: метка строкой, заголовок в одну строку, подписи нет.
   Зазор до списка — отступ превью в макете. */
@media (max-width: 1100px) {
  .wrap:has(> .brands-grid) { padding-inline: 40px; }
  .brands-grid { gap: 0; margin-inline: 0; }
  .brands-grid .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .brands-grid .rail__num { font-size: 13px; }
  .brands-grid .rail__line { display: none; }
  .brands-grid .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .brands__head .display { font-size: 48px; line-height: .96; }
  .brands__head .display br,
  .brands__lead { display: none; }
  .brands__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    margin-top: 24px;
  }
  .brand-row { font-size: 24px; border-top: 0; border-bottom: 1px solid var(--border); }
  .brand-row__count { font-size: 13px; }
}
@media (max-width: 560px) {
  .wrap:has(> .brands-grid) { padding-inline: 20px; }
  .brands-grid .rail { gap: 12px; margin-bottom: 6px; }
  .brands-grid .rail__num { font-size: 12px; }
  .brands-grid .rail__label { font-size: 10px; letter-spacing: .18em; }
  .brands__head .display { font-size: 36px; line-height: .98; }
  .brands__list { display: flex; margin-top: 18px; }
  .brand-row { min-height: 52px; padding: 0; font-size: 22px; }
  /* Строка «Все марки» — единственная без счётчика: в макете это красная
     ссылка 15px, а не марка. */
  .brands__list > .brand-row:not(:has(.brand-row__count)) {
    border-bottom: 0;
    font-family: var(--font-text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: normal;
    color: var(--red);
  }
}
/* Услуги на главной. Числа сняты замером трёх кадров макета «Главная 1a -
   адаптив.dc.html» (1440, 768, 390). В макете высоты строк и фото заданы без
   полей, здесь — с полями: 132 + 44 + 1 = 177, 272 + 45 = 317, 300 + 24 = 324. */
.section:has(> .wrap > .svc-grid) { margin-top: 96px; padding-block: 96px; }
.svc-grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 85px;
  align-items: start;
  /* Метка стоит в левом поле страницы, как в макете. */
  margin-inline: calc(var(--pad) * -1);
}
/* Подсказку «наведите на строку» владелец решил не выводить (19.09.2026);
   третья колонка остаётся пустой, как место подсказки в макете. */
.svc-grid__aside { display: none; }
.svc-grid .rail { padding-top: 0; }
.svc-grid .rail__num,
.svc-grid .rail__label { line-height: normal; }
.svc-grid .rail__line { background: var(--border-alt); }
.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-right: 48px;
}
.svc-head .display { font-size: 72px; }
.svc-head .lead { font-size: 15px; line-height: 1.5; }
.svc-row {
  border-top: 1px solid var(--border-alt);
  overflow: hidden;
  height: 177px;
  transition: height .3s var(--ease);
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 22px 48px 22px 0;
  cursor: pointer;
}
.svc-row.is-open { height: 317px; }
.svc-row__num {
  font-family: var(--font-display);
  font-size: 104px;
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.05em;
  color: var(--num-muted);
  font-variant-numeric: tabular-nums;
  width: 190px;
  flex: none;
  transition: color .3s var(--ease);
}
.svc-row.is-open .svc-row__num { color: var(--red); }
.svc-row__body { flex: 1; min-width: 0; padding-top: 6px; }
.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1;
}
.svc-row__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 420px;
  margin-top: 14px;
}
/* В макете ссылка — блок во всю свою ширину: строчный блок добавлял строке 3px. */
.svc-row .arrow-link { display: flex; width: max-content; line-height: normal; }
.svc-row__photo {
  width: 324px; height: 224px;
  flex: none;
  background: linear-gradient(140deg, #13315C, #0E2547);
  opacity: 0;
  transition: opacity .3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.svc-row.is-open .svc-row__photo { opacity: 1; }
.svc-row__photo span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}
/* Планшет и телефон: без раскрытия строк, метка строкой над заголовком,
   подписи под заголовком в макете нет. */
@media (max-width: 1100px) {
  .section:has(> .wrap > .svc-grid) > .wrap { padding-inline: 40px; }
  .svc-grid { grid-template-columns: minmax(0, 1fr); margin-inline: 0; }
  .svc-grid .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .svc-grid .rail__num { font-size: 13px; }
  .svc-grid .rail__line { display: none; }
  .svc-grid .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .svc-head { margin-bottom: 28px; padding-right: 0; }
  .svc-head .display { font-size: 48px; line-height: .96; }
  .svc-head .lead { display: none; }
  .svc-row,
  .svc-row.is-open { height: auto; gap: 22px; padding: 22px 0; cursor: default; }
  .svc-row.is-open .svc-row__num { color: var(--num-muted); }
  .svc-row__num { width: 90px; font-size: 56px; }
  .svc-row__body { padding-top: 0; }
  .svc-row__title { font-size: 28px; }
  .svc-row__text { max-width: none; margin-top: 10px; font-size: 15px; }
  .svc-row .arrow-link { margin-top: 14px; }
  .svc-row__photo,
  .svc-row.is-open .svc-row__photo { width: 170px; height: 114px; padding: 0; opacity: 1; }
  .svc-row__photo span { display: none; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .section:has(> .wrap > .svc-grid) { margin-top: 64px; padding-block: 56px; }
}
/* Телефон: строки становятся карточками — фото сверху, номер мелкий красный,
   ссылка набрана кнопкой с рамкой без стрелки. */
@media (max-width: 560px) {
  .section:has(> .wrap > .svc-grid) { margin-top: 44px; padding-block: 40px; }
  .section:has(> .wrap > .svc-grid) > .wrap { padding-inline: 20px; }
  .svc-grid .rail { gap: 12px; margin-bottom: 6px; }
  .svc-grid .rail__num { font-size: 12px; }
  .svc-grid .rail__label { font-size: 10px; letter-spacing: .18em; }
  .svc-head { margin-bottom: 22px; }
  .svc-head .display { font-size: 36px; line-height: .98; }
  .svc-row,
  .svc-row.is-open {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
  }
  .svc-row + .svc-row { margin-top: 14px; }
  .svc-row__photo,
  .svc-row.is-open .svc-row__photo { order: -1; width: auto; height: 128px; align-self: stretch; }
  .svc-row__num,
  .svc-row.is-open .svc-row__num {
    width: auto;
    padding: 16px 18px 0;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: normal;
    color: var(--red);
  }
  .svc-row__body { align-self: stretch; padding: 8px 18px 18px; }
  .svc-row__title { font-size: 26px; }
  .svc-row__text { font-size: 14px; }
  .svc-row .arrow-link {
    width: auto;
    justify-content: center;
    height: 50px;
    margin-top: 16px;
    border: 1px solid var(--outline-ink);
    border-radius: 12px;
    color: var(--outline-ink);
  }
  .svc-row .arrow-link i,
  .svc-rule { display: none; }
}
.plate-cta {
  position: relative;
  min-height: clamp(400px, 46vw, 560px);
  background: #0E2547;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}
.plate-cta .slab { top: 42%; }
.plate-cta__inner { position: relative; width: 100%; padding-block: 56px; }
.plate-cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 76px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .96;
  color: #fff;
  margin-block: 20px 44px;
}
.plate-form {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #fff;
  padding: 10px 10px 10px 34px;
  box-shadow: 0 30px 60px rgba(7, 20, 38, .42);
  max-width: 100%;
}
.plate-form__input {
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--black);
  font-variant-numeric: tabular-nums;
  padding-right: 34px;
  width: clamp(200px, 34vw, 340px);
  text-transform: uppercase;
  height: 76px;
}
.plate-form__input:focus { outline: none; }
.plate-form__input::placeholder { color: #C4CDD6; }
.plate-form__input--vin {
  font-size: clamp(20px, 2.2vw, 30px);
  /* 17 знаков из одних «W» занимают 18,08em, плюс поля 34 и 2px. */
  width: calc(18.1em + 36px);
}
.plate-form__btn {
  height: 76px;
  padding: 0 40px;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  flex: none;
}
.plate-form__btn:hover { background: var(--red); }
.plate-cta__note { margin-top: 26px; font-size: 14px; color: var(--mist); }
.plate-cta__note a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.plate-cta__note a:hover { color: #fff; border-color: #fff; }
@media (max-width: 700px) {
  .plate-form {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    width: 100%;
  }
  .plate-form__input {
    padding: 0 0 16px;
    text-align: center;
    width: 100%;
    height: auto;
  }
  .plate-form__btn { height: 52px; width: 100%; padding-inline: 20px; }
  .plate-form__input--vin { font-size: clamp(16px, 5.2vw, 20px); }
}
/* «Сколько стоит ваш автомобиль» на главной. Числа сняты замером трёх кадров
   макета «Главная 1a - адаптив.dc.html» (1440, 768, 390); форма на телефоне
   встаёт столбиком с 700px, как и прежде. Кегль VIN — решение владельца
   19.09.2026: 30/28/24px, насколько позволяет длина номера в 17 знаков. */
.plate-cta .kicker,
.plate-cta__note { line-height: normal; }
@media (min-width: 1101px) {
  .plate-cta .kicker { letter-spacing: .26em; }
}
@media (max-width: 1100px) {
  .plate-cta .plate-cta__inner { padding-inline: 40px; }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .plate-cta__title { font-size: 48px; line-height: .98; margin-block: 16px 30px; }
  .plate-form { padding: 8px 8px 8px 22px; }
  /* 28px на 768; на более узком экране кегль уменьшается, чтобы и VIN из одних «W» (18,08em)
     помещался рядом с кнопкой: поля страницы 80, плашки 30, кнопка 122,
     поля текста 22 и 2 — итого 256px. */
  .plate-form__input--vin {
    font-size: clamp(20px, calc((100vw - 256px) / 18.1), 28px);
    width: calc(18.1em + 24px);
  }
  .plate-form__input { height: 56px; padding-right: 22px; }
  .plate-form__btn { height: 56px; padding: 0 26px; font-size: 17px; }
}
@media (max-width: 700px) {
  .plate-cta__title { font-size: 38px; line-height: 1; margin-block: 14px 26px; }
  .plate-cta__title br { display: none; }
  .plate-cta .kicker { font-size: 10px; letter-spacing: .22em; }
  .plate-form__input { height: 60px; padding: 8px 0 16px; }
  .plate-form__input--vin { font-size: clamp(16px, 6.2vw, 24px); }
  .plate-form__btn { font-size: 18px; }
}
@media (max-width: 560px) {
  .plate-cta .plate-cta__inner { padding-inline: 20px; }
}
.why-grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  padding-block: clamp(56px, 8vw, 112px);
}
.why-grid__lead { padding-right: 64px; }
.why-grid__lead p { font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 380px; margin-top: 32px; }
@media (max-width: 1000px) {
  .why-grid { grid-template-columns: 1fr; gap: 26px; }
  .why-grid__lead { padding-right: 0; }
}
/* «03 · почему мы» на главной. Числа сняты замером трёх кадров макета
   «Главная 1a - адаптив.dc.html» (1440, 768, 390). Сетка на /credit/ несёт
   модификатор --flush, поэтому правила ограничены :not(.why-grid--flush) —
   их специфичность выше общих правил узких экранов ниже по файлу. */
.why-grid:not(.why-grid--flush) {
  /* Метка стоит в левом поле страницы, правое поле — внутри сетки. */
  margin-inline: calc(var(--pad) * -1);
  padding-right: var(--pad);
}
.why-grid:not(.why-grid--flush) .rail { padding-top: 0; }
.why-grid:not(.why-grid--flush) .rail__num,
.why-grid:not(.why-grid--flush) .rail__label { line-height: normal; }
/* Линия метки — как у «марок» и «услуг» (решение владельца 19.09.2026; в
   макете у «почему мы» она светлее). */
.why-grid:not(.why-grid--flush) .rail__line { background: var(--border-alt); }
.why-grid:not(.why-grid--flush) .why-grid__lead .display { font-size: 88px; }
.why-grid:not(.why-grid--flush) .accordion__head { padding: 26px 0; }
.why-grid:not(.why-grid--flush) .accordion__item.is-open .accordion__head { padding-bottom: 0; }
.why-grid:not(.why-grid--flush) .accordion__i,
.why-grid:not(.why-grid--flush) .accordion__q { line-height: normal; }
.why-grid:not(.why-grid--flush) .accordion__q { font-size: 28px; }
.why-grid:not(.why-grid--flush) .accordion__body p { padding: 16px 44px 26px 32px; }
@media (max-width: 1100px) {
  .wrap:has(> .why-grid:not(.why-grid--flush)) { padding-inline: 40px; }
  .why-grid:not(.why-grid--flush) {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-inline: 0;
    padding: 56px 0;
  }
  /* Метка не скрывается, а встаёт строкой — как у «марок» и «услуг»
     (решение владельца 19.09.2026, поверх макета, где её здесь нет). */
  .why-grid:not(.why-grid--flush) .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .why-grid:not(.why-grid--flush) .rail__num { font-size: 13px; }
  .why-grid:not(.why-grid--flush) .rail__line { display: none; }
  .why-grid:not(.why-grid--flush) .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .why-grid:not(.why-grid--flush) .why-grid__lead { padding-right: 0; }
  .why-grid:not(.why-grid--flush) .why-grid__lead .display { font-size: 52px; line-height: .94; }
  .why-grid:not(.why-grid--flush) > :last-child { padding-top: 32px; }
  .why-grid:not(.why-grid--flush) .row { margin-top: 12px; }
  /* Кнопки 48px с полями 22px; у тёмной рамка прозрачная, поэтому поле 21px. */
  .why-grid:not(.why-grid--flush) .row .btn { --btn-h: 48px; padding-inline: 22px; }
  .why-grid:not(.why-grid--flush) .row .btn--navy { padding-inline: 21px; }
}
/* Планшет: вопросы — сетка 2×2 открытых карточек, как в макете. */
@media (min-width: 561px) and (max-width: 1100px) {
  .why-grid:not(.why-grid--flush) .accordion {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    border-bottom: 0;
  }
  .why-grid:not(.why-grid--flush) .accordion__item { border-top: 2px solid var(--rule-strong); padding: 18px 0 26px; }
  .why-grid:not(.why-grid--flush) .accordion__head,
  .why-grid:not(.why-grid--flush) .accordion__item.is-open .accordion__head { display: block; padding: 0; cursor: default; }
  .why-grid:not(.why-grid--flush) .accordion__head:hover .accordion__q { color: var(--ink); }
  .why-grid:not(.why-grid--flush) .accordion__i {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
  }
  .why-grid:not(.why-grid--flush) .accordion__q { display: block; font-size: 22px; line-height: 1.1; }
  .why-grid:not(.why-grid--flush) .accordion__sign { display: none; }
  .why-grid:not(.why-grid--flush) .accordion__body { grid-template-rows: 1fr; }
  .why-grid:not(.why-grid--flush) .accordion__body p { padding: 0; margin-top: 10px; font-size: 14px; line-height: 1.55; }
}
/* Телефон: аккордеон без номеров, кнопок в макете нет. */
@media (max-width: 560px) {
  .wrap:has(> .why-grid:not(.why-grid--flush)) { padding-inline: 20px; }
  .why-grid:not(.why-grid--flush) { padding: 40px 0 100px; }
  .why-grid:not(.why-grid--flush) .rail { gap: 12px; margin-bottom: 6px; }
  .why-grid:not(.why-grid--flush) .rail__num { font-size: 12px; }
  .why-grid:not(.why-grid--flush) .rail__label { font-size: 10px; letter-spacing: .18em; }
  .why-grid:not(.why-grid--flush) .why-grid__lead .display { font-size: 38px; line-height: .96; }
  .why-grid:not(.why-grid--flush) > :last-child { padding-top: 24px; }
  .why-grid:not(.why-grid--flush) .accordion__head { padding: 18px 0; }
  .why-grid:not(.why-grid--flush) .accordion__q { font-size: 20px; line-height: 1.15; }
  .why-grid:not(.why-grid--flush) .accordion__sign { font-size: 20px; }
  .why-grid:not(.why-grid--flush) .accordion__body p { padding: 12px 0 18px; font-size: 14px; line-height: 1.6; }
  .why-grid:not(.why-grid--flush) .row { display: none; }
}
.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.catalog-head p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 320px;
  padding-bottom: 8px;
}
.filterbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  margin-top: 30px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.filterbar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 16px 14px;
  flex-wrap: wrap;
}
@media (max-width: 1180px) { .filterbar { top: 62px; } }
@media (max-width: 860px) {
  .filterbar__inner { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .filterbar__inner::-webkit-scrollbar { display: none; }
  .filterbar__inner > * { flex: none; }
}
.popover {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  width: 420px;
  max-width: calc(100vw - 32px);
  background: var(--surface);
  border: 1px solid var(--pop-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  padding: 22px 24px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.popover.is-open { opacity: 1; visibility: visible; transform: none; }
.popover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.popover__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.popover__close { color: var(--gray); font-size: 18px; }
.popover__close:hover { color: var(--red); }
.popover__foot { display: flex; gap: 10px; margin-top: 22px; }
.popover-anchor { position: relative; }
.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 6vw, 92px) 0 22px;
  flex-wrap: wrap;
}
.results-head__count {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.results-head__count b {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.results-head__count span { font-size: 14px; color: var(--ink-2); }
.results-head__tools { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.results-head__sort { display: flex; align-items: center; gap: 10px; }
.results-head__sort > span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray);
}
.car-list { display: flex; flex-direction: column; gap: 16px; }
.car-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1200px) { .car-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .car-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .car-grid { grid-template-columns: 1fr; } }
.car-row {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  min-height: 236px;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.car-row:hover {
  border-color: var(--ink-2);
  box-shadow: 0 18px 40px rgba(14, 37, 71, .1);
}
.car-row__media {
  width: 458px;
  flex: none;
  position: relative;
  overflow: hidden;
}
.car-row__media .badge { position: absolute; left: 14px; top: 14px; z-index: 2; }
.car-row__fav {
  position: absolute;
  right: 14px; top: 14px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(11, 13, 18, .55);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.car-row__fav:hover { background: var(--red); color: #fff; transform: scale(1.08); }
.car-row__fav.is-on { background: var(--red); color: #fff; }
.car-row__body {
  flex: 1;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.car-row__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.05;
}
.car-row__title:hover { color: var(--red); }
.car-row__sub { font-size: 14px; color: var(--ink-2); margin-top: 8px; font-variant-numeric: tabular-nums; }
.car-row__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 22px;
  margin-top: 20px;
}
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec__k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gray);
}
.spec__v { font-size: 15px; color: var(--ink); font-variant-numeric: tabular-nums; }
.car-row__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.car-row__aside {
  width: 268px;
  flex: none;
  border-left: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}
.car-row__price {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.car-row__credit { font-size: 13px; color: var(--ink-2); margin-top: 6px; font-variant-numeric: tabular-nums; }
.car-row__trade { font-size: 12px; color: var(--gray); margin-top: 4px; font-variant-numeric: tabular-nums; }
.car-row__actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
@media (max-width: 1240px) {
  .car-row__media { width: 340px; }
  .car-row__aside { width: 230px; }
}
@media (max-width: 980px) {
  .car-row { flex-wrap: wrap; }
  .car-row__media { width: 100%; height: 220px; }
  .car-row__body { flex-basis: 100%; }
  .car-row__aside {
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--border);
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .car-row__actions { flex-direction: row; margin-top: 0; }
}
@media (max-width: 560px) {
  .car-row__specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .car-row__actions { width: 100%; }
  .car-row__actions .btn { flex: 1; }
}
.car-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.car-card:hover {
  border-color: var(--ink-2);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 37, 71, .12);
}
.car-card__media { position: relative; height: 190px; }
.car-card__media .badge { position: absolute; left: 12px; top: 12px; z-index: 2; }
.car-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.car-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
}
.car-card__title:hover { color: var(--red); }
.car-card__sub { font-size: 13px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.car-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
}
.car-card__price b {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.car-card__price i { font-style: normal; font-size: 15px; color: var(--gray); transition: transform .2s var(--ease); }
.car-card:hover .car-card__price i { transform: translateX(4px); color: var(--red); }
/* Снимок и стрелка — ссылки на карточку (решение владельца 19.09.2026).
   Ссылка вокруг снимка занимает всю высоту медиаблока, иначе у снимка
   перестаёт работать height: 100%; вокруг стрелки — flex, чтобы <i> остался
   блочным и сдвиг при наведении работал. В вёрстке этих ссылок нет. */
.car-card__media > a { display: block; height: 100%; }
.car-card__price > a { display: inline-flex; }
/* У «Похожих» медиаблок несёт .photo: штриховка .photo::before лежит поверх
   снимка на всю площадь и перехватывала щелчок. Она декоративная — щелчок
   проходит сквозь неё к ссылке, вид не меняется. */
.car-card__media::before { pointer-events: none; }
.car-card__credit { font-size: 12px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.car-card--sm .car-card__media { height: 176px; }
.car-card--sm .car-card__title { font-size: 21px; }
.car-card--sm .car-card__price b { font-size: 24px; }
.promo-row {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0E2547;
  position: relative;
  min-height: 236px;
  display: flex;
  align-items: center;
}
.promo-row .slab { left: -60px; right: 40%; top: 118px; height: 76px; }
.promo-row__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 40px;
  gap: 40px;
}
.promo-row__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
  color: #fff;
}
.promo-row__text {
  font-size: 15px;
  line-height: 1.55;
  color: #C4CDD6;
  margin-top: 14px;
  max-width: 480px;
}
.promo-row__side { display: flex; align-items: center; gap: 16px; flex: none; }
.promo-row__photo {
  width: 220px; height: 148px;
  background: linear-gradient(150deg, #1B4174, #071426);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.promo-row__photo span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
}
@media (max-width: 1100px) { .promo-row__photo { display: none; } }
@media (max-width: 760px) {
  .promo-row__inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 22px 20px; }
  .promo-row__side { width: 100%; }
  .promo-row__side .btn { width: 100%; }
}
.car-skeleton { display: flex; min-height: 236px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.car-skeleton__media { width: 458px; flex: none; }
.car-skeleton__body { flex: 1; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.car-skeleton__aside { width: 268px; flex: none; border-left: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 980px) {
  .car-skeleton { flex-direction: column; }
  .car-skeleton__media { width: 100%; height: 200px; }
  .car-skeleton__aside { width: 100%; border-left: 0; border-top: 1px solid var(--border); }
}
.empty {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 44px 0;
  flex-wrap: wrap;
}
.empty__art {
  width: 300px; height: 200px;
  flex: none;
  background: repeating-linear-gradient(115deg, var(--border-alt) 0 2px, var(--section-bg) 2px 14px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty__art span {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 900;
  color: var(--page-bg);
  letter-spacing: -.04em;
}
.empty__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
  color: var(--ink);
}
.empty p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin-top: 16px; max-width: 520px; }
.filters-modal__head {
  flex: none;
  min-height: 76px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.filters-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 34px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 40px;
  align-content: start;
}
.filters-modal__foot {
  flex: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filters-modal__span { grid-column: span 3; }
/* «Показать ещё» под чипами окна: отступ как шаг между чипами (.chip-row,
   gap 8px). Кнопки в вёрстке нет, поэтому правила нет и в её CSS. */
.filters-modal__body [data-show-more] { margin-top: 8px; }
@media (max-width: 900px) {
  .filters-modal__body { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters-modal__span { grid-column: span 2; }
}
@media (max-width: 640px) {
  .filters-modal__body { grid-template-columns: 1fr; }
  .filters-modal__span { grid-column: auto; }
  .filters-modal__foot { flex-direction: column; align-items: stretch; }
  .filters-modal__foot .btn { width: 100%; }
}
.filter-group__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
  margin-bottom: 14px;
}
.range-pair { display: flex; gap: 12px; }
.range-pair .input { height: 48px; font-size: 15px; }
.car-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.car-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .96;
  color: var(--ink);
}
.car-hero__sub { font-size: 16px; color: var(--ink-2); margin-top: 12px; font-variant-numeric: tabular-nums; }
.car-hero__actions { display: flex; gap: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.pill-btn:hover { border-color: var(--red); color: var(--red); }
.pill-btn.is-on { border-color: var(--red); color: var(--red); }
.car-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 388px;
  gap: 40px;
  padding-top: 30px;
  align-items: start;
}
@media (max-width: 1100px) { .car-layout { grid-template-columns: 1fr; } }
.gallery__tabs { margin-bottom: 14px; }
.gallery__main-row { display: flex; gap: 12px; }
.gallery__thumbs {
  width: 98px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery__thumb {
  height: 72px;
  position: relative;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s var(--ease), opacity .2s var(--ease);
  opacity: .8;
}
.gallery__thumb:hover { opacity: 1; }
.gallery__thumb.is-active { border-color: var(--red); opacity: 1; }
.gallery__thumb span {
  position: absolute;
  right: 4px; bottom: 3px;
  font-size: 9px;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}
.gallery__more {
  height: 72px;
  border: 1px dashed var(--border-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}
.gallery__stage {
  flex: 1;
  min-width: 0;
  position: relative;
  height: clamp(240px, 40vw, 512px);
  overflow: hidden;
}
.gallery__stage .badge { position: absolute; left: 20px; top: 20px; z-index: 2; }
.gallery__name {
  position: absolute;
  left: 20px; bottom: 20px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
}
.gallery__index {
  position: absolute;
  right: 20px; bottom: 20px;
  z-index: 2;
  height: 28px;
  padding: 0 12px;
  background: rgba(11, 13, 18, .6);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  font-variant-numeric: tabular-nums;
}
.gallery__zoom {
  position: absolute;
  right: 20px; top: 20px;
  z-index: 2;
  height: 36px;
  padding: 0 14px;
  background: rgba(11, 13, 18, .6);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery__zoom:hover { background: var(--red); color: #fff; }
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  background: rgba(11, 13, 18, .55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background-color .2s var(--ease);
}
.gallery__nav:hover { background: var(--red); color: #fff; }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }
.gallery__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-bg);
  opacity: 0;
  pointer-events: none;
}
.gallery__stage.is-swapping::after { animation: bzFadeOut .3s var(--ease) forwards; }
@media (max-width: 700px) {
  .gallery__main-row { flex-direction: column-reverse; }
  .gallery__thumbs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  .gallery__thumb, .gallery__more { width: 96px; flex: none; }
  .gallery__zoom { display: none; }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(7, 20, 38, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s var(--ease), visibility .28s;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox__stage {
  position: relative;
  width: min(1200px, 92vw);
  height: min(760px, 78vh);
}
.lightbox__close {
  position: absolute;
  right: 24px; top: 24px;
  z-index: 2;
  width: 48px; height: 48px;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { background: var(--red); border-color: var(--red); color: #fff; }
.lightbox__caption {
  position: absolute;
  left: 0; right: 0; bottom: -44px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.checks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 900px) { .checks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .checks-grid { grid-template-columns: 1fr; } }
.check-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s var(--ease);
}
.check-card:hover { border-color: var(--red); }
.check-card__mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.12;
}
.check-card__text { font-size: 13px; color: var(--ink-2); line-height: 1.45; }
.specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
@media (max-width: 800px) { .specs-table { grid-template-columns: 1fr; gap: 0; } }
.specs-table__row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.specs-table__row dt { font-size: 14px; color: var(--gray); width: 190px; flex: none; }
.specs-table__row dd {
  flex: 1;
  font-size: 16px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
  margin: 0;
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 40px;
  padding-top: 26px;
}
@media (max-width: 900px) { .equip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .equip-grid { grid-template-columns: 1fr; } }
.equip__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 14px;
}
.equip__list { display: flex; flex-direction: column; gap: 9px; }
.equip__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.equip__item::before { content: "/"; color: var(--red); }
.equip__extra { display: none; }
.equip.is-expanded .equip__extra { display: flex; }
.calc {
  background: var(--section-bg);
  padding: clamp(24px, 3vw, 40px);
  margin-top: 56px;
}
.calc__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.calc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
@media (max-width: 900px) { .calc__grid { grid-template-columns: 1fr; gap: 26px; } }
.calc__result {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.calc__monthly {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}
.calc__monthly b {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.calc__monthly span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.calc__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.calc__row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.calc__row span:first-child { color: var(--ink-2); }
.calc__row span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; }
.deal {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1100px) { .deal { position: static; } }
.deal__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 26px 26px 28px;
}
.deal__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.deal__id { font-size: 12px; color: var(--gray); font-variant-numeric: tabular-nums; }
.deal__price {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-top: 16px;
  line-height: 1;
}
.deal__old {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.deal__old s { font-size: 14px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.deal__old span { font-size: 13px; color: var(--red); font-weight: 600; }
.deal__credit {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--section-bg);
  border-radius: var(--radius);
}
.deal__credit-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.deal__credit-top span { font-size: 13px; color: var(--ink-2); }
.deal__credit-top b {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.deal__credit-note { font-size: 12px; color: var(--gray); margin-top: 6px; font-variant-numeric: tabular-nums; }
.deal__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.deal__actions .row { gap: 10px; }
.deal__actions .row .btn { flex: 1; }
.deal__note { font-size: 12px; color: var(--gray); line-height: 1.5; margin-top: 14px; }
.dealer__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.dealer__row span:first-child { color: var(--ink-2); flex: none; }
.dealer__row span:last-child { color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.tradein-card {
  border-radius: var(--radius-lg);
  background: #0E2547;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.tradein-card .slab { left: -40px; right: 40%; bottom: 22px; top: auto; height: 54px; transform: rotate(-4deg); }
.tradein-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
  line-height: 1.05;
}
.tradein-card p { font-size: 13px; line-height: 1.5; color: #C4CDD6; margin-top: 10px; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 820px) { .delivery-grid { grid-template-columns: 1fr; } }
.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .2s var(--ease);
}
.info-card:hover { border-color: var(--ink-2); }
.info-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.08;
}
.info-card p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-top: 10px; }
.map-card {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
}
@media (max-width: 820px) { .map-card { flex-direction: column; } }
.map-card__side {
  width: 360px;
  flex: none;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 820px) { .map-card__side { width: 100%; } }
.map {
  flex: 1;
  min-height: 300px;
  position: relative;
  background: var(--map-bg);
  overflow: hidden;
}
.map > [data-yandex-map] {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.map__pin {
  position: absolute;
  transform: translate(-17px, -17px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.map__pin b {
  width: 34px;
  height: 34px;
  border: 3px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(11, 13, 18, .3);
  animation: bzPulse 2.6s ease-in-out infinite;
}
.map__pin b span {
  color: var(--red);
}
.map__label {
  height: 34px;
  padding: 0 14px;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
}
.map__note {
  position: absolute;
  left: 20px; bottom: 16px;
  z-index: 2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
}
.map--tall { height: 480px; margin-top: 34px; }
[class*="ymaps3"][class*="-copyright"],[class*="ymaps3"][class*="-promo"],[class*="ymaps3"][class*="-controls"] {
    display: none;
}
.dark-hero {
  position: relative;
  background: #0E2547;
  overflow: hidden;
  padding-bottom: clamp(40px, 6vw, 64px);
}
.dark-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 76% 40%, #1B4174 0%, #0E2547 55%, #071426 100%);
}
.dark-hero .slab { top: 300px; right: 44%; }
.dark-hero__inner { position: relative; padding-top: 46px; }
.dark-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 56px;
  margin-top: 34px;
  align-items: start;
}
.dark-hero__grid--wide { grid-template-columns: minmax(0, 1fr) 620px; }
@media (max-width: 1100px) {
  .dark-hero__grid, .dark-hero__grid--wide { grid-template-columns: 1fr; gap: 32px; }
  .dark-hero__grid > * { min-width: 0; }
  .dark-hero .slab { display: none; }
}
@media (max-width: 700px) {
  
  .panel .chip-row.flex-nowrap { flex-wrap: wrap; }
  .panel .chip-row.flex-nowrap > .chip { flex: 1 1 calc(50% - 4px); }
}
@media (max-width: 560px) {
  
  .dark-hero .panel .row { flex-wrap: wrap; }
  .dark-hero .panel .row > .btn { flex: 1 1 100%; }
}
.dark-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.4vw, 104px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .84;
  color: #fff;
}
.dark-hero__title i { font-style: normal; color: var(--red); }
.dark-hero__lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--mist);
  max-width: 420px;
  margin-top: 28px;
}
.hero-stats { display: flex; gap: clamp(20px, 3vw, 40px); margin-top: 40px; flex-wrap: wrap; }
.hero-stats__item { border-top: 1px solid rgba(255, 255, 255, .22); padding-top: 14px; }
.hero-stats__item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-stats__item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
  margin-top: 8px;
}
.panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 32px);
  box-shadow: 0 30px 60px rgba(7, 20, 38, .42);
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}
.panel__summary {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--section-bg);
  border-radius: var(--radius);
}
/* Калькулятор кредита в два этапа (решение владельца 19.09.2026): параметры
   с кнопкой «Узнать платёж», затем итог со ссылкой «Изменить параметры».
   Этап ставит разметка до первой отрисовки, переходы ведёт js/credit.js;
   без JavaScript атрибута этапа нет и видно всё сразу. Этап сворачивается по
   высоте и гаснет; переполнение обрезается только на время перехода и у
   свёрнутого этапа — у раскрытого не срезаются фокус чипов и тень ползунка. */
[data-credit-stage] {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .35s var(--ease), opacity .35s var(--ease), visibility .35s;
}
[data-credit-stage] > div { min-height: 0; }
.panel[data-credit-step="params"] [data-credit-stage="result"],
.panel[data-credit-step="result"] [data-credit-stage="params"] {
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
}
.panel[data-credit-moving] [data-credit-stage] > div,
.panel[data-credit-step="params"] [data-credit-stage="result"] > div,
.panel[data-credit-step="result"] [data-credit-stage="params"] > div { overflow: hidden; }
/* Фокус на итог ставит скрипт, чтобы экранный диктор прочитал платёж. */
.panel__summary:focus { outline: none; }
@media (prefers-reduced-motion: reduce) {
  [data-credit-stage] { transition: none; }
}
.terms-list__row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.terms-list__row span { font-size: 14px; color: var(--gray); flex: 1; }
.terms-list__row b {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .req-grid { grid-template-columns: 1fr; } }
.req-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: border-color .2s var(--ease);
}
.req-card:hover { border-color: var(--red); }
.req-card__mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.req-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin-top: 12px;
}
.req-card p { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: 6px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) { .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  padding: 30px 30px 0 0;
  border-right: 1px solid var(--border-alt);
}
.step:last-child { border-right: 0; }
@media (max-width: 560px) { .step { border-right: 0; } }
.step__n {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.055em;
  color: var(--num-muted);
  font-variant-numeric: tabular-nums;
  transition: color .25s var(--ease);
}
.step:hover .step__n { color: var(--red); }
.step__t {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.08;
  margin-top: 22px;
}
.step p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin-top: 12px; }
.step__time {
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-top: 16px;
}
/* «Как оформляем» на /credit/. Числа сняты замером трёх кадров макета
   «Кредит.dc.html» (1440, 768, 390). */
.section:has(.steps-grid) { padding-block: 88px; }
.section:has(.steps-grid) .section-head { gap: 0; margin-bottom: 0; }
.section:has(.steps-grid) .section-head .display { letter-spacing: -.04em; }
/* Метка «02 · оформление» — как у «условий» и меток главной (решение
   владельца 19.09.2026; в макете у блока метки нет). */
.section:has(.steps-grid) .rail { padding-top: 0; }
.section:has(.steps-grid) .rail__num,
.section:has(.steps-grid) .rail__label { line-height: normal; }
.section:has(.steps-grid) .rail__line { background: var(--border-alt); }
@media (min-width: 1101px) {
  /* Метка стоит в левом поле страницы, содержимое блока — на месте макета. */
  .section:has(.steps-grid) .rail-grid { margin-left: calc(var(--pad) * -1); }
  .section:has(.steps-grid) .section-head .display { font-size: 68px; line-height: .92; }
  .section:has(.steps-grid) .section-head__note { max-width: 300px; line-height: normal; padding-bottom: 8px; }
}
@media (max-width: 1100px) {
  .section:has(.steps-grid) { padding-block: 48px; }
  .section:has(.steps-grid) .section-head { padding-bottom: 20px; }
  .section:has(.steps-grid) .rail-grid { grid-template-columns: minmax(0, 1fr); }
  .section:has(.steps-grid) .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .section:has(.steps-grid) .rail__num { font-size: 13px; }
  .section:has(.steps-grid) .rail__line { display: none; }
  .section:has(.steps-grid) .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  /* Планшет: шаги 2×2 без разделителей, поля 24px. Правила стоят ниже
     базовых правил шага — иначе при равной специфичности те перебьют их. */
  .step { padding: 24px 24px 24px 0; border-right: 0; }
  .step__n { font-size: 64px; }
  .step__t { margin-top: 16px; }
  .step p { font-size: 14px; margin-top: 10px; }
  .step__time { font-size: 11px; margin-top: 12px; }
}
@media (max-width: 560px) {
  .section:has(.steps-grid) { padding-block: 32px; }
  .section:has(.steps-grid) .rail { gap: 12px; margin-bottom: 6px; }
  .section:has(.steps-grid) .rail__num { font-size: 12px; }
  .section:has(.steps-grid) .rail__label { font-size: 10px; letter-spacing: .18em; }
  /* На телефоне под заголовком нет линии: шаги идут через 18px. */
  .section:has(.steps-grid) .section-head { padding-bottom: 0; border-bottom: 0; margin-bottom: 18px; }
  .section:has(.steps-grid) .section-head .display { line-height: .98; letter-spacing: -.035em; }
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
@media (max-width: 1100px) { .offers-grid { grid-template-columns: 1fr; } }
.offer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px 28px 30px;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.offer:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(14, 37, 71, .16); }
.offer--navy { background: #0E2547; border-color: #0E2547; color: #fff; }
.offer--tinted { background: var(--section-bg); border-color: var(--border-alt); }
.offer .slab { right: 30%; top: 56px; bottom: auto; height: 60px; transform: rotate(-4deg); opacity: 0; }
.offer--navy .slab { opacity: .9; }
.offer__inner { position: relative; flex: 1; display: flex; flex-direction: column; }
.offer__big {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-top: 16px;
}
.offer--navy .offer__big { color: #fff; }
.offer__t {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-top: 16px;
  color: var(--ink);
}
.offer--navy .offer__t { color: #fff; }
.offer p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-top: 10px; }
.offer--navy p { color: #C4CDD6; }
.offer .btn { margin-top: auto; align-self: flex-start; }
/* «Спецпредложения» на /credit/. Числа сняты замером трёх кадров макета
   «Кредит.dc.html» (1440, 768, 390) — эталон блока. Метка «03 · специально
   для вас» — как у «условий» (решение владельца 19.09.2026, в макете её нет).
   Красная полоса остаётся за числом (S-89, решение владельца). Нижнее поле —
   отступ следующего блока в макете: у блока вопросов на сайте своего нет.
   Правила сильнее общих правил карточек ниже по файлу за счёт :has. */
.section:has(.offers-grid) { padding-block: 96px; }
.section:has(.offers-grid) .rail { padding-top: 0; }
.section:has(.offers-grid) .rail__num,
.section:has(.offers-grid) .rail__label,
.section:has(.offers-grid) .section-head .accent,
.section:has(.offers-grid) .offer__kicker { line-height: normal; }
.section:has(.offers-grid) .rail__line { background: var(--border-alt); }
.section:has(.offers-grid) .section-head { gap: 0; margin-bottom: 0; }
.section:has(.offers-grid) .section-head .display { letter-spacing: -.04em; }
@media (min-width: 1101px) {
  .section:has(.offers-grid) .rail-grid { margin-left: calc(var(--pad) * -1); }
  .section:has(.offers-grid) .section-head .display { font-size: 68px; line-height: .92; }
  /* В макете 300px без полей: 300 + 28 + 30 + 2 = 360. */
  .section:has(.offers-grid) .offer { min-height: 360px; }
}
@media (max-width: 1100px) {
  .section:has(.offers-grid) { padding-block: 56px; }
  .section:has(.offers-grid) .rail-grid { grid-template-columns: minmax(0, 1fr); }
  .section:has(.offers-grid) .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .section:has(.offers-grid) .rail__num { font-size: 13px; }
  .section:has(.offers-grid) .rail__line { display: none; }
  .section:has(.offers-grid) .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .section:has(.offers-grid) .section-head { padding-bottom: 20px; }
  .section:has(.offers-grid) .offers-grid { gap: 14px; margin-top: 20px; }
  .section:has(.offers-grid) .offer { padding: 24px; }
  .section:has(.offers-grid) .offer__kicker { font-size: 10px; letter-spacing: .16em; }
  .section:has(.offers-grid) .offer__big { font-size: 46px; }
  .section:has(.offers-grid) .offer__t { line-height: 1.1; }
  .section:has(.offers-grid) .offer p { font-size: 13px; line-height: 1.5; }
}
@media (max-width: 560px) {
  .section:has(.offers-grid) { padding-block: 36px; }
  .section:has(.offers-grid) .rail { gap: 12px; margin-bottom: 6px; }
  .section:has(.offers-grid) .rail__num { font-size: 12px; }
  .section:has(.offers-grid) .rail__label { font-size: 10px; letter-spacing: .18em; }
  /* На телефоне под заголовком нет линии: карточки идут через 18px. */
  .section:has(.offers-grid) .section-head { padding-bottom: 0; border-bottom: 0; }
  .section:has(.offers-grid) .section-head .display { line-height: .98; letter-spacing: -.035em; }
  .section:has(.offers-grid) .offers-grid { gap: 12px; margin-top: 18px; }
  .section:has(.offers-grid) .offer { padding: 20px; }
  .section:has(.offers-grid) .offer__big { font-size: 42px; margin-top: 10px; }
  .section:has(.offers-grid) .offer__t { margin-top: 12px; }
  .section:has(.offers-grid) .offer p { margin-top: 8px; }
  .section:has(.offers-grid) .offer .btn { width: 100%; margin-top: 16px; }
}
.calc-label--narrow { display: none; }
@media (min-width: 561px) and (max-width: 1100px) {
  .calc-sliders { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .calc-sliders .slider { margin-top: 0; }
  .calc-foot { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 20px; }
  .calc-foot .panel__summary { margin-top: 0; }
  .calc-foot .row { margin-top: 0; }
  .terms-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
  .offer { padding: 22px 24px; }
  
  .offer__inner { flex-direction: row; align-items: center; gap: 28px; }
  .offer__num { flex: none; width: 190px; }
  .offer__body { flex: 1; }
  .offer__num .offer__big, .offer__body .offer__t, .offer__body p { margin-top: 0; }
  .offer__body .offer__t + p { margin-top: 8px; }
  .offer .btn { margin-top: 0; align-self: center; }
  .offer { min-height: 0; }
  .offer .slab { right: auto; left: -40px; width: 260px; top: 50%; margin-top: -30px; }
}
@media (max-width: 1100px) {
  .dark-hero .panel .slider__scale { display: none; }
  .dark-hero .panel .calc__rows { flex-direction: row; flex-wrap: wrap; gap: 3px; margin-top: 8px; padding-top: 0; border-top: 0; }
  .dark-hero .panel .calc__row:nth-child(3) { display: none; }
  /* Итог одной серой строкой «сумма 1 352 000 ₽ · ставка 15,9%», как в макете
     «Кредит.dc.html»; зазор — пробел 3px. */
  .dark-hero .panel .calc__row { gap: 3px; font-size: 13px; line-height: normal; }
  .dark-hero .panel .calc__row span { color: var(--ink-2); }
  .dark-hero .panel .calc__row + .calc__row::before { content: '·'; }
  .dark-hero .calc-foot .field__label { font-size: 10px; line-height: normal; }
  .dark-hero .calc-foot .calc__monthly { margin-top: 6px; }
  .dark-hero .calc-foot .calc__monthly span { line-height: normal; }
  .dark-hero .panel .btn--outline { display: none; }
  .accordion__i { display: none; }
  .credit-callout { display: none; }
  .calc-label--wide { display: none; }
  .calc-label--narrow { display: inline; }
}
@media (max-width: 560px) {
  
  .offer { min-height: 0; padding: 22px 24px 24px; }
  .offer .slab { top: 62px; bottom: auto; margin-top: 0; height: 44px; transform: rotate(-4deg); }
  .panel .chip-row.flex-nowrap { flex-wrap: nowrap; }
  .panel .chip-row.flex-nowrap > .chip { flex: 1 1 0; min-width: 0; padding-inline: 8px; }
  
  .step { display: grid; grid-template-columns: 62px minmax(0, 1fr); column-gap: 18px; padding: 18px 0; border-top: 1px solid var(--border-alt); }
  .step__n { grid-row: 1 / span 3; align-self: start; font-size: 44px; line-height: .8; }
  .step__t { grid-column: 2; grid-row: 1; margin-top: 0; line-height: 1.1; }
  
  .step p { grid-column: 2; grid-row: 2; margin-top: 6px; font-size: 13px; line-height: 1.5; }
  .step__time { grid-column: 2; grid-row: 3; margin-top: 8px; }
}
@media (max-width: 560px) {
  
  .apply .row--wrap > .btn { flex: 1 1 100%; }
}
.apply {
  position: relative;
  background: #0E2547;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 80px);
  margin-top: clamp(56px, 7vw, 96px);
}
.apply__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 620px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1100px) { .apply__grid { grid-template-columns: 1fr; gap: 32px; } }
.apply__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .92;
  color: #fff;
}
.apply__lead {
  font-size: 17px;
  line-height: 1.55;
  color: #C4CDD6;
  max-width: 380px;
  margin-top: 24px;
}
.perks { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.perks li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--mist);
}
.perks li::before { content: "/"; color: var(--red); }
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 32px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .field--span2 { grid-column: auto; }
}
.form-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.form-foot b { color: var(--ink); font-weight: 400; font-variant-numeric: tabular-nums; }
/* «Заявка на кредит» на /credit/. Числа сняты замером трёх кадров макета
   «Кредит.dc.html» (1440, 768, 390) — эталон блока. Метка «05 · заявка на
   кредит» заменила кикер блока (решение владельца 19.09.2026), её линия на
   тёмном фоне — var(--gray). Поля и кнопки взяты по высоте макета (56/52):
   рамку, нарисованную в макете поверх высоты, не прибавляем. Формы /sell/ и
   контактов стоят на тех же классах, поэтому всё ограничено .apply. */
.apply .rail { padding-top: 0; }
.apply .rail__num,
.apply .rail__label,
.apply .perks li,
.apply .form-card .field__label,
.apply .form-foot { line-height: normal; }
.apply .rail__line { background: var(--gray); }
.apply .form-card .textarea { height: 56px; }
.apply .form-card .btn--outline { padding-inline: 22px; font-size: 15px; }
@media (min-width: 1101px) {
  .apply .rail-grid { margin-left: calc(var(--pad) * -1); }
}
@media (max-width: 1100px) {
  .apply .rail-grid { grid-template-columns: minmax(0, 1fr); }
  .apply .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .apply .rail__num { font-size: 13px; }
  .apply .rail__line { display: none; }
  .apply .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .apply .apply__title { line-height: .94; }
  .apply .apply__grid { gap: 26px; }
  .apply .form-card { padding: 26px; }
  .apply .form-grid { gap: 14px; }
  .apply .form-card .field__label { font-size: 10px; margin-bottom: 6px; }
  .apply .form-card .input,
  .apply .form-card .select__button { height: 52px; padding-inline: 16px; font-size: 15px; }
  .apply .form-card .textarea { height: 52px; padding: 14px 16px; font-size: 15px; }
  .apply .form-card .check,
  .apply .form-card .row--wrap { margin-top: 18px; }
}
@media (max-width: 560px) {
  .apply { margin-top: 36px; padding-block: 32px 36px; }
  .apply .rail { gap: 12px; margin-bottom: 6px; }
  .apply .rail__num { font-size: 12px; }
  .apply .rail__label { font-size: 10px; letter-spacing: .18em; }
  .apply .apply__title { line-height: .96; letter-spacing: -.035em; }
  .apply .apply__grid { gap: 22px; }
  .apply .form-card { padding: 20px; }
  .apply .form-grid { gap: 12px; }
  .apply .form-card .check { margin-top: 16px; }
  .apply .form-card .check__text { font-size: 12px; }
  .apply .form-card .row--wrap { margin-top: 16px; }
  .apply .form-card .row--wrap .btn { --btn-h: 52px; }
}
.calc-btn__short, .hero-lead__short { display: none; }
@media (max-width: 1100px) {
  .wrap--credit { padding-inline: 40px; }
}
@media (max-width: 560px) {
  .wrap--credit { padding-inline: 20px; }
}
@media (max-width: 1100px) {
  .banks-strip__head .banks-strip__tail,
  .banks-strip__head .muted,
  .why-grid__lead > p,
  .section-head__note,
  .section-head .accent,
  .about-split .lead,
  .apply__lead,
  .perks,
  .panel__head .dim,
  .equip__title,
  .credit-docs,
  .form-card .row--wrap .btn--outline,
  .form-card .form-foot { display: none; }
  
  .why-grid__lead .display br,
  .about-split .display br,
  .apply__title br { display: none; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .why-grid__lead .display,
  .section-head .display,
  .about-split .display { font-size: 48px; }
  .apply__title { font-size: 52px; }
  .dark-hero .panel__title { font-size: 24px; }
  .step__t { font-size: 24px; }
  .offer__t { font-size: 22px; }
  .accordion__q { font-size: 22px; }
  .dark-hero .calc__monthly b { font-size: 44px; }
  .offer__big { font-size: 30px; }
  .calc-foot { background: var(--section-bg); border-radius: var(--radius); padding: 20px 22px; }
  /* Кнопка 104px макета: поля 24px, из них 1px — рамка .btn. */
  .calc-foot .btn--primary { padding-inline: 23px; }
  .calc-foot .panel__summary { background: none; padding: 0; }
  .dark-hero .panel .slider--term .slider__head { display: none; }
  .calc-btn__full { display: none; }
  .calc-btn__short { display: inline; }
}
@media (max-width: 560px) {
  .why-grid__lead .display,
  .section-head .display,
  .about-split .display { font-size: 34px; }
  .apply__title { font-size: 38px; }
  .step__t { font-size: 20px; }
  .offer__t { font-size: 20px; }
  .accordion__q { font-size: 19px; }
  .dark-hero .calc__monthly b { font-size: 40px; }
  .dark-hero .calc-foot .calc__monthly span { font-size: 15px; }
  .dark-hero .panel .calc__row { font-size: 12px; }
  .calc-foot .panel__summary { margin-top: 22px; padding: 18px; }
  .calc-foot .row { margin-top: 18px; }
  .calc-foot .btn--primary { --btn-h: 52px; }
  .offer__big { font-size: 42px; }
  .dark-hero .hero-stats { display: none; }
  .hero-lead__full { display: none; }
  .hero-lead__short { display: inline; }
  .dark-hero .panel .slider--term .slider__value { display: none; }
}
.wizard__steps {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.wizard__step {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  text-align: left;
}
.wizard__step-top { display: flex; align-items: center; gap: 10px; }
.wizard__dot {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--field-border);
  background: transparent;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.wizard__line {
  flex: 1;
  height: 2px;
  background: var(--border-alt);
  transition: background-color .25s var(--ease);
}
.wizard__step-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  padding-right: 12px;
  line-height: 1.3;
}
.wizard__step.is-active .wizard__dot,
.wizard__step.is-done .wizard__dot { background: var(--red); border-color: var(--red); color: #fff; }
.wizard__step.is-active .wizard__step-label { color: var(--ink); }
.wizard__step.is-done .wizard__line { background: var(--red); }
.wizard__pane { display: none; margin-top: 26px; }
.wizard__pane.is-active { display: block; animation: bzFadeIn .3s var(--ease); }
@media (max-width: 520px) {
  .wizard__step-label { font-size: 11px; padding-right: 6px; }
}
.estimate {
  margin-top: 26px;
  padding: 22px 24px;
  background: var(--section-bg);
  border-radius: var(--radius);
}
.estimate__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.estimate__value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.estimate__value b {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.estimate__value i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-2);
}
.estimate__value u {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}
.program {
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  cursor: pointer;
}
.program__top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.program__n {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.055em;
  color: var(--num-muted);
  font-variant-numeric: tabular-nums;
  width: 150px;
  flex: none;
  transition: color .25s var(--ease);
}
.program.is-open .program__n { color: var(--red); }
.program__title-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.program__t {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.program__d {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin-top: 12px;
}
.program__metric { width: 240px; flex: none; text-align: right; }
.program__metric b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-top: 8px;
}
.program__sign {
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  flex: none;
}
.program__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.program.is-open .program__body { grid-template-rows: 1fr; }
.program__body > div { overflow: hidden; }
.program__cols {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr) 240px;
  gap: 32px;
  padding-top: 26px;
}
@media (max-width: 1100px) {
  .program__top { flex-wrap: wrap; gap: 16px; }
  .program__n { width: auto; }
  .program__metric { width: auto; text-align: left; flex: 1; }
  .program__cols { grid-template-columns: 1fr; gap: 22px; }
  .program__cols > div:first-child { display: none; }
  .program__cols > div:last-child { text-align: left; }
}
.slash-list { display: flex; flex-direction: column; gap: 10px; }
.slash-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.slash-list li::before { content: "/"; color: var(--red); }
.factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 34px;
}
@media (max-width: 760px) { .factors { grid-template-columns: 1fr; } }
.factor {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-alt);
}
.factor__i {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.factor__t { font-size: 16px; color: var(--ink); }
.factor__d { font-size: 13px; color: var(--ink-2); line-height: 1.45; margin-top: 4px; }
.factor__w { font-size: 13px; color: var(--ink-2); flex: none; }
.doc-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.doc-row__badge {
  width: 44px; height: 58px;
  flex: none;
  border: 1px solid var(--border-alt);
  background: var(--section-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.doc-row__t {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.doc-row p { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: 6px; }
.figures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .figures { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .figures { grid-template-columns: 1fr; } }
.figure {
  padding: 38px 30px 38px 0;
  border-right: 0;
}
.figure:last-child { border-right: 0; }
.figure b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.figure span { display: block; font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-top: 12px; }
.about-hero {
  position: relative;
  background: #0E2547;
  overflow: hidden;
  min-height: clamp(360px, 40vw, 520px);
}
.about-hero__photo {
  position: absolute;
  right: 60px; top: 96px;
  width: 640px; height: 328px;
  border: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: .5;
}
.about-hero__photo span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
@media (max-width: 1100px) { .about-hero__photo { display: none; } }
.about-hero__inner { position: relative; padding-block: 56px clamp(40px, 5vw, 72px); }
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .86;
  color: #fff;
  margin-top: 26px;
}
.about-hero__title i { font-style: normal; color: var(--red); }
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 1000px) { .about-split { grid-template-columns: 1fr; gap: 32px; } }
/* «Частые вопросы» на /credit/. Числа сняты замером трёх кадров макета
   «Кредит.dc.html» (1440, 768, 390) — эталон блока. Метка «04 · помощь» —
   как у «условий» (решение владельца 19.09.2026, в макете её нет). Сетка
   .about-split есть и на «О компании», поэтому всё ограничено .wrap--credit. */
.wrap--credit:has(.about-split) .rail { padding-top: 0; }
.wrap--credit:has(.about-split) .rail__num,
.wrap--credit:has(.about-split) .rail__label { line-height: normal; }
.wrap--credit:has(.about-split) .rail__line { background: var(--border-alt); }
.wrap--credit .about-split h2.display { letter-spacing: -.04em; }
.wrap--credit .about-split .accordion__item.is-open .accordion__head { padding-bottom: 0; }
@media (min-width: 1101px) {
  .wrap--credit:has(.about-split) .rail-grid { margin-left: calc(var(--pad) * -1); }
  .wrap--credit .about-split h2.display { font-size: 68px; line-height: .92; }
  .wrap--credit .about-split .lead { font-size: 16px; line-height: 1.6; }
  .wrap--credit .about-split .credit-callout__title { line-height: 1.15; }
  .wrap--credit .about-split .credit-callout p { line-height: 1.55; }
  .wrap--credit .about-split .accordion__i { line-height: normal; }
  .wrap--credit .about-split .accordion__q { font-size: 26px; }
  .wrap--credit .about-split .accordion__body p { padding: 14px 44px 24px 32px; }
}
@media (max-width: 1100px) {
  .wrap--credit .about-split { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .wrap--credit .about-split > :last-child { padding-top: 22px; }
  .wrap--credit:has(.about-split) .rail-grid { grid-template-columns: minmax(0, 1fr); }
  .wrap--credit:has(.about-split) .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .wrap--credit:has(.about-split) .rail__num { font-size: 13px; }
  .wrap--credit:has(.about-split) .rail__line { display: none; }
  .wrap--credit:has(.about-split) .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .wrap--credit .about-split .accordion__head { padding: 20px 0; gap: 16px; }
  .wrap--credit .about-split .accordion__sign { font-size: 22px; }
  .wrap--credit .about-split .accordion__body p { padding: 12px 0 20px; font-size: 15px; line-height: 1.6; }
}
@media (max-width: 560px) {
  .wrap--credit:has(.about-split) .rail { gap: 12px; margin-bottom: 6px; }
  .wrap--credit:has(.about-split) .rail__num { font-size: 12px; }
  .wrap--credit:has(.about-split) .rail__label { font-size: 10px; letter-spacing: .18em; }
  .wrap--credit .about-split h2.display { line-height: .98; letter-spacing: -.035em; }
  .wrap--credit .about-split > :last-child { padding-top: 18px; }
  .wrap--credit .about-split .accordion__head { padding: 18px 0; gap: 14px; }
  .wrap--credit .about-split .accordion__sign { font-size: 20px; }
  .wrap--credit .about-split .accordion__body p { padding: 12px 0 18px; font-size: 14px; }
}
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-photos > *:first-child { grid-column: span 2; height: 260px; }
.about-photos > * { height: 180px; display: flex; align-items: flex-end; }
.about-photos span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}
.principles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .principles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .principles { grid-template-columns: 1fr; } }
.principle { padding: 30px 30px 0 0; border-right: 1px solid var(--border-alt); }
.principle:last-child { border-right: 0; }
@media (max-width: 1000px) {
  .principle { border-right: 0; }
}
@media (max-width: 560px) { .principle { border-right: 0; } }
.principle__n {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.principle__t {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 18px;
}
.principle p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin-top: 12px; }
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: clamp(40px, 5vw, 72px);
  flex-wrap: wrap;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--ink);
}
.map-overlay {
  position: absolute;
  left: var(--pad); top: 40px;
  width: 380px;
  max-width: calc(100% - var(--pad) * 2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: 0 24px 50px rgba(7, 20, 38, .24);
  z-index: 2;
}
.map-overlay__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.05;
}
.map-overlay p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin-top: 14px; }
@media (max-width: 640px) {
  .map--tall { height: 420px; }
  .map-overlay { top: auto; bottom: 16px; left: 16px; right: 16px; width: auto; padding: 18px 20px; }
}
.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1100px) { .contacts-grid { grid-template-columns: 1fr; gap: 32px; } }
.dept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .dept-grid { grid-template-columns: 1fr; } }
.dept {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: border-color .2s var(--ease);
}
.dept:hover { border-color: var(--red); }
.dept__phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.dept__phone:hover { color: var(--red); }
.dept p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-top: 8px; }
.dept__mail { font-size: 13px; color: var(--ink); margin-top: 10px; display: inline-block; }
.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row span:first-child { font-size: 14px; color: var(--ink-2); }
.hours-row span:last-child { font-size: 15px; color: var(--ink); font-variant-numeric: tabular-nums; }
.open-now { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 14px; color: var(--ink); }
.open-now::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  animation: bzPulse 2s ease-in-out infinite;
}
.dealer_messengers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 44px;
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.dealer_messengers:hover { border-color: var(--red); color: var(--ink); }
.dealer_messengers span { font-size: 13px; color: var(--gray); }
.page-404 {
  position: relative;
  min-height: 100vh;
  background: #0B0D12;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-404__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 70% 45%, #1B4174 0%, #0E2547 52%, #071426 100%);
}
.page-404 .slab { top: 52%; }
.page-404__head { position: relative; padding: 40px var(--pad) 0; }
.page-404__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px) var(--pad);
}
.page-404__code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(96px, 16vw, 220px);
  letter-spacing: -.06em;
  line-height: .82;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .85);
  font-variant-numeric: tabular-nums;
}
.page-404__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  color: #fff;
  margin-top: 24px;
}
.page-404 p {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.55;
  color: #C4CDD6;
  max-width: 460px;
  margin-top: 20px;
}
.page-404__actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.page-404__stripe { position: relative; height: 6px; background: var(--red); }
.kit-hero {
  position: relative;
  background: #0E2547;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 64px);
}
.kit-hero__rule {
  position: absolute;
  left: -60px; right: -60px; bottom: 96px;
  height: 3px;
  background: var(--red);
  transform: rotate(-2deg);
}
.kit-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 128px);
  line-height: .86;
  letter-spacing: -.05em;
  color: #fff;
  margin-top: 34px;
}
.kit-hero__title i { font-style: normal; color: var(--red); }
.swatches {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 1000px) { .swatches { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.swatch__chip { height: 104px; border: 1px solid var(--border); }
.swatch__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
}
.swatch__hex {
  font-size: 12px;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.swatch__use { font-size: 12px; color: var(--ink-2); line-height: 1.45; margin-top: 4px; }
.type-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.type-row__spec {
  width: 190px;
  flex: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray);
  line-height: 1.5;
}
.type-row__sample {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
  line-height: 1.2;
}
@media (max-width: 700px) {
  .type-row { flex-direction: column; gap: 8px; }
  .type-row__spec { width: auto; }
}
.kit-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.kit-block__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
  margin-bottom: 18px;
}
.searchbar__cell--wide { flex: 1.1; }
.brands__lead { margin: 12px 0 34px; }
.sort-select { min-width: 190px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.results-head--foot { padding: 40px 0 96px; }
.section-head--flush { margin-bottom: 0; }
.similar-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.dealer__logo {
  width: 52px; height: 52px;
  flex: none;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 20px;
  color: var(--navy);
  border: 3px solid var(--border);
}
.dealer__logo span {
  color: var(--red);
}
.dealer__name { font-size: 19px; }
.dealer__rows {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.kicker--xs { font-size: 10px; }
.banks-strip { padding: 40px 0; overflow: hidden; }
.banks-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 26px;
}
.why-grid--flush { padding-block: 0; }
.credit-docs {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 16px;
}
/* «01 · условия» на /credit/. Числа сняты замером трёх кадров макета
   «Кредит.dc.html» (1440, 768, 390) — эталон блока. Метка и её линия — как на
   главной (решение владельца 19.09.2026): на узких экранах метка не
   скрывается, а встаёт строкой; чипы документов остаются 500/40px.
   Нижнее поле блока — отступ следующего блока в макете: у секции «Как
   оформляем» на сайте своего отступа нет. */
.wrap:has(> .why-grid--flush) { padding-block: 96px; }
.why-grid--flush .rail { padding-top: 0; }
.why-grid--flush .rail__num,
.why-grid--flush .rail__label,
.terms-list__row,
.why-grid--flush .equip__title,
.credit-docs .field__label { line-height: normal; }
.why-grid--flush .rail__line { background: var(--border-alt); }
.why-grid--flush .equip__title { margin-bottom: 18px; }
.credit-docs .field__label { letter-spacing: .16em; margin-bottom: 12px; }
@media (min-width: 1101px) {
  .why-grid--flush {
    /* Метка стоит в левом поле страницы, правое поле — внутри сетки. */
    margin-inline: calc(var(--pad) * -1);
    padding-right: var(--pad);
  }
  .why-grid--flush .why-grid__lead { padding-right: 56px; }
  .why-grid--flush .why-grid__lead .display { font-size: 68px; line-height: .92; letter-spacing: -.04em; }
  .why-grid--flush .why-grid__lead > p { max-width: 400px; margin-top: 24px; }
}
@media (max-width: 1100px) {
  .wrap:has(> .why-grid--flush) { padding-block: 56px; }
  .why-grid--flush { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .why-grid--flush .rail {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
  }
  .why-grid--flush .rail__num { font-size: 13px; }
  .why-grid--flush .rail__line { display: none; }
  .why-grid--flush .rail__label { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .2em; }
  .why-grid--flush .why-grid__lead { padding-right: 0; }
  .why-grid--flush .why-grid__lead .display { font-size: 48px; line-height: .94; letter-spacing: -.04em; }
  .why-grid--flush .terms-list { margin-top: 24px; }
  .terms-list__row { justify-content: space-between; gap: 16px; padding: 14px 0; }
  .terms-list__row span { flex: 0 1 auto; font-size: 13px; }
  .terms-list__row b { font-size: 18px; }
  .why-grid--flush > :last-child { padding-top: 24px; }
  .req-grid { gap: 12px; }
  .req-card { padding: 16px 18px; }
  .req-card__mark { width: 22px; height: 22px; }
  .req-card__title { font-size: 18px; margin-top: 10px; }
}
/* Телефон: условия столбиком, карточка требования — строка со значком слева. */
@media (max-width: 560px) {
  .wrap:has(> .why-grid--flush) { padding-block: 36px; }
  .why-grid--flush .rail { gap: 12px; margin-bottom: 6px; }
  .why-grid--flush .rail__num { font-size: 12px; }
  .why-grid--flush .rail__label { font-size: 10px; letter-spacing: .18em; }
  .why-grid--flush .why-grid__lead .display { font-size: 34px; line-height: .98; letter-spacing: -.035em; }
  .why-grid--flush .terms-list { margin-top: 18px; }
  .terms-list__row { gap: 14px; padding: 13px 0; }
  .terms-list__row b { font-size: 17px; }
  .why-grid--flush > :last-child { padding-top: 20px; }
  .req-grid { gap: 10px; }
  .req-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 12px;
    padding: 14px 16px;
  }
  .req-card__mark { grid-row: 1 / span 2; }
  .req-card__title { font-size: 17px; margin-top: 0; }
  .req-card p { margin-top: 4px; line-height: 1.45; }
}
.credit-callout {
  margin-top: 32px;
  padding: 24px 26px;
  background: var(--section-bg);
  border-radius: var(--radius-lg);
}
.credit-callout__title { font-size: 22px; }
.calc__rows--alt { border-color: var(--border-alt); }
.offer__kicker { letter-spacing: .18em; }
.plate-found {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.plate-found__mark {
  width: 20px; height: 20px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plate-found b { color: var(--ink); }
.estimate__pair {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.program__deal { font-size: 26px; margin-top: 6px; }
.contacts-grid--narrow { grid-template-columns: minmax(0, 1fr) 420px; }
@media (max-width: 1100px) { .contacts-grid--narrow { grid-template-columns: 1fr; } }
.form-grid--tight { gap: 12px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.side-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-2);
}
.side-card__foot a { color: var(--ink); }
.about-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 70% 40%, #1B4174 0%, #0E2547 55%, #071426 100%);
}
.about-hero .slab { top: 64%; right: 52%; }
.d-about { font-size: clamp(30px, 4.4vw, 62px); }
.delivery-grid--flush { margin-top: 0; }
.delivery-grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contacts-form {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 32px);
}
.contacts-form__title { font-size: clamp(26px, 3vw, 34px); }
.kit-hero__cols {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 46px;
}
.kit-hero__text {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mist);
}
.kit-hero__meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gray);
  line-height: 1.9;
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.kit-type { margin-top: 44px; border-top: 1px solid var(--rule-strong); }
.kit-dark { margin-top: 24px; background: var(--navy); padding: 24px 26px; }
.kit-price { font-size: clamp(30px, 3.4vw, 56px); color: var(--red); }
.kit-price--light { color: #fff; margin-top: 10px; }
.kit-sub { font-size: 14px; margin-top: 6px; }
.kit-sub--light { color: #C4CDD6; }
.kit-pages-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 26px; }
.sw-red { background: #E4022D; }
.sw-navy { background: #0E2547; }
.sw-navy2 { background: #13315C; }
.sw-navy3 { background: #1B4174; }
.sw-deep { background: #071426; }
.sw-black { background: #0B0D12; }
.sw-slate { background: #5A7396; }
.sw-gray { background: #8A94A0; }
.sw-border { background: #E3E8EC; }
.sw-border-alt { background: #D3DAE1; }
.sw-mist { background: #F1F4F6; }
.sw-white { background: #FFFFFF; }
.ts-display-900 { font-family: var(--font-display); font-size: clamp(40px, 7vw, 96px); font-weight: 900; letter-spacing: -.05em; }
.ts-display-800 { font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 64px); font-weight: 800; letter-spacing: -.035em; }
.ts-heading { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 34px); font-weight: 700; letter-spacing: -.02em; }
.ts-price { font-family: var(--font-display); font-size: clamp(26px, 3vw, 46px); font-weight: 800; letter-spacing: -.03em; }
.ts-body { font-family: var(--font-text); font-size: 16px; font-weight: 400; }
.ts-button { font-family: var(--font-text); font-size: 16px; font-weight: 600; }
.ts-kicker { font-family: var(--font-text); font-size: 11px; font-weight: 400; letter-spacing: .16em; }
.carbar {
  position: fixed;
  left: 0; right: 0;
  top: 0;
  z-index: 95;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(11, 13, 18, .10);
  transform: translateY(-115%);
  opacity: 0;
  visibility: hidden;
  transition: transform .34s var(--ease), opacity .26s var(--ease), visibility .34s;
}
.carbar.is-visible { transform: none; opacity: 1; visibility: visible; }
.carbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding-block: 10px;
}
.carbar__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.carbar__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carbar__meta { font-size: 13px; color: var(--ink-2); }
.carbar__side { display: flex; align-items: center; gap: 14px; flex: none; }
.carbar__price {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.carbar__burger { display: none; }
@media (max-width: 1180px) { .carbar__burger { display: inline-flex; } }
@media (max-width: 860px) {
  .carbar__meta, .carbar__credit { display: none; }
  .carbar__inner { gap: 12px; }
}
@media (max-width: 560px) {
  .carbar__side .btn { display: none; }
}
.dealer__messengers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}
.sell-from {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--section-bg);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-2);
}
.sell-from b { color: var(--ink); }
.sell-from__mark {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-lead__mid { display: none; }
.docs-title__narrow, .docs-note__narrow { display: none; }
@media (max-width: 1100px) { .wrap--sell { padding-inline: 40px; } }
@media (max-width: 560px) { .wrap--sell { padding-inline: 20px; } }
@media (min-width: 1101px) {
  .dark-hero__grid--wide .dark-hero__title { font-size: 100px; }
  .wrap--sell .display.d-m { font-size: 68px; }
  .wrap--sell .lead { font-size: 16px; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .dark-hero__grid--wide .dark-hero__title { font-size: 70px; }
  .dark-hero__grid--wide .hero-lead__full { display: none; }
  .dark-hero__grid--wide .hero-lead__mid { display: inline; }
  .dark-hero__grid--wide .dark-hero__lead { font-size: 16px; }
  .dark-hero__grid--wide .hero-stats__item b { font-size: 30px; }
  .wrap--sell .display.d-m { font-size: 48px; }
  .wrap--sell .program__n { font-size: 54px; }
  .wrap--sell .program__t { font-size: 28px; }
  .wrap--sell .program__d { font-size: 14px; }
  .wrap--sell .slash-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .wrap--sell .slash-list li { font-size: 14px; }
  .wrap--sell .factor__t { font-size: 15px; }
  .wrap--sell .factor__i,
  .wrap--sell .factor__d,
  .wrap--sell .factor__w { font-size: 12px; }
  .wrap--sell .side-card .stack { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .wrap--sell .doc-row { flex-direction: column; }
  .wrap--sell .doc-row p { font-size: 12px; }
  .wrap--sell .side-card > .muted { display: none; }
}
@media (max-width: 1100px) {
  .wrap--sell .lead--w420 { display: none; }
  .wrap--sell .equip__title { display: block; }
  .wrap--sell .doc-row__t { font-size: 18px; }
  .wrap--sell .program { padding: 22px 0; }
  .wrap--sell .program__top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 20px;
    row-gap: 6px;
  }
  .wrap--sell .program__n { grid-row: 1 / span 2; width: auto; }
  .wrap--sell .program__top > .grow { grid-column: 2; grid-row: 1; }
  .wrap--sell .program__metric { grid-column: 2; grid-row: 2; width: auto; text-align: left; display: flex; align-items: baseline; gap: 6px; }
  .wrap--sell .program__sign { grid-column: 3; grid-row: 1; }
  .wrap--sell .program__metric .field__label { font-size: 12px; }
  .wrap--sell .program__metric .field__label::after { content: ':'; }
  .wrap--sell .program__metric b { display: inline; font-size: 12px; font-weight: 600; }
  .wrap--sell .program__cols > div:nth-child(3) .equip__title,
  .wrap--sell .program__cols > div:nth-child(3) p,
  .wrap--sell .program__cols > div:nth-child(4),
  .wrap--sell .side-card__foot { display: none; }
}
@media (max-width: 560px) {
  .dark-hero__grid--wide .dark-hero__title { font-size: 50px; }
  .dark-hero__grid--wide .dark-hero__lead { font-size: 14px; }
  .wrap--sell .display.d-m { font-size: 34px; }
  .wrap--sell .program__n { display: none; }
  .wrap--sell .program__t { font-size: 22px; }
  .wrap--sell .program__d { font-size: 14px; }
  .wrap--sell .program:not(.is-open) .program__d { display: none; }
  .wrap--sell .program { padding: 18px 0; }
  .wrap--sell .slash-list { grid-template-columns: 1fr; }
  .wrap--sell .factor__d { display: none; }
  .wrap--sell .factor__t { font-size: 15px; }
  .wrap--sell .factor__i,
  .wrap--sell .factor__w { font-size: 12px; }
  .wrap--sell .side-card { background: none; border: 0; padding: 0; }
  .wrap--sell .side-card .stack { grid-template-columns: 1fr; gap: 0; }
  .wrap--sell .doc-row { flex-direction: row; }
  .wrap--sell .side-card .equip__title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: .94;
    color: var(--ink);
  }
  .wrap--sell .docs-title__wide { display: none; }
  .wrap--sell .docs-title__narrow { display: inline; }
  .wrap--sell .docs-note__wide { display: none; }
  .wrap--sell .docs-note__narrow { display: inline; }
  .wrap--sell .side-card .btn--block { display: none; }
}
@media (min-width: 1101px) {
  .car-layout .section-head .display { font-size: 44px; }
  #equipToggle[data-equip-hidden="0"] { display: none; }
}
@media (min-width: 561px) { #specsToggle { display: none; } }
@media (max-width: 1100px) {
  .gallery__main-row { flex-direction: column-reverse; }
  .gallery__stage { flex: none; }
  .gallery__thumbs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  .gallery__thumb, .gallery__more { width: 96px; flex: none; }
  .gallery__zoom { display: none; }
  .car-layout { display: flex; flex-direction: column; align-items: stretch; gap: 32px; }
  .car-layout > .min-w-0 { display: contents; }
  .car-layout > .min-w-0 > * { order: 3; margin-top: 0; }
  .car-layout > .min-w-0 > *:first-child { order: 1; min-width: 0; }
  .car-layout > .deal { order: 2; }
  .car-layout .gallery__thumbs { min-width: 0; }
  .car-layout .tradein-card { display: none; }
  .car-hero__title { font-size: 44px; padding-top: 10px; }
  .car-layout .section-head .display { font-size: 36px; }
  .deal__price { font-size: 40px; }
  .car-layout .equip__title { display: block; }
  .equip__item:nth-child(n+4) { display: none; }
  .equip.is-expanded .equip__item { display: flex; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .deal__card:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
  }
  .deal__top, .deal__actions, .deal__note { grid-column: 1 / -1; }
  .deal__price { grid-column: 1; grid-row: 1; margin-top: 0; }
  .deal__old { grid-column: 1; grid-row: 2; }
  .deal__credit {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .deal__credit-top { flex-direction: column; align-items: flex-end; gap: 0; }
  .deal__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  
  .deal__actions > .row { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .deal__card:nth-child(2) > .field__label,
  .deal__card:nth-child(2) > .row,
  .dealer__messengers { display: none; }
  .dealer__rows { flex-direction: row; flex-wrap: wrap; gap: 8px 10px; margin-top: 0px; }
  .dealer__row { gap: 10px; }
  .dealer__row span:first-child { display: none; }
  .dealer__row:not(:first-child)::before { content: '·'; color: var(--gray); }
}
@media (max-width: 560px) {
  .car-layout > .min-w-0 > *:first-child { display: flex; flex-direction: column; margin-inline: calc(var(--pad) * -1); }
  .gallery__main-row { order: 1; }
  .gallery__tabs { order: 2; margin: 14px var(--pad) 0; }
  .gallery__thumbs { gap: 3px; padding-inline: var(--pad); }
  .gallery__thumb, .gallery__more { width: 59px; height: 3px; border: 0; opacity: 1; background: var(--border-alt); }
  .gallery__thumb.is-active { background: var(--red); }
  .gallery__thumb span, .gallery__more { font-size: 0; }
  .gallery__stage { height: 260px; }
  .car-hero__title { font-size: 30px; }
  .car-layout .section-head .display { font-size: 28px; }
  .deal__price { font-size: 34px; }
  .equip__item:nth-child(n+3) { display: none; }
  .specs-table__row:nth-child(n+9) { display: none; }
  .specs-table.is-expanded .specs-table__row { display: flex; }
  .specs-table__row dd { font-size: 15px; }
  .deal__card:nth-child(2), .dealer__messengers { display: none; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .delivery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-card__title { font-size: 20px; }
}
@media (max-width: 1100px) {
  
  .delivery-grid .equip__title { display: block; font-size: 10px; }
  .info-card { padding: 18px 19px; }
  .info-card p { font-size: 13px; }
  
  .deal__credit { padding: 14px 16px; }
  .deal__credit-top span { font-size: 12px; }
}
@media (max-width: 560px) {
  .info-card__title { font-size: 19px; }
  
  .similar-grid .car-card { display: grid; grid-template-columns: 130px minmax(0, 1fr); }
  .similar-grid .car-card__media { height: auto; min-height: 103px; }
  .similar-grid .car-card__body { padding: 14px 16px; gap: 6px; }
  .similar-grid .car-card__title { font-size: 18px; }
  .similar-grid .car-card__sub { font-size: 12px; }
  .similar-grid .car-card__price b { font-size: 20px; }
  .similar-grid .car-card__credit { display: none; }
  .gallery__thumb img { display: none; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .similar-grid .car-card__media { height: 150px; }
  .similar-grid .car-card__title { font-size: 19px; }
  .similar-grid .car-card__price b { font-size: 22px; }
}
.car-layout > .car-hero { grid-column: 1 / -1; }
@media (min-width: 561px) and (max-width: 1100px) {
  .car-hero__sub { font-size: 15px; }
  .gallery__stage { height: 380px; }
  .gallery__thumb, .gallery__more { width: 108px; height: 74px; }
  .similar-grid ~ * .display.d-s,
  .wrap .section-head .display.d-s { font-size: 36px; }
}
@media (max-width: 1100px) {
  
  .car-hero__actions { display: none; }
  .car-layout > .car-hero { margin-top: 0; }
  .car-layout { padding-top: 0; }
  
  .deal__top, .deal__note { display: none; }
  .deal__credit { background: none; padding: 0; }
  
  .map-card { flex-direction: column-reverse; }
  
  .map-card__side > .field__label,
  .map-card__onsite,
  .map-card__side .btn--outline { display: none; }
  .map-card__meta { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
  .map-card__meta p { font-size: 13px; margin-top: 0; }
  .map-card__meta a { font-size: 13px; margin-top: 0; }
  .map-card__meta a::before { content: '· '; color: var(--gray); }
}
@media (max-width: 560px) {
  
  body:has(.car-hero) .wrap.pt-26 { display: none; }
  .car-layout > .car-hero { order: 2; }
  .car-hero__sub { font-size: 14px; }
  .check-card__title { font-size: 17px; }
  .wrap .section-head .display.d-s { font-size: 28px; }
  
  .deal__credit-top { justify-content: flex-start; gap: 6px; }
  .deal__credit-top span,
  .deal__credit-top b { font-size: 13px; font-weight: 600; color: var(--red); }
  .deal__actions .btn--primary { display: none; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  
  .map-card__side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
  }
  .map-card__side .row { margin: 0; padding: 0; flex: none; }
  .map-card__side .info-card__title { font-size: 22px; }
}
@media (max-width: 560px) {
  .map-card__side { padding: 20px; }
  .map-card__side .row { width: 100%; }
  .map-card__side .btn { flex: 1 1 100%; }
}
.route-label--narrow { display: none; }
@media (min-width: 561px) and (max-width: 1100px) {
  .route-label--wide { display: none; }
  .route-label--narrow { display: inline; }
}
.deal-label--narrow { display: none; }
@media (max-width: 1100px) {
  
  .deal__credit-note { display: none; }
  .deal__card { padding: 25px; }
  
  .deal { gap: 0; }
  .deal__card:first-child { border-bottom: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .deal__card:nth-child(2) { border-top: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding-top: 0; }
  .dealer__row span:last-child { font-size: 13px; }
  
  .wrap--car-body { padding-inline: 40px; }
}
@media (max-width: 560px) {
  .wrap--car-body { padding-inline: 20px; }
  .deal-label--wide { display: none; }
  .deal-label--narrow { display: inline; }
}

/* Карточка автомобиля: калькулятор. Числа сняты замером трёх кадров макета
   «Карточка автомобиля.dc.html» (1440, 768, 390). Правила ограничены
   .car-layout: калькулятор страницы кредита на тех же классах их не получает.
   Текст в макете набран с обычной высотой строки, поэтому line-height: normal. */
.car-layout .calc .field__label { letter-spacing: .16em; line-height: normal; }
.car-layout .calc .slider { padding-block: 0; }
/* Поле ползунка выше линии на 10px сверху и снизу: 12 и 10 макета минус 10. */
.car-layout .calc .slider__head { gap: 0; margin-bottom: 2px; }
.car-layout .calc .slider__value { line-height: normal; }
.car-layout .calc .slider__scale { margin-top: 0; line-height: normal; }
.car-layout .calc__monthly span,
.car-layout .calc__row { line-height: normal; }
.car-layout .calc__result .field__hint { margin-top: 12px; line-height: 1.5; }
.calcbtn-label--narrow { display: none; }
@media (min-width: 1101px) {
  .car-layout .calc__head { flex-wrap: nowrap; gap: 0; }
  .car-layout .calc__head .display { font-size: 44px; line-height: 1; }
  .car-layout .calc__head .muted { line-height: normal; }
  .car-layout .calc__monthly b { font-size: 42px; }
}
@media (max-width: 1100px) {
  .car-layout .calc__head .muted,
  .car-layout .calc .slider__scale,
  .car-layout .calc [data-calc-extras],
  .car-layout .calc__result .field__hint { display: none; }
  .car-layout .calc__head .display { font-size: 36px; line-height: normal; }
  .car-layout .calc__grid { margin-top: 24px; gap: 18px; }
  .car-layout .calc .slider__head { margin-bottom: 0; }
  .car-layout .calc .slider + .slider { margin-top: 18px; }
  .car-layout .calc .slider__value { font-size: 22px; }
  .car-layout .calc__result { padding: 22px; }
  .car-layout .calc__monthly b,
  .car-layout .calc__monthly span { font-size: 40px; font-weight: 800; letter-spacing: normal; line-height: 1; }
  /* Итог одной строкой: «сумма 1 290 000 ₽ · ставка 16,9%», зазор — пробел 3px. */
  .car-layout .calc__rows { flex-direction: row; flex-wrap: wrap; gap: 3px; margin-top: 8px; padding-top: 0; border-top: 0; }
  .car-layout .calc__row { gap: 3px; font-size: 13px; }
  .car-layout .calc__row span:last-child { color: var(--ink-2); }
  .car-layout .calc__row + .calc__row::before { content: '·'; }
  .car-layout .calc__result > .btn { margin-top: 18px; }
}
@media (min-width: 561px) and (max-width: 1100px) {
  .car-layout .calc { margin-inline: -40px; padding: 36px 40px; }
  .car-layout .calc__result { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; column-gap: 20px; }
  .car-layout .calc__result > .field__label,
  .car-layout .calc__monthly,
  .car-layout .calc__rows { grid-column: 1; }
  /* Кнопка 104px макета: 24px полей с каждой стороны, из них 1px — рамка .btn. */
  .car-layout .calc__result > .btn { grid-column: 2; grid-row: 1 / span 3; margin: 0; padding-inline: 23px; }
  .calcbtn-label--wide { display: none; }
  .calcbtn-label--narrow { display: inline; }
}
@media (max-width: 560px) {
  .car-layout .calc { margin-inline: -20px; padding: 30px 20px; }
  .car-layout .calc__head .display { font-size: 28px; }
  .car-layout .calc__grid { margin-top: 22px; gap: 16px; }
  .car-layout .calc .slider + .slider { margin-top: 16px; }
  .car-layout .calc .slider__value { font-size: 20px; }
  .car-layout .calc__result { padding: 20px; }
  .car-layout .calc__monthly { margin-top: 6px; }
  .car-layout .calc__monthly b,
  .car-layout .calc__monthly span { font-size: 36px; }
  .car-layout .calc__result > .btn { height: 52px; }
}
