/* ───────────────────────────────────────────────────────────
   JETTA CHINA — Дизайн-система
   Industrial-premium • Dark • JETTA red accent
   ─────────────────────────────────────────────────────────── */

:root {
    /* Бренд */
    --jetta-red: #cc0428;
    --jetta-red-bright: #ff1638;
    --jetta-red-dark: #8a0218;

    /* Базовая палитра */
    --black: #0a0a0a;
    --graphite: #141414;
    --graphite-2: #1a1a1a;
    --graphite-3: #242424;
    --line: #2a2a2a;

    /* Текст */
    --white: #ffffff;
    --text: #f0f0f0;
    --text-muted: #9a9a9a;
    --text-dim: #5d5d5d;

    /* Прочее */
    --green-ok: #00d97e;
    --container: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display {
    font-family: 'Antonio', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: uppercase;
}

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ─── ШУМ-ТЕКСТУРА (атмосфера) ─── */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   ХЕДЕР
   ═══════════════════════════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

/* ===== ЛОГОТИП v10: крыло+JETTA (lockup) + подпись справа ===== */
.logo {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
}
.logo-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1;
}
.logo-mark {
    width: 52px;
    height: auto;
    display: block;
}
.logo-mark svg { display: block; width: 100%; height: auto; }
.logo-wing { fill: var(--jetta-red); transition: fill .2s ease; }
.logo:hover .logo-wing { fill: var(--jetta-red-bright); }
.logo-text {
    font-family: 'Antonio', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}
.logo-text .accent { color: var(--jetta-red-bright); }
.logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    line-height: 1;
    padding-bottom: 2px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav { display: flex; gap: 32px; }
.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}
.nav a:hover { color: var(--white); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 0; height: 2px;
    background: var(--jetta-red);
    transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.header-cta {
    display: flex; align-items: center; gap: 14px;
}
.header-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--jetta-red-bright); }

/* ═══════════════════════════════════════════════════════════
   КНОПКИ
   ═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 28px;
    font-family: 'Antonio', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--jetta-red);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--jetta-red-bright);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(204, 4, 40, 0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--line);
}
.btn-secondary:hover {
    border-color: var(--jetta-red);
    background: rgba(204, 4, 40, 0.06);
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 22px 48px; font-size: 17px; }

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 6px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
/* Декоративная диагональная плашка */
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 800px;
    background: linear-gradient(135deg, var(--jetta-red-dark), transparent 70%);
    transform: rotate(-15deg);
    opacity: 0.5;
    z-index: 1;
}
/* Технические линии */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 16px;
    border: 1px solid var(--jetta-red);
    background: rgba(204, 4, 40, 0.08);
    color: var(--jetta-red-bright);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--jetta-red-bright);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.92;
    margin-bottom: 28px;
    color: var(--white);
}
.hero-title .red { color: var(--jetta-red-bright); }
.hero-title .stroke {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}
.hero-title .commission {
    display: inline-block;
    background: var(--jetta-red);
    padding: 0 16px;
    transform: skewX(-8deg);
    margin: 0 6px;
}
.hero-title .commission > span {
    display: inline-block;
    transform: skewX(8deg);
}

.hero-desc {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.5;
}
.hero-desc strong { color: var(--white); font-weight: 500; }

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
    max-width: 720px;
    margin-bottom: 48px;
}
.hero-feature {
    display: flex; align-items: center; gap: 12px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}
.hero-feature::before {
    content: '❯';
    color: var(--jetta-red-bright);
    font-weight: 700;
    font-size: 14px;
}

.hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex; align-items: center; gap: 24px;
    color: var(--text-dim);
    font-size: 13px;
    flex-wrap: wrap;
}
.hero-trust strong { color: var(--white); font-weight: 600; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--jetta-red);
    border-radius: 50%;
}

/* Декоративные элементы Hero */
.hero-decor {
    position: absolute;
    right: -100px; bottom: 80px;
    z-index: 1;
    width: 700px;
    opacity: 0.3;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   СЕКЦИИ — общие
   ═══════════════════════════════════════════════════════════ */
section { position: relative; padding: 100px 0; z-index: 2; }
.section-header { margin-bottom: 60px; max-width: 800px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--jetta-red-bright);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--jetta-red);
}
.section-title {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 0.95;
}
.section-title .red { color: var(--jetta-red-bright); }
.section-title .stroke {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}
.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 680px;
}

/* ═══════════════════════════════════════════════════════════
   МОДЕЛЬНЫЙ РЯД (3 модели)
   ═══════════════════════════════════════════════════════════ */
.models-section {
    background: var(--graphite);
}
.models-section::before {
    content: 'JETTA · LINEUP · 2026';
    position: absolute;
    top: 60px; right: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.3em;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.model-card {
    position: relative;
    background: var(--graphite-2);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex; flex-direction: column;
    min-height: 580px;
}
.model-card:hover {
    border-color: var(--jetta-red);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(204, 4, 40, 0.15);
}
.model-card.exclusive::before {
    content: 'ЭКСКЛЮЗИВ В РФ';
    position: absolute;
    top: 24px; right: -38px;
    transform: rotate(45deg);
    background: var(--jetta-red);
    color: var(--white);
    padding: 6px 48px;
    font-family: 'Antonio', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.model-image-wrap {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--graphite-3), var(--graphite-2));
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.model-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(204, 4, 40, 0.15), transparent 60%);
}
.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}
.model-card:hover .model-image { transform: scale(1.05); }

.model-meta {
    position: absolute;
    top: 20px; left: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    z-index: 2;
}

.model-body {
    padding: 32px 28px;
    display: flex; flex-direction: column;
    flex: 1;
}
.model-name {
    font-family: 'Antonio', sans-serif;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1;
}
.model-class {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.spec {
    display: flex;
    flex-direction: column;
}
.spec-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.spec-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

.model-price-block {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 24px;
}
.model-price-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.model-price {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    color: var(--jetta-red-bright);
    line-height: 1;
    letter-spacing: -0.01em;
}
.model-price .from {
    font-size: 13px;
    color: var(--text-dim);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.model-savings {
    text-align: right;
    font-size: 12px;
    color: var(--green-ok);
    font-weight: 600;
}
.model-savings strong {
    display: block;
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    color: var(--green-ok);
    line-height: 1;
    margin-bottom: 4px;
}

.model-actions {
    display: flex; gap: 10px;
    margin-top: auto;
}
.model-actions .btn { flex: 1; padding: 14px 16px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   ПРЕИМУЩЕСТВА (6 шт)
   ═══════════════════════════════════════════════════════════ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.advantage {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: all 0.3s;
    background: var(--graphite);
}
.advantage:hover {
    background: var(--graphite-2);
}
.advantage:hover .advantage-num { color: var(--jetta-red-bright); }
.advantage-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    transition: color 0.3s;
}
.advantage-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--jetta-red);
    color: var(--jetta-red-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transform: rotate(45deg);
}
.advantage-icon span { transform: rotate(-45deg); }
.advantage h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}
.advantage p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   КАК ПРОХОДИТ ПОКУПКА (6 шагов)
   ═══════════════════════════════════════════════════════════ */
.process-section {
    background: var(--graphite);
}
.process-callouts {
    display: flex; flex-wrap: wrap; gap: 24px;
    margin-bottom: 48px;
    padding: 24px 32px;
    background: var(--graphite-2);
    border-left: 3px solid var(--jetta-red);
}
.process-callout {
    display: flex; align-items: center; gap: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}
.process-callout::before {
    content: '❯';
    color: var(--jetta-red-bright);
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step {
    position: relative;
    padding: 32px;
    background: var(--graphite-2);
    border: 1px solid var(--line);
    transition: all 0.3s;
}
.step:hover {
    border-color: var(--jetta-red);
    transform: translateY(-4px);
}
.step-num {
    position: absolute;
    top: -22px; left: 24px;
    width: 44px; height: 44px;
    background: var(--jetta-red);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    font-weight: 700;
    transform: skewX(-8deg);
}
.step-num > span { transform: skewX(8deg); }
.step h3 {
    font-size: 20px;
    color: var(--white);
    margin: 16px 0 12px;
}
.step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}
.step p strong { color: var(--white); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ОТЗЫВЫ
   ═══════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial {
    background: var(--graphite-2);
    border: 1px solid var(--line);
    padding: 36px;
    position: relative;
    transition: all 0.3s;
}
.testimonial:hover { border-color: var(--jetta-red); }
.testimonial::before {
    content: '"';
    position: absolute;
    top: 14px; right: 28px;
    font-family: 'Antonio', serif;
    font-size: 100px;
    color: var(--jetta-red);
    line-height: 1;
    opacity: 0.2;
}
.testimonial-author {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}
.author-avatar {
    width: 52px; height: 52px;
    background: var(--jetta-red);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.author-info h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    text-transform: none;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.author-meta {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.testimonial-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section { background: var(--graphite); }
.faq-list { margin-top: 40px; }
.faq-item {
    border-top: 1px solid var(--line);
    transition: all 0.3s;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
    padding: 28px 0;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.faq-q-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border: 1px solid var(--jetta-red);
    color: var(--jetta-red-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-q-icon {
    transform: rotate(45deg);
    background: var(--jetta-red);
    color: var(--white);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 0 28px;
}
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--white); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ФОРМА (БОЛЬШАЯ CTA-СЕКЦИЯ)
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(135deg, var(--jetta-red-dark), transparent 70%);
    opacity: 0.3;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-left h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 0.95;
}
.cta-left p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.cta-bullets { list-style: none; }
.cta-bullets li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 15px;
    display: flex; align-items: center; gap: 12px;
}
.cta-bullets li:last-child { border-bottom: none; }
.cta-bullets li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--jetta-red);
    flex-shrink: 0;
}

.form-card {
    background: var(--graphite-2);
    border: 1px solid var(--line);
    padding: 40px;
    position: relative;
}
.form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 24px;
    width: 80px; height: 4px;
    background: var(--jetta-red);
}
.form-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}
.form-card .form-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.form-input, .form-select {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--line);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    transition: all 0.2s;
    border-radius: 0;
}
.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--jetta-red);
    background: var(--graphite);
}
.form-input::placeholder { color: var(--text-dim); }
.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23cc0428' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.contact-option {
    padding: 14px 8px;
    background: var(--black);
    border: 1px solid var(--line);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.contact-option:hover {
    border-color: var(--jetta-red);
    background: var(--graphite);
}
.contact-option.active {
    border-color: var(--jetta-red);
    background: rgba(204, 4, 40, 0.1);
}
.contact-option svg { width: 22px; height: 22px; fill: var(--white); }
.contact-option-name {
    font-size: 11px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-option input { display: none; }

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--jetta-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Antonio', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.form-submit:hover {
    background: var(--jetta-red-bright);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(204, 4, 40, 0.35);
}
.form-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 16px;
    line-height: 1.5;
}
.form-note a { color: var(--jetta-red-bright); }

/* Блок «Или напишите сразу» */
.form-messengers {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.form-messengers-text {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.form-messengers-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.messenger-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.messenger-link svg { width: 22px; height: 22px; fill: currentColor; }
.messenger-logo-img {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
    display: block;
}
.messenger-link-tg {
    background: #2AABEE;
}
.messenger-link-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 171, 238, 0.4);
    filter: brightness(1.08);
}
.messenger-link-max {
    background: linear-gradient(135deg, #4D8DF6, #9C5CF4);
}
.messenger-link-max:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(125, 92, 244, 0.45);
    filter: brightness(1.08);
}
@media (max-width: 480px) {
    .form-messengers-links { flex-direction: column; }
    .messenger-link { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   КАНАЛЫ (TG/MAX блок)
   ═══════════════════════════════════════════════════════════ */
.channels-section {
    background: var(--graphite);
    padding: 80px 0;
}
.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.channel-card {
    padding: 40px;
    background: var(--graphite-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s;
}
.channel-card:hover {
    border-color: var(--jetta-red);
    transform: translateX(4px);
}
.channel-icon {
    width: 64px; height: 64px;
    background: var(--jetta-red);
    color: var(--white);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.channel-icon svg { width: 32px; height: 32px; fill: currentColor; }
.channel-icon-tg { background: #2AABEE; }
.channel-icon-max { background: linear-gradient(135deg, #6E5CF4, #B45CF4); }
.channel-icon-maxlogo { background: transparent; padding: 0; }
.channel-icon-maxlogo img { width: 64px; height: 64px; border-radius: 14px; display: block; }
.channel-info { flex: 1; }
.channel-info h4 {
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.channel-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}
.channel-info .btn { padding: 10px 20px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   ФУТЕР
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    padding: 80px 0 32px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}
.footer-about p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 20px 0;
    max-width: 420px;
    line-height: 1.7;
}
.footer-requisites {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.8;
}
.footer-requisites strong { color: var(--text); font-weight: 500; }

.footer-col h4 {
    font-family: 'Antonio', sans-serif;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-col a {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--jetta-red-bright); }
.footer-col svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer-msg-tg svg { fill: #2AABEE; }
.footer-msg-max svg { fill: #8E5CF4; }
.footer-logo-img { width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; display: block; }
.footer-msg:hover svg { filter: brightness(1.15); }
.footer-col .text-strong { color: var(--white); font-weight: 600; }
.footer-col .text-mono {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.footer-address {
    padding: 16px;
    background: var(--graphite);
    border-left: 2px solid var(--jetta-red);
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}
.footer-address strong { color: var(--white); display: block; margin-bottom: 4px; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-dim);
    font-size: 12px;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--jetta-red-bright); }

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА МОДЕЛИ — специфика
   ═══════════════════════════════════════════════════════════ */
.model-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}
.model-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse 80% 90% at 75% 25%, var(--jetta-red-dark), transparent 65%);
    opacity: 0.4;
    z-index: 1;
}
.model-breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    position: relative; z-index: 2;
    text-transform: uppercase;
}
.model-breadcrumbs a { color: var(--text-muted); }
.model-breadcrumbs a:hover { color: var(--jetta-red-bright); }
.model-breadcrumbs .sep { margin: 0 12px; color: var(--text-dim); }

.model-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    position: relative; z-index: 2;
}
.model-hero-info h1 {
    font-size: clamp(48px, 6vw, 96px);
    color: var(--white);
    margin: 16px 0 8px;
    line-height: 0.92;
}
.model-hero-info h1 .h1-sub {
    display: inline-block;
    margin-top: 8px;
    font-size: clamp(20px, 2.4vw, 34px);
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.model-hero-info .model-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--jetta-red-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.model-hero-info h2 {
    font-size: 22px;
    color: var(--text-muted);
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 32px;
}
.model-price-large {
    display: flex; align-items: baseline; gap: 16px;
    margin-bottom: 32px;
}
.model-price-large .from-label {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.model-price-large .price {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    color: var(--jetta-red-bright);
    line-height: 1;
}
.model-price-large .currency {
    font-size: 32px;
    color: var(--white);
}
.model-savings-large {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid var(--green-ok);
    color: var(--green-ok);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.model-hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.model-hero-actions > .btn-primary { width: 100%; }
.hero-messengers { display: flex; gap: 12px; }
.hero-messengers > .btn { flex: 1; padding-left: 0; padding-right: 0; text-align: center; }
@media (max-width: 480px) {
    .hero-messengers { flex-direction: column; }
}

.model-hero-image-wrap {
    position: relative;
    height: 520px;
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
    /* Витрина полностью прозрачна — никакого прямоугольника.
       Машина стоит прямо на подложке секции, фон витрины = фон темы. */
    background: transparent;
    border: none;
}
.model-hero-image-wrap::before {
    /* Мягкое свечение-«подушка» под машиной (как на Changan): тёплый красный отблеск */
    content: '';
    position: absolute;
    left: 50%; bottom: 14%;
    width: 70%; height: 90px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
        rgba(204,4,40,0.18) 0%,
        rgba(204,4,40,0.06) 45%,
        transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(28px);
}
.model-hero-image {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s, transform 0.6s ease;
    display: block;
    padding: 30px;
    position: relative;
    z-index: 2;
}
.model-hero-image-wrap:hover .model-hero-image {
    transform: scale(1.03);
}
.model-hero-image-bg {
    /* Лёгкая красная подсветка под машиной */
    position: absolute;
    bottom: 6%; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 30px;
    background: radial-gradient(ellipse at center, rgba(204,4,40,0.22) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(10px);
}

/* Конфигуратор цвета (стиль Dongchedi) */
.model-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.color-config {
    padding: 18px 4px 0 4px;
}
.color-config-row {
    display: flex; align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.color-dots {
    display: flex;
    gap: 14px;
    align-items: center;
}
.color-dot {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}
.color-dot:hover {
    transform: scale(1.08);
    border-color: rgba(255,255,255,0.4);
}
.color-dot.active {
    border-color: var(--jetta-red);
    box-shadow: 0 0 0 3px rgba(204, 4, 40, 0.18), inset 0 1px 2px rgba(0,0,0,0.2);
}
.color-dot.active::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(204, 4, 40, 0.5);
    border-radius: 50%;
}
.color-active-name {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 14px;
    letter-spacing: 0.02em;
    text-align: center;
}
.color-active-name strong {
    color: var(--white);
    font-weight: 600;
    margin-right: 6px;
}

/* Технические характеристики */
.tech-specs-section { background: var(--graphite); }
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}
.tech-spec {
    padding: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--graphite-2);
    transition: all 0.3s;
}
.tech-spec:hover { background: var(--graphite-3); }
.tech-spec-icon {
    width: 40px; height: 40px;
    color: var(--jetta-red-bright);
    margin-bottom: 16px;
    font-size: 28px;
    display: flex; align-items: center;
}
.tech-spec-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.tech-spec-value {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.tech-spec-unit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* Комплектации */
.trims-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.trims-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) {
    .trims-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.trim-card {
    background: var(--graphite-2);
    border: 1px solid var(--line);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
    display: flex; flex-direction: column;
}
.trim-card:hover {
    border-color: var(--jetta-red);
    transform: translateY(-4px);
}
.trim-card.featured {
    border-color: var(--jetta-red);
    background: linear-gradient(180deg, var(--graphite-2), rgba(204,4,40,0.04));
}
.trim-card.featured::before {
    content: 'РЕКОМЕНДУЕМ';
    position: absolute;
    top: -1px; right: -1px;
    padding: 6px 14px;
    background: var(--jetta-red);
    color: var(--white);
    font-family: 'Antonio', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.trim-name {
    font-family: 'Antonio', sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}
.trim-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: var(--jetta-red-bright);
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.trim-features { list-style: none; margin-bottom: 24px; flex: 1; }
.trim-features li {
    padding: 7px 0;
    color: var(--text-muted);
    font-size: 14px;
    display: flex; align-items: flex-start; gap: 10px;
}
.trim-features li::before {
    content: '✓';
    color: var(--text-dim);
    font-weight: 700;
    flex-shrink: 0;
}
.trim-features li.trim-plus {
    color: var(--white);
    font-weight: 600;
}
.trim-features li.trim-plus::before {
    content: '✦';
    color: var(--jetta-red-bright);
}
.trim-features li.trim-opt {
    color: var(--text-dim);
    font-style: italic;
    font-size: 13px;
    margin-top: 6px;
}
.trim-features li.trim-opt::before {
    content: '○';
    color: var(--text-dim);
}
.trim-divider {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin: 4px 0 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.trim-diffs { margin-bottom: 24px; flex: none; }
.trim-features li.trim-has { color: var(--white); }
.trim-features li.trim-has::before { content: '✓'; color: #3fbf6a; font-weight: 700; }
.trim-features li.trim-no { color: var(--text-dim); text-decoration: line-through; opacity: 0.55; }
.trim-features li.trim-no::before { content: '✕'; color: var(--text-dim); text-decoration: none; font-weight: 700; }

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.gallery-item {
    aspect-ratio: 4/3;
    background: var(--graphite-2);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
}
.gallery-item:hover {
    border-color: var(--jetta-red);
    transform: scale(1.02);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
    color: var(--text-dim);
    font-size: 13px;
    text-align: center;
    padding: 20px;
}

/* Лайтбокс для увеличения фото */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    background: none; border: none;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    width: 56px; height: 56px;
    font-size: 28px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.lightbox-nav:hover { background: rgba(204,4,40,0.8); border-color: var(--jetta-red); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ═══════════════════════════════════════════════════════════
   АДАПТИВ
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav { display: none; }
    .mobile-menu { display: block; }
    .header-phone { display: none; }
    .models-grid, .steps, .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .model-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .model-hero-image-wrap { height: 460px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .trims-grid { grid-template-columns: 1fr; }
    .channels-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item.featured { grid-column: span 2; grid-row: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .container { padding: 0 20px; }
    section { padding: 60px 0; }
    .models-grid, .steps, .advantages-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-item.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
    .hero-features { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .model-card { min-height: auto; }
    .model-hero-grid { gap: 30px; }
    .form-card { padding: 28px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .process-callouts { flex-direction: column; gap: 12px; padding: 20px; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-delay-1 { animation: fadeUp 0.8s ease 0.1s both; }
.fade-up-delay-2 { animation: fadeUp 0.8s ease 0.2s both; }
.fade-up-delay-3 { animation: fadeUp 0.8s ease 0.3s both; }


/* ═══════════ ДРУГИЕ МОДЕЛИ — компактная текстовая перелинковка ═══════════ */
.other-models-compact {
    padding: 60px 0;
    background: var(--graphite-1);
    border-top: 1px solid var(--line);
}
.omc-header {
    text-align: center;
    margin-bottom: 32px;
}
.omc-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--jetta-red-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.omc-title {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
}
.omc-title .red { color: var(--jetta-red-bright); }
.omc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}
.omc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 28px;
    background: var(--graphite-2);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: all 0.25s ease;
}
.omc-card:hover {
    border-color: var(--jetta-red);
    background: var(--graphite-3);
    transform: translateX(4px);
}
.omc-card-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.omc-card-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.omc-card-name {
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}
.omc-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.omc-card-from {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.omc-card-price {
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}
.omc-card:hover .omc-card-price { color: var(--jetta-red-bright); }
.omc-card-arrow {
    color: var(--jetta-red-bright);
    font-size: 18px;
    margin-left: 4px;
    transition: transform 0.25s ease;
}
.omc-card:hover .omc-card-arrow { transform: translateX(4px); }

@media (max-width: 768px) {
    .other-models-compact { padding: 40px 0; }
    .omc-grid { grid-template-columns: 1fr; gap: 12px; }
    .omc-card { padding: 18px 22px; }
    .omc-card-name { font-size: 20px; }
}

/* ═══════════ STAGE 13: Success-модал «Заявка отправлена» ═══════════ */
.form-success-overlay {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    background: rgba(8, 8, 10, 0.78);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    padding: 20px;
}
.form-success-overlay.active { opacity: 1; visibility: visible; }
.form-success-card {
    position: relative;
    background: #15161a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 44px 36px 36px;
    max-width: 420px; width: 100%;
    text-align: center;
    transform: translateY(16px) scale(0.96);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 100px rgba(204,4,40,0.10);
}
.form-success-overlay.active .form-success-card { transform: translateY(0) scale(1); }
.form-success-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: var(--text-dim);
    font-size: 26px; line-height: 1; cursor: pointer;
    transition: color .2s;
}
.form-success-close:hover { color: var(--white); }
.form-success-check { width: 84px; height: 84px; margin: 0 auto 22px; }
.form-success-check svg { width: 100%; height: 100%; }
.fsc-circle {
    fill: none; stroke: var(--jetta-red); stroke-width: 3;
    stroke-dasharray: 151; stroke-dashoffset: 151;
    animation: fsc-circle .5s ease forwards .1s;
}
.fsc-tick {
    fill: none; stroke: var(--jetta-red-bright); stroke-width: 4;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 48; stroke-dashoffset: 48;
    animation: fsc-tick .35s ease forwards .55s;
}
@keyframes fsc-circle { to { stroke-dashoffset: 0; } }
@keyframes fsc-tick   { to { stroke-dashoffset: 0; } }
.form-success-title {
    font-family: 'Antonio', sans-serif;
    font-size: 26px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
    color: var(--white); margin-bottom: 12px;
}
.form-success-text {
    font-size: 15px; line-height: 1.6;
    color: var(--text-muted); margin-bottom: 26px;
}
.form-success-text strong { color: var(--white); }
.form-success-ok {
    background: var(--jetta-red); color: var(--white);
    border: none; border-radius: 8px;
    padding: 13px 38px; font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    cursor: pointer; transition: background .2s;
}
.form-success-ok:hover { background: var(--jetta-red-bright); }

/* Подсветка ошибки поля телефона */
.field-error {
    border-color: var(--jetta-red-bright) !important;
    box-shadow: 0 0 0 3px rgba(255,22,56,0.15) !important;
    animation: field-shake .3s ease;
}
@keyframes field-shake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ═══════════ МОБИЛЬНАЯ ШАПКА (фикс после нового логотипа v10) ═══════════ */
/* На узких экранах оставляем логотип + бургер. Подпись и кнопка "Рассчитать"
   скрыты, чтобы шапка не выходила за пределы экрана (overflow-x). */
@media (max-width: 600px) {
    .header-inner { gap: 12px; }
    .logo-sub { display: none; }
    .header-cta .btn-primary { display: none; }
    .logo-mark { width: 44px; }
    .logo-text { font-size: 19px; }
}
@media (max-width: 360px) {
    .container { padding: 0 16px; }
    .logo-mark { width: 40px; }
}
