/*
 * Generator Expert — Common stylesheet
 * Объединённые стили для всех страниц проекта 30 кВт
 * Дата сборки: 2026-05-14
 * 
 * Используется на:
 *   - landing-30kvt.html (главный лендинг)
 *   - weichai-gmp41wgc.html, isuzu-30kvt.html, cummins-30kvt.html,
 *     iveco-30kvt.html, kubota-sq30tc.html, ricardo-30kvt.html (карточки моделей)
 *   - about-page.html, services-page.html
 * 
 * Подключение: <link rel="stylesheet" href="style.css">
 */



:root {
    --bg: #f6f4ef;          /* тёплый светло-серый, цвет старой бумаги */
    --bg-2: #ecebe5;        /* чуть темнее для секций */
    --bg-3: #e2e0d8;        /* шапки таблиц и хедеры */
    --ink: #1a1816;         /* тёмно-коричневый, не чёрный */
    --ink-dim: #5e5950;     /* приглушенный */
    --ink-mute: #8a8478;    /* подписи */
    --amber: #c8870d;       /* янтарь, насыщенный для светлого фона */
    --amber-bright: #a86f00; /* для hover */
    --green: #2d8a4e;       /* тёмно-зелёный */
    --rust: #a8341a;        /* красно-коричневый */
    --grid: rgba(26, 24, 22, 0.05);
    --line: rgba(26, 24, 22, 0.12);
    --line-bright: rgba(26, 24, 22, 0.25);
  }

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
  }

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

/* NAV */

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 16px 40px;
    display: flex; flex-wrap: nowrap; min-width: 0; justify-content: space-between; align-items: center;
    background: rgba(246, 244, 239, 0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }

.logo { display: flex; min-width: 0; overflow: hidden; align-items: center; gap: 12px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; white-space: nowrap; }

.logo-mark { width: 36px; height: 36px; display: grid; place-items: center; flex-shrink: 0; }

.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }

footer .logo-mark { width: 44px; height: 44px; }

/* Анимация электрического разряда для лого в навбаре */

nav .logo .logo-mark {
    animation: zap 0.8s ease-out 0.2s backwards, glowPulse 2.5s ease-in-out 1s;
  }

nav .logo > div:last-child {
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeRight 0.6s ease 0.5s forwards;
  }

@keyframes zap {
    0% { transform: scale(0.6); opacity: 0; filter: brightness(2); }
    60% { transform: scale(1.15); opacity: 1; filter: brightness(1.5); }
    100% { transform: scale(1); opacity: 1; filter: brightness(1); }
  }

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(232, 163, 23, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(232, 163, 23, 0.5)); }
  }

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
  }

.footer-logo img { max-width: 240px; height: auto; display: block; margin-bottom: 10px; }

.footer-logo .logo-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.15em; }

.logo-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 2px; }

.nav-links { display: flex; gap: 28px; font-size: 13px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.05em; }

.nav-links a { color: var(--ink-dim); text-decoration: none; transition: color 0.2s; }

.nav-links a:hover { color: var(--amber); }

.nav-phone { display: flex; flex-shrink: 0; align-items: center; gap: 12px; }

.nav-phone-num { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--ink); text-decoration: none; letter-spacing: 0.04em; white-space: nowrap; }

.nav-cta { color: var(--bg); background: var(--amber); text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; padding: 10px 18px; text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.2s; font-weight: 600; }

.nav-cta:hover { background: var(--amber-bright); }

/* Burger menu */

.nav-burger {
    display: none;
    width: 36px; height: 36px;
    background: transparent; border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
  }

.nav-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

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

.nav-burger.open span:nth-child(2) { opacity: 0; }

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

/* HERO */

.hero { min-height: 100vh; padding: 65px 40px 30px; position: relative; background: radial-gradient(ellipse 80% 50% at 70% 30%, rgba(232, 163, 23, 0.08), transparent 60%), linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); overflow: hidden; }

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }

.hero-tag { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--amber); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 30px; display: flex; align-items: center; gap: 12px; animation: fadeUp 0.8s ease-out; }

.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--amber); }

.hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

h1.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 8vw, 130px); line-height: 0.88; letter-spacing: -0.01em; margin-bottom: 30px; animation: fadeUp 1s ease-out 0.1s backwards; }

h1.hero-title .accent { color: var(--amber); font-style: italic; }

.hero-sub { font-size: 18px; color: var(--ink-dim); max-width: 540px; margin-bottom: 36px; line-height: 1.6; animation: fadeUp 1s ease-out 0.3s backwards; }

.hero-meta { display: flex; gap: 30px; margin-bottom: 36px; flex-wrap: wrap; animation: fadeUp 1s ease-out 0.4s backwards; }

.hero-meta-item { border-left: 2px solid var(--amber); padding-left: 14px; }

.hero-meta-item .num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--bg); line-height: 1; }

.hero-meta-item .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 1s ease-out 0.5s backwards; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; font-family: 'JetBrains Mono', monospace; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; font-weight: 600; }

.btn-primary { background: var(--amber); color: var(--bg); }

.btn-primary:hover { background: var(--amber-bright); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-bright); }

.btn-ghost:hover { border-color: var(--ink); background: var(--bg-2); }

.hero-visual { position: relative; aspect-ratio: 1; animation: fadeUp 1.2s ease-out 0.4s backwards; }

.gen-frame { position: absolute; inset: 8%; border: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }

.gen-frame::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(244,241,234,0.02) 20px, rgba(244,241,234,0.02) 21px), repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(244,241,234,0.02) 20px, rgba(244,241,234,0.02) 21px); }

.gen-corner { position: absolute; width: 24px; height: 24px; border: 2px solid var(--amber); }

.gen-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }

.gen-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }

.gen-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }

.gen-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.gen-svg { position: absolute; inset: 12%; width: 76%; height: 76%; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* MARQUEE */

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 22px 0; }

.marquee-track { display: flex; gap: 60px; animation: scroll 40s linear infinite; white-space: nowrap; font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.06em; color: var(--ink-dim); }

.marquee-track span { display: flex; align-items: center; gap: 60px; }

.marquee-track .dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* COMMON */

section { position: relative; }

.container { max-width: 1400px; margin: 0 auto; padding: 55px 40px; }

.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--amber); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }

.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--amber); }

h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 84px); line-height: 0.95; letter-spacing: -0.005em; margin-bottom: 24px; }

h2 .italic { font-style: italic; color: var(--amber); }

.section-intro { color: var(--ink-dim); font-size: 17px; line-height: 1.6; max-width: 640px; margin-bottom: 60px; }

/* CALCULATOR */

/* Сравнение моделей по топливу */

.fuel-comparison {
    margin: 22px 0;
    padding: 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    text-align: left;
  }

.fuel-comp-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

.fuel-comp-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

.fuel-comp-row {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 1fr;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg-2);
    border-left: 2px solid transparent;
    align-items: center;
    font-size: 13px;
  }

.fuel-comp-row.best {
    border-left-color: var(--green);
    background: rgba(74, 222, 128, 0.06);
  }

.fuel-comp-row.worst {
    border-left-color: var(--rust);
    background: rgba(197, 74, 48, 0.05);
  }

.fuel-comp-name { color: var(--ink); font-weight: 500; }

.fuel-comp-lh {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-align: center;
  }

.fuel-comp-rub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    color: var(--amber);
    letter-spacing: 0.02em;
    text-align: right;
  }

.fuel-comp-row.best .fuel-comp-rub { color: var(--green); }

.fuel-comp-row.worst .fuel-comp-rub { color: var(--rust); }

@media (max-width: 700px) {
    .fuel-comp-row { grid-template-columns: 1fr; gap: 4px; padding: 12px; }
    .fuel-comp-lh, .fuel-comp-rub { text-align: left; }
    .fuel-comp-rub { font-size: 19px; }
  }

/* Табы */

.calc-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border: 1px solid var(--line);
    background: var(--bg);
  }

.calc-tab {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--ink-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border-right: 1px solid var(--line);
  }

.calc-tab:last-child { border-right: none; }

.calc-tab:hover { color: var(--ink); background: var(--bg-2); }

.calc-tab.active { color: var(--bg); background: var(--amber); font-weight: 600; }

.calc-pane { display: none; }

.calc-pane.active { display: block; }

/* Селект (для калькулятора стоимости) */

.calc-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-2);
    color: var(--ink);
    border: 1px solid var(--line);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8a317' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

.calc-select:focus { outline: none; border-color: var(--amber); }

/* Breakdown в результате */

.cost-breakdown {
    margin: 20px 0;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    text-align: left;
    font-size: 13px;
  }

.cost-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--ink);
    border-bottom: 1px dashed var(--line);
  }

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

.cost-breakdown-row.total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--amber);
    border-bottom: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

.cost-breakdown-row .label-cb { color: var(--ink-dim); }

.cost-breakdown-row .val-cb { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink); }

.cost-breakdown-row.total .val-cb { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--amber); }

@media (max-width: 700px) {
    .calc-tabs { flex-direction: column; }
    .calc-tab { border-right: none; border-bottom: 1px solid var(--line); padding: 14px; font-size: 11px; }
    .calc-tab:last-child { border-bottom: none; }
  }

.calc-section { background: var(--bg-2); border-top: 1px solid var(--line); }

.calc-box {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
    overflow: hidden;
  }

.calc-form { padding: 50px 44px; border-right: 1px solid var(--line); }

.calc-step { margin-bottom: 40px; }

.calc-step:last-child { margin-bottom: 0; }

.calc-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
  }

.calc-num {
    width: 28px; height: 28px;
    background: var(--amber);
    color: var(--bg);
    display: grid;
    place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }

.calc-value {
    margin-left: auto;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--amber);
    letter-spacing: 0.03em;
  }

.calc-hint {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

/* Slider */

.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--bg-3);
    border-radius: 0;
    outline: none;
    cursor: pointer;
  }

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--amber);
    cursor: grab;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--amber);
  }

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--amber);
    cursor: grab;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--amber);
  }

.calc-slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
  }

/* Radio options */

.calc-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

.calc-option { cursor: pointer; }

.calc-option input { position: absolute; opacity: 0; pointer-events: none; }

.calc-option-box {
    padding: 18px 16px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    transition: all 0.2s;
    text-align: center;
    height: 100%;
  }

.calc-option:hover .calc-option-box { border-color: var(--ink-dim); }

.calc-option input:checked + .calc-option-box {
    border-color: var(--amber);
    background: rgba(232, 163, 23, 0.08);
  }

.calc-option-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    line-height: 1.05;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }

.calc-option-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

/* Checkboxes */

.calc-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

.calc-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    user-select: none;
  }

.calc-check:hover { border-color: var(--ink-dim); }

.calc-check input { display: none; }

.calc-check::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid var(--ink-dim);
    background: transparent;
    flex-shrink: 0;
    transition: all 0.15s;
  }

.calc-check:has(input:checked) {
    border-color: var(--amber);
    background: rgba(232, 163, 23, 0.06);
  }

.calc-check:has(input:checked)::before {
    background: var(--amber);
    border-color: var(--amber);
    box-shadow: inset 0 0 0 3px var(--bg);
  }

/* Result */

.calc-result {
    padding: 50px 40px;
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    text-align: center;
  }

.result-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: var(--amber);
    letter-spacing: 0.01em;
    margin-bottom: 4px;
  }

.result-unit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--ink);
    margin-left: 6px;
  }

.result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
  }

.result-detail {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg);
    border-left: 3px solid var(--amber);
    text-align: left;
  }

.result-detail strong { color: var(--ink); font-weight: 600; }

.result-status {
    margin-bottom: 24px;
    text-align: left;
  }

.result-status-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }

.result-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

.result-status-list .model-tag-mini {
    padding: 6px 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
  }

.result-status-list .model-tag-mini.fit { border-color: var(--amber); color: var(--ink); }

.result-status-list .model-tag-mini.notfit { color: var(--ink-mute); text-decoration: line-through; }

.calc-btn-go { margin-top: auto; justify-content: center; }

/* Result variant: too much */

.calc-result.over .result-num { color: var(--rust); }

.calc-result.over .result-detail { border-color: var(--rust); }

@media (max-width: 1000px) {
    .calc-box { grid-template-columns: 1fr; }
    .calc-form { padding: 36px 24px; border-right: none; border-bottom: 1px solid var(--line); }
    .calc-options { grid-template-columns: 1fr; gap: 8px; }
    .calc-checks { grid-template-columns: 1fr; }
    .result-num { font-size: 90px; }
  }

/* Полная линейка по брендам */

.full-range {
    margin-top: 80px;
    padding: 50px 44px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
  }

.full-range-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 36px;
  }

.full-range-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

.full-range-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.005em;
    margin: 0;
  }

.full-range-sub {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
  }

.full-range-sub strong { color: var(--ink); font-weight: 600; }

.full-range-table {
    border-top: 1px solid var(--line);
    margin-bottom: 32px;
  }

.full-range-row {
    display: grid;
    grid-template-columns: 180px 220px 1fr;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
  }

.full-range-row:hover { background: rgba(232, 163, 23, 0.04); }

.full-range-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--ink);
  }

.full-range-power {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

.full-range-note {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.5;
  }

.full-range-cta {
    margin: 0 auto;
    display: inline-flex;
  }

@media (max-width: 800px) {
    .full-range { padding: 30px 22px; }
    .full-range-header { grid-template-columns: 1fr; gap: 18px; align-items: start; }
    .full-range-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
    .full-range-brand { font-size: 20px; }
    .full-range-power { font-size: 18px; }
    .full-range-note { font-size: 12px; }
  }

/* WARNING SECTION — разоблачение дешёвых */

.warning-section {
    background:
      linear-gradient(180deg, transparent, rgba(197, 74, 48, 0.02) 50%, transparent),
      var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 45px 0;
    position: relative;
  }

.warning-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rust), transparent);
  }

.warning-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--rust);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 600;
  }

.warning-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.005em;
    margin-bottom: 28px;
  }

.warning-title .italic {
    font-style: italic;
    color: var(--amber);
  }

.warning-intro {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 60px;
  }

.warning-intro strong { color: var(--amber); font-weight: 600; }

.warning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    margin-bottom: 60px;
  }

.warning-card {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
  }

.warning-card:last-child { border-right: none; }

.warning-card-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--rust);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 600;
  }

.warning-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    color: var(--ink);
  }

.warning-card p {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.7;
  }

.warning-card p strong { color: var(--ink); font-weight: 600; }

.warning-card:last-child h3 { color: var(--amber); }

.warning-card:last-child p strong { color: var(--amber); }

/* Таблица сравнения */

.warning-table {
    border: 1px solid var(--line);
    background: var(--bg);
    margin-bottom: 50px;
  }

.warning-table-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    background: var(--bg-3);
    border-bottom: 2px solid var(--line);
  }

.warning-th {
    padding: 22px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    border-right: 1px solid var(--line);
  }

.warning-th:last-child { border-right: none; }

.warning-th span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 400;
  }

.warning-th.cheap { color: var(--rust); }

.warning-th.good { color: var(--amber); }

.warning-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    border-bottom: 1px solid var(--line);
  }

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

.warning-row:hover { background: var(--bg-2); }

.warning-label {
    padding: 16px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
  }

.warning-cell {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.5;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
  }

.warning-cell:last-child { border-right: none; }

.warning-cell.cheap { color: var(--ink-dim); }

.warning-cell.cheap strong { color: var(--rust); font-weight: 600; }

.warning-cell.good { color: var(--ink); }

.warning-cell.good strong { color: var(--amber); font-weight: 600; }

.warning-footer {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    padding: 24px 28px;
    background: var(--bg-2);
    border-left: 3px solid var(--amber);
  }

.warning-footer strong { color: var(--amber); font-weight: 600; }

.warning-footer em { color: var(--ink-dim); font-style: italic; }

@media (max-width: 1000px) {
    .warning-grid { grid-template-columns: 1fr; }
    .warning-card { border-right: none; border-bottom: 1px solid var(--line); }
    .warning-card:last-child { border-bottom: none; }
  }

@media (max-width: 800px) {
    .warning-section { padding: 30px 0; }

    /* Скрываем шапку с заголовками колонок — теперь у каждой ячейки свой ярлычок */
    .warning-table-head { display: none; }

    /* Каждый ряд — отдельная карточка-сравнение */
    .warning-table { border: none; background: transparent; }
    .warning-row {
      grid-template-columns: 1fr;
      border: 1px solid var(--line);
      background: var(--bg-2);
      margin-bottom: 14px;
      padding: 0;
    }
    .warning-row:hover { background: var(--bg-2); }
    .warning-row:last-child { margin-bottom: 0; }

    /* Заголовок параметра */
    .warning-label {
      padding: 12px 18px;
      background: var(--bg-3);
      border-right: none;
      border-bottom: 1px solid var(--line);
      font-weight: 600;
      color: var(--ink);
      font-size: 11px;
    }

    /* Каждая ячейка со своим ярлычком "БЮДЖЕТНЫЙ" / "У НАС" */
    .warning-cell {
      padding: 14px 18px;
      border-right: none;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      display: block;
      line-height: 1.5;
    }
    .warning-cell:last-child { border-bottom: none; }

    .warning-cell::before {
      display: block;
      width: fit-content;
      margin-bottom: 10px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 3px 8px;
      font-weight: 600;
    }
    .warning-cell.cheap::before {
      content: '✕ Бюджетный';
      background: rgba(197, 74, 48, 0.15);
      color: var(--rust);
      border: 1px solid rgba(197, 74, 48, 0.3);
    }
    .warning-cell.good::before {
      content: '✓ Generator Expert';
      background: rgba(232, 163, 23, 0.15);
      color: var(--amber);
      border: 1px solid rgba(232, 163, 23, 0.3);
    }
  }

/* MODELS */

/* VS SECTION — 3 сравнения с конкретными конкурентами */

.vs-section {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 50px 0 40px;
    position: relative;
  }

.vs-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
  }

.vs-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 600;
  }

.vs-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.005em;
    margin-bottom: 28px;
  }

.vs-title .italic { font-style: italic; color: var(--amber); }

.vs-intro {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
    max-width: 820px;
    margin-bottom: 70px;
  }

.vs-intro strong { color: var(--amber); font-weight: 600; }

/* Карточка одного сравнения */

.vs-card {
    margin-bottom: 50px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    overflow: hidden;
  }

.vs-card:last-child { margin-bottom: 0; }

.vs-card-header {
    padding: 28px 36px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--line);
  }

.vs-card-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-weight: 600;
  }

.vs-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--ink);
  }

.vs-card-title .vs { color: var(--amber); margin: 0 14px; font-style: italic; }

.vs-card-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
  }

/* Тело сравнения — 2 колонки */

.vs-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

.vs-side {
    padding: 32px 36px;
    border-right: 1px solid var(--line);
  }

.vs-side:last-child { border-right: none; }

.vs-side.them {
    background: rgba(197, 74, 48, 0.04);
    border-left: 3px solid var(--rust);
  }

.vs-side.us {
    background: rgba(232, 163, 23, 0.04);
    border-left: 3px solid var(--amber);
  }

.vs-side-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

.vs-side.them .vs-side-name { color: var(--rust); }

.vs-side.us .vs-side-name { color: var(--amber); }

.vs-side-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

.vs-spec-list { list-style: none; padding: 0; margin: 0; }

.vs-spec-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
    line-height: 1.4;
  }

.vs-spec-list li:last-child { border-bottom: none; }

.vs-spec-list .l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    align-self: center;
  }

.vs-spec-list .v {
    color: var(--ink);
    font-weight: 500;
  }

.vs-side.us .vs-spec-list .v strong { color: var(--amber); font-weight: 600; }

.vs-side.them .vs-spec-list .v strong { color: var(--rust); font-weight: 600; }

.vs-price {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

.vs-price-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
  }

.vs-side.them .vs-price-num { color: var(--rust); }

.vs-side.us .vs-price-num { color: var(--amber); }

.vs-price-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
  }

/* Резюме сравнения */

.vs-takeaway {
    padding: 26px 36px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
  }

.vs-takeaway-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--amber);
    line-height: 0.9;
    letter-spacing: 0.02em;
  }

.vs-takeaway-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
  }

.vs-takeaway-text strong { color: var(--amber); font-weight: 600; }

.vs-takeaway-text .quote {
    display: block;
    margin-top: 10px;
    padding: 10px 14px;
    background: var(--bg-2);
    border-left: 2px solid var(--amber);
    color: var(--ink-dim);
    font-style: italic;
    font-size: 13px;
  }

/* Финальный вывод */

.vs-conclusion {
    margin-top: 60px;
    padding: 34px 40px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
  }

.vs-conclusion h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    color: var(--ink);
  }

.vs-conclusion p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
  }

.vs-conclusion p strong { color: var(--amber); font-weight: 600; }

/* Мобильная версия */

@media (max-width: 900px) {
    .vs-section { padding: 30px 0; }
    .vs-body { grid-template-columns: 1fr; }
    .vs-side { border-right: none; border-bottom: 1px solid var(--line); }
    .vs-side:last-child { border-bottom: none; }
    .vs-side { padding: 24px 22px; }
    .vs-card-header { padding: 22px 22px; }
    .vs-takeaway { padding: 22px; grid-template-columns: 1fr; gap: 14px; }
    .vs-takeaway-icon { font-size: 32px; }
    .vs-spec-list li { grid-template-columns: 1fr; gap: 2px; padding: 8px 0; }
    .vs-conclusion { padding: 24px 22px; }
  }

/* MODELS-OLD */

/* Кнопка "Сравнить" в карточке */

.compare-toggle {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 10px;
    background: rgba(236, 235, 229, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line-bright);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }

.compare-toggle:hover { border-color: var(--amber); color: var(--amber); }

.compare-icon {
    width: 14px; height: 14px;
    border: 1.5px solid var(--ink-dim);
    background: transparent;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
  }

.compare-toggle:hover .compare-icon { border-color: var(--amber); }

.compare-toggle.active { background: var(--amber); border-color: var(--amber); color: var(--bg); }

.compare-toggle.active .compare-icon {
    background: var(--bg); border-color: var(--bg);
  }

.compare-toggle.active .compare-icon::after {
    content: '✓'; position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--amber);
    font-size: 11px; line-height: 1;
    font-weight: 700;
  }

.model { position: relative; }

/* Плавающая панель сравнения */

.compare-bar {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 55;
    background: var(--bg-2);
    border: 1px solid var(--amber);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

.compare-bar.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: all; }

.compare-bar-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

.compare-bar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

.compare-bar-btn {
    background: var(--amber); color: var(--bg);
    padding: 11px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background 0.2s;
  }

.compare-bar-btn:hover { background: var(--amber-bright); }

.compare-bar-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.compare-bar-clear {
    background: transparent; color: var(--ink-dim);
    padding: 8px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.08em;
    border: none; cursor: pointer;
    text-transform: uppercase;
  }

.compare-bar-clear:hover { color: var(--ink); }

/* Модальное окно сравнения */

.compare-modal {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.92);
    display: none;
    overflow-y: auto;
    padding: 40px 20px;
  }

.compare-modal.show { display: block; }

.compare-modal-content {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 40px;
    position: relative;
  }

.compare-modal-close {
    position: absolute;
    top: 16px; right: 20px;
    color: var(--ink);
    font-size: 36px; line-height: 1;
    cursor: pointer;
    background: none; border: none;
    font-family: 'Manrope', sans-serif; font-weight: 200;
    transition: color 0.2s;
  }

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

.compare-modal h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
  }

.compare-table {
    width: 100%;
    border-collapse: collapse;
  }

.compare-table th, .compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    vertical-align: top;
  }

.compare-table th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    width: 180px;
  }

.compare-table td {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

.compare-table .model-head {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--amber);
    padding-bottom: 12px;
  }

.compare-table tr:hover td { background: var(--bg-2); }

.compare-table .price-row td { color: var(--amber); font-size: 22px; }

.compare-table td.best { color: var(--green); font-weight: 600; }

@media (max-width: 700px) {
    .compare-toggle { font-size: 9px; padding: 5px 10px 5px 8px; }
    .compare-toggle .compare-label { display: none; }
    .compare-bar { left: 12px; right: 12px; transform: translateY(120px); padding: 12px 14px; gap: 12px; }
    .compare-bar.show { transform: translateY(0); }
    .compare-modal-content { padding: 24px 18px; }
    .compare-modal h2 { font-size: 28px; }
    .compare-table th, .compare-table td { padding: 10px 8px; font-size: 13px; }
    .compare-table th { width: auto; }
    .compare-table { font-size: 12px; }
    .compare-table td { font-size: 15px; }
    .compare-table .model-head { font-size: 18px; }
  }

/* "Что входит в цену" блок */

.price-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 0 60px;
  }

.price-block {
    padding: 32px 32px 28px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }

.price-block.included { border-left: 3px solid var(--green); }

.price-block.not-included { border-left: 3px solid var(--amber); }

.price-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

.price-block-icon {
    width: 28px; height: 28px;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 600;
  }

.price-block.included .price-block-icon { background: var(--green); color: var(--bg); }

.price-block.not-included .price-block-icon { background: var(--amber); color: var(--bg); }

.price-block-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
  }

.price-block ul { list-style: none; padding: 0; }

.price-block li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
  }

.price-block li:last-child { border-bottom: none; }

.price-block li strong { color: var(--amber); font-weight: 600; }

.price-block-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--ink-dim);
    font-size: 13px;
    font-style: italic;
  }

@media (max-width: 800px) {
    .price-includes { grid-template-columns: 1fr; }
  }

.model-included {
    margin: 0 -36px 18px;
    padding: 14px 36px;
    background: rgba(232, 163, 23, 0.06);
    border-top: 1px solid rgba(232, 163, 23, 0.2);
    border-bottom: 1px solid rgba(232, 163, 23, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1.6;
  }

.model-included .label {
    color: var(--amber);
    font-weight: 600;
    margin-right: 8px;
  }

.model-included .item { display: inline-block; margin-right: 4px; }

.model-included .sep { color: var(--ink-mute); margin: 0 6px; }

.model-included .extra-note {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(232, 163, 23, 0.2);
    color: var(--ink-dim);
    text-transform: none;
    font-size: 11px;
  }

.models { background: var(--bg); border-top: 1px solid var(--line); }

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

.model { background: var(--bg-2); border: 1px solid var(--line); padding: 36px; position: relative; transition: all 0.3s; display: flex; flex-direction: column; }

.model:hover { border-color: var(--amber); transform: translateY(-2px); }

.model-tag { position: absolute; top: 0; right: 32px; transform: translateY(-50%); background: var(--bg); border: 1px solid var(--line); padding: 6px 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-dim); }

.model-tag.hit { background: var(--amber); color: var(--bg); border-color: var(--amber); font-weight: 600; }

.model-tag.premium { background: var(--bg); border-color: var(--amber); color: var(--amber); }

.model-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 24px; }

.model-name { font-family: 'Bebas Neue', sans-serif; font-size: 38px; line-height: 1; margin-bottom: 4px; letter-spacing: 0.01em; }

.model-pos { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.05em; }

.model-price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--ink); line-height: 1; text-align: right; white-space: nowrap; }

.model-price-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; text-align: right; }

.model-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-bottom: 24px; border-top: 1px solid var(--line); }

.model-spec { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 12px; }

.model-spec:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }

.model-spec:nth-child(even) { padding-left: 16px; }

.model-spec .l { color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.04em; }

.model-spec .v { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--ink); letter-spacing: 0.02em; }

.model-spec .v.amber { color: var(--amber); }

.model-summary { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin-bottom: 24px; padding: 16px; background: var(--bg); border-left: 3px solid var(--amber); }

.model-summary strong { color: var(--ink); font-weight: 600; }

.model .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Placeholder для будущих фото кейсов */

.case-placeholder-img {
    background:
      repeating-linear-gradient(45deg, var(--bg-3) 0, var(--bg-3) 10px, var(--bg-2) 10px, var(--bg-2) 20px);
    border: 1px dashed var(--line-bright);
    aspect-ratio: 3/2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
  }

.case-placeholder-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--ink-dim);
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 20px;
  }

.case-placeholder-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

/* Reserve model — Стандарт */

.reserve-model {
    margin-top: 60px;
    padding: 40px 44px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--rust);
  }

.reserve-model-header {
    margin-bottom: 28px;
  }

.reserve-model-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--rust);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
  }

.reserve-model-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.005em;
    margin: 0 0 16px;
  }

.reserve-model-sub {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.65;
    max-width: 900px;
  }

.reserve-model-sub strong { color: var(--ink); font-weight: 600; }

.reserve-model-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 28px;
    align-items: center;
  }

.reserve-model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }

.reserve-spec {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--line);
    font-size: 13px;
  }

.reserve-spec .l {
    color: var(--ink-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

.reserve-spec .v {
    color: var(--ink);
    font-weight: 500;
    text-align: right;
  }

.reserve-spec .v.amber {
    color: var(--amber);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
  }

.reserve-model-action p {
    color: var(--ink-dim);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

.reserve-model-action p strong { color: var(--ink); }

/* Order block — 6 брендов под заказ */

.order-block {
    margin-top: 60px;
    padding: 50px 44px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
  }

.order-block-header {
    margin-bottom: 32px;
  }

.order-block-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

.order-block-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.005em;
    margin: 0 0 14px;
  }

.order-block-sub {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    max-width: 700px;
  }

.order-brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
    margin-bottom: 24px;
  }

.order-brand {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
  }

.order-brand:last-child { border-right: none; }

.order-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-bottom: 4px;
  }

.order-brand-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--ink-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

.order-block-cta {
    display: inline-flex;
  }

/* Amber tag для подсветки спецтегов */

.model-tag.amber-tag {
    background: var(--amber);
    color: var(--bg);
  }

@media (max-width: 900px) {
    .reserve-model { padding: 28px 22px; }
    .reserve-model-card { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .reserve-model-specs { grid-template-columns: 1fr; gap: 10px; }
    .order-block { padding: 30px 22px; }
    .order-brands { grid-template-columns: repeat(2, 1fr); }
    .order-brand { border-bottom: 1px solid var(--line); }
    .order-brand:nth-child(2n) { border-right: none; }
    .order-brand:nth-last-child(-n+2) { border-bottom: none; }
  }

/* TCO */

.tco-scenario-header {
    margin-top: 40px;
    margin-bottom: 0;
    padding: 18px 24px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }

.tco-scenario-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
  }

.tco-scenario-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-dim);
  }

.tco-static {
    margin-top: 0;
  }

.th-sub {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 400;
  }

.td-sub {
    display: block;
    font-size: 10px;
    color: var(--ink-mute);
    margin-top: 3px;
    font-family: 'JetBrains Mono', monospace;
  }

.cell-best {
    color: var(--green) !important;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.05);
  }

.cell-warn {
    color: var(--rust) !important;
    background: rgba(197, 74, 48, 0.05);
  }

.tco-table tr.diff td {
    background: var(--bg-2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-dim);
  }

.tco-table tr.diff td:first-child {
    color: var(--ink);
    font-weight: 600;
  }

/* Инсайты */

.tco-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 50px;
    border: 1px solid var(--line);
  }

.tco-insight {
    padding: 28px 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

.tco-insight:nth-child(2n) { border-right: none; }

.tco-insight:nth-last-child(-n+2) { border-bottom: none; }

.tco-insight-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--amber);
    letter-spacing: 0.05em;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
  }

.tco-insight-text {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.65;
  }

.tco-insight-text strong {
    color: var(--ink);
    font-weight: 600;
  }

/* Калькулятор TCO */

.tco-calculator {
    margin-top: 70px;
    padding: 50px 44px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
  }

.tco-calc-header { margin-bottom: 36px; }

.tco-calc-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

.tco-calc-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.005em;
    margin: 0 0 16px;
  }

.tco-calc-header p {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
  }

.tco-calc-controls {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--line);
  }

.tco-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }

.tco-calc-row:first-child {
    grid-template-columns: 1fr 1fr;
  }

.tco-calc-step {}

.tco-calc-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }

.tco-calc-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

/* Результат калькулятора */

.tco-calc-result {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 30px;
  }

.tco-calc-summary {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-3);
    border-left: 3px solid var(--amber);
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink);
  }

.tco-calc-summary strong { color: var(--amber); }

.tco-calc-summary .winner { color: var(--green); font-weight: 600; }

.tco-calc-summary .loser { color: var(--rust); font-weight: 600; }

/* Гистограмма */

.tco-calc-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.tco-bar {
    display: grid;
    grid-template-columns: 130px 1fr 140px;
    gap: 14px;
    align-items: center;
    padding: 8px 0;
  }

.tco-bar-name {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }

.tco-bar-track {
    height: 26px;
    background: var(--bg-3);
    position: relative;
    border: 1px solid var(--line);
  }

.tco-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber-dim, #8a6010), var(--amber));
    transition: width 0.4s ease;
    position: relative;
  }

.tco-bar.best .tco-bar-fill { background: linear-gradient(90deg, #2a6a3a, var(--green)); }

.tco-bar.worst .tco-bar-fill { background: linear-gradient(90deg, #6a2a2a, var(--rust)); }

.tco-bar-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--amber);
    letter-spacing: 0.02em;
    text-align: right;
  }

.tco-bar.best .tco-bar-value { color: var(--green); }

.tco-bar.worst .tco-bar-value { color: var(--rust); }

.tco-bar-breakdown {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    pointer-events: none;
    white-space: nowrap;
  }

@media (max-width: 1000px) {
    .tco-insights { grid-template-columns: 1fr; }
    .tco-insight { border-right: none; }
    .tco-insight:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--line); }
  }

@media (max-width: 800px) {
    .tco-calculator { padding: 30px 22px; }
    .tco-calc-controls { padding: 18px; gap: 22px; }
    .tco-calc-row, .tco-calc-row:first-child {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    .tco-calc-result { padding: 18px; }
    .tco-bar { grid-template-columns: 100px 1fr; gap: 10px; }
    .tco-bar-value { grid-column: 1 / -1; text-align: left; padding-left: 110px; margin-top: -4px; }
    .tco-bar-name { font-size: 12px; }
    .tco-scenario-header { padding: 14px 16px; }
    .tco-scenario-title { font-size: 10px; }
  }

.tco { background: var(--bg-2); border-top: 1px solid var(--line); }

.tco-table { background: var(--bg); border: 1px solid var(--line); overflow: hidden; margin-top: 40px; }

.tco-table table { width: 100%; border-collapse: collapse; }

.tco-table th, .tco-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); font-family: 'JetBrains Mono', monospace; font-size: 13px; }

.tco-table th { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; color: var(--ink); background: var(--bg-2); text-transform: uppercase; }

.tco-table th:first-child { color: var(--amber); }

.tco-table td:first-child { color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.05em; font-size: 12px; }

.tco-table tr:last-child td { border-bottom: none; }

.tco-table tr.total td { background: rgba(232, 163, 23, 0.06); font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--ink); letter-spacing: 0.02em; }

.tco-table tr.total td:first-child { color: var(--amber); font-size: 13px; }

.tco-note { margin-top: 24px; padding: 24px; background: var(--bg); border-left: 3px solid var(--green); color: var(--ink-dim); font-size: 15px; line-height: 1.7; }

.tco-note strong { color: var(--ink); font-weight: 600; }

/* INCLUDED */

.included { background: var(--bg); border-top: 1px solid var(--line); }

.inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); margin-top: 40px; }

.inc-card { padding: 36px 28px; border-right: 1px solid var(--line); transition: background 0.3s; }

.inc-card:last-child { border-right: none; }

.inc-card:hover { background: var(--bg-2); }

.inc-icon { width: 36px; height: 36px; color: var(--amber); margin-bottom: 20px; }

.inc-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 8px; }

.inc-card p { font-size: 14px; color: var(--ink-dim); line-height: 1.5; }

/* CASES */

.cases { background: var(--bg-2); border-top: 1px solid var(--line); }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }

.case { background: var(--bg); border: 1px solid var(--line); padding: 36px 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; }

.case.has-photo { padding: 0; }

.case.has-photo .case-num,
  .case.has-photo h3,
  .case.has-photo .case-block,
  .case.has-photo .case-quote,
  .case.has-photo .case-cost { margin-left: 28px; margin-right: 28px; }

.case.has-photo .case-num { margin-top: 28px; }

.case.has-photo .case-cost { margin-bottom: 28px; }

.case-photo { width: 100%; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-2); margin-bottom: 24px; }

.case-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }

.case.has-photo:hover .case-photo img { transform: scale(1.04); }

.case::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }

.case:hover::before { transform: scaleY(1); }

.case-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }

.case h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; margin-bottom: 18px; line-height: 1.05; }

.case-block { margin-bottom: 16px; }

.case-block-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 6px; }

.case-block-text { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }

.case-quote { font-style: italic; font-size: 14px; color: var(--ink); padding: 14px 16px; background: var(--bg-2); border-left: 2px solid var(--amber); margin: 16px 0; line-height: 1.5; }

.case-cost { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-dim); }

.case-cost strong { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--amber); display: block; margin-top: 4px; letter-spacing: 0.02em; }

/* PROCESS */

.process { background: var(--bg); border-top: 1px solid var(--line); }

.process-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; }

.process-step { padding: 36px 28px; border-right: 1px dashed var(--line); }

.process-step:last-child { border-right: none; }

.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 76px; line-height: 0.9; color: var(--bg-2); -webkit-text-stroke: 1px var(--ink-dim); margin-bottom: 20px; }

.process-step h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; margin-bottom: 10px; }

.process-step p { font-size: 13px; color: var(--ink-dim); line-height: 1.55; }

/* FAQ */

.faq { background: var(--bg-2); border-top: 1px solid var(--line); }

.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q { width: 100%; background: none; border: none; color: var(--ink); padding: 24px 0; text-align: left; cursor: pointer; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.2s; }

.faq-q:hover { color: var(--amber); }

.faq-q::after { content: '+'; font-family: 'JetBrains Mono', monospace; font-size: 24px; color: var(--amber); transition: transform 0.3s; flex-shrink: 0; }

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--ink-dim); font-size: 15px; line-height: 1.7; }

.faq-item.open .faq-a { max-height: 400px; padding: 0 0 24px 0; }

/* CTA */

.cta { background: var(--bg); border-top: 1px solid var(--line); position: relative; overflow: hidden; }

.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232, 163, 23, 0.12), transparent 60%); }

.cta .container { text-align: center; position: relative; z-index: 2; }

.cta h2 { margin-bottom: 24px; }

.cta-sub { color: var(--ink-dim); font-size: 18px; max-width: 640px; margin: 0 auto 40px; line-height: 1.6; }

.cta-form { display: flex; max-width: 540px; margin: 0 auto; border: 1px solid var(--line-bright); }

.cta-form input { flex: 1; padding: 20px 24px; background: transparent; border: none; color: var(--ink); font-family: 'JetBrains Mono', monospace; font-size: 14px; outline: none; }

.cta-form input::placeholder { color: var(--ink-mute); }

.cta-form button { padding: 0 32px; background: var(--amber); color: var(--bg); border: none; font-family: 'JetBrains Mono', monospace; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s; font-weight: 600; }

.cta-form button:hover { background: var(--amber-bright); }

.cta-form button:disabled { opacity: 0.5; cursor: wait; }

.form-message {
    max-width: 540px;
    margin: 16px auto 0;
    padding: 14px 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-align: center;
    display: none;
    border-left: 3px solid var(--amber);
    background: var(--bg-2);
  }

.form-message.show { display: block; }

.form-message.success { border-left-color: var(--green); color: var(--ink); }

.form-message.error { border-left-color: var(--rust); color: var(--ink); }

.cta-phone { margin-top: 32px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink-dim); }

.cta-phone a { color: var(--amber); text-decoration: none; font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.04em; margin-left: 12px; }

/* FOOTER */

footer { background: var(--bg); border-top: 1px solid var(--line); padding: 50px 40px 30px; }

.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }

.footer-content h5 { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }

.footer-content ul { list-style: none; }

.footer-content li { padding: 6px 0; font-size: 14px; color: var(--ink-dim); }

.footer-content a { color: var(--ink-dim); text-decoration: none; transition: color 0.2s; }

.footer-content a:hover { color: var(--amber); }

.footer-about { color: var(--ink-dim); font-size: 14px; line-height: 1.6; max-width: 380px; margin-top: 16px; }

.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-mute); letter-spacing: 0.05em; }

/* PHASE INFO BLOCK */

.phase-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-2);
    border-left: 3px solid var(--amber);
    margin: 30px 0 50px;
    max-width: 900px;
  }

.phase-info-icon {
    font-size: 28px;
    color: var(--amber);
  }

.phase-info-text {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.6;
  }

.phase-info-text strong { color: var(--ink); font-weight: 600; }

/* PHASE TOGGLE (внутри карточки) */

.phase-toggle {
    display: inline-flex;
    background: var(--bg);
    border: 1px solid var(--line);
    margin-bottom: 20px;
  }

.phase-toggle button {
    background: transparent;
    border: none;
    padding: 8px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-dim);
    cursor: pointer;
    transition: all 0.2s;
  }

.phase-toggle button.active {
    background: var(--amber);
    color: var(--bg);
    font-weight: 600;
  }

.phase-toggle button:hover:not(.active) { color: var(--ink); }

/* MODEL GALLERY */

.model.has-photos { padding-top: 0; overflow: hidden; }

.model-gallery { margin: 0 -36px 28px; position: relative; }

.model-main-photo {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #0e0e0c;
    cursor: zoom-in;
    position: relative;
  }

.model-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease, transform 0.4s ease;
  }

.model-main-photo:hover img { transform: scale(1.03); }

.model-main-photo::after {
    content: '⤢';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    background: rgba(246, 244, 239, 0.85);
    backdrop-filter: blur(8px);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid rgba(244, 241, 234, 0.2);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
  }

.model-main-photo:hover::after { opacity: 1; }

.model-photo-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(246, 244, 239, 0.88);
    backdrop-filter: blur(8px);
    color: var(--ink);
    padding: 6px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(244, 241, 234, 0.2);
    pointer-events: none;
  }

.model-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-top: 4px; padding: 0 4px; }

.model-thumbs .thumb { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: 0.5; transition: opacity 0.2s; display: block; border: 1px solid transparent; }

.model-thumbs .thumb:hover { opacity: 0.85; }

.model-thumbs .thumb.active { opacity: 1; border-color: var(--amber); }

.model.has-photos .model-tag { top: 16px; right: 16px; transform: none; z-index: 2; }

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(246, 244, 239, 0.97);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    animation: lbFade 0.25s ease;
  }

.lightbox.open { display: flex; }

@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lb-image-wrap {
    max-width: 1400px;
    max-height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

.lb-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border: 1px solid var(--line);
  }

.lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg-2);
    border: 1px solid var(--line-bright);
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
  }

.lb-close:hover { background: var(--amber); color: var(--bg); border-color: var(--amber); }

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--bg-2);
    border: 1px solid var(--line-bright);
    color: var(--ink);
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
  }

.lb-nav:hover { background: var(--amber); color: var(--bg); border-color: var(--amber); }

.lb-prev { left: 32px; }

.lb-next { right: 32px; }

.lb-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 10px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

.lb-caption .lb-counter { color: var(--amber); margin-right: 12px; }

@media (max-width: 800px) {
    .lightbox { padding: 50px 16px; }
    .lb-nav { width: 44px; height: 44px; font-size: 18px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .lb-caption { font-size: 10px; padding: 8px 14px; bottom: 12px; }
  }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .models-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .inc-grid { grid-template-columns: 1fr 1fr; }
    .inc-card:nth-child(2) { border-right: none; }
    .inc-card:nth-child(1), .inc-card:nth-child(2) { border-bottom: 1px solid var(--line); }
    .process-flow { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2) { border-right: none; }
    .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px dashed var(--line); }
    .nav-links { gap: 16px; font-size: 11px; }
    .nav-phone-num { font-size: 18px; }
    nav { padding: 14px 24px; }
  }

@media (max-width: 950px) {
    .nav-burger { display: flex; }
    .nav-links {
      position: fixed;
      top: 64px; left: 0; right: 0;
      flex-direction: column;
      background: var(--bg-2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 8px 0;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .nav-links.open { max-height: 360px; }
    .nav-links a {
      padding: 14px 24px;
      font-size: 13px;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a:hover, .nav-links a.active { color: var(--amber); background: var(--bg); }
  }

@media (max-width: 800px) {
    nav { padding: 12px 18px; flex-wrap: wrap; gap: 10px; }
    .nav-phone-num { font-size: 18px; }
    .container { padding: 35px 20px; }
    .hero { padding: 65px 20px 30px; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 360px; margin: 0 auto; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .cta-form { flex-direction: column; }
    .cta-form button { padding: 18px; }
    /* Что входит в цену — одна колонка на мобильном */
    .inc-grid { grid-template-columns: 1fr; }
    .inc-card { border-right: none !important; border-bottom: 1px solid var(--line); }
    .inc-card:last-child { border-bottom: none; }
    /* Process — тоже одна колонка */
    .process-flow { grid-template-columns: 1fr; }
    .process-step { border-right: none !important; border-bottom: 1px dashed var(--line); }
    .process-step:last-child { border-bottom: none; }
    .tco-table {
      overflow-x: auto;
      position: relative;
      /* визуальный градиент справа — намекает что можно скроллить */
      background:
        linear-gradient(to right, var(--bg) 30%, transparent),
        linear-gradient(to right, transparent, var(--bg) 70%) right,
        linear-gradient(to right, rgba(232, 163, 23, 0.15), transparent) right,
        var(--bg);
      background-repeat: no-repeat;
      background-size: 30px 100%, 30px 100%, 30px 100%, 100% 100%;
      background-attachment: local, local, scroll, local;
      -webkit-overflow-scrolling: touch;
    }
    .tco-table table { min-width: 600px; border: 1px solid var(--line); }
    /* Первая колонка (параметр) - "прилипшая" */
    .tco-table th:first-child,
    .tco-table td:first-child {
      position: sticky;
      left: 0;
      z-index: 2;
      background: var(--bg-2);
      box-shadow: 2px 0 6px rgba(0,0,0,0.4);
      max-width: 130px;
      font-size: 11px;
      padding: 12px 14px;
    }
    .tco-table tr.total td:first-child { background: var(--bg-3); }
    .tco-table th, .tco-table td { padding: 12px 14px; font-size: 12px; white-space: nowrap; }
    .tco-table th { font-size: 16px; }
    .model-header { flex-direction: column; gap: 14px; }
    .model-price, .model-price-sub { text-align: left; }
    /* На мобильном: название модели не переносится, шрифт меньше */
    .model-name { font-size: 30px; word-break: keep-all; }
    /* Характеристики — в одну колонку */
    .model-specs { grid-template-columns: 1fr; }
    .model-spec { padding: 14px 0 !important; border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; }
    .model-spec .v { white-space: nowrap; font-size: 17px; }
    /* Хром скрывает overflow от 38px шрифта на узких — уменьшим заголовки */
    h2 { font-size: clamp(36px, 8vw, 60px); }
    /* Габариты с маленькой надписью */
    .model-spec .v[style*="font-size: 14px"] { font-size: 14px !important; }
  }

/* На узких экранах скрываем телефон в навбаре */

@media (max-width: 800px) {
    .nav-phone-num { display: none; }
    nav { padding: 12px 14px; gap: 8px; }
    .logo { font-size: 18px; }
    .logo-mark { width: 30px; height: 30px; }
    .logo-sub { font-size: 9px; }
    .nav-cta { padding: 9px 14px; font-size: 11px; }
  }

/* На очень узких (старые мобильные) уберём ещё и подпись под лого */

@media (max-width: 420px) {
    .logo-sub { display: none; }
    .nav-cta { padding: 8px 11px; font-size: 10px; letter-spacing: 0.05em; }
    .logo { font-size: 16px; }
    .logo-mark { width: 26px; height: 26px; }
  }

/* Совсем мелкие экраны (старые мобильные ~360px) */

@media (max-width: 360px) {
    .logo .logo-text-main { font-size: 14px; }
    .logo-mark { width: 24px; height: 24px; }
    .nav-cta { padding: 7px 9px; font-size: 9px; }
    nav { padding: 10px 10px; gap: 6px; }
  }

/* === Catalog: 2nd price + 2 buttons + Ricardo warning === */

.model-price-alt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-mute);
    text-align: right;
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

.model-tag.warning-tag {
    background: #d97757;
    color: white;
    border-color: #d97757;
    font-weight: 600;
  }

.model.model-reserve {
    border-left: 3px solid #d97757;
  }

.model-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

.model-actions .btn {
    margin-top: 0;
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
  }

.model-btn-primary {
    background: var(--amber);
    color: var(--bg);
    border-color: var(--amber);
  }

.model-btn-primary:hover {
    background: var(--amber-bright, var(--amber));
    color: var(--bg);
  }

.model-btn-secondary {
    /* default .btn-ghost styles apply */
  }

@media (max-width: 640px) {
    .model-actions { grid-template-columns: 1fr; gap: 8px; }
    .model-price, .model-price-sub, .model-price-alt { text-align: left; }
  }

/* === Compact catalog (mc-*) — Apple/Yandex Market style === */

.models-compact { padding-top: 30px; padding-bottom: 40px; }

.models-compact h2 { margin-bottom: 18px; }

.models-compact .section-intro { max-width: 780px; margin: 0 auto 50px; text-align: center; }

.models-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
  }

.models-grid-compact > .mc-card {
    flex: 0 1 calc(50% - 14px);
    box-sizing: border-box;
  }

.mc-card {
    position: relative;
    background: var(--bg, #f6f4ef);
    border: 1px solid var(--line, #e5e0d6);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

.mc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(40, 30, 15, 0.08);
    border-color: var(--amber, #c8870d);
  }

.mc-card.mc-reserve { border-left: 3px solid #d97757; }

.mc-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    background: var(--bg, #f6f4ef);
    border: 1px solid var(--line, #e5e0d6);
    padding: 7px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-dim, #6e6759);
    border-radius: 999px;
  }

.mc-tag.hit { background: var(--amber, #c8870d); color: white; border-color: var(--amber, #c8870d); font-weight: 600; }

.mc-tag.amber-tag { background: var(--bg, #f6f4ef); color: var(--amber, #c8870d); border-color: var(--amber, #c8870d); font-weight: 600; }

.mc-tag.warning-tag { background: #d97757; color: white; border-color: #d97757; font-weight: 600; }

/* Photo area: 4:3 aspect, light background */

.mc-photo {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio fallback */
    background: linear-gradient(135deg, #fafaf8 0%, #f0ece2 100%);
    overflow: hidden;
  }

.mc-photo > * {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.mc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

.mc-photo-placeholder { background: linear-gradient(135deg, #f0ece2 0%, #e8e2d4 100%); }

.mc-photo-fallback {
    text-align: center;
    color: var(--ink-mute, #9a9183);
    font-family: 'JetBrains Mono', monospace;
    padding: 24px;
  }

.mc-photo-fallback strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: var(--ink-dim, #6e6759);
  }

.mc-photo-fallback span {
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
  }

/* Body */

.mc-body {
    padding: 26px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

.mc-header h3.mc-name {
    margin: 0 0 6px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.005em;
    color: var(--ink, #2a2620);
  }

.mc-pos {
    font-size: 13px;
    color: var(--ink-dim, #6e6759);
    line-height: 1.4;
  }

/* Price */

.mc-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px dashed var(--line, #e5e0d6);
    border-bottom: 1px dashed var(--line, #e5e0d6);
  }

.mc-price-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--ink, #2a2620);
    letter-spacing: 0.005em;
    white-space: nowrap;
  }

.mc-cur { color: var(--amber, #c8870d); margin-left: 2px; }

.mc-price-side {
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
  }

.mc-price-label {
    font-size: 11px;
    color: var(--ink-dim, #6e6759);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

.mc-price-alt {
    margin-top: 3px;
    font-size: 12px;
    color: var(--ink-mute, #9a9183);
    letter-spacing: 0.02em;
  }

/* Specs */

.mc-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.mc-specs li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 13px;
    line-height: 1.4;
    gap: 12px;
  }

.mc-specs .l {
    color: var(--ink-dim, #6e6759);
    flex-shrink: 0;
  }

.mc-specs .v {
    color: var(--ink, #2a2620);
    font-weight: 500;
    text-align: right;
  }

.mc-specs .v.amber { color: var(--amber, #c8870d); font-weight: 600; }

.mc-specs .v.warn { color: #d97757; font-weight: 600; }

/* Summary */

.mc-summary {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-dim, #6e6759);
    margin: 0;
    padding-top: 6px;
  }

.mc-summary strong { color: var(--ink, #2a2620); }

.mc-summary .warn { color: #d97757; }

/* Actions */

.mc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 28px 28px;
  }

.mc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid var(--line, #e5e0d6);
    transition: all 0.15s ease;
    text-align: center;
    font-weight: 500;
  }

.mc-btn-primary {
    background: var(--amber, #c8870d);
    color: white;
    border-color: var(--amber, #c8870d);
  }

.mc-btn-primary:hover {
    background: #b6790b;
    border-color: #b6790b;
    transform: translateY(-1px);
  }

.mc-btn-ghost {
    background: transparent;
    color: var(--ink, #2a2620);
  }

.mc-btn-ghost:hover {
    background: var(--ink, #2a2620);
    color: var(--bg, #f6f4ef);
    border-color: var(--ink, #2a2620);
  }

/* Mobile */

@media (max-width: 720px) {
    .models-grid-compact { gap: 20px; }
    .models-grid-compact > .mc-card { flex: 0 1 100%; }
    .mc-body { padding: 22px 22px 18px; }
    .mc-actions { padding: 0 22px 22px; }
    .mc-price-main { font-size: 30px; }
    .mc-header h3.mc-name { font-size: 26px; }
  }

/* === KP Modal === */

.kp-modal-overlay {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(40, 30, 15, 0.55);
      display: none;
      align-items: flex-start;
      justify-content: center;
      z-index: 9999;
      padding: 60px 20px 20px;
      overflow-y: auto;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

.kp-modal-overlay.open {
      display: flex;
      animation: kpFadeIn 0.18s ease;
    }

@keyframes kpFadeIn { from { opacity: 0; } to { opacity: 1; } }

.kp-modal {
      background: var(--bg, #f6f4ef);
      max-width: 540px;
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 24px 64px rgba(40, 30, 15, 0.25);
      overflow: hidden;
      animation: kpSlideIn 0.22s cubic-bezier(0.2, 0.8, 0.3, 1);
      margin-bottom: 20px;
    }

@keyframes kpSlideIn {
      from { transform: translateY(-12px) scale(0.98); opacity: 0; }
      to { transform: translateY(0) scale(1); opacity: 1; }
    }

.kp-modal-header {
      padding: 28px 32px 0;
      position: relative;
    }

.kp-modal-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      color: var(--amber, #c8870d);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 8px;
    }

.kp-modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      line-height: 1.1;
      color: var(--ink, #2a2620);
      margin: 0 0 6px;
      font-weight: 400;
    }

.kp-modal-sub {
      font-size: 14px;
      color: var(--ink-dim, #6e6759);
      line-height: 1.5;
      margin: 0 0 22px;
    }

.kp-modal-close {
      position: absolute;
      top: 18px; right: 18px;
      width: 32px; height: 32px;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: var(--ink-dim, #6e6759);
      font-size: 22px;
      line-height: 1;
      border-radius: 8px;
      transition: background 0.15s ease;
    }

.kp-modal-close:hover { background: rgba(0,0,0,0.05); color: var(--ink, #2a2620); }

.kp-modal-body { padding: 0 32px 28px; }

.kp-modal-model {
      background: var(--bgAlt, #fafaf8);
      border: 1px solid var(--line, #e5e0d6);
      border-radius: 10px;
      padding: 10px 14px;
      margin-bottom: 18px;
      font-size: 13px;
      color: var(--ink-dim, #6e6759);
      line-height: 1.4;
    }

.kp-modal-model strong { color: var(--ink, #2a2620); font-weight: 600; }

.kp-modal-field {
      display: block;
      margin-bottom: 14px;
    }

.kp-modal-field label {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 500;
      color: var(--ink-dim, #6e6759);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 6px;
    }

.kp-modal-field label .opt {
      text-transform: none;
      letter-spacing: 0;
      font-weight: 400;
      color: var(--ink-mute, #9a9183);
      margin-left: 4px;
    }

.kp-modal-field input[type="tel"],
    .kp-modal-field input[type="email"],
    .kp-modal-field input[type="text"],
    .kp-modal-field textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid var(--line, #e5e0d6);
      border-radius: 10px;
      font-family: inherit;
      font-size: 15px;
      color: var(--ink, #2a2620);
      background: white;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
      box-sizing: border-box;
    }

.kp-modal-field input:focus,
    .kp-modal-field textarea:focus {
      outline: none;
      border-color: var(--amber, #c8870d);
      box-shadow: 0 0 0 3px rgba(200, 135, 13, 0.12);
    }

.kp-modal-field textarea {
      min-height: 78px;
      resize: vertical;
      font-family: inherit;
      line-height: 1.5;
    }

.kp-modal-submit {
      width: 100%;
      padding: 15px 20px;
      background: var(--amber, #c8870d);
      color: white;
      border: 0;
      border-radius: 10px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.1s ease;
      margin-top: 6px;
    }

.kp-modal-submit:hover { background: #b6790b; }

.kp-modal-submit:active { transform: translateY(1px); }

.kp-modal-submit:disabled { opacity: 0.5; cursor: wait; }

.kp-modal-note {
      font-size: 11px;
      color: var(--ink-mute, #9a9183);
      line-height: 1.5;
      margin-top: 14px;
      text-align: center;
    }

.kp-modal-success {
      padding: 30px;
      text-align: center;
      color: var(--ink, #2a2620);
    }

.kp-modal-success-icon {
      font-size: 48px;
      margin-bottom: 16px;
      color: var(--amber, #c8870d);
    }

@media (max-width: 600px) {
      .kp-modal-overlay { padding: 20px 12px; }
      .kp-modal-header { padding: 22px 22px 0; }
      .kp-modal-body { padding: 0 22px 22px; }
      .kp-modal-title { font-size: 26px; }
    }

/* === Extended CTA form (bottom) - email + comment === */

.cta-form-extended .cta-form-field {
      width: 100%;
      max-width: 500px;
      margin: 0 auto 12px;
    }

.cta-form-extended .cta-form-field input,
    .cta-form-extended .cta-form-field textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--line, #e5e0d6);
      border-radius: 10px;
      font-family: inherit;
      font-size: 15px;
      color: var(--ink, #2a2620);
      background: white;
      box-sizing: border-box;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

.cta-form-extended .cta-form-field input:focus,
    .cta-form-extended .cta-form-field textarea:focus {
      outline: none;
      border-color: var(--amber, #c8870d);
      box-shadow: 0 0 0 3px rgba(200, 135, 13, 0.12);
    }

.cta-form-extended .cta-form-field textarea {
      min-height: 72px;
      resize: vertical;
      line-height: 1.5;
    }

.cta-form-extended .cta-form-field-hint {
      font-size: 11px;
      color: var(--ink-mute, #9a9183);
      margin-top: 4px;
      text-align: left;
      padding: 0 4px;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.04em;
    }

/* === Override base .cta-form when extended === */

.cta-form.cta-form-extended {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px;
      max-width: 540px;
      margin: 0 auto;
    }

.cta-form.cta-form-extended .cta-form-field {
      width: 100%;
      max-width: none;
      margin: 0;
    }

.cta-form.cta-form-extended button[type="submit"] {
      width: 100%;
      max-width: none;
      margin-top: 4px;
      padding: 16px 28px;
      background: var(--amber, #c8870d);
      color: white;
      border: 0;
      border-radius: 10px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.15s ease;
    }

.cta-form.cta-form-extended button[type="submit"]:hover {
      background: #b6790b;
    }

/* === NEXT BLOCK === */

.messengers {
    position: fixed; right: 24px; bottom: 24px; z-index: 60;
    display: flex; flex-direction: column; gap: 10px;
  }

.msg-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center;
    color: white; text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Manrope', sans-serif; font-weight: 700;
    position: relative;
  }

.msg-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  }

.msg-btn.telegram { background: #0088cc; }

.msg-btn.max { background: linear-gradient(135deg, #ff6b35, #ffa726); }

.msg-btn.whatsapp { background: #25d366; }

.msg-btn svg { width: 28px; height: 28px; fill: white; }

.msg-btn .tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: var(--bg-2); color: var(--ink);
    padding: 8px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
    border: 1px solid var(--line); white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity 0.2s;
  }

.msg-btn:hover .tooltip { opacity: 1; }

@media (max-width: 700px) {
    .messengers { right: 14px; bottom: 14px; }
    .msg-btn { width: 50px; height: 50px; }
  }

:root {
    --bg: #f6f4ef;
    --bg-2: #ecebe5;
    --bg-3: #e2e0d8;
    --bg-4: #d5d2c8;
    --ink: #1a1816;
    --ink-dim: #5e5950;
    --ink-mute: #8a8478;
    --amber: #c8870d;
    --amber-bright: #a86f00;
    --green: #2d8a4e;
    --rust: #a8341a;
    --line: rgba(26, 24, 22, 0.12);
    --line-bright: rgba(26, 24, 22, 0.25);
    --shadow-sm: 0 1px 3px rgba(26, 24, 22, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 24, 22, 0.08);
    --shadow-lg: 0 10px 30px rgba(26, 24, 22, 0.12);
  }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    padding-top: 64px;
  }

/* ===== NAV ===== */

.logo { display: flex; align-items: center; gap: 12px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; }

.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }

.logo-mark img { width: 100%; height: 100%; object-fit: contain; }

.logo-text { color: var(--ink); text-decoration: none; }

.nav-right { display: flex; align-items: center; gap: 22px; }

.nav-phone { color: var(--ink); text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600; }

.nav-cta { padding: 11px 20px; background: var(--amber); color: white; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; transition: background 0.2s; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }

.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: 0.2s; }

/* ===== CONTAINER ===== */

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ===== BREADCRUMBS ===== */

.breadcrumbs {
    padding: 28px 0 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
  }

.breadcrumbs a { color: var(--ink-dim); text-decoration: none; }

.breadcrumbs a:hover { color: var(--amber); }

.breadcrumbs .sep { margin: 0 8px; color: var(--ink-mute); }

.breadcrumbs .current { color: var(--ink); }

/* ===== HERO PRODUCT ===== */

.product-hero {
    padding: 12px 0 40px;
  }

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
  }

/* Галерея */

.gallery {
    position: sticky;
    top: 90px;
  }

.gallery-main {
    aspect-ratio: 4/3;
    background: var(--bg-2);
    border: 1px solid var(--line);
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-sizing: border-box;
    display: block;
  }

.gallery-main-placeholder {
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    text-align: center;
    background:
      repeating-linear-gradient(45deg,
        var(--bg-3) 0, var(--bg-3) 12px,
        var(--bg-2) 12px, var(--bg-2) 24px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

.gallery-main-placeholder strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--ink-dim);
    letter-spacing: 0.04em;
  }

.gallery-thumbs {
    --thumb-gap: 8px;
    display: flex;
    gap: var(--thumb-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--amber) var(--bg-2);
    padding-bottom: 4px;
  }

.gallery-thumbs::-webkit-scrollbar {
    height: 6px;
  }

.gallery-thumbs::-webkit-scrollbar-track {
    background: var(--bg-2);
  }

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--amber);
  }

.gallery-thumb {
    flex: 0 0 calc((100% - (4 * var(--thumb-gap))) / 5);
    scroll-snap-align: start;
    aspect-ratio: 1;
    background: var(--bg-2);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
    position: relative;
  }

.gallery-thumb.active {
    border-color: var(--amber);
    border-width: 2px;
  }

.gallery-thumb:hover { border-color: var(--amber); }

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.gallery-thumb-placeholder {
    width: 100%;
    height: 100%;
    background:
      repeating-linear-gradient(45deg,
        var(--bg-3) 0, var(--bg-3) 6px,
        var(--bg-2) 6px, var(--bg-2) 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
  }

/* Hero info */

.product-info {
    padding-top: 8px;
  }

.product-brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

.product-brand::before { content: ''; width: 28px; height: 1px; background: var(--amber); }

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 14px;
  }

.product-sub {
    font-size: 16px;
    color: var(--ink-dim);
    line-height: 1.55;
    margin-bottom: 30px;
  }

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(45, 138, 78, 0.1);
    border: 1px solid var(--green);
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
  }

.stock-badge::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
  }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }

.price-block {
    padding: 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    margin-bottom: 28px;
  }

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

.price-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: 0.01em;
  }

.price-currency { color: var(--amber); }

.price-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

.price-extra {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.6;
  }

.price-extra strong { color: var(--ink); font-weight: 600; }

/* Кнопки */

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }

.btn-primary {
    background: var(--amber);
    color: white;
  }

.btn-primary:hover { background: var(--amber-bright); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }

.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-full { grid-column: 1 / -1; }

/* 4 главных параметра в hero */

.hero-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--line);
  }

.hero-spec {
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.hero-spec:nth-child(2n) { border-right: none; }

.hero-spec:nth-last-child(-n+2) { border-bottom: none; }

.hero-spec-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

.hero-spec-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1;
  }

.hero-spec-value .amber { color: var(--amber); }

.hero-spec-sub {
    font-size: 11px;
    color: var(--ink-dim);
    margin-top: 4px;
  }

/* ===== QUICK WINS ===== */

.quick-wins {
    padding: 35px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.quick-wins h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 50px;
    max-width: 900px;
  }

.quick-wins h2 .italic { color: var(--amber); font-style: italic; }

.qw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
  }

.qw-card {
    padding: 32px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.qw-card:nth-child(3n) { border-right: none; }

.qw-card:nth-last-child(-n+3) { border-bottom: none; }

.qw-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--amber);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

.qw-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
  }

.qw-text {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.6;
  }

.qw-text strong { color: var(--ink); font-weight: 600; }

/* ===== SECTION COMMON ===== */

.section {
    padding: 45px 0;
  }

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

.section-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--amber); }

.section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
    max-width: 1000px;
  }

.section h2 .italic { color: var(--amber); font-style: italic; }

.section-intro {
    font-size: 17px;
    color: var(--ink-dim);
    line-height: 1.65;
    max-width: 780px;
    margin-bottom: 50px;
  }

.section-intro strong { color: var(--ink); font-weight: 600; }

/* ===== ПОЛНАЯ ТАБЛИЦА ТТХ ===== */

.specs-block {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.specs-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
  }

.specs-group {
    padding: 32px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.specs-group:nth-child(2n) { border-right: none; }

.specs-group-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.specs-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line);
    font-size: 13px;
  }

.specs-item:last-child { border-bottom: none; }

.specs-item-label {
    color: var(--ink-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
    max-width: 50%;
  }

.specs-item-value {
    color: var(--ink);
    font-weight: 500;
    text-align: right;
    line-height: 1.4;
  }

.specs-item-value.amber { color: var(--amber); font-weight: 600; }

/* ===== ГРАФИК + КАЛЬКУЛЯТОР ===== */

.fuel-section { background: var(--bg); }

.fuel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

.fuel-chart-wrap {
    padding: 32px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }

.fuel-chart-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

.fuel-chart {
    height: 240px;
    position: relative;
  }

.fuel-chart svg { width: 100%; height: 100%; }

.fuel-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 16px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    position: relative;
  }

.fuel-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
  }

.fuel-bar {
    width: 100%;
    max-width: 80px;
    background: var(--amber);
    transition: height 0.4s ease;
    position: relative;
  }

.fuel-bar-value {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--ink);
  }

.fuel-bar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
  }

.fuel-calc {
    padding: 32px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }

.fuel-calc-step { margin-bottom: 22px; }

.fuel-calc-step:last-of-type { margin-bottom: 28px; }

.fuel-calc-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }

.fuel-calc-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
  }

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--bg-3);
    outline: none;
    border-radius: 2px;
  }

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--amber);
    cursor: pointer;
    border-radius: 0;
    border: 2px solid var(--amber);
  }

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--amber);
    cursor: pointer;
    border: 2px solid var(--amber);
    border-radius: 0;
  }

.slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
  }

.fuel-result {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
  }

.fuel-result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

.fuel-result-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
  }

.fuel-result-sub {
    font-size: 13px;
    color: var(--ink-dim);
  }

/* ===== ВИДЕО ===== */

.video-section { background: var(--bg-2); }

.video-wrap {
    aspect-ratio: 16/9;
    background: var(--ink);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
  }

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1816 0%, #2a2520 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ecebe5;
    gap: 16px;
    cursor: pointer;
    position: relative;
  }

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(45deg,
        rgba(200, 135, 13, 0.04) 0,
        rgba(200, 135, 13, 0.04) 2px,
        transparent 2px,
        transparent 30px);
  }

.video-play-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

.video-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid var(--amber);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
  }

.video-placeholder-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.04em;
    z-index: 1;
  }

.video-placeholder-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
  }

/* ===== STORY WEICHAI ===== */

.story-section { background: var(--bg); }

.story-intro {
    max-width: 800px;
    margin-bottom: 60px;
  }

.story-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    margin-bottom: 60px;
  }

.story-fact {
    padding: 28px 22px;
    border-right: 1px solid var(--line);
    background: var(--bg-2);
  }

.story-fact:last-child { border-right: none; }

.story-fact-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--amber);
    margin-bottom: 6px;
  }

.story-fact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
  }

.story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

.story-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--ink);
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    line-height: 1.05;
  }

.story-body p {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

.story-body p strong { color: var(--ink); }

.story-body p .amber { color: var(--amber); font-weight: 600; }

.record-callout {
    margin-top: 50px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(200, 135, 13, 0.08), rgba(200, 135, 13, 0.02));
    border-left: 4px solid var(--amber);
  }

.record-callout-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
  }

.record-callout h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--ink);
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    line-height: 1.1;
  }

.record-callout p {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.6;
  }

.record-callout strong { color: var(--ink); font-weight: 600; }

/* ===== СРАВНЕНИЕ С YUCHAI/SDEC/RICARDO ===== */

.compare-section { background: var(--bg-2); }

.compare-table {
    background: var(--bg);
    border: 1px solid var(--line);
    overflow-x: auto;
  }

.compare-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
  }

.compare-table th,
  .compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

.compare-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    background: var(--bg-3);
    text-transform: uppercase;
    color: var(--ink);
  }

.compare-table th.weichai-col {
    background: var(--amber);
    color: white;
  }

.compare-table td:first-child {
    color: var(--ink-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

.compare-table td.weichai-cell {
    background: rgba(200, 135, 13, 0.06);
    color: var(--ink);
    font-weight: 600;
  }

.compare-table td.bad-cell { color: var(--rust); }

.compare-table tr:last-child td { border-bottom: none; }

/* ===== БЛОКИ КОМПОНЕНТОВ (двигатель / альтернатор / контроллер) ===== */

.component-section { background: var(--bg); }

.component-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
  }

.component-visual {
    aspect-ratio: 1;
    background: var(--bg-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

.component-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 22px;
    box-sizing: border-box;
  }

.component-visual-placeholder {
    width: 100%;
    height: 100%;
    background:
      repeating-linear-gradient(45deg,
        var(--bg-3) 0, var(--bg-3) 12px,
        var(--bg-2) 12px, var(--bg-2) 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

.component-visual-placeholder strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--ink-dim);
    letter-spacing: 0.04em;
  }

.component-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: 0.005em;
  }

.component-body h3 .amber { color: var(--amber); font-style: italic; }

.component-body p {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

.component-body p strong { color: var(--ink); }

.component-key-points {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

.key-point {
    padding: 14px 16px;
    background: var(--bg-2);
    border-left: 2px solid var(--amber);
  }

.key-point-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

.key-point-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

/* Альтернативный: контроллер по центру */

.component-section.alt { background: var(--bg-2); }

.component-section.alt .component-grid {
    grid-template-columns: 1.3fr 1fr;
  }

/* ===== ЧТО В КОМПЛЕКТЕ ===== */

.includes-section { background: var(--bg); }

.includes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
  }

.include-item {
    padding: 30px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

.include-item:nth-child(4n) { border-right: none; }

.include-item:nth-last-child(-n+4) { border-bottom: none; }

.include-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    color: var(--amber);
  }

.include-icon svg { width: 100%; height: 100%; }

.include-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

.include-text {
    font-size: 12px;
    color: var(--ink-dim);
    line-height: 1.5;
  }

/* ===== ОПЦИИ ===== */

.options-section { background: var(--bg-2); }

.options-intro-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
  }

.options-intro-row .section-intro { margin-bottom: 0; }

.options-summary {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
  }

.options-summary-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
  }

.options-summary p {
    color: var(--ink-dim);
    font-size: 13px;
    line-height: 1.65;
  }

.options-summary p strong { color: var(--ink); }

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
  }

.option-item {
    padding: 26px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.2s;
    position: relative;
  }

.option-item:hover { background: var(--bg-2); }

.option-item:nth-child(4n) { border-right: none; }

.option-item:nth-last-child(-n+4) { border-bottom: none; }

.option-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.1em;
    font-weight: 600;
  }

.option-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

.option-desc {
    font-size: 12px;
    color: var(--ink-dim);
    line-height: 1.55;
    flex-grow: 1;
  }

.option-price {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

.option-price-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

.option-price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

.option-icon {
    width: 32px; height: 32px;
    color: var(--amber);
    margin-bottom: 4px;
  }

.option-icon svg { width: 100%; height: 100%; }

.options-note {
    margin-top: 30px;
    padding: 20px 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--ink-dim);
    font-size: 13px;
    line-height: 1.6;
  }

.options-note strong { color: var(--ink); }

.options-note a { color: var(--amber); text-decoration: none; font-weight: 600; }

@media (max-width: 1100px) {
    .options-intro-row { grid-template-columns: 1fr; gap: 24px; }
    .options-grid { grid-template-columns: repeat(2, 1fr); }
    .option-item:nth-child(4n) { border-right: 1px solid var(--line); }
    .option-item:nth-child(2n) { border-right: none; }
  }

@media (max-width: 600px) {
    .options-grid { grid-template-columns: 1fr; }
    .option-item { border-right: none !important; }
    .option-item:not(:last-child) { border-bottom: 1px solid var(--line); }
    .option-item:last-child { border-bottom: none !important; }
  }

/* ===== ДОСТАВКА ===== */

.delivery-section { background: var(--bg-2); }

.delivery-table {
    background: var(--bg);
    border: 1px solid var(--line);
    overflow-x: auto;
  }

.delivery-table table { width: 100%; border-collapse: collapse; }

.delivery-table th, .delivery-table td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

.delivery-table th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--bg-3);
  }

.delivery-table tr:last-child td { border-bottom: none; }

.delivery-table td.price-cell {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

/* ===== СРАВНЕНИЕ С ДРУГИМИ МОДЕЛЯМИ ===== */

.lineup-section { background: var(--bg); }

.lineup-table { overflow-x: auto; }

.lineup-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    min-width: 800px;
  }

.lineup-table th, .lineup-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

.lineup-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    background: var(--bg-2);
    letter-spacing: 0.04em;
  }

.lineup-table th.this-product {
    background: var(--amber);
    color: white;
  }

.lineup-table td.this-product { background: rgba(200, 135, 13, 0.06); font-weight: 600; }

.lineup-table td:first-child {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

/* ===== ДОКУМЕНТЫ ===== */

.docs-section { background: var(--bg-2); }

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

.doc-card {
    padding: 28px 22px;
    background: var(--bg);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.doc-card:hover {
    border-color: var(--amber);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

.doc-icon {
    width: 40px;
    height: 48px;
    background: var(--bg-3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.05em;
  }

.doc-icon::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 10px; height: 10px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

.doc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

.doc-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: auto;
  }

/* ===== FAQ ===== */

.faq-section { background: var(--bg); }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
    border-top: 1px solid var(--line);
  }

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

.faq-q::after {
    content: '+';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--amber);
    transition: transform 0.2s;
    line-height: 1;
  }

.faq-item.open .faq-q::after { content: '−'; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.7;
  }

.faq-item.open .faq-a { max-height: 600px; padding-bottom: 24px; }

/* ===== CTA ===== */

.cta-section {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 45px 0;
  }

.cta-block {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: var(--bg);
    border: 1px solid var(--line);
  }

.cta-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 20px;
  }

.cta-block h2 .italic { color: var(--amber); font-style: italic; }

.cta-block p {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
  }

.cta-form input {
    flex: 1;
    padding: 18px 22px;
    border: 1px solid var(--line-bright);
    background: var(--bg);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
  }

.cta-form input:focus { border-color: var(--amber); }

.cta-form button {
    padding: 18px 28px;
    background: var(--amber);
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

.cta-form button:disabled { opacity: 0.5; cursor: not-allowed; }

.form-message {
    margin-top: 16px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.5;
    display: none;
  }

.form-message.success { color: var(--green); background: rgba(45, 138, 78, 0.08); }

.form-message.error { color: var(--rust); background: rgba(168, 52, 26, 0.06); }

.form-note {
    margin-top: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

/* ===== ПЛАВАЮЩАЯ ПЛАШКА ===== */

.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ink);
    color: var(--bg);
    padding: 14px 40px;
    z-index: 40;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 2px solid var(--amber);
  }

.sticky-cta.show { transform: translateY(0); }

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
  }

.sticky-cta-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--bg);
  }

.sticky-cta-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

.sticky-cta a {
    padding: 12px 22px;
    background: var(--amber);
    color: white;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }

.sticky-cta a:hover { background: var(--amber-bright); }

/* ===== FOOTER ===== */

footer {
    background: var(--ink);
    color: var(--bg);
    padding: 60px 0 30px;
  }

footer .container { color: var(--bg); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    color: var(--amber);
    margin-bottom: 16px;
  }

.footer-col a {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.2s;
  }

.footer-col a:hover { color: var(--amber); }

.footer-col p {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.6;
  }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(246, 244, 239, 0.15);
    display: flex;
    justify-content: space-between;
    color: rgba(246, 244, 239, 0.5);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

/* ===== МЕССЕНДЖЕРЫ ===== */

.msg-buttons {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.msg-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 11px;
  }

.msg-btn:hover { transform: scale(1.05); }

.msg-btn svg { width: 24px; height: 24px; }

.msg-btn.telegram { background: #2AABEE; }

.msg-btn.max { background: #FF6B35; }

.msg-btn.whatsapp { background: #25D366; }

/* ===== АДАПТИВ ===== */

@media (max-width: 1100px) {
    .nav-phone { display: none; }
    .container { padding: 0 24px; }
    .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery { position: static; }
    .qw-grid { grid-template-columns: 1fr 1fr; }
    .qw-card:nth-child(3n) { border-right: 1px solid var(--line); }
    .qw-card:nth-child(2n) { border-right: none; }
    .specs-groups { grid-template-columns: 1fr; }
    .specs-group { border-right: none !important; }
    .fuel-grid { grid-template-columns: 1fr; }
    .story-facts { grid-template-columns: 1fr 1fr; }
    .story-fact:nth-child(2n) { border-right: none; }
    .story-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .story-body { grid-template-columns: 1fr; gap: 30px; }
    .component-grid { grid-template-columns: 1fr; gap: 30px; }
    .component-section.alt .component-grid { grid-template-columns: 1fr; }
    .component-visual { max-width: 400px; }
    .includes-grid { grid-template-columns: 1fr 1fr; }
    .include-item:nth-child(4n) { border-right: 1px solid var(--line); }
    .include-item:nth-child(2n) { border-right: none; }
    .docs-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  }

@media (max-width: 800px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    nav { gap: 8px; padding-left: 12px; padding-right: 12px; }
    .logo { gap: 7px; font-size: 16px; letter-spacing: 0.03em; flex-shrink: 1; }
    .logo-mark { width: 26px; height: 26px; }
    .nav-right, .nav-phone { gap: 7px; flex-shrink: 0; }
    .nav-phone { margin-left: auto; }
    .nav-phone-num, .nav-right > .nav-phone { display: none; }
    .nav-cta { padding: 8px 10px; font-size: 10px; letter-spacing: 0.04em; white-space: nowrap; }
    .nav-burger { width: 30px; height: 30px; padding: 4px; flex-shrink: 0; }
    .nav-burger span { width: 20px; }
    .section { padding: 30px 0; }
    .quick-wins { padding: 25px 0; }
    .product-hero { padding: 8px 0 25px; }
    .product-title { font-size: 36px; }
    .price-main { font-size: 44px; }
    .product-actions { grid-template-columns: 1fr; }
    .qw-grid { grid-template-columns: 1fr; }
    .qw-card { border-right: none !important; }
    .qw-card:not(:last-child) { border-bottom: 1px solid var(--line); }
    .qw-card:last-child { border-bottom: none !important; }
    .story-facts { grid-template-columns: 1fr 1fr; }
    .component-key-points { grid-template-columns: 1fr; }
    .includes-grid { grid-template-columns: 1fr; }
    .include-item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
    .include-item:last-child { border-bottom: none !important; }
    .docs-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
    .cta-block { padding: 32px 22px; }
    .sticky-cta { padding: 12px 16px; }
    .sticky-cta-name { font-size: 14px; }
    .sticky-cta-price { font-size: 18px; }
    .sticky-cta a { padding: 10px 16px; font-size: 10px; }
    .msg-buttons { right: 14px; bottom: 80px; }
    .msg-btn { width: 46px; height: 46px; }
  }

@media (max-width: 500px) {
    .logo-sub { display: none; }
    .logo { font-size: 14px; gap: 6px; }
    .logo-mark { width: 24px; height: 24px; }
    .nav-cta { padding: 7px 8px; font-size: 9px; }
    nav { padding-left: 10px; padding-right: 10px; }
    .gallery-thumbs { --thumb-gap: 5px; }
    .specs-group { padding: 22px 20px; }
    .specs-item-label { font-size: 10px; max-width: 55%; }
    .specs-item-value { font-size: 12px; }
    .hero-specs { grid-template-columns: 1fr 1fr; }
  }

/* === Variant switcher (open / cabinet) === */

.variant-switcher {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      padding: 4px;
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 14px;
      margin-bottom: 18px;
    }

.variant-btn {
      appearance: none;
      border: 0;
      background: transparent;
      padding: 12px 14px;
      border-radius: 10px;
      cursor: pointer;
      font: inherit;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-dim);
      letter-spacing: 0.01em;
      transition: all 0.18s ease;
      text-align: center;
      line-height: 1.35;
    }

.variant-btn:hover { color: var(--ink); background: rgba(0,0,0,0.03); }

.variant-btn.active {
      background: var(--amber);
      color: white;
      box-shadow: 0 1px 3px rgba(200, 135, 13, 0.3);
    }

.variant-btn.active:hover { background: var(--amber); color: white; }

.variant-btn .vb-title { display: block; font-size: 13px; font-weight: 600; }

.variant-btn .vb-price { display: block; margin-top: 2px; font-size: 11px; opacity: 0.85; letter-spacing: 0.02em; }

:root {
    --bg: #f6f4ef;
    --bg-2: #ecebe5;
    --bg-3: #e2e0d8;
    --ink: #1a1816;
    --ink-dim: #5e5950;
    --ink-mute: #8a8478;
    --amber: #c8870d;
    --amber-bright: #a86f00;
    --green: #2d8a4e;
    --rust: #a8341a;
    --line: rgba(26, 24, 22, 0.12);
    --line-bright: rgba(26, 24, 22, 0.25);
  }

/* NAV — копия из основного лендинга */

.nav-links a:hover, .nav-links a.active { color: var(--amber); }

/* HERO с фото машины */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 65px 40px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('about_processed/service-van-16x9.webp');
    background-size: cover;
    background-position: center;
  }

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(14, 14, 12, 0.78) 0%,
      rgba(14, 14, 12, 0.65) 40%,
      rgba(14, 14, 12, 0.92) 85%,
      var(--bg) 100%
    );
  }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    color: #131212;
  }

.hero-content h1.hero-title,
  .hero-content .hero-sub,
  .hero-content .hero-stats .num,
  .hero-content .hero-stats .label {
    color: #f4f1ea;
  }

.hero-content .hero-sub strong,
  .hero-content h1.hero-title .accent {
    color: #e8a317; /* более яркий янтарь для тёмного hero */
  }

.hero-content .hero-tag {
    color: #e8a317;
  }

.hero-content .hero-tag::before {
    background: #e8a317;
  }

.hero-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--amber);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

.hero-content .hero-stats {
    border-top-color: rgba(244, 241, 234, 0.25);
    border-bottom-color: rgba(244, 241, 234, 0.25);
  }

.hero-content .hero-stats > * + * {
    border-left-color: rgba(244, 241, 234, 0.25);
  }

h1.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 130px);
    line-height: 0.88;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    max-width: 1100px;
  }

.hero-sub {
    font-size: 19px;
    color: var(--ink);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

.hero-sub strong { color: var(--amber); font-weight: 600; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-bright);
    border-bottom: 1px solid var(--line-bright);
    margin-top: 40px;
    max-width: 900px;
  }

.hero-stat {
    padding: 24px 24px 24px 0;
    border-right: 1px solid var(--line);
  }

.hero-stat:last-child { border-right: none; padding-right: 0; }

.hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }

.hero-stat .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

/* Common section styles */

/* WHO WE ARE */

.who { background: var(--bg); border-top: 1px solid var(--line); }

.who .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }

.who-text p { color: var(--ink-dim); font-size: 17px; line-height: 1.75; margin-bottom: 18px; }

.who-text p strong { color: var(--ink); font-weight: 600; }

.who-text p .amber { color: var(--amber); font-weight: 600; }

.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }

.principle {
    padding: 28px 24px;
    background: var(--bg-2);
    border-left: 3px solid var(--amber);
  }

.principle .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }

.principle h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.05;
  }

.principle p {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.55;
  }

/* BRANDS */

.brands { background: var(--bg-2); border-top: 1px solid var(--line); }

.brands-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    border: 1px solid var(--line);
  }

.brands-strip.brands-5 {
    grid-template-columns: repeat(5, 1fr);
  }

.brands-strip.brands-6 {
    grid-template-columns: repeat(6, 1fr);
  }

.brand {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background 0.3s;
  }

.brand:last-child { border-right: none; }

.brand:hover { background: var(--bg); }

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }

.brand-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

.brand-range {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 14px 0;
    padding: 10px 8px;
    background: rgba(232, 163, 23, 0.08);
    border-top: 1px solid rgba(232, 163, 23, 0.25);
    border-bottom: 1px solid rgba(232, 163, 23, 0.25);
  }

.brand-range-sub {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
  }

.brand-desc {
    color: var(--ink-dim);
    font-size: 13px;
    line-height: 1.5;
  }

/* TEAM placeholder */

.team { background: var(--bg); border-top: 1px solid var(--line); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }

.team-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    overflow: hidden;
  }

.team-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    display: grid;
    place-items: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 20px;
    overflow: hidden;
  }

.team-info { padding: 24px; }

.team-info h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; margin-bottom: 4px; letter-spacing: 0.02em; }

.team-info .role { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

.team-info p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; }

/* FACILITIES (склад + сервис) */

.facilities { background: var(--bg-2); border-top: 1px solid var(--line); }

.facility {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
  }

.facility:last-child { margin-bottom: 0; }

.facility.reverse { grid-template-columns: 1fr 1.2fr; }

.facility.reverse .facility-photo { order: 2; }

.facility-photo {
    background: var(--bg-3);
    border: 1px solid var(--line);
    overflow: hidden;
    aspect-ratio: 4/3;
  }

.facility-photo img { width: 100%; height: 100%; object-fit: cover; }

.facility-photo.placeholder {
    display: grid;
    place-items: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 40px;
  }

.facility-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.005em;
  }

.facility-text h3 .italic { font-style: italic; color: var(--amber); }

.facility-text > p { color: var(--ink-dim); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

.facility-points { list-style: none; display: grid; gap: 14px; }

.facility-points li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
  }

.facility-points li:last-child { border-bottom: none; }

.facility-points li::before {
    content: '+';
    font-family: 'JetBrains Mono', monospace;
    color: var(--amber);
    font-weight: 600;
  }

/* CERTIFICATES */

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

.cert-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
  }

.cert-card:hover { border-color: var(--amber); transform: translateY(-2px); }

.cert-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    display: grid;
    place-items: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 20px;
    position: relative;
  }

.cert-photo::before {
    content: '';
    position: absolute;
    top: 14px; right: 14px; bottom: 14px; left: 14px;
    border: 1px dashed var(--line);
  }

.cert-photo img { width: 100%; height: 100%; object-fit: cover; }

.cert-info { padding: 18px 20px; border-top: 1px solid var(--line); }

.cert-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

.cert-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

.cert-card[data-cert] { cursor: zoom-in; }

.cert-card[data-cert]:hover .cert-photo img { opacity: 0.85; }

.cert-card .cert-photo img { transition: opacity 0.2s; }

.cert-lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
  }

.cert-lightbox.show { display: flex; }

.cert-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  }

.cert-lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: var(--bg);
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    transition: color 0.2s;
  }

.cert-lightbox-close:hover { color: var(--amber); }

/* CONTACTS */

.contacts { background: var(--bg); border-top: 1px solid var(--line); }

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
  }

.contacts-info { display: grid; gap: 24px; }

.contact-item {
    padding: 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }

.contact-item .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

.contact-item .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
  }

.contact-item .value a { color: inherit; text-decoration: none; }

.contact-item .value a:hover { color: var(--amber); }

.contact-item .extra { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }

.map-placeholder {
    background: var(--bg-2);
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 40px;
    line-height: 1.8;
  }

/* PLACEHOLDER NOTE */

.placeholder-note {
    background: rgba(232, 163, 23, 0.08);
    border: 1px dashed var(--amber);
    padding: 14px 22px;
    color: var(--amber);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    text-align: center;
  }

/* FLOATING MESSENGER BUTTONS */

.msg-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    position: relative;
  }

.msg-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  }

/* FOOTER (compact) */

footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 50px 40px 30px; }

.footer-content { max-width: 1400px; margin: 0 auto; }

.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-mute); letter-spacing: 0.05em; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1100px) {
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0; }
    .hero-stat { border-bottom: 1px solid var(--line); }
    .hero-stat:nth-child(2) { border-right: none; }
    .who .container { grid-template-columns: 1fr; gap: 40px; }
    .brands-strip { grid-template-columns: 1fr 1fr; }
    .brands-strip.brands-5 { grid-template-columns: 1fr 1fr; }
    .brands-strip.brands-5 .brand { border-right: 1px solid var(--line); }
    .brands-strip.brands-6 { grid-template-columns: 1fr 1fr; }
    .brands-strip.brands-6 .brand { border-right: 1px solid var(--line); }
    .brands-strip.brands-5 .brand:nth-child(2n) { border-right: none; }
    .brands-strip.brands-5 .brand:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
    .brands-strip.brands-5 .brand:last-child { grid-column: 1 / -1; }
    .brand:nth-child(2) { border-right: none; }
    .brand:nth-child(1), .brand:nth-child(2) { border-bottom: 1px solid var(--line); }
    .certs-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .facility, .facility.reverse { grid-template-columns: 1fr; gap: 30px; }
    .facility.reverse .facility-photo { order: 0; }
    .contacts-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 16px; font-size: 11px; }
    .nav-phone-num { font-size: 18px; }
    nav { padding: 14px 24px; }
  }

@media (max-width: 700px) {
    nav { padding: 12px 18px; flex-wrap: wrap; gap: 10px; }
    .nav-phone-num { font-size: 18px; }
    .container, .hero { padding: 35px 20px; }
    .hero { padding-top: 65px; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat { border-right: none; padding-right: 0; }
    .principles { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .messengers { right: 14px; bottom: 14px; }
    .msg-btn { width: 50px; height: 50px; }
  }

.hero {
    padding: 80px 40px 40px;
    border-bottom: 1px solid var(--line);
  }

.hero-content { max-width: 1400px; margin: 0 auto; }

.eyebrow {
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    color: var(--amber); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 30px; display: flex; align-items: center; gap: 12px;
  }

.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--amber); }

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 110px);
    line-height: 0.92; letter-spacing: -0.01em;
    margin-bottom: 28px;
    max-width: 1100px;
  }

h1 .accent { color: var(--amber); font-style: italic; }

.hero-sub { font-size: 19px; color: var(--ink-dim); max-width: 700px; line-height: 1.6; }

.hero-sub strong { color: var(--ink); }

/* SECTIONS */

.container { max-width: 1400px; margin: 0 auto; padding: 45px 40px; }

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 0.95; letter-spacing: -0.005em;
    margin-bottom: 24px;
  }

.section-sub {
    color: var(--ink-dim); font-size: 16px; line-height: 1.7;
    max-width: 800px; margin-bottom: 50px;
  }

/* SERVICE CARD */

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

.service {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
  }

.service:hover { border-color: var(--ink-dim); }

.service-head {
    padding: 28px 32px 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

.service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    flex-shrink: 0;
    padding-top: 8px;
  }

.service-title-block { flex: 1; }

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
  }

.service-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

.service-price {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
  }

.service-price-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: 0.02em;
  }

.service-price-num .from { color: var(--ink-dim); font-size: 18px; margin-right: 4px; }

.service-price-num .currency { color: var(--amber); }

.service-price-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

.service-body { padding: 24px 32px 28px; flex: 1; display: flex; flex-direction: column; }

/* Фото-плейсхолдер для услуг (дизайнер заменит) */

.service-photo {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-photo .placeholder {
    text-align: center;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 20px;
    line-height: 1.8;
  }

.service-photo .placeholder-icon {
    font-size: 32px;
    color: var(--amber);
    opacity: 0.4;
    margin-bottom: 12px;
    display: block;
  }

.service-photo::before {
    content: '';
    position: absolute;
    top: 14px; right: 14px; bottom: 14px; left: 14px;
    border: 1px dashed var(--line);
    pointer-events: none;
  }

.service-photo:has(img)::before { display: none; }

.service-desc {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

.service-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
  }

.service-includes li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
  }

.service-includes li:last-child { border-bottom: none; }

.service-includes li::before {
    content: '+';
    font-family: 'JetBrains Mono', monospace;
    color: var(--amber);
    font-weight: 600;
  }

/* DELIVERY ZONES */

.zones { background: var(--bg-2); border-top: 1px solid var(--line); }

.zones-table {
    margin-top: 30px;
    border: 1px solid var(--line);
    background: var(--bg);
    overflow: hidden;
  }

.zones-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    border-bottom: 1px solid var(--line);
    transition: background 0.15s;
  }

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

.zones-row:hover { background: var(--bg-2); }

.zones-row.head {
    background: var(--bg-3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

.zones-cell { padding: 16px 22px; border-right: 1px solid var(--line); display: flex; align-items: center; }

.zones-cell:last-child { border-right: none; }

.zones-row:not(.head) .zones-cell { font-size: 14px; }

.zones-row:not(.head) .zones-cell:nth-child(2),
  .zones-row:not(.head) .zones-cell:nth-child(3) {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amber);
    letter-spacing: 0.02em;
  }

.zones-note {
    margin-top: 24px;
    color: var(--ink-dim);
    font-size: 13px;
    line-height: 1.7;
    font-style: italic;
  }

/* MAINTENANCE */

.maintenance { background: var(--bg); border-top: 1px solid var(--line); }

.to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    margin-top: 30px;
  }

.to-card {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
  }

.to-card:last-child { border-right: none; }

.to-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

.to-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 8px;
  }

.to-period {
    color: var(--ink-dim);
    font-size: 13px;
    margin-bottom: 22px;
  }

.to-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 6px;
  }

.to-price .from { color: var(--ink-dim); font-size: 22px; margin-right: 6px; }

.to-price-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
  }

.to-list { list-style: none; padding: 0; }

.to-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: 13px;
    line-height: 1.5;
  }

.to-list li:last-child { border-bottom: none; }

.cta { background: var(--bg-2); border-top: 1px solid var(--line); }

.cta .container { text-align: center; }

.cta .eyebrow { justify-content: center; }

.cta-sub { color: var(--ink-dim); font-size: 17px; max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 16px 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

.services-grid,
.service,
.service-head,
.service-body,
.zones,
.zones-table,
.zones-row,
.zones-cell,
.maintenance,
.to-card,
.cta,
.cta .container,
footer,
footer .footer-content,
footer .footer-bottom {
    color: var(--ink);
  }

.service-title,
.service-desc,
.service-includes li,
.zones-cell,
.to-name,
.to-list li,
.cta h2,
.footer-bottom {
    color: var(--ink);
  }

.service-price-sub,
.to-period,
.to-price-sub,
.zones-note,
.section-sub,
.cta-sub {
    color: var(--ink-dim);
  }

.service-photo .placeholder {
    color: var(--ink-dim);
  }

.btn-primary {
    color: white;
  }

.btn-ghost {
    color: var(--ink);
    border: 1px solid var(--line-bright);
  }

.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 40px 40px 24px; }

.footer-bottom { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink); letter-spacing: 0.05em; flex-wrap: wrap; gap: 10px; }

/* Final nav behavior: below desktop width only links collapse, phone and CTA stay visible. */
@media (max-width: 1100px) {
    body nav {
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
    }

    body nav .logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    body nav .logo-sub {
        white-space: nowrap;
    }

    body nav .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: var(--bg-2);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 34px rgba(26, 24, 22, 0.14);
        transition: max-height 0.25s ease, padding 0.25s ease;
        z-index: 1000;
    }

    body nav .nav-links.open {
        max-height: 430px;
        padding: 8px 0;
    }

    body nav .nav-links a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-size: 13px;
    }

    body nav .nav-links a:last-child {
        border-bottom: none;
    }

    body nav .nav-links a:hover,
    body nav .nav-links a.active {
        color: var(--amber);
        background: var(--bg);
    }

    body nav .nav-phone,
    body nav .nav-right {
        display: flex !important;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex: 0 0 auto;
    }

    body nav .nav-phone-num,
    body nav .nav-right > .nav-phone {
        display: inline-flex !important;
        align-items: center;
        font-size: 18px;
        white-space: nowrap;
    }

    body nav .nav-cta {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        padding: 8px 11px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    body nav .nav-burger {
        display: flex !important;
        width: 32px;
        height: 32px;
        padding: 5px;
        flex: 0 0 auto;
    }

    body nav .nav-burger span {
        width: 20px;
    }
}

@media (max-width: 560px) {
    body nav {
        gap: 6px;
        padding: 10px 10px;
    }

    body nav .logo {
        gap: 6px;
        font-size: 14px;
        letter-spacing: 0.02em;
    }

    body nav .logo-mark {
        width: 24px;
        height: 24px;
    }

    body nav .logo-sub {
        display: none;
    }

    body nav .nav-phone,
    body nav .nav-right {
        gap: 5px;
    }

    body nav .nav-phone-num,
    body nav .nav-right > .nav-phone {
        font-size: 15px;
        letter-spacing: 0;
    }

    body nav .nav-cta {
        padding: 7px 8px;
        font-size: 9px;
    }

    body nav .nav-burger {
        width: 28px;
        height: 28px;
        padding: 4px;
    }

    body nav .nav-burger span {
        width: 18px;
    }
}

/* MESSENGERS */

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr; }
    .to-grid { grid-template-columns: 1fr; }
    .to-card { border-right: none; border-bottom: 1px solid var(--line); }
    .to-card:last-child { border-bottom: none; }
    .zones-row { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; font-size: 13px; }
    .nav-links { gap: 16px; font-size: 11px; }
    .nav-phone-num { font-size: 18px; }
    nav { padding: 14px 24px; }
  }

@media (max-width: 700px) {
    nav { padding: 12px 18px; flex-wrap: wrap; gap: 10px; }
    .nav-phone-num { font-size: 18px; }
    .container, .hero { padding: 30px 20px; }
    .hero { padding-top: 65px; }
    .service-head { flex-direction: column; gap: 8px; }
    .service-price { margin-left: 0; text-align: left; }
    .zones-row { grid-template-columns: 1fr 1fr; }
    .zones-cell { padding: 10px 14px; font-size: 12px; }
    .zones-cell:nth-child(4) { display: none; }
    .messengers { right: 14px; bottom: 14px; }
    .msg-btn { width: 50px; height: 50px; }
  }


/* === Unified variant switcher (universal for all cards) === */
/* Default behavior: 'cabinet' is shown, 'open' is hidden */
[data-variant-show="cabinet"] { display: inline; }
[data-variant-show="open"] { display: none; }
/* When body has class variant-open: invert */
body.variant-open [data-variant-show="cabinet"] { display: none; }
body.variant-open [data-variant-show="open"] { display: inline; }
/* For Ricardo, the page defaults to open (set body class on page load) */
body.default-open [data-variant-show="cabinet"] { display: none; }
body.default-open [data-variant-show="open"] { display: inline; }
body.default-open.variant-cabinet [data-variant-show="open"] { display: none; }
body.default-open.variant-cabinet [data-variant-show="cabinet"] { display: inline; }
