@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
*/
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
*/
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
*/
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
*/
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
*/
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
*/
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
*/
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
*/
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
  */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
*/
html {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
  */
  line-height: 1;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
*/
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
*/
button,
label {
  cursor: pointer;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
*/
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
*/
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}
:root {
  --accent: #649dea;
  --accent-dim: #2a6bb8;
  --accent-dim2: rgba(100, 157, 234, 0.2);
  --accent-dim3: rgba(100, 157, 234, 0.3);
  --bg: #0F2B45;
  --bg-card: #112e4a;
  --bg-card2: #153453;
  --bg-card3: #1f3e5d;
  --bg-btn: rgba(77, 144, 254, 0.12);
  --bg-active: rgba(77, 144, 254, 0.2);
  --text: #dee8f5;
  --text80: rgba(222,232,245,0.8);
  --white: #fff;
  --black: #000;
  /* CTA-баннер (светлая тема) */
  --cta-bg: #e4e9f0;
  --cta-text: #1a3550;
  --cta-accent: #2c63ac;
  /* Жёлтый (process, cta-strip) */
  --yellow: #f5b800;
  /* Конфигуратор — цвета вариантов */
  --cfg-color-a: #6ab4f5;
  --cfg-color-b: #b494f0;
  --border: 1px solid rgba(77, 144, 254, 0.25);
  --border-btn: 1px solid rgba(77, 144, 254, 0.35);
  --border-radius: 12px;
  --border-radius-s: 6px;
  --border-radius-xs: 4px;
  --font-head: 'Circe', sans-serif;
  --font-body: 'Circe', sans-serif;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .vizible-mobile {
    display: none !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1;
  overflow-x: hidden;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── BREADCRUMBS ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.breadcrumb__item {
  color: var(--text80);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
}
.breadcrumb__item:hover {
  color: var(--white);
}
.breadcrumb__item--active {
  color: var(--accent);
  pointer-events: none;
}
.breadcrumb__sep {
  color: var(--text80);
  opacity: 0.4;
  user-select: none;
  font-size: 10px;
}

.prj-hero .breadcrumb {
  position: absolute;
  top: 128px;
  left: 160px;
  z-index: 2;
}

.equip-hero .breadcrumb {
  position: absolute;
  top: 128px;
  left: 160px;
  z-index: 2;
}

.specs-hero .breadcrumb {
  position: absolute;
  top: 128px;
  left: 160px;
  z-index: 2;
}

.repr-hero .breadcrumb {
  position: absolute;
  top: 84px;
  left: 160px;
  z-index: 2;
}

.compl-hero .breadcrumb {
  position: absolute;
  top: 128px;
  left: 160px;
  z-index: 2;
}

.offer-hero .breadcrumb {
  position: absolute;
  top: 84px;
  left: 160px;
  z-index: 2;
}

.compl-compare__top .breadcrumb {
  position: absolute;
  top: 128px;
  left: 160px;
  z-index: 2;
}

.breadcrumb-bar--cat .breadcrumb {
  padding-top: 84px;
  padding-left: 160px;
}

.breadcrumb-bar--conf .breadcrumb {
  padding-top: 84px;
  padding-left: 160px;
}

.breadcrumb-bar {
  background: transparent;
}

@media (max-width: 767px) {
  .prj-hero .breadcrumb {
    top: 112px;
    left: 160px;
  }
  .breadcrumb-bar {
    padding: 80px 16px 0;
  }
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--border-radius-s);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-dim);
  color: var(--white);
}

.btn-outline {
  background: var(--bg-card2);
  color: var(--white);
  border: var(--border-btn);
  border-radius: var(--border-radius-s);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  align-items: center;
}

.btn-outline:hover {
  border-color: var(--accent);
  backdrop-filter: blur(20px);
  background-color: var(--bg-card3);
  color: var(--white);
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-outline {
    font-size: 16px;
    padding: 12px 24px;
  }
}
/* ════════════════════════════════════════
   SUBNAV — общий субнав для страниц модели
   Используется на: sklad, specs, equipment, complete, configurator
   ════════════════════════════════════════ */
.subnav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(15, 43, 69, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(77, 144, 254, 0.15);
}
.subnav__list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0 24px;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav__list::-webkit-scrollbar {
  display: none;
}
.subnav__item {
  flex-shrink: 0;
}
.subnav__link {
  display: flex;
  align-items: center;
  padding: 14px 20px 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease-in-out;
}
.subnav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 20px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.subnav__link:hover {
  color: var(--white);
}
.subnav__link.is-active {
  color: var(--accent);
}
.subnav__link.is-active::after {
  transform: scaleX(1);
}

.subnav-target {
  scroll-margin-top: 124px;
}

@media (max-width: 767px) {
  .subnav {
    top: 56px;
  }
  .subnav__link {
    padding: 12px 14px;
    font-size: 10px;
  }
  .subnav-target {
    scroll-margin-top: 108px;
  }
}
/* ── SECTION WRAPPER ── */
.section {
  padding: 56px 160px;
}

@media (max-width: 1280px) {
  .section {
    padding: 56px 80px;
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 48px 40px;
  }
  .section-sub {
    font-size: 17px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
  }
  .section-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 14px;
  }
  .section-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: normal;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.section-title--center {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 560px;
  margin-bottom: 64px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius);
  width: 480px;
  max-width: 95vw;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--white);
}

.modal h3 {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.modal p {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 10px;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid rgba(77, 144, 254, 0.2);
  border-radius: var(--border-radius-s);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group select option {
  background: var(--bg-card);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── TOOLTIP ── */
.tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: super;
  cursor: default;
  padding: 8px;
  margin: -8px;
}

.tooltip__icon {
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
  pointer-events: bounding-box;
}

.tooltip:hover .tooltip__icon {
  opacity: 1;
}

.tooltip__bubble {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  background: var(--bg-card3);
  border: 1px solid rgba(77, 144, 254, 0.3);
  border-radius: var(--border-radius-s);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: none;
  padding: 12px 14px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  white-space: normal;
}
.tooltip__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--bg-card3);
}

.tooltip__bubble.is-visible {
  opacity: 1;
}

.tooltip__bubble.is-below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--bg-card3);
}

.tooltip--right .tooltip__bubble {
  left: calc(100% + 10px);
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip--right .tooltip__bubble::after {
  top: 50%;
  left: auto;
  right: 100%;
  transform: translateY(-50%);
  border-top-color: transparent;
  border-right-color: var(--bg-card3);
}

.tooltip--left .tooltip__bubble {
  right: calc(100% + 10px);
  left: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip--left .tooltip__bubble::after {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-top-color: transparent;
  border-left-color: var(--bg-card3);
}

.tooltip--bottom .tooltip__bubble {
  top: calc(100% + 10px);
  bottom: auto;
}
.tooltip--bottom .tooltip__bubble::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--bg-card3);
}

/* ── NAV ── */
.nav-cta.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  height: 50px;
  gap: 8px;
  padding: 8px 14px 8px 22px;
  color: var(--text);
  border: none;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease-in-out;
}
.nav-cta.nav-dd-trigger:hover, .nav-cta.nav-dd-trigger.is-open {
  background: var(--accent-dim);
  color: var(--white);
  border-bottom-color: transparent;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
  height: 64px;
  background: var(--bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(77, 144, 254, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
  line-height: 1;
}

.nav-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav-link.nav-link-active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-right a {
  color: var(--accent);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.nav-right a:hover {
  color: var(--white);
}

/* .nav-right a:first-child {
  height: 100%;
  padding: 24px 0;
  margin-right: 19px;
  border-bottom: 1px solid transparent;
}

.nav-right a:first-child:hover {
  border-bottom: 1px solid var(--white);
} */
/* ── Общий класс для иконочных кнопок в хедере ── */
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-s);
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.nav-icon-btn svg {
  stroke: var(--accent);
  transition: stroke 0.3s ease-in-out;
}
.nav-icon-btn:hover {
  background-color: var(--accent-dim);
}
.nav-icon-btn:hover svg {
  stroke: var(--white);
}
.nav-icon-btn:active {
  transform: scale(0.9);
}

/* Уникальные свойства каждой кнопки */
.sales-territory {
  z-index: 1000;
}
.sales-territory svg {
  stroke: none;
}
.sales-territory svg path {
  stroke: var(--accent);
  transition: stroke 0.3s ease-in-out;
}
.sales-territory:hover svg {
  stroke: none;
}
.sales-territory:hover svg path {
  stroke: var(--white);
}

.support-float-btn {
  z-index: 1000;
}

.lk-button {
  gap: 8px;
}

/* На мобилках можно скрыть текст и оставить только иконку */
@media (max-width: 480px) {
  .lk-button span {
    display: none;
  }
}
/* ── БУРГЕР-КНОПКА ── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 200;
}

.burger-btn__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.burger-btn.is-open .burger-btn__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open .burger-btn__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger-btn.is-open .burger-btn__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── МОБИЛЬНОЕ МЕНЮ ── */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 150;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Аккордеон-секции */
.mmenu-section {
  border-bottom: 1px solid rgba(77, 144, 254, 0.12);
}

.mmenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-body);
  text-align: left;
}

.mmenu-trigger__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text80);
}

.mmenu-section.is-open .mmenu-trigger__icon {
  transform: rotate(180deg);
}

.mmenu-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mmenu-section.is-open .mmenu-sub {
  max-height: 600px;
}

.mmenu-sub__list {
  list-style: none;
  padding: 0 24px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mmenu-sub__link {
  display: block;
  padding: 10px 0;
  color: var(--text);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(77, 144, 254, 0.07);
  transition: color 0.2s ease;
}

.mmenu-sub__link:last-child {
  border-bottom: none;
}

.mmenu-sub__link:hover {
  color: var(--white);
}

/* Нижняя часть — CTA */
.mmenu-footer {
  margin-top: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(77, 144, 254, 0.12);
}

.mmenu-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--border-radius-s);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.mmenu-cta-primary:hover {
  background: var(--accent-dim);
}

.mmenu-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(77, 144, 254, 0.3);
  border-radius: var(--border-radius-s);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.mmenu-cta-outline:hover {
  border-color: var(--accent);
}

/* ── АДАПТИВ НАВИГАЦИИ ── */
@media (max-width: 1280px) {
  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .header-nav {
    gap: 8px;
    padding: 0 24px;
  }
  /* Скрываем весь блок «Заказать» — он есть в мобильном меню */
  .nav-right > .nav-item--has-dropdown {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-nav {
    padding: 0 16px;
  }
  /* Скрываем иконки гео и поддержки — остаётся логотип + ЛК + бургер */
  .sales-territory,
  .support-float-btn {
    display: none;
  }
}
/* ── NAV MEGA-MENU DROPDOWN ── */
.nav-item--has-dropdown {
  position: static;
}

.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 20px 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}
.nav-dd-trigger:hover, .nav-dd-trigger.is-open {
  color: var(--white);
  border-bottom-color: var(--white);
}
.nav-dd-trigger.is-active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

.nav-dd-trigger.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 98;
  background: var(--bg);
  border-bottom: 1px solid rgba(77, 144, 254, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease-in-out, transform 0.22s ease-in-out;
}
.nav-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-dropdown__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--bg);
  max-width: 1760px;
  margin: 0 auto;
  height: 300px;
}

.nav-dd-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.25s ease-in-out;
}
.nav-dd-card:hover {
  background: var(--bg-card2);
}
.nav-dd-card:hover .nav-dd-card__img img {
  transform: scale(1.04);
}
.nav-dd-card:hover .nav-dd-card__cta {
  color: var(--accent);
}

.nav-dd-card__img {
  overflow: hidden;
  flex-shrink: 0;
}
.nav-dd-card__img img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.nav-dd-card__body {
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-dd-card__tag {
  font-size: 10px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-dd-card__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-top: 2px;
}

.nav-dd-card__price {
  font-size: 14px;
  color: var(--text80);
  margin-top: 4px;
}
.nav-dd-card__price strong {
  color: var(--text);
  font-weight: 600;
}

.nav-dd-card__cta {
  font-size: 12px;
  color: var(--text80);
  margin-top: 8px;
  letter-spacing: 0.12em;
  transition: color 0.25s ease-in-out;
}

.nav-dd-all {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
.nav-dd-all svg {
  opacity: 0.6;
  transition: transform 0.3s ease-in-out, opacity 0.25s ease-in-out;
}
.nav-dd-all:hover {
  color: var(--accent);
  background: var(--bg-card);
}
.nav-dd-all:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.nav-dd-overlay {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 97;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-in-out;
}
.nav-dd-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-dd-footer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--bg-card2);
  border-top: 1px solid rgba(77, 144, 254, 0.15);
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
}

.nav-dd-footer__item {
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 28px;
  text-decoration: none;
  color: var(--text80);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
.nav-dd-footer__item svg {
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.25s ease-in-out;
}
.nav-dd-footer__item:hover {
  color: var(--white);
  background: var(--bg-card);
}
.nav-dd-footer__item:hover svg {
  opacity: 1;
}

@media (max-width: 1200px) {
  .nav-dropdown__inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav-dd-all {
    display: none;
  }
  .nav-dd-footer {
    grid-template-columns: repeat(5, 1fr);
  }
  .nav-dd-footer__item {
    padding: 13px 16px;
    font-size: 11px;
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .nav-dropdown {
    display: none;
  }
}
.nav-dd-cols {
  max-width: 1760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 80px 32px;
}

.nav-dd-col {
  padding: 0 28px;
  border-right: 1px solid var(--border-badge);
}
.nav-dd-col:first-child {
  padding-left: 0;
}
.nav-dd-col:last-child {
  padding-right: 0;
  border-right: none;
}

.nav-dd-col__title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 14px;
  padding-bottom: 12px;
}

.nav-dd-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nav-dd-col__link {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.nav-dd-col__link:hover {
  color: var(--accent);
  /* border-bottom-color: var(--accent); */
}

.nav-dd-footer--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
  .nav-dd-cols {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 40px 24px;
    gap: 24px;
  }
  .nav-dd-col {
    border-right: none;
    padding: 0;
  }
  .nav-dd-col:nth-child(odd) {
    padding-right: 16px;
    border-right: 1px solid var(--border-badge);
  }
}
.nav-dd-order {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 40px 36px;
  gap: 16px;
}

.nav-dd-order__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px 24px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius-s);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: inherit;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
.nav-dd-order__card svg {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease-in-out;
}
.nav-dd-order__card:hover {
  background: var(--bg-card2);
  border-color: var(--accent-dim3);
}
.nav-dd-order__card:hover svg {
  transform: scale(1.1);
}
.nav-dd-order__card:hover .nav-dd-order__title {
  color: var(--white);
}

.nav-dd-order__title {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.25s ease-in-out;
}

.nav-dd-order__sub {
  font-size: 16px;
  color: var(--text80);
  line-height: 1.45;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-track {
  display: flex; /* Выстраивает слайды в ряд */
  width: 700%; /* 100% * количество слайдов */
  height: 100%;
  transform: translateX(0);
}

.slide {
  position: relative;
  width: 100vw;
  height: 100vh; /* Высота на весь экран */
  overflow: hidden;
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(0.7);
}

.slide-content {
  position: absolute;
  bottom: 220px;
  left: 160px;
  max-width: 1000px;
  z-index: 5;
}

.slide-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid rgba(77, 144, 254, 0.5);
  border-radius: var(--border-radius-s);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 14px 4px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 80px);
  line-height: 1;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.7);
}

.slide-sub {
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 36px;
}

.slide-price {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
}

.slide-price span {
  font-size: 14px;
  color: var(--text80);
  font-weight: 400;
}

.slide-btns {
  display: flex;
  gap: 16px;
}

.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
  width: 100%;
  padding: 0;
}

.hero-tab {
  flex: 1;
  background: rgba(15, 43, 69, 0.4);
  backdrop-filter: blur(20px);
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  color: var(--text);
  transition: color 0.3s ease-in-out;
  box-sizing: content-box;
}

.hero-tab.active {
  color: var(--white);
  background: var(--bg);
}

.tab-title {
  display: block;
  padding: 0 24px;
  font-size: 24px;
  line-height: 1;
  margin-top: 24px;
  margin-bottom: 4px;
  font-weight: 400;
}

.tab-subtitle {
  display: block;
  padding: 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 24px;
}

.tab-progress-bar {
  height: 4px;
  background: transparent;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.tab-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%; /* Будет меняться через JS или анимацию */
  background: var(--accent);
}

.hero-tab.active .tab-progress-fill {
  width: 100%;
  transition: width 5s linear; /* Время показа слайда */
}

/* ── МОБИЛЬНАЯ НАВИГАЦИЯ ── */
/* Контейнер скрыт на десктопе — показывается только на мобилке */
.hero-mobile-nav {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  pointer-events: none; /* чтобы не перекрывать контент */
}

/* Точки пагинации */
.hero-mobile-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-bottom: 24px;
  pointer-events: auto;
}

.hero-mobile-dot {
  border: none !important;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: var(--text80);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.hero-mobile-dot.is-active {
  width: 56px;
  background: var(--text80);
}

/* Прогресс-бар — тонкая полоска в самом низу героя */
.hero-mobile-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.hero-mobile-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  /* Анимация запускается через JS — transition добавляется динамически */
}

/* ── АДАПТИВ ── */
@media (max-width: 1280px) {
  .slide-content {
    left: 80px;
    bottom: 200px;
  }
  .hero-nav {
    left: 40px;
  }
  .hero-counter {
    right: 40px;
  }
}
@media (max-width: 1024px) {
  .slide-content {
    left: 40px;
    bottom: 160px;
    max-width: 680px;
  }
  .hero-title {
    font-size: clamp(40px, 7vw, 64px);
  }
  .slide-sub {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .slide-price {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .btn-primary,
  .btn-outline {
    font-size: 16px;
    padding: 12px 28px;
  }
  .hero-nav {
    left: 40px;
  }
  .hero-counter {
    right: 40px;
  }
  .tab-title {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding: 0 16px;
  }
  .tab-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .slide-content {
    left: 20px;
    bottom: 60px;
    max-width: calc(100vw - 40px);
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
    margin-bottom: 12px;
  }
  .slide-sub {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .slide-price {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .slide-btns {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  /* Скрываем десктопные элементы навигации */
  .hero-tabs {
    display: none !important;
  }
  .hero-nav {
    display: none;
  }
  .hero-counter {
    display: none;
  }
  /* Показываем мобильную навигацию */
  .hero-mobile-nav {
    display: block;
  }
}
/* ── MODELS ── */
#models {
  background: var(--bg);
}

.models-header {
  margin-bottom: 56px;
}

.models-header-row {
  display: flex;
  justify-content: space-between;
}

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

.model-card {
  display: block;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  position: relative;
  border: var(--border);
  border-radius: var(--border-radius);
}

.model-card:hover {
  background: var(--bg-card2);
  z-index: 2;
}

.model-card:hover .model-price {
  color: var(--white);
}

.model-card-top {
  overflow: hidden;
  position: relative;
}

.model-card-img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.model-card:hover .model-card-img {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.04);
}

.model-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  border: var(--border);
  border-radius: var(--border-radius-s);
  background: var(--bg-btn);
  padding-block: 10px;
  padding-inline: 16px;
  transition: all 0.3s ease-in-out;
}

.model-card:hover .model-badge {
  background: var(--accent);
  color: var(--bg);
}

.model-card-body {
  padding: 28px;
  /* border-top: 1px solid rgba(77, 144, 254, 0.15); */
}

.model-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 4px;
}

.model-tagline {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* ── SPEC CARDS — minimal technical look ── */
.model-specs {
  display: grid;
  grid-template-columns: 1fr;
  /* border: 1px solid rgba(77, 144, 254, 0.1); */
  /* background: rgba(77, 144, 254, 0.1); */
}

.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: var(--border);
  /* background: var(--bg); */
  padding: 8px 0;
}

.spec-label {
  font-size: 16px;
  color: var(--text80);
  margin-bottom: 4px;
  font-weight: 500;
}

.spec-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-body);
}

.model-price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text80);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-top: 24px;
  transition: color 0.3s ease-in-out;
}

.model-price span {
  color: var(--accent);
}

.model-price small {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text80);
  font-weight: 400;
  display: block;
}

.model-actions {
  display: flex;
  gap: 8px;
}

/* ── PAGINATION ── */
.models-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.models-pagination__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(100, 157, 234, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  flex-shrink: 0;
}
.models-pagination__dot.is-active {
  background: var(--accent);
  transform: scale(1.4);
  width: 20px;
  border-radius: 4px;
}
.models-pagination__dot:hover:not(.is-active) {
  background: rgba(100, 157, 234, 0.5);
}

.btn-sm {
  font-size: 16px;
  width: 50%;
  padding: 14px 20px;
}

/* ── АДАПТИВ ── */
@media (max-width: 1280px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .models-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .models-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }
  .models-header p {
    text-align: left;
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .models-grid {
    grid-template-columns: 1fr;
  }
  .model-card-body {
    padding: 20px;
  }
  .model-name {
    font-size: 20px;
  }
  .model-tagline {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .model-price {
    font-size: 18px;
    padding-top: 16px;
    margin-bottom: 16px;
  }
  .model-actions {
    flex-direction: column;
  }
  .btn-sm {
    width: 100%;
  }
}
/* STEPS BAR */
.configurator {
  background: var(--bg-card);
}

.steps-bar {
  margin-top: 108px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--bg);
  overflow-x: auto;
}

.step-item {
  display: flex;
  width: 16.6%;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  cursor: pointer;
  border-right: var(--border);
  color: var(--text80);
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  flex-shrink: 0;
  position: relative;
}

.step-item:hover {
  background: var(--bg-card2);
  color: var(--white);
}

.step-item.active {
  color: var(--white);
  background: var(--bg-card2);
}

.step-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.step-item.done {
  color: var(--text);
}

.step-num-konf {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-item.active .step-num-konf {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.step-item.done .step-num-konf {
  background: transparent;
  border-color: var(--text80);
  color: var(--text80);
}

/* MAIN LAYOUT */
.configurator {
  display: flex;
}

/* LEFT PANEL */
.left-panel {
  width: 420px;
  flex-shrink: 0;
  border: var(--border-btn);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--bg-card);
}

.model-visual {
  position: relative;
  background: var(--bg-card);
  padding: 40px 32px 0;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.model-visual-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
}

.model-tagline-conf {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.model-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.warehouse-svg {
  width: 100%;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.left-info {
  padding: 28px 32px;
  border-bottom: var(--border);
}

.price-label {
  font-size: 10px;
  color: var(--text80);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-val-wrap {
  align-items: flex-start;
}

.price-val {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.price-sub {
  font-size: 16px;
  color: var(--text80);
  margin-top: 4px;
}

.specs-list {
  padding: 20px 32px;
  border-bottom: var(--border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: var(--border-badge);
  font-size: 16px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  color: var(--text);
}

.spec-val {
  color: var(--white);
  font-weight: 400;
  text-align: right;
}

.left-btn-wrap {
  padding: 24px 32px;
  margin-top: auto;
}

.btn-secondary {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--text);
  border: var(--border);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-secondary:hover {
  border-color: var(--text);
  color: var(--white);
}

/* RIGHT PANEL */
.right-panel {
  flex: 1;
  overflow-y: auto;
  padding: 40px 48px;
  background: var(--bg-card);
}

.section-head {
  margin-bottom: 28px;
}

.section-num {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* MODEL CARDS */
.models-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.model-row {
  display: flex;
  align-items: center;
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--bg);
  color: var(--text);
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
  gap: 20px;
}

.model-row:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card2);
  color: var(--white);
}

.model-row.selected {
  border-color: var(--accent);
  color: var(--white);
}

.model-row-icon {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card2);
  overflow: hidden;
}

.model-row-body {
  flex: 1;
}

.model-row-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.model-row-area {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.model-row-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  /* font-size: 14px;
  border: var(--border);
  border-radius: var(--border-radius-xs); */
  color: var(--text80);
  padding: 3px 20px 3px 0;
}

.model-row-price {
  text-align: right;
  flex-shrink: 0;
}

.model-row-from {
  font-size: 14px;
  color: var(--text80);
  margin-bottom: 4px;
}

.model-row-pricenum {
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
}

.sel-indicator {
  width: 20px;
  height: 20px;
  border: var(--border);
  border-radius: var(--border-radius-xs);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all 0.3s ease-in-out;
}

.model-row.selected .sel-indicator {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* LEVEL CARDS */
.levels-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.level-row {
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--bg);
  color: var(--text);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
}

.level-row:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card2);
  color: var(--white);
}

.level-row.selected {
  border-color: var(--accent);
  color: var(--white);
}

.level-row:hover .level-price-val.base {
  color: var(--white);
}

.level-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 12px;
}

.level-name {
  font-size: 24px;
  font-weight: 600;
  margin: 8px 0 12px;
}

.level-desc {
  font-size: 16px;
}

.level-price-tag {
  text-align: right;
  align-self: flex-end;
}

.level-price-label {
  font-size: 11px;
  margin-bottom: 4px;
}

.level-price-val {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.level-price-val.base {
  color: var(--text80);
}

/* accordion toggle button */
.level-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px 0 0;
  cursor: pointer;
  color: var(--text80);
  transition: color 0.3s ease-in-out;
}
.level-toggle:hover {
  color: var(--white);
}
.level-toggle svg {
  transition: transform 0.3s ease-in-out;
  display: block;
}

.level-row.is-open .level-toggle svg {
  transform: rotate(180deg);
}

/* accordion panel */
.level-features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  margin-top: 0;
  border-top: none;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding-top 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

.level-row.is-open .level-features-wrap {
  max-height: 400px;
  opacity: 1;
  padding-top: 14px;
  margin-top: 14px;
  border-top: var(--border-badge);
}

.lf-item {
  font-size: 16px;
  line-height: 1.3;
  color: var(--text80);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lf-item::before {
  content: "—";
  color: var(--text80);
  flex-shrink: 0;
}

.level-sel {
  position: absolute;
  top: 12px;
  right: 24px;
  width: 22px;
  height: 22px;
  border: var(--border);
  border-radius: var(--border-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: all 0.3s ease-in-out;
}

.level-row.selected .level-sel {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-card {
  border: var(--border);
  border-radius: var(--border-radius);
  padding: 20px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
}

.service-card:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card2);
  color: var(--white);
}

.service-card:hover .service-desc {
  color: var(--text);
}

.service-card.selected {
  border-color: var(--accent);
  background: rgba(200, 169, 110, 0.05);
  color: var(--white);
}

.service-cb {
  width: 20px;
  height: 20px;
  border: var(--border);
  border-radius: var(--border-radius-xs);
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
}

.service-card.selected .service-cb {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.service-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  padding-right: 30px;
}

.service-desc {
  font-size: 16px;
  color: var(--text80);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

/* FINANCE */
.finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fin-card {
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--bg);
  color: var(--text);
  padding: 22px 24px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
}

.fin-card:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card2);
  color: var(--white);
}

.fin-card:hover .fin-detail {
  color: var(--text);
}

.fin-card.selected {
  border-color: var(--accent);
  color: var(--white);
}

.fin-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.fin-detail {
  font-size: 16px;
  color: var(--text80);
  margin-bottom: 8px;
}

.fin-highlight {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}

/* NAV BOTTOM */
.step-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: var(--border-badge);
}

/* RESULT */
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.result-block {
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--bg);
  padding: 24px;
}

.result-block-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.result-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: var(--border-badge);
  font-size: 16px;
}

.result-line:last-child {
  border-bottom: none;
}

.result-line-key {
  color: var(--text);
}

.result-line-val {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  text-align: right;
}

#res-equip {
  white-space: pre-line; /* Заставляет браузер учитывать символы \n как переносы строк */
}

.result-total-bar {
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 4px;
}

.result-total-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.8;
}

.result-total-val {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--accent);
  margin-left: auto;
}

.result-note {
  font-size: 12px;
  color: var(--text80);
  margin-top: 4px;
  text-align: right;
}

/* HIDDEN */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ════════════════════════════════════════
  CATALOG PAGE — _catalog.scss
  ════════════════════════════════════════ */
/* ── MODELS SECTION ── */
.cat-models-section {
  background: var(--bg);
  padding: 56px 160px;
}

.cat-models-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}

.cat-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-model-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out;
}

.cat-model-img-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.cat-model-img-wrap img {
  width: 100%;
  aspect-ratio: 6/3;
  object-fit: cover;
  display: block;
}

.cat-model-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 8px;
}

.cat-model-name {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
}

.cat-model-price {
  font-size: 14px;
  color: var(--text);
  margin-top: 8px;
  margin-bottom: 12px;
}

.cat-model-price strong {
  font-size: 24px;
  color: var(--accent);
  font-weight: 600;
}

.cat-model-btn {
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--accent);
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .cat-models-section {
    padding: 60px 40px;
  }
  .cat-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cat-models-section {
    padding: 48px 20px;
  }
  .cat-models-grid {
    grid-template-columns: 1fr;
  }
  .cat-models-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.offer-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.offer-hero__overlay {
  position: absolute;
  /*  inset: 0;
   background: linear-gradient(
     to bottom,
     rgba(10, 25, 45, 0.35) 0%,
     rgba(10, 25, 45, 0.15) 100%
   ); */
}
.offer-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.offer-hero__title {
  margin-bottom: 44px;
}
.offer-hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-config {
  background: var(--bg-card);
  padding: 112px 80px;
}
.offer-config__header {
  margin-bottom: 52px;
}
.offer-config__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.offer-config__accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-step {
  background: var(--bg);
  border: 1px solid rgba(77, 144, 254, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
}
.offer-step.is-open {
  border-color: rgba(77, 144, 254, 0.45);
}
.offer-step__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease-in-out;
}
.offer-step__head:hover {
  background: rgba(77, 144, 254, 0.04);
}
.offer-step__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(77, 144, 254, 0.1);
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.offer-step.is-open .offer-step__num {
  background: var(--accent);
  color: var(--white);
}
.offer-step__label {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.offer-step__value {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.offer-step__arrow {
  width: 18px;
  height: 18px;
  color: var(--text80);
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}
.offer-step.is-open .offer-step__arrow {
  transform: rotate(180deg);
}
.offer-step__body {
  display: none;
  padding: 4px 24px 24px;
}
.offer-step.is-open .offer-step__body {
  display: block;
}
.offer-step__models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.offer-model-opt {
  border: 1px solid rgba(77, 144, 254, 0.2);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.offer-model-opt:hover {
  border-color: rgba(77, 144, 254, 0.5);
  background: rgba(77, 144, 254, 0.05);
  color: var(--white);
}
.offer-model-opt:hover .offer-model-opt__name {
  color: var(--white);
}
.offer-model-opt__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.3s ease-in-out;
}
.offer-model-opt.is-selected {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(77, 144, 254, 0.1);
}
.offer-model-opt__sub {
  font-size: 12px;
  color: var(--text80);
  line-height: 1.4;
}
.offer-model-opt__price {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

.offer-step-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(77, 144, 254, 0.2);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}
.offer-step-select:focus {
  border-color: var(--accent);
}

.offer-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.offer-extra-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(77, 144, 254, 0.15);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.offer-extra-opt:hover {
  border-color: rgba(77, 144, 254, 0.4);
  color: var(--white);
}
.offer-extra-opt.is-checked {
  border-color: var(--accent);
  background: rgba(77, 144, 254, 0.08);
  color: var(--white);
}
.offer-extra-opt input[type=checkbox] {
  display: none;
}
.offer-extra-opt__check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(77, 144, 254, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: all 0.3s ease-in-out;
}
.offer-extra-opt.is-checked .offer-extra-opt__check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.offer-extra-opt__label {
  font-size: 16px;
  flex: 1;
  line-height: 1.35;
}
.offer-extra-opt__price {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.offer-fin-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.offer-fin-opt {
  border: 1px solid rgba(77, 144, 254, 0.15);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.offer-fin-opt:hover {
  border-color: rgba(77, 144, 254, 0.4);
}
.offer-fin-opt.is-selected {
  border-color: var(--accent);
  background: rgba(77, 144, 254, 0.1);
}
.offer-fin-opt__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.offer-fin-opt__detail {
  font-size: 16px;
  color: var(--text80);
}

.offer-preview {
  background: var(--bg);
  border: 1px solid rgba(77, 144, 254, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: sticky;
  top: 72px;
}
.offer-preview__tabs {
  display: flex;
  border-bottom: 1px solid rgba(77, 144, 254, 0.15);
}
.offer-preview__tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text80);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 6px;
  cursor: pointer;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.offer-preview__tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.offer-preview__tab:hover {
  color: var(--white);
}
.offer-preview__visual {
  background: var(--bg-card2);
  padding: 28px 20px;
}
.offer-preview__visual img {
  width: 100%;
  display: block;
}
.offer-preview__price-wrap {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.offer-preview__price-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text80);
  margin-bottom: 6px;
}
.offer-preview__price-val {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.offer-preview__cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 18px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.offer-preview__cta:hover {
  background: var(--accent-dim);
}

.offer-fin-section {
  background: var(--bg-card);
  padding: 80px;
}
.offer-fin-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.offer-fin-card {
  background: var(--bg);
  border: 1px solid rgba(77, 144, 254, 0.15);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.offer-fin-card:hover {
  border-color: rgba(77, 144, 254, 0.45);
  background: var(--bg-card2);
}
.offer-fin-card__icon {
  font-size: 40px;
}
.offer-fin-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.offer-fin-card__text {
  font-size: 13px;
  color: var(--text80);
  line-height: 1.7;
  flex: 1;
}
.offer-fin-card__link {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.3s ease-in-out;
}
.offer-fin-card__link:hover {
  color: var(--white);
}

@media (max-width: 1200px) {
  .offer-config {
    padding: 60px 40px;
  }
  .offer-config__layout {
    grid-template-columns: 1fr;
  }
  .offer-preview {
    position: static;
  }
  .offer-step__models {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-fin-section {
    padding: 60px 40px;
  }
  .offer-fin-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-contact {
    padding: 60px 40px;
  }
  .offer-contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .offer-hero__title {
    font-size: 34px;
  }
  .offer-config {
    padding: 40px 20px;
  }
  .offer-step__models {
    grid-template-columns: 1fr;
  }
  .offer-extras-grid {
    grid-template-columns: 1fr;
  }
  .offer-fin-opts {
    grid-template-columns: 1fr;
  }
  .offer-fin-section {
    padding: 40px 20px;
  }
  .offer-fin-section__grid {
    grid-template-columns: 1fr;
  }
  .offer-contact {
    padding: 40px 20px;
  }
}
/* ── PROJECT (model detail) page ── */
/* ── Hero ── */
.prj-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.prj-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.prj-hero__bg::after {
  content: "";
  position: absolute;
}
.prj-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}
.prj-hero__content {
  position: absolute;
  z-index: 1;
  padding: 0 80px 72px;
  top: 300px;
  left: 300px;
}
.prj-hero__tag {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: lowercase;
  color: var(--text80);
  margin-bottom: 16px;
}
.prj-hero__title {
  margin-bottom: 16px;
}
.prj-hero__price {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 40px;
}

/* ── Stats strip ── */
.prj-stats {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: transparent;
  border-top: 1px solid rgba(77, 144, 254, 0.12);
}
.prj-stats__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px 40px;
  border-right: 1px solid rgba(77, 144, 254, 0.1);
}
.prj-stats__item:last-child {
  border-right: none;
}
.prj-stats__value {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.prj-stats__label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text80);
}

/* ── About model section ── */
.prj-about {
  background: var(--bg);
}
.prj-about__intro {
  text-align: center;
  padding: 112px 80px 56px;
  max-width: 800px;
  margin: 0 auto;
}
.prj-about__intro .section-title {
  margin-bottom: 20px;
}
.prj-about__desc {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}
.prj-about__split {
  display: flex;
  align-items: center;
}
.prj-about__photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.prj-about__photo img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.prj-about__features {
  flex-shrink: 0;
  width: 37%;
  max-height: 600px;
  overflow-y: auto;
  background: var(--bg);
  backdrop-filter: blur(12px);
  padding: 40px 160px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(77, 144, 254, 0.5) transparent;
}
.prj-about__features::-webkit-scrollbar {
  width: 3px;
}
.prj-about__features::-webkit-scrollbar-track {
  background: transparent;
}
.prj-about__features::-webkit-scrollbar-thumb {
  background: rgba(77, 144, 254, 0.5);
  border-radius: 2px;
}
.prj-about__feat-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.prj-about__feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.prj-about__feat-item {
  padding: 14px 0 14px 18px;
  border-left: 3px solid rgba(77, 144, 254, 0.18);
  cursor: pointer;
  transition: border-left-color 0.3s ease-in-out;
}
.prj-about__feat-item:last-child {
  border-bottom: none;
}
.prj-about__feat-item.is-open {
  border-left-color: var(--accent);
}
.prj-about__feat-item.is-open .prj-about__feat-desc {
  opacity: 1;
  margin-top: 8px;
}
.prj-about__feat-item.is-open .prj-about__feat-name {
  color: var(--white);
}
.prj-about__feat-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text80);
  line-height: 1.3;
  user-select: none;
}
.prj-about__feat-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

@media (max-width: 1023px) {
  .prj-about__intro {
    padding: 72px 40px 56px;
  }
  .prj-about__features {
    width: 56%;
    max-height: 360px;
    padding: 32px 32px 24px;
  }
}
@media (max-width: 767px) {
  .prj-about__intro {
    padding: 56px 24px 40px;
  }
  .prj-about__split {
    min-height: 300px;
  }
  .prj-about__features {
    position: static;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    border-left: none;
    padding: 32px 24px;
    backdrop-filter: none;
    background: var(--bg-card);
  }
}
.prj-video {
  width: 100%;
  padding: 112px 0 56px;
}

.prj-video__player {
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  height: 100vh;
}

/* ── Variants section ── */
.prj-variants {
  background: var(--bg);
}
.prj-variants__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.prj-variants__head .section-tag {
  display: block;
  text-align: center;
}
.prj-variants__head .section-title--center {
  margin-bottom: 0;
}
.prj-variants__head .section-title--center span {
  color: var(--accent);
}
.prj-variants__head .section-sub {
  text-align: right;
  margin-bottom: 0;
  flex-shrink: 0;
  color: var(--accent);
  transition: color 0.3s ease-in-out;
}
.prj-variants__head .section-sub:hover {
  color: var(--white);
}
.prj-variants__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.prj-variant {
  position: relative;
  border: var(--border);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease-in-out;
}
.prj-variant .prj-wrapper {
  background: var(--bg-card2);
  border-radius: 12px 12px 0 0;
  padding: 24px;
  height: 100%;
}
.prj-variant .prj-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: var(--border);
}
.prj-variant__img-wrap {
  margin: -24px -64px 0;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 5/3;
}
.prj-variant__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 16px;
}
.prj-variant__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.prj-variant__price {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  align-self: end;
}
.prj-variant__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prj-variant__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  padding: 6px 0 6px 16px;
  list-style-type: disc;
  color: var(--text);
}
.prj-variant__item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}
.prj-variant__item {
  /*   &--full {
      overflow: hidden;
      max-height: calc(3 * 1.3em + 8px); // 3 строки + padding
      transition: max-height 0.4s ease-in-out;
      cursor: pointer;


      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 0;
        height: 10px;
        background: linear-gradient(transparent,  var(--bg-card2));
        pointer-events: none;
        transition: opacity 0.3s ease;
      }

      &:hover {
        max-height: 40em;

        &::after {
          opacity: 0;
        }
      }
    } */
}
.prj-variant__btn {
  width: 100%;
  padding: 23px 0 20px;
  background: var(--accent-dim2);
  border: 1px solid transparent;
  border-radius: 0 0 12px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.prj-variant__btn:hover {
  backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: var(--accent-dim3);
  color: var(--white);
}

@media (max-width: 1023px) {
  .prj-variants {
    padding: 72px 40px;
  }
  .prj-variants__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .prj-variants__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .prj-variants__head .section-sub {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .prj-variants {
    padding: 56px 24px;
  }
  .prj-variants__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* ── Downloads section ── */
.prj-downloads {
  background: var(--bg);
  padding: 56px 80px;
}
.prj-downloads__title {
  margin: 0 0 56px;
}
.prj-downloads__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.prj-downloads__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px 22px;
  min-height: 110px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.prj-downloads__card:hover {
  border-color: var(--accent);
  background: var(--bg-card2);
}
.prj-downloads__card:hover .prj-downloads__arrow {
  color: var(--accent);
  transform: translateX(14px);
}
.prj-downloads__card-label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
}
.prj-downloads__series {
  color: var(--white);
  font-weight: 600;
}
.prj-downloads__arrow {
  align-self: flex-end;
  width: 28px;
  height: 28px;
  color: rgba(77, 144, 254, 0.55);
  flex-shrink: 0;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .prj-downloads {
    padding: 56px 24px;
  }
  .prj-downloads__grid {
    grid-template-columns: 1fr;
  }
}
/* ── Responsive ── */
@media (max-width: 1023px) {
  .prj-hero__content {
    padding: 0 40px 56px;
  }
  .prj-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .prj-stats__item {
    border-bottom: 1px solid rgba(77, 144, 254, 0.1);
  }
  .prj-stats__item:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .prj-hero {
    min-height: 520px;
  }
  .prj-hero__content {
    padding: 0 24px 48px;
  }
  .prj-stats {
    grid-template-columns: 1fr 1fr;
  }
  .prj-stats__item {
    padding: 24px 20px;
  }
  .prj-stats__value {
    font-size: 32px;
  }
  .prj-step {
    grid-template-columns: 36px 24px 1fr;
  }
}
/* ═══════════════════════════════════════════════════════
   СЕКЦИЯ «О ПРОЕКТЕ» — главная страница (index.html)
   Блок: .idx-about
   ═══════════════════════════════════════════════════════ */
/* ── Обёртка секции ──────────────────────────────────────
   Наследует padding от .section (56px 160px),
   нижний отступ чуть больше для визуального баланса      */
.idx-about {
  padding-bottom: 80px;
}
.idx-about__section {
  padding: 56px 280px;
}
@media (max-width: 1280px) {
  .idx-about__section {
    padding: 56px 80px;
  }
}
@media (max-width: 1024px) {
  .idx-about__section {
    padding: 48px 40px;
  }
}
@media (max-width: 1024px) {
  .idx-about__section {
    padding: 40px 20px;
  }
}
.idx-about {
  /* ── Карточка: два столбца 50/50 ──────────────────────
     Левый — фото, правый — текст.
     min-height задаёт минимальную высоту всего блока      */
}
.idx-about__card {
  overflow: hidden;
}
.idx-about {
  /* ── Колонка с фотографией ────────────────────────────
     overflow: hidden нужен чтобы zoom при ховере
     не вылезал за границы карточки                        */
}
.idx-about__img-col {
  position: relative;
  overflow: hidden;
}
.idx-about {
  /* ── Само фото ────────────────────────────────────────
     object-fit: cover — заполняет колонку без искажений.
     transition — плавное увеличение при наведении         */
}
.idx-about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease-in-out;
  filter: brightness(0.5);
}
.idx-about {
  /* Zoom-эффект на фото при наведении на всю карточку */
}
.idx-about__card:hover .idx-about__img {
  transform: scale(1.03);
}
.idx-about {
  /* ── Колонка с текстом ────────────────────────────────
     Тёмный фон (--bg-card), флекс по вертикали,
     контент выровнен по центру. gap — расстояние
     между тегом, заголовком и кнопкой                    */
}
.idx-about__text-col {
  position: absolute;
  top: 20%;
  right: 2%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 40px;
}
.idx-about {
  /* ── Заголовок ────────────────────────────────────────
     Крупный, жирный, uppercase.
     clamp(min, preferred, max) — адаптивный размер шрифта:
       44px   — минимум (маленький экран)
       4.8vw  — fluid (масштабируется с шириной окна)
       72px   — максимум (большой экран)
     line-height: 0.95 — строки вплотную (как в дизайне)  */
}
.idx-about__title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 56px;
}
.idx-about {
  /* ── Кнопка «Подробнее» ───────────────────────────────
     Outline-стиль (прозрачный фон, рамка).
     width: fit-content — кнопка по ширине текста,
     не растягивается на всю колонку.
     ::after добавляет стрелку → без лишнего HTML-тега     */
}
.idx-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.idx-about__btn::after {
  content: "→";
  font-size: 16px;
  font-weight: 400;
}
.idx-about__btn:hover {
  border-color: var(--accent);
  color: var(--white);
}

/* ── Планшет (до 1023px) ──────────────────────────────────
   Карточка переходит в одну колонку: сначала фото,
   потом текст под ним                                      */
@media (max-width: 1023px) {
  .idx-about__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .idx-about__img-col {
    min-height: 340px; /* фиксированная высота фото-блока */
  }
  .idx-about__text-col {
    padding: 48px 40px;
    gap: 32px;
  }
}
/* ── Мобильный (до 767px) ─────────────────────────────────
   Уменьшаем отступы секции и текстовой колонки,
   шрифт заголовка чуть крупнее относительно экрана        */
@media (max-width: 767px) {
  .idx-about {
    padding: 40px 24px 56px;
  }
  .idx-about__img-col {
    min-height: 260px;
  }
  .idx-about__text-col {
    padding: 40px 24px;
    gap: 28px;
  }
  .idx-about__title {
    font-size: clamp(40px, 10vw, 56px);
  }
}
/* ═══════════════════════════════════════════════════════
   СЕКЦИЯ «НОВОСТИ» — главная страница (index.html)
   Блок: .idx-news
   ═══════════════════════════════════════════════════════ */
/* ── Шапка секции: заголовок слева, кнопка справа ────── */
.idx-news {
  padding: 56px 280px;
  background: var(--bg-card);
}
@media (max-width: 1280px) {
  .idx-news {
    padding: 56px 80px;
  }
}
@media (max-width: 1024px) {
  .idx-news {
    padding: 48px 40px;
  }
}
@media (max-width: 1024px) {
  .idx-news {
    padding: 40px 20px;
  }
}
.idx-news__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
.idx-news .section-title {
  margin: 0;
}
.idx-news {
  /* ── Заголовок «Новости» ──────────────────────────────
     Крупный жирный, без отступов — выравнивается с сеткой */
}
.idx-news__heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1;
}
.idx-news {
  /* ── Кнопка «Все новости» ─────────────────────────────
     Outline-стиль: прозрачный фон, акцентная рамка       */
}
.idx-news__all-btn {
  display: inline-flex;
  align-items: center;
}
.idx-news {
  /* ── Сетка карточек: три колонки ─────────────────────
     gap — расстояние между карточками                    */
}
.idx-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.idx-news {
  /* ── Карточка новости = ссылка ───────────────────────
     <a> сбрасывает подчёркивание и цвет текста.
     Флекс по вертикали — текст всегда под фото          */
}
.idx-news__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.idx-news {
  /* ── Обёртка фото ─────────────────────────────────────
     aspect-ratio фиксирует пропорции кадра.
     overflow: hidden обрезает zoom-эффект при ховере     */
}
.idx-news__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 20px;
}
.idx-news {
  /* ── Само фото ────────────────────────────────────────
     object-fit: cover — заполняет блок без искажений.
     Zoom при наведении на всю карточку-ссылку            */
}
.idx-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
  transition: transform 0.5s ease-in-out;
}
.idx-news {
  /* Zoom срабатывает при наведении на всю карточку */
}
.idx-news__card:hover .idx-news__img {
  transform: scale(1.05);
}
.idx-news {
  /* ── Тело карточки: дата + заголовок + текст ─────────  */
}
.idx-news__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.idx-news {
  /* ── Дата ─────────────────────────────────────────────
     font-style: normal — сбрасываем italic у <time>      */
}
.idx-news__date {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.idx-news {
  /* ── Заголовок новости ────────────────────────────────
     Белый жирный текст, становится акцентным при ховере  */
}
.idx-news__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 12px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.idx-news__title:hover {
  color: var(--accent);
}
.idx-news {
  /* ── Описание ─────────────────────────────────────────
     Приглушённый цвет, нормальный межстрочный интервал   */
}
.idx-news__desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

/* ── Планшет (до 1023px) ──────────────────────────────────
   Две карточки в ряд вместо трёх                          */
@media (max-width: 1024px) {
  .idx-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .idx-news {
    /* Третья карточка растягивается на обе колонки */
  }
  .idx-news__card:nth-child(3) {
    grid-column: 1/-1;
  }
  .idx-news__card:nth-child(3) .idx-news__img-wrap {
    aspect-ratio: 21/9; /* широкоформатное фото */
  }
}
/* ── Мобильный (до 767px) ─────────────────────────────────
   Карточки в одну колонку, уменьшаем боковые отступы      */
@media (max-width: 768px) {
  .idx-news {
    padding: 40px 24px 56px;
  }
  .idx-news__header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .idx-news__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .idx-news {
    /* Сбрасываем широкоформатный стиль третьей карточки */
  }
  .idx-news__card:nth-child(3) {
    grid-column: auto;
  }
  .idx-news__card:nth-child(3) .idx-news__img-wrap {
    aspect-ratio: 16/10;
  }
}
/* ═══════════════════════════════════════════════════════
   СЕКЦИЯ «ПОДПИСКА НА НОВОСТИ» — главная страница
   Блок: .idx-subscribe
   ═══════════════════════════════════════════════════════ */
/* ── Фон секции ───────────────────────────────────────── */
.idx-subscribe {
  padding: 56px 160px;
  background: var(--bg);
  /* ── Карточка формы ───────────────────────────────────
     Центрированный прямоугольник с тёмным фоном.
     max-width ограничивает ширину на широких экранах     */
}
.idx-subscribe__card {
  max-width: 1360px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 56px 24px;
}
.idx-subscribe {
  /* ── Заголовок «Подпишитесь на новости» ──────────────
     Крупный, по центру                                   */
}
.idx-subscribe__title {
  margin: 0 0 36px;
  line-height: 1.25;
}
.idx-subscribe__form {
  margin-inline: 176px;
  padding-inline: 24px;
}
.idx-subscribe {
  /* ── «* Обязательные поля» ───────────────────────────
     Мелкий текст акцентного цвета в начале формы        */
}
.idx-subscribe__required {
  font-size: 16px;
  color: var(--accent);
  margin: 0 0 24px;
}
.idx-subscribe {
  /* ── Группа: лейбл + содержимое ──────────────────────  */
}
.idx-subscribe__group {
  margin-bottom: 28px;
}
.idx-subscribe {
  /* ── Лейбл группы (например «Темы подписки*») ────────
     Маленький uppercase с расстоянием между буквами     */
}
.idx-subscribe__group-label {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 16px;
}
.idx-subscribe {
  /* ── Сетка тем: 2 колонки ─────────────────────────── */
}
.idx-subscribe__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.idx-subscribe {
  /* ── Лейбл чекбокса (тема / согласие) ───────────────
     cursor: pointer — весь ряд кликабелен               */
}
.idx-subscribe__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s ease-in-out;
}
.idx-subscribe__check-label:hover {
  color: var(--white);
}
.idx-subscribe {
  /* ── Кастомный чекбокс ────────────────────────────────
     Сбрасываем браузерный вид, рисуем свой квадрат.
     ::after — галочка, появляется только при :checked   */
}
.idx-subscribe__checkbox {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid rgba(77, 144, 254, 0.4);
  background: var(--bg-card2);
  border-radius: var(--border-radius-xs);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out;
}
.idx-subscribe__checkbox:checked {
  background: var(--accent);
  border-color: var(--accent);
  /* Галочка */
}
.idx-subscribe__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.idx-subscribe__checkbox:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.idx-subscribe {
  /* ── Строка из двух полей ────────────────────────────
     Имя+Фамилия, Телефон+Email — каждая пара рядом      */
}
.idx-subscribe__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.idx-subscribe {
  /* ── Поле: лейбл + input ─────────────────────────── */
}
.idx-subscribe__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.idx-subscribe {
  /* ── Лейбл поля ──────────────────────────────────────  */
}
.idx-subscribe__field-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}
.idx-subscribe {
  /* ── Поле ввода ──────────────────────────────────────
     При фокусе рамка меняется на акцентную             */
}
.idx-subscribe__input {
  padding: 13px 16px 11px;
  background: var(--bg-card2);
  border: var(--border);
  border-radius: var(--border-radius-s);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}
.idx-subscribe__input::placeholder {
  color: rgba(222, 232, 245, 0.35);
}
.idx-subscribe__input:focus {
  border-color: var(--accent);
}
.idx-subscribe {
  /* ── Блок согласий ───────────────────────────────────
     Отделён от полей ввода отступом сверху             */
}
.idx-subscribe__consents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  /* Ссылки внутри текста согласий */
}
.idx-subscribe__consents a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease-in-out;
}
.idx-subscribe__consents a:hover {
  color: var(--white);
}
.idx-subscribe {
  /* Согласие = тот же лейбл-чекбокс, но текст мельче   */
}
.idx-subscribe__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  transition: color 0.2s ease-in-out;
}
.idx-subscribe__consent:hover {
  color: var(--white);
}
.idx-subscribe {
  /* ── Кнопка «Отправить» ──────────────────────────────
     Акцентный фон, по центру, широкая                  */
}
.idx-subscribe__submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ── 1280px ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  .idx-subscribe {
    padding: 56px 80px;
  }
  .idx-subscribe__form {
    margin-inline: 80px;
  }
}
/* ── 1024px ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .idx-subscribe {
    padding: 48px 40px 48px;
  }
  .idx-subscribe__card {
    padding: 48px 32px 40px;
  }
  .idx-subscribe__form {
    margin-inline: 0;
    padding-inline: 0;
  }
  .idx-subscribe__title {
    margin-bottom: 28px;
  }
}
/* ── 768px ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .idx-subscribe {
    padding: 40px 16px 40px;
  }
  .idx-subscribe__card {
    padding: 36px 20px 32px;
  }
  .idx-subscribe__form {
    margin-inline: 0;
    padding-inline: 0;
  }
  .idx-subscribe__title {
    margin-bottom: 24px;
  }
  .idx-subscribe {
    /* Темы подписки — одна колонка */
  }
  .idx-subscribe__topics {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .idx-subscribe {
    /* Поля — одна колонка */
  }
  .idx-subscribe__fields-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .idx-subscribe__submit {
    width: 100%;
    padding: 16px 24px 14px;
  }
}
/* ── 480px ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .idx-subscribe {
    padding: 32px 12px 48px;
  }
  .idx-subscribe__card {
    padding: 28px 16px 28px;
    border-radius: var(--border-radius-s);
  }
  .idx-subscribe__form {
    margin-inline: 0;
    padding-inline: 0;
  }
  .idx-subscribe__title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 20px;
  }
  .idx-subscribe__group-label {
    font-size: 16px;
  }
  .idx-subscribe__required {
    font-size: 14px;
  }
  .idx-subscribe__check-label {
    font-size: 14px;
  }
  .idx-subscribe__input {
    padding: 11px 14px 9px;
    font-size: 15px;
  }
  .idx-subscribe__submit-wrap {
    margin-top: 24px;
  }
  .idx-subscribe__submit {
    width: 100%;
    font-size: 16px;
    padding: 14px 20px 12px;
  }
}
/* ── Hero ── */
.equip-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.equip-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.equip-hero__bg::after {
  content: "";
  position: absolute;
}
.equip-hero__photo {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  position: relative;
}
.equip-hero__content {
  position: absolute;
  z-index: 1;
  padding: 0 80px 72px;
  top: 250px;
  left: 300px;
  max-width: 1000px;
}
.equip-hero__title {
  margin-bottom: 16px;
  line-height: 1.3;
  text-transform: initial;
}

/* ── About model section ── */
.equip-service {
  background: var(--bg);
  padding: 112px 0 56px;
}
.equip-service__intro {
  text-align: center;
  padding: 112px 80px 72px;
  max-width: 800px;
  margin: 0 auto;
}
.equip-service__intro .section-title {
  margin-bottom: 20px;
}
.equip-service__desc {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}
.equip-service__split {
  display: flex;
  align-items: center;
}
.equip-service__photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.equip-service__photo img {
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
  transition: opacity 0.35s ease-in-out;
}
.equip-service__photo img.is-switching {
  opacity: 0;
}
.equip-service__features {
  flex-shrink: 0;
  width: 37%;
  max-height: 600px;
  overflow-y: auto;
  background: var(--bg);
  backdrop-filter: blur(12px);
  padding: 20px 160px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(77, 144, 254, 0.5) transparent;
}
.equip-service__features::-webkit-scrollbar {
  width: 3px;
}
.equip-service__features::-webkit-scrollbar-track {
  background: transparent;
}
.equip-service__features::-webkit-scrollbar-thumb {
  background: rgba(77, 144, 254, 0.5);
  border-radius: 2px;
}
.equip-service__feat-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.equip-service__feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.equip-service__feat-item {
  padding: 12px 0 12px 18px;
  border-left: 3px solid rgba(77, 144, 254, 0.18);
  cursor: pointer;
  transition: border-left-color 0.3s ease-in-out;
}
.equip-service__feat-item:last-child {
  border-bottom: none;
}
.equip-service__feat-item.is-open {
  border-left-color: var(--accent);
}
.equip-service__feat-item.is-open .equip-service__feat-desc {
  opacity: 1;
  margin-top: 8px;
}
.equip-service__feat-item.is-open .equip-service__feat-name {
  color: var(--white);
}
.equip-service__feat-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text80);
  line-height: 1.3;
  user-select: none;
}
.equip-service__feat-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

@media (max-width: 1023px) {
  .equip-service__intro {
    padding: 72px 40px 56px;
  }
  .equip-service__features {
    width: 56%;
    max-height: 360px;
    padding: 32px 32px 24px;
  }
}
@media (max-width: 767px) {
  .equip-service__intro {
    padding: 56px 24px 40px;
  }
  .equip-service__split {
    min-height: 300px;
  }
  .equip-service__features {
    position: static;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    border-left: none;
    padding: 32px 24px;
    backdrop-filter: none;
    background: var(--bg-card);
  }
}
.equip-service-left {
  padding: 56px 0;
}

/* ── equip-product: зеркальная секция (список слева, фото справа) ── */
.equip-product {
  background: var(--bg);
  padding: 56px 0 112px;
}
.equip-product__split {
  display: flex;
  align-items: center;
}
.equip-product__photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.equip-product__photo img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.35s ease-in-out;
}
.equip-product__photo img.is-switching {
  opacity: 0;
}
.equip-product__features {
  flex-shrink: 0;
  width: 37%;
  max-height: 600px;
  overflow-y: auto;
  background: var(--bg);
  padding: 20px 160px;
  scrollbar-width: thin;
  scrollbar-color: rgba(77, 144, 254, 0.5) transparent;
}
.equip-product__features::-webkit-scrollbar {
  width: 3px;
}
.equip-product__features::-webkit-scrollbar-track {
  background: transparent;
}
.equip-product__features::-webkit-scrollbar-thumb {
  background: rgba(77, 144, 254, 0.5);
  border-radius: 2px;
}
.equip-product__feat-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.equip-product__feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.equip-product__feat-item {
  padding: 12px 0 12px 18px;
  border-left: 3px solid rgba(77, 144, 254, 0.18);
  cursor: pointer;
  transition: border-left-color 0.3s ease-in-out;
}
.equip-product__feat-item:last-child {
  border-bottom: none;
}
.equip-product__feat-item.is-open {
  border-left-color: var(--accent);
}
.equip-product__feat-item.is-open .equip-product__feat-desc {
  opacity: 1;
  margin-top: 8px;
}
.equip-product__feat-item.is-open .equip-product__feat-name {
  color: var(--white);
}
.equip-product__feat-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text80);
  line-height: 1.3;
  user-select: none;
}
.equip-product__feat-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .equip-hero__content {
    padding: 0 40px 56px;
  }
}
@media (max-width: 767px) {
  .equip-hero {
    min-height: 520px;
  }
  .equip-hero__content {
    padding: 0 24px 48px;
  }
}
/* ── Downloads section ── */
.compl-downloads {
  background: var(--bg);
  padding: 56px 80px;
}
.compl-downloads__title {
  margin: 0 0 56px;
}
.compl-downloads__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.compl-downloads__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px 22px;
  min-height: 110px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.compl-downloads__card:hover {
  border-color: var(--accent);
  background: var(--bg-card2);
}
.compl-downloads__card:hover .compl-downloads__arrow {
  color: var(--accent);
  transform: translateX(14px);
}
.compl-downloads__card-label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
}
.compl-downloads__series {
  color: var(--white);
  font-weight: 600;
}
.compl-downloads__arrow {
  align-self: flex-end;
  width: 28px;
  height: 28px;
  color: rgba(77, 144, 254, 0.55);
  flex-shrink: 0;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .compl-downloads {
    padding: 56px 24px;
  }
  .compl-downloads__grid {
    grid-template-columns: 1fr;
  }
}
/* ── Responsive ── */
@media (max-width: 1023px) {
  .compl-hero__content {
    padding: 0 40px 56px;
  }
  .compl-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .compl-stats__item {
    border-bottom: 1px solid rgba(77, 144, 254, 0.1);
  }
  .compl-stats__item:nth-child(2) {
    border-right: none;
  }
  .compl-included {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 40px;
  }
}
@media (max-width: 767px) {
  .compl-hero {
    min-height: 520px;
  }
  .compl-hero__content {
    padding: 0 24px 48px;
  }
  .compl-stats {
    grid-template-columns: 1fr 1fr;
  }
  .compl-stats__item {
    padding: 24px 20px;
  }
  .compl-stats__value {
    font-size: 32px;
  }
  .compl-included {
    padding: 56px 24px;
  }
  .compl-step {
    grid-template-columns: 36px 24px 1fr;
  }
  .compl-included__right-stats {
    grid-template-columns: 1fr 1fr;
  }
}
/* ═══════════════════════════════════════════════════
   COMPARE TABLE — секция «Комплектации и цены»
   ═══════════════════════════════════════════════════ */
.compl-compare {
  background: var(--bg);
  padding-top: 112px;
}
.compl-compare__top {
  padding: 48px 0 0;
  text-align: center;
}
.compl-compare__title {
  padding: 24px 0;
  margin: 0;
}
.compl-compare__title span {
  color: var(--accent);
}
.compl-compare__controls {
  position: sticky;
  top: 108px;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid rgba(77, 144, 254, 0.1);
}
.compl-compare__controls-main {
  max-width: 820px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 32px 16px;
  margin: 0 auto;
  gap: 32px;
}
.compl-compare__downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.compl-compare__dl-label {
  font-size: 32px;
  color: var(--text);
  font-weight: 400;
  white-space: nowrap;
  margin-left: -200px;
}
.compl-compare__dl-list {
  display: flex;
  align-items: center;
  gap: 90px;
}
.compl-compare__dl-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.compl-compare__dl-link:hover {
  color: var(--white);
}
.compl-compare__dl-dot {
  width: 13px;
  height: 13px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}
.compl-compare__compact-head {
  display: none;
  align-items: stretch;
  gap: 4px;
}
.compl-compare__compact-var {
  flex: 1;
  min-width: 0;
  padding: 9px 24px 10px;
  background: var(--bg-card2);
  /* border-top: 1px solid transparent; */
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: flex 0.25s ease-in-out;
}
.compl-compare__compact-var + .compl-compare__compact-var {
  border-left: 1px solid rgba(77, 144, 254, 0.08);
}
.compl-compare__compact-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.compl-compare__compact-price {
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.compl-compare__head {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 24px;
}
.compl-compare__head-spacer {
  display: none;
}
.compl-compare__var {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  padding: 24px;
  transition: flex 0.25s ease-in-out;
}
.compl-compare__var-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: -24px -24px 0;
}
.compl-compare__var-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.3s ease-in-out;
}
.compl-compare__var-img:hover {
  filter: brightness(0.9);
}
.compl-compare__var-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0;
}
.compl-compare__var-price {
  font-size: 20px;
  color: var(--text);
  padding: 0;
  display: flex;
  align-items: start;
  gap: 5px;
  flex-wrap: wrap;
  line-height: 2.2;
}
.compl-compare__var-info-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(222, 232, 245, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.3s ease-in-out;
}
.compl-compare__var-info-btn:hover {
  color: var(--accent);
}
.compl-compare__table {
  padding-bottom: 80px;
}
.compl-compare__group {
  border-top: var(--border);
}
.compl-compare__group-hd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--bg-card2);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease-in-out;
}
.compl-compare__group-hd:hover {
  background: var(--bg-btn);
}
.compl-compare__group-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  transition: transform 0.3s ease-in-out;
}
.compl-compare__group--collapsed .compl-compare__group-arrow {
  transform: rotate(-180deg);
}
.compl-compare__row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(77, 144, 254, 0.08);
  transition: background 0.2s ease-in-out;
}
.compl-compare__row:hover {
  background: rgba(77, 144, 254, 0.04);
}
.compl-compare__row--hidden {
  display: none;
}
.compl-compare__feat {
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}
.compl-compare__cells-row {
  display: flex;
  align-items: stretch;
}
.compl-compare__cell {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px 24px;
  min-height: 44px;
  transition: flex 0.25s ease-in-out;
}
.compl-compare__cell:first-child {
  border-left: none;
}
.compl-compare__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.compl-compare__dash {
  font-size: 18px;
  color: rgba(222, 232, 245, 0.15);
  line-height: 1;
  user-select: none;
}

.compl-diff-toggle {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.compl-diff-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.compl-diff-toggle__input:checked + .compl-diff-toggle__track {
  background: var(--accent);
  border-color: var(--accent);
}
.compl-diff-toggle__input:checked + .compl-diff-toggle__track .compl-diff-toggle__knob {
  transform: translateX(18px);
  background: var(--white);
}
.compl-diff-toggle__track {
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: rgba(77, 144, 254, 0.18);
  border: 1px solid rgba(77, 144, 254, 0.3);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.compl-diff-toggle__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text80);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.compl-diff-toggle__label {
  font-size: 16px;
  color: var(--text);
  user-select: none;
  white-space: nowrap;
}

.compl-compare__vi-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  user-select: none;
}

.compl-compare__vi-cb {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.compl-compare__vi-cb:checked + .compl-compare__vi-check {
  background: var(--vi-color, var(--accent));
  border-color: var(--vi-color, var(--accent));
}
.compl-compare__vi-cb:checked + .compl-compare__vi-check svg {
  opacity: 1;
}

.compl-compare__vi-check {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid var(--vi-color, var(--accent));
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.compl-compare__vi-check svg {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  flex-shrink: 0;
}

.compl-compare__controls.is-stuck .compl-compare__compact-head {
  display: flex;
  animation: compactHeadIn 0.25s ease-out both;
}

@keyframes compactHeadIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* .compl-compare__vi-label {
  font-size: 14px;
  color: var(--text);
}
 */
.compl-compare__vi-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: color 0.3s ease-in-out;
}
.compl-compare__vi-toggle:hover .compl-compare__vi-label {
  color: var(--white);
}

@media (max-width: 1023px) {
  .compl-compare__top {
    padding: 40px 40px 28px;
  }
  .compl-compare__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .compl-compare__group-hd {
    padding: 14px 40px;
  }
  .compl-compare__feat {
    padding: 12px 16px 12px 40px;
  }
}
@media (max-width: 767px) {
  .compl-compare {
    padding-top: 104px;
  }
  .compl-compare__top {
    padding: 28px 24px 20px;
    text-align: left;
  }
  .compl-compare__controls {
    gap: 12px;
  }
  .compl-compare__downloads {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .compl-compare__dl-list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .compl-compare__head {
    top: 104px;
    grid-template-columns: 1.4fr repeat(4, 1fr);
  }
  .compl-compare__var-name {
    font-size: 10px;
    padding: 6px 6px 2px;
  }
  .compl-compare__var-price {
    font-size: 9px;
    padding: 0 6px 8px;
  }
  .compl-compare__var-info-btn {
    display: none;
  }
  .compl-compare__group-hd {
    padding: 12px 24px;
    font-size: 13px;
  }
  .compl-compare__feat {
    padding: 10px 10px 10px 24px;
    font-size: 11px;
  }
  .compl-compare__dot {
    width: 8px;
    height: 8px;
  }
  .compl-compare__dash {
    font-size: 14px;
  }
}
/* ═══════════════════════════════════════════════════════
   УНИВЕРСАЛЬНАЯ CTA-ФОРМА ЗАЯВКИ
   Блок: .cta-form
   Используется на: sklad.html, complete.html, specs.html, equipment.html
   ═══════════════════════════════════════════════════════ */
.cta-form {
  background: var(--bg);
  padding: 56px 160px;
}
.cta-form__inner {
  max-width: 1360px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cta-form__title {
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin: 0 0 4px;
  line-height: 1.25;
}
.cta-form__title span {
  color: var(--accent);
}
.cta-form__subtitle {
  max-width: 880px;
  font-size: 20px;
  color: var(--text);
  text-align: center;
  margin: 0 auto;
  margin-top: -16px;
}
.cta-form__required {
  font-size: 16px;
  color: var(--accent);
  margin: 0;
  margin-inline: 176px;
  padding-inline: 24px;
}
.cta-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline: 176px;
  padding-inline: 24px;
}
.cta-form__group-label {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 16px;
}
.cta-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.cta-form__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: var(--border);
  border-radius: var(--border-radius-s);
  background: var(--bg-card2);
  color: var(--text80);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cta-form__chip input[type=checkbox] {
  display: none;
}
.cta-form__chip:hover {
  border-color: var(--accent-dim);
  color: var(--white);
}
.cta-form__chip.is-checked {
  border-color: var(--accent-dim3);
  background: var(--bg-active);
  color: var(--white);
}
.cta-form__chip.is-checked::before {
  content: "✓";
  font-size: 13px;
  color: var(--accent);
}
.cta-form__dropdown {
  position: relative;
}
.cta-form__dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  font-size: 16px;
  font-weight: 400;
}
.cta-form__dropdown-trigger.is-open {
  border-color: var(--accent);
  color: var(--white);
  border-radius: var(--border-radius-s) var(--border-radius-s) 0 0;
}
.cta-form__dropdown-trigger.is-open .cta-form__dropdown-chevron {
  transform: rotate(180deg);
}
.cta-form__dropdown-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.cta-form__dropdown-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--accent);
  border-top: none;
  border-radius: 0 0 var(--border-radius-s) var(--border-radius-s);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.cta-form__dropdown-panel.is-open {
  max-height: 300px;
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 16px;
}
.cta-form__chip--drop {
  font-size: 14px;
  font-weight: 300;
  padding: 7px 13px;
  color: var(--text);
}
.cta-form__toggles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cta-form__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 18px 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-form__toggle .cta-form__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cta-form__toggle--active {
  border-color: var(--accent-dim);
  background: var(--bg-card3);
  color: var(--white);
  z-index: 1;
}
.cta-form__toggle--active .cta-form__check {
  opacity: 1;
}
.cta-form__colors-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-inline: 176px;
  padding-inline: 24px;
}
.cta-form__color-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-form__color-name {
  font-weight: 600;
  color: var(--white);
}
.cta-form__swatches {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cta-form__swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: outline-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: inset 0 -3px 8px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.4);
}
.cta-form__swatch:hover {
  transform: scale(1.08);
  outline-color: var(--accent-dim);
}
.cta-form__swatch--active {
  outline-color: var(--accent-dim);
  transform: scale(1.05);
}
.cta-form__location-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.cta-form__select-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.cta-form__select {
  width: 100%;
  padding: 15px 40px 13px 16px;
  font-size: 16px;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.cta-form__select:focus {
  border-color: var(--accent);
  color: var(--white);
}
.cta-form__select option {
  background: var(--bg-card3);
  color: var(--white);
}
.cta-form__select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: var(--text80);
  display: flex;
  align-items: center;
}
.cta-form__nearby {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--border-radius-s);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.cta-form__nearby:hover {
  background: var(--accent-dim);
  color: var(--white);
}
.cta-form__nearby svg {
  margin-top: -6px;
}
.cta-form__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cta-form__fields-row:last-child {
  margin-bottom: 0;
}
.cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-form__field--full {
  grid-column: 1/-1;
}
.cta-form__field-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}
.cta-form__input {
  padding: 13px 16px 11px;
  background: var(--bg-card2);
  border: var(--border);
  border-radius: var(--border-radius-s);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}
.cta-form__input::placeholder {
  color: rgba(222, 232, 245, 0.35);
}
.cta-form__input:focus {
  border-color: var(--accent);
}
.cta-form__textarea {
  resize: vertical;
  min-height: 112px;
  line-height: 1.6;
}
.cta-form__consents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  margin-inline: 176px;
  padding-inline: 24px;
}
.cta-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.cta-form__consent span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.cta-form__consent span a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-form__consent span a:hover {
  color: var(--white);
}
.cta-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: var(--border);
  background: var(--bg-card2);
  border-radius: var(--border-radius-xs);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease-in-out, background 0.2s ease-in-out;
}
.cta-form__checkbox:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.cta-form__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.cta-form__checkbox:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cta-form__submit-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  margin-inline: 176px;
  padding-inline: 24px;
}
.cta-form__submit {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--border-radius-s);
  padding: 16px 64px 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-form__submit:hover {
  background: var(--accent-dim);
  color: var(--white);
}

/* ── Планшет (до 1023px) ─────────────────────────────────── */
@media (max-width: 1023px) {
  .cta-form__group, .cta-form__colors-row, .cta-form__required, .cta-form__consents, .cta-form__submit-wrap {
    margin-inline: 0;
    padding-inline: 0;
  }
}
/* ── Мобильный (до 767px) ────────────────────────────────── */
@media (max-width: 767px) {
  .cta-form {
    padding: 40px 16px 56px;
  }
  .cta-form__inner {
    padding: 36px 24px;
    gap: 28px;
  }
  .cta-form__title {
    text-align: left;
  }
  .cta-form__toggles {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-form__toggle {
    border-right: var(--border);
  }
  .cta-form__toggle:nth-child(odd) {
    border-right: none;
  }
  .cta-form__toggle:nth-child(1), .cta-form__toggle:nth-child(2) {
    border-bottom: none;
  }
  .cta-form__colors-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-form__swatch {
    width: 44px;
    height: 44px;
  }
  .cta-form__location-row {
    flex-direction: column;
  }
  .cta-form__nearby {
    padding: 13px 20px 11px;
    justify-content: center;
  }
  .cta-form__fields-row {
    grid-template-columns: 1fr;
  }
  .cta-form__submit {
    width: 100%;
    padding: 16px 24px 14px;
  }
}
/* ═══════════════════════════════════════════════════════
   СТРАНИЦА «ТЕХНИЧЕСКИЕ ХАРАКТЕРИСТИКИ»
   Блок: .specs-hero
   ═══════════════════════════════════════════════════════ */
.specs-section-tag {
  display: block;
}

/* ── Hero ────────────────────────────────────────────────── */
.specs-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.specs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.specs-hero__bg::after {
  content: "";
  position: absolute;
}
.specs-hero__photo {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  position: relative;
}
.specs-hero__content {
  position: absolute;
  z-index: 1;
  padding: 0 80px 72px;
  top: 250px;
  left: 300px;
  max-width: 1300px;
}
.specs-hero__title {
  margin-bottom: 16px;
  line-height: 1.3;
  text-transform: initial;
}

/* ── Планшет (до 1023px) ─────────────────────────────────── */
@media (max-width: 1023px) {
  .specs-hero__content {
    left: 80px;
  }
}
/* ── Мобильный (до 767px) ────────────────────────────────── */
@media (max-width: 767px) {
  .specs-hero__content {
    left: 0;
    padding: 0 24px 48px;
    top: auto;
    bottom: 0;
  }
}
/* ═══════════════════════════════════════════════════════
   СЕКЦИЯ «ГАБАРИТНЫЕ РАЗМЕРЫ» — страница specs.html
   Блок: .specs-dims
   ═══════════════════════════════════════════════════════ */
.specs-dims {
  background: var(--bg);
  padding: 112px 80px 56px;
}
.specs-dims .section-title--center {
  text-align: center;
  margin-bottom: 56px;
}
.specs-dims__views {
  display: grid;
  grid-template-columns: 0.33fr 0.66fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 2px;
}
.specs-dims__view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 384px;
  /*  &--main {
     .specs-dims__img-wrap {
       min-height: 320px;
     }
   } */
}
.specs-dims__img-wrap {
  position: relative;
  width: 100%;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(77, 144, 254, 0.12);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specs-dims__img-wrap::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.specs-dims__img-wrap::after {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 12px;
  width: 1px;
  height: 12px;
  background: var(--accent);
  opacity: 0.6;
}
.specs-dims__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/3;
  display: block;
  padding: 24px;
  min-height: 220px;
}
.specs-dims__ann {
  position: absolute;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
}
.specs-dims__ann--bottom {
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.specs-dims__ann--bottom2 {
  bottom: -80px;
  left: 60%;
  transform: translateX(-50%);
  color: rgba(100, 157, 234, 0.55);
  font-size: 10px;
}
.specs-dims__ann--left {
  left: -48px;
  top: 20%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.specs-dims__ann--left-low {
  left: -48px;
  top: 55%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(100, 157, 234, 0.55);
  font-size: 10px;
}
.specs-dims__ann--right {
  right: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.specs-dims__angle {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.7;
}
.specs-dims__angle--left {
  left: 10%;
}
.specs-dims__angle--center {
  left: 50%;
  transform: translateX(-50%);
}
.specs-dims__angle--right {
  right: 10%;
}
.specs-dims__view-label {
  width: 100%;
  background: rgba(44, 99, 172, 0.08);
  border: 1px solid rgba(77, 144, 254, 0.1);
  border-top: none;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}
.specs-dims__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  gap: 2px;
}
.specs-dims__spec {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(77, 144, 254, 0.12);
}
.specs-dims__spec:last-child {
  border-right: none;
}
.specs-dims__spec-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text80);
  margin-bottom: 12px;
}
.specs-dims__spec-value {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

/* ── Планшет (до 1023px) ─────────────────────────────────── */
@media (max-width: 1023px) {
  .specs-dims {
    padding: 72px 40px 60px;
  }
  .specs-dims__views {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .specs-dims__ann--left, .specs-dims__ann--left-low, .specs-dims__ann--right {
    display: none;
  }
  .specs-dims__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .specs-dims__spec {
    border-right: none;
  }
}
/* ── Мобильный (до 767px) ────────────────────────────────── */
@media (max-width: 767px) {
  .specs-dims {
    padding: 56px 24px 48px;
  }
  .specs-dims__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
/* ═══════════════════════════════════════════════════════
   СЕКЦИЯ «ТАБЛИЦА ТЕХНИЧЕСКИХ ХАРАКТЕРИСТИК» — specs.html
   Блок: .specs-table
   ═══════════════════════════════════════════════════════ */
.specs-table {
  background: var(--bg);
  padding: 56px 80px;
}
.specs-table__title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 56px;
}
.specs-table__title {
  margin: 0 0 24px;
}
.specs-table__row--hidden {
  display: none !important;
}
.specs-table__wrap {
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.specs-table__head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg-card2);
  position: sticky;
  top: 108px;
  z-index: 10;
}
.specs-table__head-param {
  padding: 16px 20px;
  /* border-right: 1px solid rgba(77, 144, 254, 0.15); */
}
.specs-table__head-col {
  padding: 16px 20px;
  /* border-left: 1px solid rgba(77, 144, 254, 0.15); */
}
.specs-table__sel-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.specs-table__sel {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding-right: 20px;
  outline: none;
  line-height: 1.4;
}
.specs-table__sel option {
  background: var(--bg-card);
  color: var(--white);
}
.specs-table__sel-arrow {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: var(--accent);
  flex-shrink: 0;
}
.specs-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(77, 144, 254, 0.07);
}
.specs-table__row:last-child {
  border-bottom: none;
}
.specs-table__row:hover {
  background: rgba(77, 144, 254, 0.03);
}
.specs-table__param {
  padding: 11px 20px;
  font-size: 16px;
  color: var(--text);
  border-right: 1px solid rgba(77, 144, 254, 0.07);
  line-height: 1.45;
}
.specs-table__val {
  padding: 11px 20px;
  font-size: 16px;
  color: var(--white);
  border-left: 1px solid rgba(77, 144, 254, 0.07);
  line-height: 1.45;
}
.specs-table__val.is-diff {
  color: var(--accent);
  background: rgba(77, 144, 254, 0.05);
}
.specs-table__group {
  border-bottom: 1px solid rgba(77, 144, 254, 0.15);
}
.specs-table__group:last-child {
  border-bottom: none;
}
.specs-table__grp-hd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card2);
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  gap: 12px;
}
.specs-table__grp-hd:hover {
  background: var(--bg-btn);
  color: var(--white);
}
.specs-table__grp-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
  color: inherit;
}
.specs-table__grp-bd {
  display: none;
}
.specs-table__group.is-open .specs-table__grp-arrow {
  transform: rotate(180deg);
}
.specs-table__group.is-open .specs-table__grp-bd {
  display: block;
}
.specs-table__row--standalone {
  background: var(--bg-card);
  border-bottom: var(--border);
}

/* ── Тоггл «Показать отличия» ───────────────────────────── */
.specs-diff-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.specs-diff-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.specs-diff-toggle__input:checked + .specs-diff-toggle__track {
  background: var(--accent);
  border-color: var(--accent);
}
.specs-diff-toggle__input:checked + .specs-diff-toggle__track .specs-diff-toggle__knob {
  transform: translateX(18px);
  background: var(--white);
}
.specs-diff-toggle__track {
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: rgba(77, 144, 254, 0.18);
  border: 1px solid rgba(77, 144, 254, 0.3);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.specs-diff-toggle__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text80);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.specs-diff-toggle__label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  user-select: none;
  white-space: nowrap;
}

/* ── Планшет (до 1023px) ─────────────────────────────────── */
@media (max-width: 1023px) {
  .specs-table {
    padding: 56px 40px 72px;
  }
  .specs-table__head {
    top: 56px;
  }
}
/* ── Мобильный (до 767px) ────────────────────────────────── */
@media (max-width: 767px) {
  .specs-diff-toggle__label {
    font-size: 13px;
  }
  .specs-table {
    padding: 40px 0 56px;
  }
  .specs-table__wrap {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .specs-table__head {
    top: 56px;
    grid-template-columns: 0 1fr 1fr;
  }
  .specs-table__head-param {
    display: none;
  }
  .specs-table__row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .specs-table__param {
    font-size: 12px;
    padding: 10px 12px;
  }
  .specs-table__val {
    font-size: 12px;
    padding: 10px 12px;
  }
  .specs-table__grp-hd {
    font-size: 13px;
    padding: 12px 16px;
  }
  .specs-table__sel {
    font-size: 12px;
  }
}
/* ── SITE FOOTER ── */
.site-footer {
  background: var(--bg);
}
.site-footer__disclaimer {
  padding: 24px 160px;
  color: var(--text);
  line-height: 1.3;
  max-width: 1450px;
  justify-self: center;
}
.site-footer__top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 112px 160px 56px;
  /* @include desktop {
    padding: 112px 80px 56px;
  }

  @include tablet {
    padding: 96px 40px 48px;
  }

  @include tablet {
    padding: 80px 20px 40px;
  } */
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 40px;
  margin-right: 40px;
}
.site-footer__logo {
  display: inline-block;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}
.site-footer__logo:hover {
  opacity: 1;
}
.site-footer__tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.site-footer__col {
  padding: 0 24px;
}
.site-footer__col:last-child {
  border-right: none;
}
.site-footer__col-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__list a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.3s ease-in-out;
}
.site-footer__list a:hover {
  color: var(--accent);
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 80px;
  background: var(--bg);
}
.site-footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__bottom-left span {
  font-size: 12px;
  color: var(--text80);
  line-height: 1.55;
}
.site-footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.site-footer__phone {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.site-footer__phone:hover {
  color: var(--accent);
}
.site-footer__requisites {
  font-size: 11px;
  color: var(--text80);
}

.footer-bottom {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .site-footer__top {
    grid-template-columns: 220px repeat(4, 1fr);
    padding: 56px 40px 48px;
    gap: 0;
  }
  .site-footer__brand {
    padding-right: 28px;
    margin-right: 28px;
  }
  .site-footer__col {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
    padding: 0px 40px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px 40px;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(77, 144, 254, 0.1);
  }
  .site-footer__tagline {
    flex: 1;
    min-width: 200px;
  }
  .site-footer__col {
    border-right: none;
    padding: 0;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 40px;
  }
  .site-footer__bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 40px 24px;
  }
  .site-footer__brand {
    flex-direction: column;
    gap: 16px;
  }
  .site-footer__bottom {
    padding: 20px 24px;
  }
}
@media (max-width: 480px) {
  .site-footer__top {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    padding: 0 24px 40px;
  }
}
/* ════════════════════════════════════════
   ORDER PAGE — _order.scss
   Страница «Заказать онлайн»
   ════════════════════════════════════════ */
/* ── Плавное появление страницы ── */
#page-content {
  opacity: 0;
  transition: opacity 0.45s ease;
}
#page-content.page-visible {
  opacity: 1;
}

/* ══ HERO ══ */
.order-hero {
  background: var(--bg-card);
  padding: 96px 40px 24px;
  text-align: center;
}

.order-hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 20px;
}
.order-hero__title span {
  color: var(--accent);
}

.order-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.order-hero__sub span {
  color: var(--accent);
}

/* ══ ВЫБОР МОДЕЛИ ══ */
.order-models {
  background: var(--bg);
  padding: 0 0 100px;
}

.order-models__heading {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin: 0;
  padding: 32px 40px 32px;
}

/* ── Сетка карточек ── */
.order-models__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1760px;
  gap: 16px;
  margin: 0 auto;
}

/* ── Карточка модели ── */
.order-model-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius);
  border: var(--border);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.order-model-card:hover {
  background: var(--bg-card);
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* ── Фото ── */
.order-model-card__img {
  overflow: hidden;
  background: var(--bg-card);
}
.order-model-card__img img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.order-model-card:hover .order-model-card__img img {
  transform: scale(1.04);
}

/* ── Тело карточки ── */
.order-model-card__body {
  padding: 28px 36px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.order-model-card__name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.order-model-card__tagline {
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
}

.order-model-card__area {
  font-size: 16px;
  color: var(--text);
  margin-top: 2px;
}

/* ── CTA-стрелка (появляется при hover) ── */
.order-model-card__arrow {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text80);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.order-model-card:hover .order-model-card__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

/* ══ АДАПТИВ ══ */
@media (max-width: 1100px) {
  .order-models__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-model-card {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .order-model-card:nth-child(2n) {
    border-right: 1px solid transparent;
  }
  .order-model-card:nth-child(n+3) {
    border-top: none;
  }
}
@media (max-width: 600px) {
  .order-hero {
    padding: 72px 24px 56px;
  }
  .order-models__heading {
    padding: 48px 24px 40px;
  }
  .order-models__grid {
    grid-template-columns: 1fr;
  }
  .order-model-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .order-model-card:last-child {
    border-bottom: none;
  }
  .order-model-card__body {
    padding: 24px;
  }
  .order-model-card__name {
    font-size: 26px;
  }
}
/* ════════════════════════════════════════
   ORDER-CONFIG PAGE — _order-config.scss
   Страница выбора комплектации
   ════════════════════════════════════════ */
/* ══ HERO ══ */
.ocfg-hero {
  background: var(--bg-card);
  padding: 96px 40px 24px;
  text-align: center;
}

.ocfg-hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 20px;
}
.ocfg-hero__title span {
  color: var(--accent);
}

.ocfg-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.ocfg-hero__sub span {
  color: var(--accent);
}

/* ══ ТЕЛО (сайдбар + контент) ══ */
.ocfg-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 60vh;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ══ САЙДБАР ══ */
.ocfg-sidebar {
  padding: 24px 12px;
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--bg-card);
  position: sticky;
  top: 330px;
  margin-left: 40px;
  height: fit-content;
}

.ocfg-sidebar__heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.ocfg-sidebar__heading.is-open .ocfg-sidebar__chevron {
  transform: rotate(180deg);
}

.ocfg-sidebar__chevron {
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* Список моделей */
.ocfg-model-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ocfg-model-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: var(--border-radius-s);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, border 0.2s ease;
  user-select: none;
}
.ocfg-model-item:hover {
  background: var(--bg-card2);
}
.ocfg-model-item.is-active {
  background: var(--bg-card2);
  border: var(--border);
}
.ocfg-model-item.is-active .ocfg-model-item__radio {
  border-color: var(--accent);
}
.ocfg-model-item.is-active .ocfg-model-item__radio::after {
  opacity: 1;
}
.ocfg-model-item.is-active .ocfg-model-item__img {
  opacity: 1;
}

/* Радио-кружок */
.ocfg-model-item__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}
.ocfg-model-item__radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Превью модели */
.ocfg-model-item__img {
  width: 80px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.ocfg-model-item:hover .ocfg-model-item__img {
  opacity: 1;
}

.ocfg-model-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ocfg-model-item__name {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.ocfg-model-item__area {
  font-size: 10px;
  font-weight: 300;
  color: var(--text);
}

/* ══ КОНТЕНТ ══ */
.ocfg-content {
  padding: 100px 40px 0;
}

/* Строка статуса */
.ocfg-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.ocfg-count {
  font-size: 16px;
  color: var(--white);
}
.ocfg-count strong {
  color: var(--text80);
  font-weight: 400;
}

/* .ocfg-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--text80);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;

  &:hover { color: var(--white); }
}

.ocfg-sort__val { color: var(--accent); font-weight: 600; } */
/* Сетка карточек */
.ocfg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Карточка комплектации ── */
.ocfg-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.ocfg-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.ocfg-card:hover .ocfg-card__img-wrap img {
  transform: scale(1.04);
}
.ocfg-card:hover .ocfg-card__badge {
  color: var(--white);
}

/* Обёртка картинки с бейджем */
.ocfg-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.ocfg-card__img-wrap img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ocfg-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s ease;
}

/* Тело карточки */
.ocfg-card__body {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ocfg-card__model {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1;
}

.ocfg-card__level {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.ocfg-card__spec {
  font-size: 14px;
  color: var(--text80);
  margin-top: 2px;
}

/* Список включённого */
.ocfg-card__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ocfg-card__list li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}
.ocfg-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Подвал карточки */
.ocfg-card__foot {
  padding: 16px 20px 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ocfg-card__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.ocfg-card__price-label {
  font-size: 12px;
  color: var(--text80);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.ocfg-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--border-radius-s);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.ocfg-card__btn:hover {
  background: var(--accent-dim);
  color: var(--white);
}

/* ══ АДАПТИВ ══ */
@media (max-width: 1650px) {
  .ocfg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1300px) {
  .ocfg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .ocfg-body {
    grid-template-columns: 1fr;
  }
  .ocfg-sidebar {
    position: static;
    padding: 24px;
    margin: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .ocfg-model-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ocfg-model-item {
    flex: 0 0 auto;
  }
  .ocfg-content {
    padding: 24px 24px 48px;
  }
}
@media (max-width: 767px) {
  .ocfg-hero {
    padding: 56px 24px 40px;
  }
  .ocfg-grid {
    grid-template-columns: 1fr;
  }
  .ocfg-model-item__img {
    display: none;
  }
}
/* ════════════════════════════════════════
   PROCEDURE PAGE — _procedure.scss
   Страница «Порядок приобретения»
   ════════════════════════════════════════ */
/* ══ HERO ══ */
.prc-hero {
  background: var(--bg-card);
  padding: 96px 40px 72px;
  text-align: center;
}

.prc-hero__eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.prc-hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin: 0 0 20px;
}
.prc-hero__title span {
  color: var(--accent);
}

.prc-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

/* ══ ЗАГЛУШКА ══ */
.prc-stub {
  background: var(--bg);
  padding: 100px 40px 140px;
  display: flex;
  justify-content: center;
}

.prc-stub__inner {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.prc-stub__icon {
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

.prc-stub__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text80);
  margin: 0;
}

.prc-stub__text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.prc-stub__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.prc-stub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-s);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
}
.prc-stub__btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.prc-stub__btn--primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
}
.prc-stub__btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.prc-stub__btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ══ АДАПТИВ ══ */
@media (max-width: 767px) {
  .prc-hero {
    padding: 72px 24px 56px;
  }
  .prc-stub {
    padding: 72px 24px 100px;
  }
  .prc-stub__actions {
    flex-direction: column;
    width: 100%;
  }
  .prc-stub__btn {
    width: 100%;
  }
}
/* ════════════════════════════════════════
   REPRESENTATIVES — _representatives.scss
   ════════════════════════════════════════ */
/* ── HERO ── */
.repr-hero {
  padding: 112px 40px 44px;
  background: var(--bg);
  border-bottom: var(--border);
  text-align: center;
}

.repr-hero__title {
  margin-bottom: 24px;
}

.repr-hero__sub {
  font-size: 20px;
  color: var(--text80);
  margin: 0;
}

/* ── ТЕЛО ── */
.repr-body {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: calc(100vh - 64px);
}

/* ── САЙДБАР ── */
.repr-sidebar {
  background: var(--bg-card);
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.repr-sidebar__filter {
  padding: 14px 24px;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  background: var(--bg-card2);
}

.repr-sidebar__filter-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  user-select: none;
}

.repr-sidebar__filter-icon {
  color: var(--text80);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.repr-sidebar__filter-icon:hover {
  color: var(--white);
}

.repr-sidebar__list {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 157, 234, 0.25) transparent;
}
.repr-sidebar__list::-webkit-scrollbar {
  width: 4px;
}
.repr-sidebar__list::-webkit-scrollbar-track {
  background: transparent;
}
.repr-sidebar__list::-webkit-scrollbar-thumb {
  background: rgba(100, 157, 234, 0.25);
  border-radius: 2px;
}

/* ── КАРТОЧКА ПРЕДСТАВИТЕЛЯ ── */
.repr-card {
  padding: 18px 24px;
  border-bottom: var(--border);
  cursor: pointer;
  transition: background 0.2s ease;
  border-left: 3px solid transparent;
}
.repr-card:hover {
  background: var(--bg-card2);
}
.repr-card.is-active {
  background: var(--bg-card2);
  border-left-color: var(--accent);
}

.repr-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.repr-card__name {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  line-height: 1.3;
}
.repr-card__name svg {
  color: var(--text);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.repr-card__name:hover svg {
  color: var(--accent);
  transform: translateX(2px);
}

.repr-card__badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(100, 157, 234, 0.3);
  border-radius: var(--border-radius-xs);
  padding: 3px 8px;
  white-space: nowrap;
}

.repr-card__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.repr-card__row:last-child {
  margin-bottom: 0;
}

.repr-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text80);
}

.repr-card__val {
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}

.repr-card__link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}
.repr-card__link:hover {
  text-decoration: underline;
}

/* ── КАРТА ── */
.repr-map-wrap {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

#repr-map {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.repr-map__locate {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius-s);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.repr-map__locate svg {
  color: var(--accent);
  flex-shrink: 0;
}
.repr-map__locate:hover {
  background: var(--bg-card2);
  border-color: var(--accent);
}

/* Leaflet overrides — dark theme */
.repr-map-wrap .leaflet-popup-content-wrapper {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--border-radius-s);
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.repr-map-wrap .leaflet-popup-tip {
  background: var(--bg-card);
}
.repr-map-wrap .leaflet-popup-content {
  margin: 14px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
}
.repr-map-wrap .leaflet-popup-close-button {
  color: var(--text80) !important;
}
.repr-map-wrap .leaflet-popup-close-button:hover {
  color: var(--white) !important;
}
.repr-map-wrap .leaflet-control-zoom a {
  background: var(--bg-card) !important;
  border-color: rgba(77, 144, 254, 0.25) !important;
  color: var(--white) !important;
}
.repr-map-wrap .leaflet-control-zoom a:hover {
  background: var(--bg-card2) !important;
}
.repr-map-wrap .leaflet-control-attribution {
  background: rgba(15, 43, 69, 0.8) !important;
  color: var(--text80) !important;
}
.repr-map-wrap .leaflet-control-attribution a {
  color: var(--accent) !important;
}

/* ── АДАПТИВ ── */
@media (max-width: 1100px) {
  .repr-body {
    grid-template-columns: 320px 1fr;
  }
}
@media (max-width: 900px) {
  .repr-body {
    grid-template-columns: 1fr;
  }
  .repr-sidebar {
    position: static;
    height: auto;
    max-height: 45vh;
    border-right: none;
    border-bottom: var(--border);
  }
  #repr-map {
    min-height: 400px;
  }
  .repr-hero__title {
    font-size: 28px;
  }
  .repr-hero {
    padding: 32px 20px 28px;
  }
}
@media (max-width: 600px) {
  .repr-hero {
    padding: 24px 16px 20px;
  }
  .repr-card,
  .repr-sidebar__filter {
    padding-left: 16px;
    padding-right: 16px;
  }
  .repr-map__locate {
    right: 12px;
    top: 12px;
    padding: 8px 14px;
    font-size: 12px;
  }
}
.mslider-wrap {
  overflow: hidden;
  margin: 0 -8px;
  padding: 0 8px;
}

.mslider {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 1024px) {
  .mslider {
    gap: 10px;
  }
}

.mslider img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  draggable: false;
}

.mslider a {
  -webkit-user-drag: none;
  user-drag: none;
}

.mslider.is-dragging {
  transition: none;
}

.mslider .model-card {
  flex: 0 0 auto;
  min-width: 0;
}

.mslider-nav {
  display: flex;
  gap: 8px;
}

.mslider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary, #fff);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.mslider-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.mslider-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.mslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.mslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
  flex-shrink: 0;
}

.mslider-dot.is-active {
  background: var(--accent, #649dea);
  transform: scale(1.25);
  width: 22px;
  border-radius: 4px;
}

.models-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

/* ════════════════════════════════════════
   СЕКЦИЯ 3D НА ГЛАВНОЙ СТРАНИЦЕ
   ════════════════════════════════════════ */
#sklad3d {
  background: #0f2b45;
}

.sklad3d-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sklad3d-header p {
  font-size: 20px;
}

/* ── Вьюер ── */
.sklad3d-viewer {
  position: relative;
  overflow: hidden;
  /* border: var(--border); */
  background: var(--bg); /* совпадает с первым свотчем «Ночь» */
  aspect-ratio: 2.5/1;
  height: 60vh;
}
.sklad3d-viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.sklad3d-hint {
  position: absolute;
  bottom: 50px;
  left: 85%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--accent);
  border: var(--border-radius-s);
  font-size: 20px;
  color: #0f2b45;
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: opacity 0.6s ease;
}
.sklad3d-hint.is-hidden {
  opacity: 1;
}

/* ── Панель справа ── */
.sklad3d-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

/* ── Цвет стен ── */
.sklad3d-colors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sklad3d-colors-labels {
  display: flex;
  justify-content: space-between;
}

.sklad3d-colors-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.sklad3d-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sklad3d-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sklad3d-swatch:hover {
  transform: scale(1.15);
}
.sklad3d-swatch.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(100, 157, 234, 0.25);
  transform: scale(1.15);
}

.sklad3d-color-name {
  font-size: 14px;
  color: var(--text);
  min-height: 20px;
}

/* ── Фон сцены ── */
.sklad3d-bg-picker {
  border: var(--border);
  border-radius: var(--border-radius-s);
  padding: 12px 16px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── CTA ── */
.sklad3d-cta {
  display: flex;
  gap: 10px;
}
.sklad3d-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Шаги сборки ── */
.sklad3d-steps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.sklad3d-step {
  border: 1px solid transparent;
  border-radius: var(--border-radius-xs);
  transition: border-color 0.2s ease;
  position: relative;
}
.sklad3d-step.is-active {
  border-color: var(--accent);
}
.sklad3d-step.is-active .sklad3d-step-num {
  background: var(--accent);
  color: #0f2b45;
  border-color: var(--accent);
}
.sklad3d-step.is-active .sklad3d-step-icon {
  opacity: 1;
  color: var(--accent);
}
.sklad3d-step.is-active .sklad3d-step-body {
  position: absolute;
  top: -80px;
  left: 0;
  width: 250px;
  height: 200px;
  padding: 10px 10px 66px;
  opacity: 1;
}

.sklad3d-step-header {
  width: 100%;
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  text-align: left;
}

.sklad3d-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text80);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sklad3d-step-name {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  flex: 1;
}

.sklad3d-step-icon {
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Тело шага (раскрывается при is-active) */
.sklad3d-step-body {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: -80px;
  left: 0;
  width: 250px;
  height: 200px;
  padding: 10px 10px 66px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  background: transparent;
}

/* ══ АДАПТИВ СЕКЦИИ 3D (главная страница) ══ */
/* ── 1280px ── */
@media (max-width: 1280px) {
  .sklad3d-viewer {
    height: 50vh;
  }
  .sklad3d-inner {
    gap: 36px;
  }
  .sklad3d-header p {
    font-size: 18px;
  }
  .sklad3d-steps {
    gap: 0;
  }
  .sklad3d-hint {
    left: 80%;
    bottom: 0;
  }
}
/* ── 1024px ── */
@media (max-width: 1024px) {
  .sklad3d-viewer {
    height: 400px;
    min-height: 280px;
    aspect-ratio: 2/1;
  }
  .sklad3d-steps {
    gap: 0;
  }
  /* 7 шагов → 3+3+1 */
  .sklad3d-step-header {
    gap: 8px;
    padding: 6px;
  }
  .sklad3d-step-name {
    font-size: 13px;
  }
  .sklad3d-inner {
    gap: 32px;
  }
  .sklad3d-hint {
    left: 76%;
    bottom: 0;
  }
  .sklad3d-step-body {
    top: -80px;
    left: -60px;
    width: 250px;
    height: 90px;
    padding: 10px 10px 66px;
  }
  .sklad3d-step.is-active .sklad3d-step-body {
    top: -80px;
    left: -60px;
    width: 250px;
    height: 90px;
    padding: 10px 10px 66px;
  }
}
/* ── 768px ── */
@media (max-width: 768px) {
  .sklad3d-viewer {
    height: 38vh;
    min-height: 220px;
    aspect-ratio: 1.5/1;
  }
  .sklad3d-inner {
    gap: 24px;
  }
  .sklad3d-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  /* 7 шагов → 2 в ряд */
  .sklad3d-step {
    flex: 0 0 calc(30% - 4px);
  }
  .sklad3d-step-header {
    padding: 10px 12px;
    gap: 10px;
  }
  .sklad3d-step-name {
    font-size: 12px;
  }
  .sklad3d-step-num {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  /* CTA — кнопки в столбик */
  .sklad3d-cta {
    flex-direction: column;
    gap: 10px;
  }
  .sklad3d-cta .btn {
    width: 100%;
  }
  .sklad3d-hint {
    bottom: 0px;
    left: 43%;
    transform: translateX(0%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 40px;
    background: var(--accent);
    border: var(--border-radius-s);
    font-size: 16px;
    color: #0f2b45;
    pointer-events: none;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: opacity 0.6s ease;
  }
  .sklad3d-step-body {
    top: -160px;
    left: 190px;
    display: flex;
    gap: 12px;
    width: 80px;
    height: 0px;
    padding: 10px 10px 120px;
  }
  .sklad3d-step.is-active .sklad3d-step-body {
    top: -160px;
    left: 190px;
    display: flex;
    gap: 12px;
    width: 80px;
    height: 250px;
    padding: 10px 10px 120px;
  }
  .sklad3d-colors-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .sklad3d-swatches {
    display: block;
    flex-direction: column;
    order: -1;
  }
  .sklad3d-swatch {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
  }
}
/* ── 480px ── */
@media (max-width: 480px) {
  .sklad3d-viewer {
    height: 34vh;
    min-height: 350px;
    aspect-ratio: 1/1;
  }
  .sklad3d-inner {
    gap: 20px;
  }
  .sklad3d-hint {
    bottom: 0px;
    left: 28%;
    font-size: 14px;
    padding: 10px 14px;
  }
  .sklad3d-step-body {
    top: -160px;
    left: 190px;
    display: flex;
    gap: 12px;
    width: 80px;
    height: 0px;
    padding: 10px 10px 120px;
  }
  .sklad3d-step.is-active .sklad3d-step-body {
    top: -178px;
    left: -13px;
    display: flex;
    gap: 12px;
    width: 80px;
    height: 250px;
    padding: 10px 10px 120px;
  }
  .sklad3d-steps {
    gap: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sklad3d-step-header {
    padding: 8px 10px;
    gap: 8px;
  }
  .sklad3d-step-name {
    font-size: 11px;
  }
  .sklad3d-step-num {
    width: 20px;
    height: 20px;
    font-size: 10px;
    flex-shrink: 0;
  }
}
