/* ============================================
   НЕЙРОСИСТЕМА — ЕДИНЫЙ ФАЙЛ СТИЛЕЙ
   Фирменные цвета МАГИЯ AI
   ============================================ */

:root {
    /* Основные цвета */
    --bg-deep: #0E0A1A;
    --bg-purple: #1A0F2E;
    --bg-card: #1F1530;
    --bg-card-hover: #2A1B40;

    /* Акцентные цвета */
    --accent-pink: #E83FB6;
    --accent-purple: #A020F0;
    --accent-glow: #C026D3;

    /* Градиенты */
    --gradient-main: linear-gradient(90deg, #E83FB6 0%, #A020F0 100%);
    --gradient-button: linear-gradient(135deg, #E83FB6 0%, #C026D3 100%);
    --gradient-radial: radial-gradient(ellipse at center, rgba(160, 32, 240, 0.3) 0%, rgba(14, 10, 26, 0) 70%);

    /* Текст */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B0C8;
    --text-muted: #7A7088;

    /* Прочее */
    --border: rgba(232, 63, 182, 0.2);
    --border-hover: rgba(232, 63, 182, 0.5);
    --shadow-glow: 0 0 40px rgba(232, 63, 182, 0.3);
    --shadow-button: 0 8px 32px rgba(232, 63, 182, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   ОБЩИЕ КОМПОНЕНТЫ
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-button);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
    text-decoration: none;
    font-family: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232, 63, 182, 0.6); }
.btn-primary svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}
.btn-secondary:hover { background: rgba(232, 63, 182, 0.1); border-color: var(--accent-pink); }

.section-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 720px;
}

.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }

section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ============================================
   STICKY-CTA
   ============================================ */
.sticky-cta {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--gradient-button);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(232, 63, 182, 0.5);
    font-size: 15px;
}
.sticky-cta a:hover { transform: scale(1.05); }
@media (max-width: 768px) {
    .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
    .sticky-cta a { justify-content: center; padding: 14px 24px; }
}

/* ============================================
   ЭКРАН 1. HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px; height: 1200px;
    background: var(--gradient-radial);
    pointer-events: none;
    z-index: 0;
}

.stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.star {
    position: absolute;
    width: 2px; height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0; } 50% { opacity: 0.8; } }

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    background: rgba(232, 63, 182, 0.1);
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 32px;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-pink);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.hero-bullet {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: rgba(232, 63, 182, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-primary);
}
.hero-bullet svg { width: 16px; height: 16px; color: var(--accent-pink); }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-video-placeholder {
    margin-top: 64px;
    width: 100%; max-width: 800px;
    margin-left: auto; margin-right: auto;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.hero-video-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-radial);
    opacity: 0.4;
}
.video-play-btn {
    position: relative; z-index: 1;
    width: 80px; height: 80px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-button);
    transition: transform 0.3s;
}
.hero-video-placeholder:hover .video-play-btn { transform: scale(1.1); }
.video-placeholder-text {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    color: var(--text-muted);
    font-size: 13px;
    z-index: 1;
}

/* ============================================
   ЭКРАН 2. TRUST BAR
   ============================================ */
.trust-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-purple);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.trust-item-number {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}
.trust-item-label { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }

/* ============================================
   ЭКРАН 3. ПРОБЛЕМА
   ============================================ */
.problem { background: var(--bg-deep); }
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; gap: 24px; } }

.problem-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.problem-card-tag {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.problem-card.pain .problem-card-tag { background: rgba(255, 100, 100, 0.15); color: #FF6B6B; }
.problem-card.cause .problem-card-tag { background: rgba(232, 63, 182, 0.15); color: var(--accent-pink); }

.problem-card h3 { font-size: 24px; margin-bottom: 16px; line-height: 1.3; }
.problem-card ul { list-style: none; }
.problem-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(232, 63, 182, 0.1);
    color: var(--text-secondary);
    font-size: 16px;
    display: flex; align-items: flex-start; gap: 12px;
}
.problem-card li::before {
    content: ''; flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    margin-top: 8px;
}
.problem-card li:last-child { border-bottom: none; }

.problem-bridge {
    text-align: center;
    padding: 40px;
    background: var(--gradient-radial);
    border: 1px solid var(--border-hover);
    border-radius: 20px;
}
.problem-bridge p {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   ЭКРАН 4. ПУТЬ
   ============================================ */
.journey { background: var(--bg-purple); text-align: center; }
.journey-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}
@media (max-width: 968px) { .journey-path { grid-template-columns: 1fr; gap: 32px; } }

.journey-step {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.journey-step:hover { border-color: var(--accent-pink); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.journey-step::after {
    content: '→';
    position: absolute;
    right: -28px; top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--accent-pink);
    z-index: 1;
}
.journey-step:last-child::after { display: none; }
@media (max-width: 968px) {
    .journey-step::after { content: '↓'; right: 50%; top: auto; bottom: -32px; transform: translateX(50%); }
}

.journey-point {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-button);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.journey-step h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.3; min-height: 48px; }
.journey-step .income {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 12px;
}
.journey-step.start { opacity: 0.7; }
.journey-step.start .income {
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    font-size: 18px;
}
.journey-note { margin-top: 48px; font-size: 18px; color: var(--text-secondary); font-style: italic; }

/* ============================================
   ЭКРАН 5. ПРОГРАММА (АККОРДЕОН)
   ============================================ */
.program { background: var(--bg-deep); }
.steps-grid { display: flex; flex-direction: column; gap: 16px; }

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.step-card:hover { border-color: var(--border-hover); }

.step-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    user-select: none;
}
@media (max-width: 768px) {
    .step-header { grid-template-columns: auto 1fr auto; gap: 16px; padding: 24px; }
    .step-meta { display: none; }
}

.step-number {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient-button);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-button);
}
.step-info h3 { font-size: 22px; margin-bottom: 4px; line-height: 1.3; }
.step-info p { font-size: 14px; color: var(--text-secondary); }
.step-meta { text-align: right; }
.step-meta .duration { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.step-meta .lessons { font-size: 16px; font-weight: 600; color: var(--accent-pink); }

.step-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(232, 63, 182, 0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.step-card.open .step-toggle { background: var(--gradient-button); transform: rotate(180deg); }
.step-toggle svg { width: 20px; height: 20px; color: var(--accent-pink); transition: color 0.3s; }
.step-card.open .step-toggle svg { color: white; }

.step-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.step-card.open .step-content { max-height: 1500px; }
.step-content-inner { padding: 0 32px 32px; border-top: 1px solid var(--border); padding-top: 24px; }
@media (max-width: 768px) { .step-content-inner { padding: 24px; } }

.module-list { display: grid; gap: 12px; }
.module-item {
    padding: 16px 20px;
    background: var(--bg-purple);
    border-radius: 12px;
    display: flex; gap: 16px; align-items: flex-start;
}
.module-num { font-weight: 700; color: var(--accent-pink); flex-shrink: 0; min-width: 100px; }
.module-text { color: var(--text-secondary); font-size: 15px; }
.module-text strong { color: var(--text-primary); display: block; margin-bottom: 4px; font-size: 16px; }

.step-result {
    margin-top: 24px;
    padding: 20px;
    background: var(--gradient-radial);
    border-radius: 12px;
    border: 1px solid var(--border-hover);
}
.step-result-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.step-result p { font-size: 16px; color: var(--text-primary); }

/* ============================================
   ЭКРАН 6. ОТЛИЧИЯ
   ============================================ */
.differences { background: var(--bg-purple); }
.differences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
@media (max-width: 968px) { .differences-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .differences-grid { grid-template-columns: 1fr; } }

.difference-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
}
.difference-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.difference-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient-button);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-button);
}
.difference-icon svg { width: 28px; height: 28px; color: white; }
.difference-card h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.3; }
.difference-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   ЭКРАН 7. КОМУ ПОДХОДИТ
   ============================================ */
.fit { background: var(--bg-deep); }
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}
@media (max-width: 768px) { .fit-grid { grid-template-columns: 1fr; } }

.fit-card { padding: 40px; border-radius: 20px; border: 1px solid var(--border); }
.fit-card.yes { background: var(--bg-card); border-color: var(--border-hover); }
.fit-card.no { background: var(--bg-purple); opacity: 0.85; }

.fit-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.fit-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fit-card.yes .fit-icon { background: var(--gradient-button); }
.fit-card.no .fit-icon { background: rgba(255, 100, 100, 0.15); border: 1px solid rgba(255, 100, 100, 0.3); }
.fit-icon svg { width: 24px; height: 24px; color: white; }
.fit-card.no .fit-icon svg { color: #FF6B6B; }
.fit-card h3 { font-size: 24px; line-height: 1.3; }

.fit-list { list-style: none; }
.fit-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(232, 63, 182, 0.1);
    color: var(--text-secondary);
    font-size: 15px;
    display: flex; align-items: flex-start; gap: 12px;
    line-height: 1.5;
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.fit-card.yes .fit-list li svg { color: var(--accent-pink); }
.fit-card.no .fit-list li svg { color: #FF6B6B; }

/* ============================================
   ЭКРАН 8. НЕЙРОКЛУБ
   ============================================ */
.neuroclub { background: var(--bg-purple); overflow: hidden; position: relative; }
.neuroclub::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: var(--gradient-radial);
    pointer-events: none;
    opacity: 0.5;
}
.neuroclub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 968px) { .neuroclub-grid { grid-template-columns: 1fr; gap: 40px; } }

.neuroclub-features { list-style: none; margin-top: 32px; }
.neuroclub-features li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}
.neuroclub-features li:last-child { border-bottom: none; }
.neuroclub-features li svg { width: 24px; height: 24px; color: var(--accent-pink); flex-shrink: 0; margin-top: 2px; }
.neuroclub-features li strong { color: var(--text-primary); display: block; margin-bottom: 4px; font-size: 17px; }

.neuroclub-tariffs {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    padding: 40px;
}
.neuroclub-tariffs h3 { font-size: 22px; margin-bottom: 24px; text-align: center; }

.tariff-access {
    padding: 20px;
    background: var(--bg-purple);
    border-radius: 14px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tariff-access:last-child { margin-bottom: 0; }
.tariff-access-name { font-size: 16px; font-weight: 600; }
.tariff-access-period { font-size: 14px; color: var(--accent-pink); font-weight: 600; }

/* ============================================
   ЭКРАН 9. ТАРИФЫ
   ============================================ */
.tariffs { background: var(--bg-deep); }
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
@media (max-width: 968px) {
    .tariffs-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.tariff-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.tariff-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.tariff-card.popular {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border-color: var(--accent-pink);
    border-width: 2px;
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-button);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-button);
}

.tariff-name {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 8px;
}
.tariff-tagline { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; min-height: 48px; }
.tariff-price { margin-bottom: 8px; }
.tariff-price-old { font-size: 18px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.tariff-price-current {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.tariff-card:not(.popular) .tariff-price-current {
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
}
.tariff-installment { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; }

.tariff-features { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.tariff-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(232, 63, 182, 0.08);
    color: var(--text-secondary);
    font-size: 15px;
    display: flex; align-items: flex-start; gap: 10px;
    line-height: 1.5;
}
.tariff-features li:last-child { border-bottom: none; }
.tariff-features li svg { width: 18px; height: 18px; color: var(--accent-pink); flex-shrink: 0; margin-top: 2px; }
.tariff-features li strong { color: var(--text-primary); }

.tariff-result {
    padding: 16px;
    background: var(--bg-purple);
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}
.tariff-result-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.tariff-result-value { font-size: 18px; font-weight: 700; color: var(--accent-pink); }
.tariff-card .btn-primary { width: 100%; }
.tariffs-note { text-align: center; margin-top: 32px; color: var(--text-secondary); font-size: 15px; }

/* ============================================
   ЭКРАН 10. ПИЛОТНОЕ ПРЕДЛОЖЕНИЕ
   ============================================ */
.pilot { background: var(--bg-purple); position: relative; overflow: hidden; }
.pilot::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px; height: 1200px;
    background: var(--gradient-radial);
    pointer-events: none;
}
.pilot-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.pilot-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(232, 63, 182, 0.15);
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pilot-deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
    text-align: left;
}
@media (max-width: 768px) { .pilot-deal-grid { grid-template-columns: 1fr; } }

.pilot-deal-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.pilot-deal-card h3 {
    font-size: 18px;
    color: var(--accent-pink);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pilot-deal-card ul { list-style: none; }
.pilot-deal-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
    display: flex; gap: 10px;
    line-height: 1.5;
}
.pilot-deal-card li::before { content: '→'; color: var(--accent-pink); font-weight: 700; flex-shrink: 0; }

.timer-block {
    margin: 48px 0;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 20px;
}
.timer-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 600;
}
.timer-display { display: flex; justify-content: center; gap: 20px; }
@media (max-width: 600px) { .timer-display { gap: 12px; } }

.timer-unit {
    flex: 1; max-width: 110px;
    padding: 20px 12px;
    background: var(--bg-purple);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.timer-value {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.timer-name { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.seats-counter {
    margin: 32px 0;
    padding: 20px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: inline-block;
}
.seats-text { font-size: 18px; color: var(--text-primary); }
.seats-text strong { color: var(--accent-pink); font-weight: 800; }

.pilot-cta-wrap { max-width: 360px; margin: 32px auto 0; }
.pilot-cta-wrap .btn-primary { width: 100%; }

/* ============================================
   ЭКРАН 11. FAQ
   ============================================ */
.faq { background: var(--bg-deep); }
.faq-list { max-width: 900px; margin: 60px auto 0; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}
@media (max-width: 600px) { .faq-question { padding: 20px; } }
.faq-question h3 { font-size: 18px; color: var(--text-primary); line-height: 1.4; }

.faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(232, 63, 182, 0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--gradient-button); transform: rotate(45deg); }
.faq-toggle svg { width: 16px; height: 16px; color: var(--accent-pink); }
.faq-item.open .faq-toggle svg { color: white; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 32px 24px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 600px) { .faq-answer-inner { padding: 0 20px 20px; } }

/* ============================================
   ЭКРАН 12. ГАРАНТИИ
   ============================================ */
.guarantees { background: var(--bg-purple); }
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
@media (max-width: 968px) { .guarantees-grid { grid-template-columns: 1fr; } }

.guarantee-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}
.guarantee-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.guarantee-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--gradient-button);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-button);
}
.guarantee-icon svg { width: 32px; height: 32px; color: white; }
.guarantee-card h3 { font-size: 22px; margin-bottom: 12px; }
.guarantee-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   ЭКРАН 13. ФИНАЛЬНЫЙ CTA
   ============================================ */
.final-cta {
    background: var(--bg-deep);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px; height: 1400px;
    background: var(--gradient-radial);
    pointer-events: none;
}
.final-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.final-cta h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.final-versions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
    text-align: left;
}
@media (max-width: 768px) { .final-versions { grid-template-columns: 1fr; } }

.version-card { padding: 32px; border-radius: 20px; }
.version-card.bad { background: var(--bg-card); border: 1px solid var(--border); opacity: 0.7; }
.version-card.good {
    background: linear-gradient(135deg, rgba(232, 63, 182, 0.1) 0%, rgba(160, 32, 240, 0.1) 100%);
    border: 1px solid var(--border-hover);
}

.version-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 16px;
}
.version-card.bad .version-label { color: var(--text-muted); }
.version-card.good .version-label { color: var(--accent-pink); }
.version-card p { font-size: 17px; line-height: 1.6; color: var(--text-secondary); }
.version-card.good p { color: var(--text-primary); }

.final-statement {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-primary);
    margin: 48px 0;
    font-weight: 600;
    line-height: 1.5;
}

.final-cta .btn-primary { width: auto; padding: 22px 48px; font-size: 19px; }
.final-fineprint { margin-top: 24px; color: var(--text-muted); font-size: 14px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-deep);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
footer p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
footer a { color: var(--accent-pink); text-decoration: none; }

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */
.popup-overlay {
    position: fixed; inset: 0;
    background: rgba(14, 10, 26, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup-overlay.visible { display: flex; opacity: 1; }

.popup {
    background: var(--bg-card);
    border: 2px solid var(--border-hover);
    border-radius: 24px;
    max-width: 540px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(232, 63, 182, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.popup-overlay.visible .popup { transform: scale(1); }
@media (max-width: 600px) { .popup { padding: 32px 24px; } }

.popup-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(232, 63, 182, 0.1);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.popup-close:hover { background: var(--accent-pink); }
.popup-close svg { width: 18px; height: 18px; color: var(--text-primary); }

.popup-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    background: var(--gradient-button);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-button);
}
.popup-icon svg { width: 40px; height: 40px; color: white; }
.popup h2 { font-size: 28px; margin-bottom: 16px; line-height: 1.3; }
.popup-text { color: var(--text-secondary); margin-bottom: 24px; font-size: 16px; line-height: 1.5; }

.popup-promo {
    padding: 20px;
    background: var(--gradient-radial);
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    margin-bottom: 24px;
}
.popup-promo-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.popup-promo-code {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    font-family: 'Courier New', monospace;
}
.popup-promo-discount { font-size: 14px; color: var(--text-primary); margin-top: 8px; }
.popup .btn-primary { width: 100%; }
