/* =========================================================
   truck-cto — B2B landing
   Дизайн-система: индустриальный, надёжный, mobile-first.
   ========================================================= */

:root {
  /* Palette */
  --c-navy-900: #0a1828;
  --c-navy-800: #0b1f37;
  --c-navy-700: #112a48;
  --c-navy-600: #19355a;
  --c-navy-500: #284a76;
  --c-ink:      #0a1828;
  --c-ink-2:    #2a3950;
  --c-text:     #1b2a3f;
  --c-muted:    #5a6a82;
  --c-muted-2:  #8593a8;
  --c-line:     #e3e8ef;
  --c-line-2:   #d6dde7;
  --c-surface:  #ffffff;
  --c-surface-2:#f4f6fa;
  --c-surface-3:#eaeef4;

  --c-accent:    #f47a20;   /* основной янтарный CTA */
  --c-accent-2:  #d96208;   /* hover/active */
  --c-accent-soft:#fff1e3;
  --c-accent-ink:#3b1d05;

  --c-max: #25d366;
  --c-tg:  #2aabee;
  --c-ok:  #1e9d6a;
  --c-warn:#c0392b;

  /* Type */
  --ff-display: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ff-body:    "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Shadow */
  --sh-card:   0 1px 0 rgba(11,30,55,.04), 0 8px 24px -16px rgba(11,30,55,.18);
  --sh-pop:    0 24px 48px -24px rgba(11,30,55,.28), 0 2px 8px rgba(11,30,55,.06);
  --sh-focus:  0 0 0 3px rgba(244,122,32,.28);

  /* Layout */
  --container: 1240px;
  --gutter: 20px;
  --section-y: 56px;
}

@media (min-width: 900px) {
  :root { --section-y: 96px; --gutter: 32px; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 88px; /* зазор под mobile sticky bar */
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Section */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--dark {
  background: var(--c-navy-900);
  color: #e8edf5;
}
.section--gray { background: var(--c-surface-2); }
.section--tight { padding-top: 40px; padding-bottom: 40px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--c-accent);
}

/* Headings */
.h-display,
.h1, .h2, .h3 { font-family: var(--ff-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; margin: 0; color: var(--c-ink); }
.section--dark .h1,
.section--dark .h2,
.section--dark .h3 { color: #fff; }

.h-display {
  font-size: clamp(34px, 6.2vw, 68px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  font-weight: 800;
}
.h1 { font-size: clamp(30px, 4.6vw, 52px); }
.h2 { font-size: clamp(26px, 3.4vw, 40px); }
.h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.2; }
.lead { font-size: clamp(15px, 1.2vw, 17px); color: var(--c-muted); max-width: 60ch; }
.section--dark .lead { color: #aebbcd; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 900px) {
  .section-head { margin-bottom: 48px; }
}
.section-head--row {
  flex-direction: column;
}
@media (min-width: 900px) {
  .section-head--row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 32px; }
  .section-head--row > div:first-child { max-width: 720px; }
}

/* Helpers */
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.muted { color: var(--c-muted); }
.tiny { font-size: 12px; line-height: 1.5; color: var(--c-muted); }
.placeholder-note {
  display: inline-block;
  color: #6a778f;
  background: repeating-linear-gradient(45deg, #f3f5f9 0 8px, #eaeef4 8px 16px);
  border: 1px dashed var(--c-line-2);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-family: var(--ff-body);
}
.section--dark .placeholder-note {
  color: #c7d1e2;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --bg: var(--c-accent);
  --fg: #fff;
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { background: var(--c-accent-2); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: var(--sh-focus); }

.btn--ghost_white {
  --bg: transparent;
  --fg: var(--fg);
  --bd: var(--c-line-2);
}

.btn--ghost {
  --bg: transparent;
  --fg: var(--c-ink);
  --bd: var(--c-line-2);
}
.btn--ghost:hover { --bg: var(--c-surface-2); }
.section--dark .btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.22); }
.section--dark .btn--ghost:hover { --bg: rgba(255,255,255,.06); }

.btn--ink {
  --bg: var(--c-ink);
  --fg: #fff;
  --bd: var(--c-ink);
}
.btn--ink:hover { background: var(--c-navy-700); }

.btn--max { --bg: var(--c-max); --fg: #fff; --bd: var(--c-max); }
.btn--max:hover { background: #1fbb59; }
.btn--tg { --bg: var(--c-tg); --fg: #fff; --bd: var(--c-tg); }
.btn--tg:hover { background: #1f95d2; }

.btn--block { width: 100%; }
.btn--lg { min-height: 60px; padding: 0 28px; font-size: 16px; }
.btn--sm { min-height: 42px; padding: 0 14px; font-size: 14px; }
.btn--icon { padding: 0; width: 52px; min-width: 52px; }

/* Messenger pair (sits next to primary CTA) */
.msg-pair {
  display: inline-flex;
  gap: 8px;
}
.msg-btn {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  /* border: 1.5px solid var(--c-line-2); */
  /* background: #fff; */
  color: var(--c-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.msg-btn:hover { border-color: var(--c-ink); }
.msg-btn--max:hover { color: var(--c-max); border-color: var(--c-max); }
.msg-btn--tg:hover { color: var(--c-tg); border-color: var(--c-tg); }
.section--dark .msg-btn { background: transparent; border-color: rgba(255,255,255,.22); color: #fff; }

/* CTA stack with subline */
.cta-stack { display: inline-flex; flex-direction: column; gap: 6px; align-items: stretch; }
.cta-stack__sub { font-size: 12px; color: var(--c-muted); text-align: center; white-space: nowrap; }
.section--dark .cta-stack__sub { color: #97a4ba; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}
@media (min-width: 1100px) { .header__inner { min-height: 80px; } }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--c-ink);
  font-size: 18px;
  letter-spacing: -.01em;
}
.logo__mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo__mark svg { width: 22px; height: 22px; }

.nav {
  display: none;
  gap: 6px;
}
@media (min-width: 1100px) { .nav { display: flex; } }
.nav a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  border-radius: 8px;
}
.nav a:hover { background: var(--c-surface-2); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  flex-shrink: 0;
}
@media (min-width: 1100px) { .header__phone { display: inline-flex; } }
.header__phone strong { font-size: 18px; font-family: var(--ff-display); font-weight: 800; color: var(--c-ink); letter-spacing: -.01em; white-space: nowrap; }
.header__phone span { font-size: 11px; color: var(--c-muted); white-space: nowrap; }

.header__msg { display: none; gap: 6px; }
@media (min-width: 1100px) { .header__msg { display: inline-flex; } }
.header__cta { display: none; }
@media (min-width: 1100px) { .header__cta { display: inline-flex; } }

.header__phone-mobile {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid var(--c-line-2);
  flex-shrink: 0;
}
@media (min-width: 1100px) { .header__phone-mobile { display: none; } }

.burger {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1.5px solid var(--c-line-2);
  background: #fff;
  cursor: pointer;
}
@media (min-width: 1100px) { .burger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10,24,40,.5);
  display: none;
}
.mobile-menu.is-open { display: block; }
.mobile-menu__sheet {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #fff;
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.mobile-menu__top {
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--c-line);
  font-weight: 600;
  font-size: 16px;
}
.mobile-menu__phone { padding-top: 8px; }
.mobile-menu__phone strong { display: block; font-size: 22px; font-family: var(--ff-display); font-weight: 800; }
.mobile-menu__phone span { color: var(--c-muted); font-size: 13px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--c-navy-900);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(244,122,32,.16) 0%, transparent 50%),
    radial-gradient(80% 60% at 0% 100%, rgba(40,74,118,.5) 0%, transparent 60%),
    linear-gradient(180deg, #0a1828 0%, #0c1d33 100%);
}
.hero__bg::after {
  /* угловая «индустриальная» сетка */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  padding-top: 48px;
  padding-bottom: 56px;
  display: grid;
  gap: 40px;
}
@media (min-width: 1000px) {
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 96px;
    gap: 64px;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd9bb;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 4px rgba(244,122,32,.18); }

.hero h1 {
  margin: 18px 0 18px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-accent);
}
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #b9c6d8;
  max-width: 56ch;
  margin: 0 0 24px;
}

.hero__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
@media (min-width: 560px) { .hero__bullets { grid-template-columns: 1fr 1fr; } }
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #dbe3ef;
}
.hero__bullets li b { color: #fff; font-weight: 700; }
.hero__bullets .ic {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: rgba(244,122,32,.14);
  color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__bullets .ic svg { width: 20px; height: 20px; }

.hero__risk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(244,122,32,.10);
  border: 1px solid rgba(244,122,32,.28);
  color: #ffe7d2;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__risk svg { color: var(--c-accent); width: 22px; height: 22px; flex: 0 0 22px; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 560px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
}
.hero__leasing {
  margin-top: 14px;
  font-size: 13px;
  color: #97a4ba;
}
.hero__leasing b { color: #fff; font-weight: 700; }

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(244,122,32,.25) 0%, transparent 70%),
    linear-gradient(180deg, #112a48 0%, #0a1828 100%);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 320px;
}
@media (min-width: 1000px) { .hero__visual { aspect-ratio: 4/5; } }

.hero__visual .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: #aebbcd;
  text-align: center;
  /* padding: 24px; */
  font-size: 13px;
}
.hero__visual .ph svg { width: 64px; height: 64px; opacity: .6; }

.hero__chip {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__chip .tag {
  background: rgba(11,30,55,.7);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__chip .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-ok); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  background: var(--c-navy-900);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust__inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) { .trust__inner { padding-top: 40px; padding-bottom: 40px; } }

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(5, 1fr); } }
.fact {
  padding: 18px 16px;
  background: var(--c-navy-900);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.02em;
  color: #fff;
}
.fact__num em { font-style: normal; color: var(--c-accent); }
.fact__label { font-size: 13px; color: #97a4ba; }

.dealer-row {
  display: flex; flex-direction: column; gap: 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 900px) {
  .dealer-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; }
}
.dealer-row__title { font-size: 13px; color: #97a4ba; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.dealer-row__brands { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chip {
  width: 128px;
  height: 52px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #dbe3ef;
}
.brand-chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-strip {
  display: flex;
  gap: 32px;
  align-items: center;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}
.logo-strip::-webkit-scrollbar { display: none; }
.logo-strip .lg {
  flex: 0 0 auto;
  height: 28px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6e7e94;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
  opacity: .85;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 4px 10px;
}

/* =========================================================
   QUIZ
   ========================================================= */
.quiz {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) { .quiz { grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; } }

.quiz__intro .h2 { margin-bottom: 16px; }
.quiz__points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}
.quiz__points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}
.quiz__points li svg { color: var(--c-accent); width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; }

.quiz__card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) { .quiz__card { padding: 32px; } }

.quiz__progress {
  display: flex; flex-direction: column; gap: 10px;
}
.quiz__progress-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--c-muted); font-weight: 600; }
.quiz__bar { height: 6px; background: var(--c-surface-3); border-radius: 999px; overflow: hidden; }
.quiz__bar > span { display: block; height: 100%; background: var(--c-accent); border-radius: 999px; transition: width .3s ease; }

.quiz__step { display: none; flex-direction: column; gap: 18px; }
.quiz__step.is-active { display: flex; }

.quiz__q { font-family: var(--ff-display); font-weight: 800; font-size: clamp(20px, 2vw, 26px); letter-spacing: -.015em; line-height: 1.15; }

.quiz__opts {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .quiz__opts--2 { grid-template-columns: 1fr 1fr; } }
.quiz__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 16px;
  min-height: 64px;
  border-radius: 12px;
  border: 1.5px solid var(--c-line);
  background: #fff;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.quiz__opt:hover { border-color: var(--c-ink-2); background: var(--c-surface-2); }
.quiz__opt.is-selected { border-color: var(--c-accent); background: var(--c-accent-soft); box-shadow: var(--sh-focus); }
.quiz__opt .ic {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 10px;
  background: var(--c-surface-2);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.quiz__opt.is-selected .ic { background: var(--c-accent); color: #fff; }

.quiz__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; }

.quiz__final { display: grid; gap: 14px; }
.quiz__final .field { display: grid; gap: 6px; }
.quiz__final .field label { font-size: 13px; font-weight: 600; }

.channel-pick { display: flex; gap: 8px; flex-wrap: wrap; }
.channel-pick input { position: absolute; opacity: 0; pointer-events: none; }
.channel-pick label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--c-line);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  user-select: none;
}
.channel-pick input:checked + label { border-color: var(--c-accent); background: var(--c-accent-soft); }
.channel-pick svg { width: 18px; height: 18px; }

/* Field */
.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="email"],
.field textarea,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid var(--c-line);
  font-family: inherit;
  font-size: 16px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { height: auto; padding: 12px 14px; min-height: 90px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-color: var(--c-accent); box-shadow: var(--sh-focus); }
.field--error input,
.field--error textarea { border-color: var(--c-warn); }
.field__err { color: var(--c-warn); font-size: 12px; display: none; }
.field--error .field__err { display: block; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.45;
  cursor: pointer;
}
.check input { margin-top: 2px; accent-color: var(--c-accent); width: 16px; height: 16px; }
.check a { color: var(--c-ink); text-decoration: underline; }
.section--dark .check { color: #a8b4c8; }
.section--dark .check a { color: #fff; }

/* =========================================================
   BUNDLES
   ========================================================= */
.bundles {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .bundles { grid-template-columns: repeat(3, 1fr); } }

.bundle {
  position: relative;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-card);
}
.bundle--featured { border-color: var(--c-accent); box-shadow: 0 12px 32px -16px rgba(244,122,32,.4); }
.bundle__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--c-accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
  z-index: 2;
}
.bundle__img {
  aspect-ratio: 16/10;
  background: var(--c-surface-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-line);
}
.bundle__img svg { width: 56px; height: 56px; opacity: .5; }
.bundle__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.bundle__title { font-family: var(--ff-display); font-weight: 800; font-size: 20px; letter-spacing: -.015em; line-height: 1.2; }
.bundle__items { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.bundle__items li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--c-text); }
.bundle__items li svg { width: 18px; height: 18px; color: var(--c-accent); flex: 0 0 18px; margin-top: 1px; }
.bundle__discount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  border: 1px solid #fbd3b1;
  color: var(--c-accent-ink);
}
.bundle__discount strong {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--c-accent-2);
}
.bundle__discount span { font-size: 13px; font-weight: 600; }
.bundle__limit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-warn);
}
.bundle__limit svg { width: 14px; height: 14px; }
.bundle__cta { margin-top: auto; display: flex; gap: 8px; align-items: center; }
.bundle__cta .btn { flex: 1; }

/* =========================================================
   CALCULATOR
   ========================================================= */
.calc {
  display: grid;
  gap: 24px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-card);
}
@media (min-width: 900px) {
  .calc { grid-template-columns: 1fr 1fr; padding: 36px; gap: 48px; }
}
.calc__inputs { display: flex; flex-direction: column; gap: 22px; }
.calc__field { display: flex; flex-direction: column; gap: 8px; }
.calc__field-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.calc__field-head label { font-weight: 700; font-size: 14px; }
.calc__field-head .val {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-ink);
  letter-spacing: -.01em;
}
.calc__field-head .val em { font-style: normal; color: var(--c-muted); font-weight: 600; font-size: 14px; }

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--c-surface-3);
  outline: none;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  background: var(--c-accent);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244,122,32,.4);
}
.range::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--c-accent);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244,122,32,.4);
}

.calc__result {
  background: var(--c-navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.calc__result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 100% 0%, rgba(244,122,32,.2), transparent 60%);
  pointer-events: none;
}
.calc__result-row { position: relative; }
.calc__result-label { font-size: 13px; color: #97a4ba; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.calc__big {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 4px;
}
.calc__big em { font-style: normal; color: var(--c-accent); }
.calc__big small { font-size: 16px; color: #97a4ba; font-weight: 600; }
.calc__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.calc__cmp { display: flex; flex-direction: column; gap: 4px; }
.calc__cmp-label { font-size: 12px; color: #97a4ba; }
.calc__cmp-val { font-family: var(--ff-display); font-weight: 800; font-size: 20px; letter-spacing: -.015em; }
.calc__cmp-val em { color: var(--c-accent); font-style: normal; }
.calc__cta { display: flex; flex-direction: column; gap: 10px; position: relative; }
@media (min-width: 500px) { .calc__cta { flex-direction: row; align-items: center; } }
.calc__disclaimer { font-size: 11px; color: #97a4ba; position: relative; }

/* =========================================================
   CATALOG
   ========================================================= */
.cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  margin-bottom: 20px;
}
.cats::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}
.cat-tab.is-active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.cat-tab svg { width: 18px; height: 18px; }

.catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 960px) {
  .catalog { grid-template-columns: 280px 1fr; }
}
.filters {
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}
.filters__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  font-weight: 700;
  font-size: 15px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--c-ink);
}
.filters__body {
  padding: 8px 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  display: none;
}
.filters.is-open .filters__body { display: flex; }
@media (min-width: 960px) {
  .filters__toggle { display: none; }
  .filters__body { display: flex; }
  .filters { padding: 18px; }
}
.filter-group h4 {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 10px;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--c-surface-2);
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  min-height: 36px;
}
.chip.is-active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.products[hidden] { display: none; }
@media (min-width: 640px) { .products { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .products { grid-template-columns: 1fr 1fr 1fr; } }

.product {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.product:hover { border-color: var(--c-ink-2); box-shadow: var(--sh-card); }
.product__img {
  aspect-ratio: 4/3;
  background: var(--c-surface-2);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted-2);
  border-bottom: 1px solid var(--c-line);
}
.product__img svg { width: 44px; height: 44px; opacity: .4; }
.product__stock {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ok);
}
.product__stock .dot { width: 6px; height: 6px; background: var(--c-ok); border-radius: 50%; }
.product__compare {
  position: absolute;
  top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
}
.product__compare input { accent-color: var(--c-accent); width: 14px; height: 14px; }
.product__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product__title { font-family: var(--ff-display); font-weight: 800; font-size: 16px; letter-spacing: -.01em; line-height: 1.2; }
.product__specs { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.product__specs li { display: flex; justify-content: space-between; gap: 8px; font-size: 13px; color: var(--c-muted); }
.product__specs li b { color: var(--c-ink); font-weight: 700; }
.product__leasing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
}
.product__leasing b { color: var(--c-accent-2); }
.product__actions { display: flex; gap: 8px; margin-top: auto; }
.product__actions .btn { flex: 1; }

/* =========================================================
   NOT-FOUND / lost-lead capture
   ========================================================= */
.notfound {
  background: var(--c-navy-900);
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: grid;
}
@media (min-width: 900px) { .notfound { grid-template-columns: 1.1fr .9fr; } }
.notfound__bg {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--c-navy-700);
}
.notfound__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,24,40,.08), rgba(10,24,40,.42)),
    linear-gradient(90deg, rgba(10,24,40,.24), transparent 45%);
  pointer-events: none;
}
.notfound__bg img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: 48% center;
}
@media (min-width: 900px) {
  .notfound__bg { min-height: 100%; }
  .notfound__bg img {
    min-height: 100%;
    object-position: 50% center;
  }
  .notfound__bg .meta  { border-radius: 0 0 0 15px; }
}
@media (max-width: 899px) {
  .notfound__bg { min-height: clamp(260px, 66vw, 380px); }
  .notfound__bg img {
    min-height: clamp(260px, 66vw, 380px);
    object-position: 46% center;
  }
}
.notfound__bg .meta {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  color: #b9c6d8;
  font-size: 14px;
  max-width: 36ch;
  background: rgba(10,24,40,.9);
  padding: 10px;
  width: 100%;
}
.notfound__body { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
@media (min-width: 900px) { .notfound__body { padding: 38px; } }
.notfound__body .h2 { color: #fff; }
.notfound__body .lead { color: #b9c6d8; }
.notfound__form { display: grid; gap: 12px; }
.notfound__form .field input { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18); color: #fff; }
.notfound__form .field input::placeholder { color: #97a4ba; }
.notfound__form .field input:focus { border-color: var(--c-accent); }
.notfound__form .channel-pick label { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18); color: #fff; }
.notfound__form .channel-pick input:checked + label { border-color: var(--c-accent); background: rgba(244,122,32,.15); }

/* =========================================================
   CASES
   ========================================================= */
.cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .cases { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cases { grid-template-columns: 1fr 1fr 1fr; } }
.case {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.case__img {
  aspect-ratio: 4/3;
  background: var(--c-surface-3);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted-2);
}
.case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case__img svg { width: 56px; height: 56px; opacity: .4; }
.case__city {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(10,24,40,.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.case__type { font-size: 12px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.case__title { font-family: var(--ff-display); font-weight: 800; font-size: 17px; line-height: 1.25; }
.case__equip { color: var(--c-muted); font-size: 13px; }

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.reviews > * { min-width: 0; }
@media (min-width: 800px) { .reviews { grid-template-columns: 1.2fr .8fr; } }
.review {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review--video { overflow: hidden; }
.review-slider { width: 100%; min-width: 0; display: grid; gap: 14px; overflow: hidden; }
.review-slider__track {
  width: 100%;
  min-width: 0;
  display: flex;
  transition: transform .3s ease;
}
.review-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 14px;
}
.review-slider__nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-slider__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-slider__arrow:hover { border-color: var(--c-accent); color: var(--c-accent); }
.review-slider__dots { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.review-slider__dots button {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--c-line-2);
  cursor: pointer;
}
.review-slider__dots button.is-active {
  width: 10px;
  height: 10px;
  flex-basis: 10px;
  background: var(--c-accent);
}
.review__video {
  aspect-ratio: 16/9;
  background: var(--c-navy-900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.review__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  z-index: 1;
}
.review__video::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(244,122,32,.18), transparent 60%),
    linear-gradient(135deg, #112a48, #0a1828);
}
.play-btn {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(244,122,32,.4);
}
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.review__quote { font-size: 15px; line-height: 1.5; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-surface-3); display: inline-flex; align-items: center; justify-content: center; color: var(--c-muted); font-weight: 800; }
.review__author b { display: block; font-weight: 700; font-size: 14px; }
.review__author span { font-size: 12px; color: var(--c-muted); }

.review-widget {
  min-width: 0;
  border: 1px dashed var(--c-line-2);
  border-radius: 16px;
  background: var(--c-surface-2);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}
.review-widget--slider { overflow: hidden; }
.review-widget__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.review-widget__title { font-weight: 800; font-family: var(--ff-display); font-size: 16px; }
.review-widget__stars { display: inline-flex; gap: 2px; color: var(--c-accent); }
.review-widget__stars svg { width: 18px; height: 18px; }
.yandex-review-slider { min-height: 100%; }
.yandex-review {
  align-content: start;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 16px;
}
.yandex-review__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yandex-review__meta img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-surface-3);
}
.yandex-review__meta div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yandex-review__meta b {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.yandex-review__meta span {
  color: var(--c-muted);
  font-size: 12px;
}
.yandex-review p {
  margin: 0;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* =========================================================
   DELIVERY
   ========================================================= */
.delivery {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  background:
    linear-gradient(120deg, rgba(10,24,40,.92) 0%, rgba(10,24,40,.68) 60%, rgba(10,24,40,.92) 100%),
    radial-gradient(circle at 100% 100%, rgba(244,122,32,.3), transparent 60%),
    var(--c-navy-700);
}
@media (min-width: 900px) { .delivery { grid-template-columns: 1.05fr .95fr; align-items: stretch; } }
.delivery__visual {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: var(--c-navy-800);
}
.delivery__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,24,40,.08), rgba(10,24,40,.34));
  pointer-events: none;
}
.delivery__visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: 42% center;
}
@media (max-width: 899px) {
  .delivery__visual { min-height: clamp(240px, 58vw, 380px); }
  .delivery__visual img {
    min-height: clamp(240px, 58vw, 380px);
    object-position: 46% center;
  }
}
@media (min-width: 900px) {
  .delivery__visual img { object-position: 36% center; }
}
.delivery__body { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
@media (min-width: 900px) { .delivery__body { padding: 48px; } }
.delivery__offer {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  font-size: clamp(32px, 4.4vw, 52px);
}
.delivery__offer em { color: var(--c-accent); font-style: normal; }
.delivery__why { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.delivery__why li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #c7d2e3; }
.delivery__why svg { color: var(--c-accent); width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; }

/* =========================================================
   WARRANTY / SERVICE CARDS
   ========================================================= */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 800px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.feat-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section--dark .feat-card { background: var(--c-navy-700); border-color: rgba(255,255,255,.06); color: #fff; }

.feat-card__ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-accent-soft);
  color: var(--c-accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section--dark .feat-card__ic { background: rgba(244,122,32,.18); color: var(--c-accent); }
.feat-card__ic svg { width: 28px; height: 28px; }
.feat-card__title { font-family: var(--ff-display); font-weight: 800; font-size: 20px; letter-spacing: -.01em; line-height: 1.2; }
.feat-card__title em { color: var(--c-accent); font-style: normal; }
.feat-card__text { color: var(--c-muted); font-size: 14px; line-height: 1.5; }
.section--dark .feat-card__text { color: #b9c6d8; }
.feat-card__cta { margin-top: auto; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 18px);
  letter-spacing: -.005em;
  color: var(--c-ink);
}
.faq__btn:hover { background: var(--c-surface-2); }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--c-surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  transition: transform .2s;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--c-accent); color: #fff; }
.faq__icon svg { width: 16px; height: 16px; }
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq__item.is-open .faq__body { max-height: 600px; }
.faq__inner {
  padding: 0 22px 22px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final {
  border-radius: 26px;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(244,122,32,.25), transparent 60%),
    linear-gradient(135deg, #112a48 0%, #0a1828 100%);
  color: #fff;
  padding: 36px;
  display: grid;
  gap: 28px;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .final { grid-template-columns: 1.2fr .8fr; padding: 56px; gap: 56px; } }
.final h2 { color: #fff; }
.final .lead { color: #c7d2e3; }
.final__sub { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
@media (min-width: 600px) { .final__sub { flex-direction: row; align-items: center; } }
.final__phone {
  display: flex; flex-direction: column;
  gap: 2px;
}
.final__phone strong { font-family: var(--ff-display); font-weight: 800; font-size: 24px; }
.final__phone span { font-size: 12px; color: #97a4ba; }

.final__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 14px;
}
.final__form .field input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }
.final__form .field input::placeholder { color: #8593a8; }
.final__form .field input:focus { border-color: var(--c-accent); }
.final__form .channel-pick label { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); color: #fff; }
.final__form .channel-pick input:checked + label { border-color: var(--c-accent); background: rgba(244,122,32,.16); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--c-navy-900);
  color: #b9c6d8;
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer .logo__mark { background: #fff; color: var(--c-ink); }
.footer__desc { font-size: 13px; max-width: 32ch; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__contact { display: grid; gap: 8px; font-size: 14px; }
.footer__contact strong { color: #fff; font-size: 18px; font-family: var(--ff-display); font-weight: 800; }
.footer__msg { display: flex; gap: 8px; padding-top: 6px; }
.footer__msg .msg-btn { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #fff; width: 44px; height: 44px; }
.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 16px;
  flex-direction: column;
  font-size: 12px;
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* =========================================================
   STICKY MOBILE BAR (S1)
   ========================================================= */
.mbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  box-shadow: 0 -8px 24px -16px rgba(11,30,55,.25);
}
@media (min-width: 900px) { .mbar { display: none; } }
.mbar .btn { min-height: 52px; padding: 0 10px; font-size: 14px; }
.mbar .btn--ghost { border-color: var(--c-line); color: var(--c-ink); }
.mbar .btn--max {
  --bg: linear-gradient(135deg, #44ccff 0%, #5533ee 66%, #9933dd 100%);
  --bd: transparent;
  background: var(--bg);
  border: none;
}
.mbar .btn--max:hover { background: linear-gradient(135deg, #32bdea 0%, #4b2ed7 66%, #852bc6 100%); }

/* =========================================================
   FLOATING DESKTOP MSG BUTTON (S2)
   ========================================================= */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 45;
  display: none;
}
@media (min-width: 900px) { .fab { display: block; } }
.fab__main {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: transparent;
  color: var(--c-max);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  position: relative;
}
.fab__main::before,
.fab__main::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  border: 2px solid currentColor;
  animation: fab-wave 2.6s ease-out infinite;
  opacity: 0;
  pointer-events: none;
}
.fab__main::after {
  animation-delay: 1.3s;
}
@keyframes fab-wave {
  0% { transform: scale(.72); opacity: .34; }
  70% { opacity: .13; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab__main:hover {
  color: var(--c-max);
}
.fab__main:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
.fab__main svg {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 105, 255, .24));
}
.fab__pop {
  position: absolute;
  bottom: 78px;
  right: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-pop);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
}
.fab.is-open .fab__pop { display: flex; }
.fab__pop a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink);
}
.fab__pop a:hover { background: var(--c-surface-2); }
.fab__pop a .ic { width: 32px; height: 32px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
/* .fab__pop a .ic--max { background: var(--c-max); } */
/* .fab__pop a .ic--tg { background: var(--c-tg); } */

/* =========================================================
   POPUP / MODAL (S3)
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10,24,40,.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.is-open { display: flex; }
.modal__card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: var(--sh-pop);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--c-surface-2);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
}
.modal__close:hover { background: var(--c-surface-3); }
.modal__title { font-family: var(--ff-display); font-weight: 800; font-size: 22px; letter-spacing: -.01em; line-height: 1.2; }
.modal__lead { color: var(--c-muted); font-size: 14px; }
.modal__form { display: grid; gap: 12px; }

/* Thank you screen (S4) */
.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 8px;
}
.thanks__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-ok);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thanks__check svg { width: 32px; height: 32px; }
.thanks h3 { font-family: var(--ff-display); font-weight: 800; font-size: 22px; }
.thanks p { color: var(--c-muted); margin: 0; }
.thanks__row { display: flex; gap: 10px; }

/* =========================================================
   COMPARE TABLE
   ========================================================= */
.compare-table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: #fff;
  display: none;
}
.compare-table.is-open { display: block; }
.compare-table__head {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--c-surface-2);
  font-weight: 700;
  font-size: 14px;
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  text-align: left;
  padding: 12px 18px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
}
.compare-table th { color: var(--c-muted); font-weight: 600; width: 28%; }
.compare-table td b { font-weight: 700; }

/* Utilities */
.divider { height: 1px; background: var(--c-line); border: 0; margin: 0; }
.center { text-align: center; }

/* =========================================================
   FORM STATES (loading / error / consent block)
   ========================================================= */
.btn.is-loading {
  pointer-events: none;
  opacity: .7;
  position: relative;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: tt-spin .7s linear infinite;
}
@keyframes tt-spin { to { transform: rotate(360deg); } }

.form__err {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  background: #fdecea;
  border: 1px solid #f5c2bd;
  color: #8e2018;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}
.section--dark .form__err {
  background: rgba(192,57,43,.18);
  border-color: rgba(192,57,43,.4);
  color: #ffd2cd;
}

.check--error {
  color: var(--c-warn);
}
.check--error a { color: var(--c-warn); }
.check--error input { outline: 2px solid var(--c-warn); outline-offset: 2px; border-radius: 3px; }

/* =========================================================
   MOBILE POLISH
   ========================================================= */

/* Калькулятор: на мобильном результат всегда виден после ввода —
   sticky-привязка к нижнему краю окна (выше mbar). */
@media (max-width: 899px) {
  .calc {
    position: relative;
    padding: 16px;
    gap: 16px;
  }
  .calc__inputs { gap: 18px; }
  .calc__result {
    position: sticky;
    bottom: 92px;                     /* над mbar */
    margin-top: 8px;
    padding: 18px;
    box-shadow: 0 12px 32px -10px rgba(11,30,55,.4);
  }
  .calc__big { font-size: clamp(36px, 11vw, 56px); }
  .range::-webkit-slider-thumb { width: 32px; height: 32px; }
  .range::-moz-range-thumb     { width: 32px; height: 32px; }
}

/* Compare table → карточки на мобильном */
@media (max-width: 699px) {
  .compare-table table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td { display: block; width: 100%; }
  .compare-table tr {
    border-top: 1px solid var(--c-line);
    padding: 12px 0;
  }
  .compare-table tr:first-child { border-top: 0; }
  .compare-table th {
    padding: 0 18px;
    color: var(--c-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    width: auto;
  }
  .compare-table td {
    padding: 6px 18px 0;
    font-size: 14px;
  }
  .compare-table td::before {
    content: attr(data-cmp-cell-label);
    display: block;
    color: var(--c-muted-2);
    font-size: 11px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
}

/* FAQ — крупнее тач-зоны на мобильном */
@media (max-width: 599px) {
  .faq__btn { padding: 18px 18px; gap: 12px; }
  .faq__inner { padding: 0 18px 20px; font-size: 14.5px; }
}

/* Mobile sticky bar — плавное появление и корректная safe-area */
.mbar {
  transform: translateY(0);
  transition: transform .25s ease;
}
.mbar.is-hidden { transform: translateY(110%); }
.mbar .btn { letter-spacing: -.01em; }

/* В iOS Safari iframe — поля c font-size < 16px вызывают зум при фокусе.
   У нас 16px, но дублируем на всех полях явно. */
.field input, .field textarea, .field select { font-size: 16px; }

/* Quiz: чуть мягче смена шагов */
.quiz__step { animation: tt-fade .25s ease both; }
@keyframes tt-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Hero: на мобильном sub-CTA должен быть на всю ширину */
@media (max-width: 559px) {
  .hero__cta .btn { width: 100%; }
  .hero__bullets li { font-size: 13.5px; }
}

/* Trust band: на мобильном 2 факта в ряд + последний во весь ряд */
@media (max-width: 759px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(5) { grid-column: 1 / -1; }
}

/* Bundles на мобильном: cta-ряд переносится без сжатия msg-btn */
@media (max-width: 559px) {
  .bundle__cta { flex-wrap: wrap; }
  .bundle__cta .btn { flex: 1 1 100%; }
  .bundle__cta .msg-btn { flex: 0 0 52px; }
}

/* Modal на мобильном — приклеить к низу для удобства одной рукой */
@media (max-width: 559px) {
  .modal { padding: 0; align-items: flex-end; }
  .modal__card {
    border-radius: 18px 18px 0 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    animation: tt-slideup .25s ease both;
  }
}
@keyframes tt-slideup { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Focus-стили (доступность) */
:where(a, button, [role="button"], [tabindex]):focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

/* Уважение к prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   CATALOG v2 — поиск, активные фильтры, пустое состояние,
   подкатегории, бейджи на карточках, поле leadtime.
   ========================================================= */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
body.no-scroll { overflow: hidden; }

.catalog__search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 0 8px 0 14px;
  min-height: 48px;
  width: 100%;
  max-width: 360px;
}
.catalog__search-ic { color: var(--c-muted-2); flex: 0 0 auto; }
.catalog__search input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  padding: 0 8px;
  color: var(--c-ink);
  min-height: 44px;
}
.catalog__search input:focus + .catalog__search-clear,
.catalog__search:focus-within { border-color: var(--c-accent); box-shadow: var(--sh-focus); }
.catalog__search-clear {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-surface-2);
  border: 0;
  border-radius: 50%;
  color: var(--c-muted);
  cursor: pointer;
}
.catalog__search-clear:hover { background: var(--c-surface-3); color: var(--c-ink); }

.catalog__main { min-width: 0; } /* для grid-овых детей */
.catalog__active {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  border: 1.5px solid #fbd3b1;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.active-chip:hover { background: #fde2c8; }
.active-chip--reset {
  background: transparent;
  border-color: var(--c-line-2);
  color: var(--c-muted);
}

.filters__count { font-size: 12px; color: var(--c-muted); margin-left: 4px; }
.filters__sheet-foot { display: none; }
@media (max-width: 959px) {
  .filters.is-open .filters__sheet-foot {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    padding: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--c-line);
  }
}

.catalog__empty {
  background: var(--c-surface-2);
  border: 1px dashed var(--c-line-2);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.catalog__empty[hidden] { display: none; }
.catalog__empty-ic {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  box-shadow: var(--sh-card);
}
.catalog__empty-title { font-family: var(--ff-display); font-weight: 800; font-size: 22px; margin: 0; }

.catalog__subhead {
  margin: 24px 0 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--c-ink);
  grid-column: 1 / -1;
}
.catalog__subhead:first-child { margin-top: 0; }
.products__group {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  grid-column: 1 / -1;
}
@media (min-width: 640px) { .products__group { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .products__group { grid-template-columns: 1fr 1fr 1fr; } }

.product__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.product__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 90px;
  display: flex; flex-wrap: wrap; gap: 4px;
  pointer-events: none;
}
.product__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  background: var(--c-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}
.product__badge--hit  { background: var(--c-accent); }
.product__badge--new  { background: var(--c-ok); }
.product__badge--sale { background: var(--c-warn); }

.product__leadtime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--c-surface-2);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}

.product__actions {
  flex-wrap: wrap;
}
.product__actions .btn { flex: 1 1 auto; }
.product__actions .msg-btn { flex: 0 0 40px; height: 40px; width: 40px; }
.product__actions .msg-btn svg { width: 40px; height: 40px; }

/* =========================================================
   PRODUCT MODAL (pmodal)
   ========================================================= */
.pmodal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pmodal[hidden] { display: none; }
.pmodal__overlay {
  position: absolute; inset: 0;
  background: rgba(10,24,40,.6);
  backdrop-filter: blur(4px);
}
.pmodal__card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--sh-pop);
  animation: tt-pmodal-in .2s ease both;
}
@keyframes tt-pmodal-in { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.pmodal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.pmodal__close:hover { background: #fff; }
.pmodal__body { overflow: auto; -webkit-overflow-scrolling: touch; }

.pmodal__article { padding: 28px; display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 900px) { .pmodal__article { padding: 36px; gap: 32px; } }

.pmodal__head { display: flex; flex-direction: column; gap: 8px; }
.pmodal__crumb {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.pmodal__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  padding-right: 56px;
}
.pmodal__sub {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  font-size: 13px; color: var(--c-muted);
}
.pmodal__code b { color: var(--c-ink); font-weight: 700; }
.pmodal__brand { font-weight: 700; color: var(--c-ink); padding: 2px 10px; background: var(--c-surface-2); border-radius: 999px; }
.pmodal__compare {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--c-line);
  font-size: 13px; font-weight: 700; color: var(--c-ink);
  cursor: pointer;
}
.pmodal__compare:hover { border-color: var(--c-ink); }
.pmodal__compare.is-active { background: var(--c-accent-soft); border-color: var(--c-accent); color: var(--c-accent-ink); }

.pmodal__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 800px) { .pmodal__grid { grid-template-columns: 1.05fr 1fr; gap: 32px; } }
.pmodal__col-left { display: flex; flex-direction: column; gap: 10px; }
.pmodal__col-right { display: flex; flex-direction: column; gap: 14px; }

.pmodal__photo {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--c-surface-2);
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pmodal__photo img { width: 100%; height: 100%; object-fit: contain; }
.pmodal__photo--ph { color: var(--c-muted-2); flex-direction: column; gap: 8px; }
.pmodal__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--c-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}
.pmodal__badge--hit  { background: var(--c-accent); }
.pmodal__badge--new  { background: var(--c-ok); }
.pmodal__badge--sale { background: var(--c-warn); }

.pmodal__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}
.pmodal__thumbs::-webkit-scrollbar { display: none; }
.pmodal__thumb {
  flex: 0 0 72px;
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--c-surface-2);
  padding: 0;
  cursor: pointer;
}
.pmodal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pmodal__thumb.is-active { border-color: var(--c-accent); }
.pmodal__thumb:hover { border-color: var(--c-ink-2); }

.pmodal__lead { color: var(--c-muted); margin: 0; }
.pmodal__urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(30,157,106,.1);
  color: #0d6e4a;
  font-size: 14px;
  font-weight: 600;
}
.pmodal__urgency svg { color: var(--c-ok); width: 18px; height: 18px; flex: 0 0 18px; }
.pmodal__urgency b { font-weight: 800; }

.pmodal__leasing {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  font-size: 14px;
  font-weight: 600;
}
.pmodal__leasing svg { color: var(--c-accent-2); width: 18px; height: 18px; flex: 0 0 18px; }
.pmodal__leasing b { font-weight: 800; color: var(--c-accent-2); }

.pmodal__specs-main {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .pmodal__specs-main { grid-template-columns: repeat(3, 1fr); } }
.pmodal__spec-tile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px;
  border-radius: 12px;
  background: var(--c-surface-2);
  min-height: 92px;
}
.pmodal__spec-ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #fff;
  color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.pmodal__spec-ic svg { width: 18px; height: 18px; }
.pmodal__spec-label { font-size: 12px; color: var(--c-muted); }
.pmodal__spec-value { font-family: var(--ff-display); font-weight: 800; font-size: 18px; color: var(--c-ink); letter-spacing: -.01em; }

.pmodal__highlights {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pmodal__highlights li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
}
.pmodal__highlights svg { color: var(--c-accent); width: 14px; height: 14px; }

.pmodal__details {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.pmodal__details summary {
  list-style: none;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.pmodal__details summary::-webkit-details-marker { display: none; }
.pmodal__details summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: var(--c-muted);
  transition: transform .2s ease;
}
.pmodal__details[open] summary::after { content: "−"; }
.pmodal__details--ph summary { color: var(--c-muted); }
.pmodal__details > *:not(summary) { padding: 0 16px 16px; }
.pmodal__specs-ext { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.pmodal__specs-ext li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid var(--c-line); font-size: 14px; }
.pmodal__specs-ext-label { display: inline-flex; align-items: center; gap: 8px; color: var(--c-muted); }
.pmodal__specs-ext-label svg { width: 16px; height: 16px; color: var(--c-muted-2); }
.pmodal__specs-ext--muted li { color: var(--c-muted-2); }

.pmodal__h {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0;
}

.pmodal__cta-block { border-top: 1px solid var(--c-line); padding-top: 24px; }
.pmodal__cta-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .pmodal__cta-grid { grid-template-columns: 1.3fr .85fr .85fr; }
}
.pmodal__cta-card {
  background: var(--c-surface-2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pmodal__cta-card--primary {
  background: #fff;
  border: 1.5px solid var(--c-accent);
  box-shadow: 0 12px 28px -16px rgba(244,122,32,.35);
}
.pmodal__cta-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent-2);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.pmodal__cta-ic svg { width: 24px; height: 24px; }
.pmodal__cta-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 14px; }
.pmodal__cta-bullets li { display: flex; align-items: flex-start; gap: 6px; }
.pmodal__cta-bullets svg { color: var(--c-accent); width: 16px; height: 16px; flex: 0 0 16px; margin-top: 2px; }
.pmodal__form { display: grid; gap: 10px; }
.pmodal__cta-msg { display: flex; gap: 8px; }

.pmodal__terms {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  padding: 18px;
  border-radius: 14px;
  background: var(--c-navy-900);
  color: #fff;
}
@media (min-width: 700px) { .pmodal__terms { grid-template-columns: repeat(3, 1fr); padding: 24px; } }
.pmodal__term {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px 12px;
  align-items: center;
  font-size: 14px;
}
.pmodal__term svg { color: var(--c-accent); width: 24px; height: 24px; }
.pmodal__term b { color: #fff; grid-column: 2; font-weight: 700; }
.pmodal__term span { color: #97a4ba; grid-column: 2; font-size: 12px; }

.pmodal__cross { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; border-top: 1px solid var(--c-line); }
.pmodal__cross-lane {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}
.pmodal__cross-lane::-webkit-scrollbar { display: none; }
.cross-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: inherit;
  transition: border-color .15s, transform .15s;
}
.cross-card:hover { border-color: var(--c-ink-2); transform: translateY(-1px); }
.cross-card__img {
  aspect-ratio: 4/3;
  background: var(--c-surface-2);
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted-2);
}
.cross-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cross-card__title { font-weight: 700; font-size: 14px; color: var(--c-ink); line-height: 1.2; }
.cross-card__spec { font-size: 12px; color: var(--c-muted); }
.cross-card__spec b { color: var(--c-ink); }

.pmodal__dealer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--c-surface-2);
  border-radius: 12px;
  font-size: 13px;
  color: var(--c-muted);
}
.pmodal__dealer svg { color: var(--c-ok); width: 20px; height: 20px; flex: 0 0 20px; }
.pmodal__dealer b { color: var(--c-ink); }

/* sticky CTA bar внутри модалки на мобайле */
.pmodal__mbar { display: none; }
@media (max-width: 799px) {
  .pmodal__card {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
  .pmodal__article { padding: 20px 16px 16px; padding-top: 56px; }
  .pmodal__article > .pmodal__head { margin-top: -8px; }
  .pmodal__close { top: 10px; right: 10px; }
  .pmodal__title { padding-right: 48px; font-size: clamp(22px, 6vw, 28px); }
  .pmodal__body { padding-bottom: 88px; }
  .pmodal__mbar {
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--c-line);
    box-shadow: 0 -8px 20px -12px rgba(11,30,55,.25);
    z-index: 4;
  }
  .pmodal__mbar .btn { min-height: 50px; font-size: 14px; padding: 0 8px; }
  .pmodal__cta-grid { grid-template-columns: 1fr; }
  .pmodal__terms { grid-template-columns: 1fr; }
  .pmodal__specs-main { grid-template-columns: 1fr 1fr; }
  .pmodal__article { gap: 18px; }
}

/* =========================================================
   COMPARE BAR + COMPARE MODAL
   ========================================================= */
.cbar {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 42;
  pointer-events: none;
}
.cbar[hidden] { display: none; }
.cbar__inner {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 16px 40px -16px rgba(11,30,55,.5);
}
.cbar__strip {
  display: flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-weight: 700; font-size: 14px;
  border: 0; cursor: pointer;
  padding: 6px 0;
}
.cbar__strip b { color: var(--c-accent); font-size: 16px; }
.cbar__thumbs { display: flex; gap: 6px; margin-left: auto; }
.cbar__thumb {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: visible;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 0;
  cursor: pointer;
}
.cbar__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.cbar__thumb svg { color: rgba(255,255,255,.6); }
.cbar__thumb .cbar__x {
  position: absolute; top: -6px; right: -6px;
  background: var(--c-warn); color: #fff;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.cbar__clear {
  background: rgba(255,255,255,.08); color: #fff;
  border: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 899px) {
  .cbar { bottom: 96px; } /* над mbar */
  .cbar__inner { max-width: none; }
}

.cmodal {
  position: fixed; inset: 0;
  z-index: 92;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.cmodal[hidden] { display: none; }
.cmodal__overlay {
  position: absolute; inset: 0;
  background: rgba(10,24,40,.6);
}
.cmodal__card {
  position: relative;
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: #fff;
  border-radius: 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: var(--sh-pop);
}
.cmodal__head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
}
.cmodal__title { font-family: var(--ff-display); font-weight: 800; font-size: 20px; margin: 0; }
.cmodal__head-actions { display: flex; gap: 8px; align-items: center; }
.cmodal__close {
  width: 40px; height: 40px;
  border-radius: 10px; border: 0;
  background: var(--c-surface-2);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.cmodal__close:hover { background: var(--c-surface-3); }
.cmodal__body { overflow: auto; }
.cmodal__scroll { overflow-x: auto; }
.cmodal__table { width: 100%; border-collapse: collapse; min-width: 600px; }
.cmodal__table th, .cmodal__table td {
  padding: 12px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}
.cmodal__table thead th {
  background: var(--c-surface-2);
  position: sticky; top: 0;
  z-index: 1;
}
.cmodal__table tbody th {
  color: var(--c-muted);
  font-weight: 600;
  width: 200px;
  background: #fff;
}
.cmodal__row--diff td { background: rgba(244,122,32,.06); font-weight: 700; }
.cmodal__row--diff th { background: rgba(244,122,32,.04); }
.cmodal__cell--ph { color: var(--c-muted-2); font-weight: 400; }
.cmodal__cell-head { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.cmodal__cell-img {
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cmodal__cell-img img { width: 100%; height: 100%; object-fit: contain; }
.cmodal__cell-title { font-weight: 800; font-size: 14px; color: var(--c-ink); line-height: 1.2; }
.cmodal__cell-actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.cmodal__cell-actions .btn { flex: 1 1 auto; }
.cmodal__cell-remove {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--c-surface-2);
  border: 0;
  cursor: pointer;
}
.cmodal__note { padding: 12px 20px; font-size: 12px; }

@media (max-width: 599px) {
  .cmodal { padding: 0; align-items: flex-end; }
  .cmodal__card {
    width: 100vw; max-width: 100vw;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }
  .cmodal__table tbody th { width: 140px; }
}
