@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&display=swap');

:root {
    --bg-dark: #030308; 
    --vulcan-light: #2979FF; 
    --vulcan: #1565C0; 
    --vulcan-dark: #0D47A1;
    --vulcan-glow: rgba(41, 121, 255, 0.15);
    --glass-bg: rgba(12, 12, 20, 0.65); 
    --glass-border: rgba(21, 101, 192, 0.2);
    --text-main: #EAEAEA; 
    --text-muted: #6e6e7a;
    --accent-blue: #3b82f6;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body {
    background-color: #030308 !important;
    color: var(--text-main);
    min-height: 100vh; 
    display: flex; flex-direction: column; align-items: center; position: relative; overflow-x: hidden; 
}

/* === PARTICLE CANVAS === */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* === ANIMATED BACKGROUND === */
.glow-bg {
    position: fixed;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh;
    background:
        radial-gradient(ellipse 600px 400px at 30% 20%, rgba(41, 121, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 70% 80%, rgba(13, 71, 161, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 800px 600px at 50% 50%, rgba(21, 101, 192, 0.04) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
    opacity: 0.02;
}

@keyframes glowPulse {
    0% { opacity: 0.02; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.02; transform: translate(-50%, -50%) scale(1.1); }
}

.sparkles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1;
}

/* === HEADER === */
header { 
    width: 100%; max-width: 1200px; padding: 18px 40px; 
    display: flex; justify-content: space-between; align-items: center; 
    background: rgba(6, 6, 14, 0.85); 
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(41, 121, 255, 0.1); 
    border-radius: 0 0 20px 20px; 
    z-index: 10; margin-bottom: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-left { display: flex; align-items: center; gap: 22px; }
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--vulcan-light);
    text-shadow: 0 0 20px rgba(41, 121, 255, 0.5), 0 0 60px rgba(41, 121, 255, 0.2);
    line-height: 1; letter-spacing: 3px; text-decoration: none;
}
.logo span { 
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 400; letter-spacing: 8px; color: var(--text-muted); display: block; margin-top: 5px; 
}
nav a { 
    color: var(--text-muted); text-decoration: none; margin-left: 28px; font-size: 13px; 
    transition: all 0.3s ease; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--vulcan-light);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--vulcan-light);
}
nav a:hover { color: var(--vulcan-light); }
nav a:hover::after { width: 100%; }

/* === HERO === */
.hero { text-align: center; max-width: 900px; padding: 60px 20px 40px; }
.hero h1 { font-size: 44px; font-weight: 300; line-height: 1.3; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 .gradient-text {
    display: block; font-weight: 800;
    background: linear-gradient(135deg, #42A5F5 0%, var(--vulcan-light) 30%, var(--vulcan) 70%, #0D47A1 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite alternate,
               vlcGradFadeIn 0.9s 0.85s cubic-bezier(0.2,0.6,0.2,1) both;
    filter: drop-shadow(0 0 20px rgba(41, 121, 255, 0.3));
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes vlcGradFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero p { color: var(--text-muted); font-size: 15px; margin-bottom: 40px; line-height: 1.8; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === HERO BUTTONS === */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.hero-buttons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hero-main {
    padding: 16px 48px;
    font-size: 15px;
    letter-spacing: 1.5px;
}

/* === BUTTONS === */
.btn { 
    padding: 14px 28px; border-radius: 10px; font-size: 14px; font-weight: 600; 
    cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; 
    justify-content: center; gap: 10px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; 
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-outline { 
    background: rgba(41, 121, 255, 0.08); border: 1px solid rgba(41, 121, 255, 0.4); color: var(--vulcan-light); 
    backdrop-filter: blur(10px);
}
.btn-outline:hover { 
    background: rgba(41, 121, 255, 0.15);
    box-shadow: 0 0 25px rgba(41, 121, 255, 0.25), inset 0 0 25px rgba(41, 121, 255, 0.05); 
    color: #fff; border-color: var(--vulcan-light); 
    transform: translateY(-2px);
}
.btn-solid {
    background: linear-gradient(135deg, #42A5F5 0%, var(--vulcan-light) 50%, var(--vulcan) 100%);
    color: #000; font-weight: 700;
    box-shadow: 0 4px 20px rgba(41, 121, 255, 0.35);
    overflow: hidden;
    position: relative;
}
.btn-solid::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
    transform: skewX(-15deg);
    transition: left 0s;
}
.btn-solid:hover:not(:disabled)::after {
    left: 160%;
    transition: left 0.52s ease;
}
.btn-solid:hover:not(:disabled) { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 35px rgba(41, 121, 255, 0.5); 
}
.btn:disabled { background: #1a1a2e; color: #444; box-shadow: none; cursor: not-allowed; border: 1px solid #222; }

/* === SECTION TITLES === */
.section-title { 
    font-family: 'Orbitron', sans-serif;
    font-size: 11px; letter-spacing: 6px; color: var(--text-muted); 
    margin: 70px 0 40px; text-align: center; text-transform: uppercase; font-weight: 600;
}
.section-title::after { 
    content: ''; display: block; width: 80px; height: 2px; 
    background: linear-gradient(90deg, transparent, var(--vulcan), transparent);
    margin: 12px auto 0; 
    box-shadow: 0 0 15px var(--vulcan); 
}

/* === MODULE CARDS === */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 120px 24px; max-width: 1000px; width: 100%; padding: 0 20px; margin-bottom: 160px; }
.module-card { 
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.8), rgba(8, 8, 16, 0.9)); 
    border: 1px solid rgba(41, 121, 255, 0.15); 
    border-radius: 20px; padding: 40px 20px; text-align: center; cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    -webkit-box-reflect: below 5px linear-gradient(transparent, transparent, rgba(0,0,0,0.25));
    position: relative;
    overflow: hidden;
}
.module-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.06), transparent);
    transition: left 0.6s ease;
}
.module-card:hover::before { left: 100%; }
.module-card:hover { 
    border-color: rgba(41, 121, 255, 0.5); 
    transform: translateY(-8px); 
    box-shadow: 0 12px 40px rgba(41, 121, 255, 0.15), 0 0 0 1px rgba(41, 121, 255, 0.1); 
}
.module-card h3 { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 14px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; 
    color: #fff;
}
.module-card p { color: var(--text-muted); font-size: 13px; }
.module-icon { font-size: 44px; margin-bottom: 20px; filter: drop-shadow(0 0 12px var(--vulcan-light)); }

/* === DOWNLOAD PANEL === */
.download-panel {
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.8), rgba(8, 8, 16, 0.9));
    border: 1px solid rgba(41, 121, 255, 0.2);
    border-radius: 20px; padding: 50px 40px; max-width: 800px; width: 90%; text-align: center; margin-bottom: 60px;
    position: relative;
    box-shadow: 0 0 20px rgba(41, 121, 255, 0.05);
    animation: panelPulse 4s infinite alternate;
}
.download-panel h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px; letter-spacing: 3px; font-weight: 700;
}
.key-input { 
    background: rgba(0, 0, 0, 0.6); border: 1px solid #222; border-radius: 10px; 
    padding: 15px 16px; color: var(--vulcan-light); font-size: 15px; width: 340px; 
    text-align: center; outline: none; transition: all 0.3s ease; margin-right: 15px; 
    font-family: 'Orbitron', sans-serif; letter-spacing: 2px;
}
.key-input:focus { border-color: var(--vulcan); box-shadow: 0 0 20px rgba(21, 101, 192, 0.15), inset 0 0 10px rgba(21, 101, 192, 0.1); }

/* === FAQ === */
/* === WHY VULCANIUM GRID === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    width: 90%;
    margin-bottom: 60px;
}
.why-card {
    background: linear-gradient(160deg, rgba(18, 18, 30, 0.85), rgba(8, 8, 16, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 30px 22px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vulcan-light), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.why-card:hover {
    border-color: rgba(41, 121, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(21, 101, 192, 0.12);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
    font-size: 36px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 12px rgba(41, 121, 255, 0.4));
}
.why-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--vulcan-light);
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}
.why-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === HOW TO START STEPS === */
.steps-section {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    width: 90%;
    margin-bottom: 80px;
}
.step-card {
    flex: 1;
    text-align: center;
    padding: 30px 24px 26px;
    position: relative;
    user-select: none;
}
.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(180deg, var(--vulcan-light) 0%, rgba(21, 101, 192, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 18px;
}
.step-line {
    position: absolute;
    top: 52px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--vulcan-light), rgba(21, 101, 192, 0.15));
}
.step-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}
.step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === MODALS === */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px) !important;
    display: none; justify-content: center; align-items: center; z-index: 100;
}

/* Review Cards in Modal */
.bot-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(41, 121, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bot-review-card:hover {
    background: rgba(41, 121, 255, 0.08);
    border-color: var(--vulcan-light);
    transform: translateY(-4px);
}
.bot-review-icon { font-size: 32px; margin-bottom: 10px; }
.bot-review-card h4 { font-family: 'Orbitron', sans-serif; font-size: 14px; color: #fff; margin-bottom: 8px; }
.bot-review-card span { font-size: 11px; color: var(--vulcan-light); text-transform: uppercase; letter-spacing: 1px; }
.modal-box { 
    background: linear-gradient(145deg, #0f0f1a, #080810); 
    border: 1px solid rgba(41, 121, 255, 0.2); border-radius: 20px; padding: 35px; 
    max-width: 500px; width: 90%; text-align: center; position: relative; 
    box-shadow: 0 0 60px rgba(41, 121, 255, 0.1), 0 25px 50px rgba(0, 0, 0, 0.5); 
}
.modal-close { position: absolute; top: 15px; right: 20px; color: #555; font-size: 24px; cursor: pointer; transition: 0.3s; }
.modal-close:hover { color: var(--vulcan-light); }
.modal-title { font-family: 'Orbitron', sans-serif; font-size: 18px; margin-bottom: 15px; color: #fff; letter-spacing: 1px; }
.modal-desc { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; font-size: 14px; }

.form-textarea { 
    width: 100%; background: rgba(0, 0, 0, 0.5); border: 1px solid #1e1e2e; border-radius: 10px; 
    padding: 14px; color: #fff; margin-bottom: 15px; outline: none; box-sizing: border-box; 
    font-family: 'Inter', sans-serif; resize: vertical; min-height: 120px; transition: border-color 0.3s;
}
.form-textarea:focus { border-color: var(--vulcan); box-shadow: 0 0 15px rgba(21, 101, 192, 0.1); }

/* === PROGRESS BAR === */
.progress-container { width: 100%; margin: 20px 0; }
.progress-bar {
    width: 100%; height: 6px;
    background: #111; border-radius: 3px;
    overflow: hidden; border: none;
}
.progress-fill {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #42A5F5, var(--vulcan-light), var(--vulcan));
    transition: width 0.2s ease;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(41, 121, 255, 0.5);
}
.progress-text { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 10px; font-family: 'Orbitron', sans-serif; }

/* === HERO VIDEO OVERVIEW (click-to-load YouTube) === */
.hero-video-section { text-align: center; padding: 10px 20px 30px; max-width: 820px; width: 100%; }
.hero-video-label {
    font-family: 'Orbitron', sans-serif; font-size: 12px; letter-spacing: 3px;
    color: var(--vulcan-light); text-transform: uppercase; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-video-label::before, .hero-video-label::after {
    content: ""; height: 1px; width: 36px;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.6));
}
.hero-video-label::after { background: linear-gradient(90deg, rgba(41, 121, 255, 0.6), transparent); }
.hero-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(41, 121, 255, 0.3);
    background: var(--bg-dark);
    cursor: pointer;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(41, 121, 255, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.hero-video-wrap:hover {
    border-color: rgba(41, 121, 255, 0.6);
    box-shadow: 0 20px 54px rgba(41, 121, 255, 0.22);
    transform: translateY(-2px);
}
.hero-video-thumb {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.68);
    transition: filter 0.3s ease, transform 0.5s ease;
}
.hero-video-wrap:hover .hero-video-thumb { filter: brightness(0.48); transform: scale(1.025); }
.hero-video-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    border-radius: 50%;
    border: none;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--vulcan-light), var(--vulcan-dark));
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
    animation: heroPlayPulse 2.4s ease-in-out infinite;
}
.hero-video-play svg { margin-left: 4px; }
.hero-video-wrap:hover .hero-video-play { transform: translate(-50%, -50%) scale(1.08); }
@keyframes heroPlayPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(41, 121, 255, 0.4), 0 8px 24px rgba(0, 0, 0, 0.45); }
    50%      { box-shadow: 0 0 0 18px rgba(41, 121, 255, 0), 0 8px 24px rgba(0, 0, 0, 0.45); }
}
.hero-video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) {
    .hero-video-play { width: 64px; height: 64px; }
}

/* === STATS COUNTER === */
.stats-bar {
    display: flex; justify-content: center; gap: 60px;
    margin: 10px 0 30px; padding: 30px 0;
    max-width: 700px; width: 90%;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px; font-weight: 800;
    color: var(--vulcan-light);
    text-shadow: 0 0 20px rgba(41, 121, 255, 0.3);
}
.stat-label {
    font-size: 11px; color: var(--text-muted); 
    text-transform: uppercase; letter-spacing: 2px; margin-top: 6px;
}

/* === FOOTER BADGE === */
.footer-badge {
    margin-bottom: 40px;
    padding: 16px 30px;
    background: rgba(41, 121, 255, 0.05);
    border: 1px solid rgba(41, 121, 255, 0.1);
    border-radius: 50px;
    font-size: 12px; color: var(--text-muted);
    letter-spacing: 1px;
}
.footer-badge span { color: var(--vulcan-light); font-weight: 600; }

/* === UTILITIES === */
.flex-center-gap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.flex-center-wrap-gap { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.text-center { text-align: center; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.w-100 { width: 100%; }
.max-w-400 { max-width: 400px; }
.text-white { color: #fff; }
.text-danger { color: #f38ba8; }
.text-success { color: #a6e3a1; }
.text-vulcan { color: var(--vulcan-light); }
.font-16 { font-size: 16px; }
.border-danger { border-color: #f38ba8 !important; }
.border-success { border-color: #a6e3a1 !important; }
.btn-outline-danger { border-color: #f38ba8; color: #f38ba8; background: rgba(243, 139, 168, 0.05); }
.btn-outline-success { border-color: #a6e3a1; color: #a6e3a1; background: rgba(166, 227, 161, 0.05); }
.modal-footer-line { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.modal-icon { font-size: 50px; margin-bottom: 15px; }

/* === SKELETON LOADER === */
.skeleton-loader {
    background: linear-gradient(90deg, #16162a 0%, #2a2a42 50%, #16162a 100%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.6s ease-in-out infinite;
    border-radius: 6px;
}
@keyframes skeletonPulse {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.module-card-content { transition: opacity 0.5s ease; }

/* === FADE-UP SCROLL ANIMATION === */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === PREMIUM PANEL PULSE === */
@keyframes panelPulse {
    from {
        box-shadow: 0 0 20px rgba(41, 121, 255, 0.05);
        border-color: rgba(41, 121, 255, 0.2);
    }
    to {
        box-shadow: 0 0 40px rgba(41, 121, 255, 0.25);
        border-color: rgba(41, 121, 255, 0.5);
    }
}

/* === TABLET (max 900px) === */
@media (max-width: 900px) {
    .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 80px 16px; }
    .hero h1 { font-size: 32px; }
    .hero h1 .gradient-text { font-size: 32px; }
    .stats-bar { gap: 30px; flex-wrap: wrap; }
    header { padding: 14px 20px; }
    nav a { margin-left: 16px; font-size: 12px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons-row { gap: 10px; }
}

/* === MOBILE (max 600px) === */
@media (max-width: 600px) {
    /* Header — компактный, стеклянный */
    header {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 0 0 16px 16px;
    }
    .header-left { flex-direction: column; gap: 8px; }
    .logo { font-size: 18px; letter-spacing: 2px; }
    .logo span { font-size: 8px; letter-spacing: 6px; }
    .product-switch a { padding: 5px 12px; font-size: 11px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 4px; }
    nav a {
        margin: 0 6px;
        font-size: 10px;
        letter-spacing: 0.5px;
        padding: 4px 0;
    }

    /* Hero — читаемый на маленьком экране */
    .hero { padding: 28px 20px 16px; }
    .hero h1 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
    }
    .hero h1 .gradient-text { font-size: 24px; }
    .hero p {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    /* Hero buttons — вертикальный стек */
    .hero-buttons { gap: 12px; }
    .hero-buttons-row {
        flex-direction: column;
        width: 100%;
        padding: 0 8px;
        gap: 8px;
    }
    .hero-buttons-row .btn { width: 100%; }
    .btn-hero-main {
        width: calc(100% - 16px);
        padding: 14px 24px;
        font-size: 14px;
    }
    .btn { padding: 13px 20px; font-size: 12px; border-radius: 12px; }

    /* Stats bar */
    .stats-bar {
        gap: 16px;
        padding: 20px 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-number { font-size: 24px; }
    .stat-label { font-size: 9px; letter-spacing: 1.5px; }

    /* Section titles */
    .section-title {
        font-size: 10px;
        letter-spacing: 4px;
        margin: 36px 0 24px;
    }
    .section-title::after { width: 50px; }

    /* Module cards — 2 колонки на мобиле */
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 10px;
        padding: 0 12px;
        margin-bottom: 80px;
    }
    .module-card {
        padding: 24px 12px;
        border-radius: 14px;
    }
    .module-card h3 { font-size: 11px; letter-spacing: 1px; }
    .module-card p { font-size: 11px; }
    .module-icon { font-size: 32px; margin-bottom: 14px; }

    /* Download panel */
    .download-panel {
        padding: 28px 16px;
        width: 92%;
        border-radius: 16px;
    }
    .download-panel h2 { font-size: 13px; letter-spacing: 2px; }
    .flex-center-wrap-gap { flex-direction: column; align-items: center; }
    .key-input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 13px;
        letter-spacing: 1.5px;
        padding: 14px 12px;
        border-radius: 10px;
    }

    /* Why grid — 2 колонки */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 94%;
    }
    .why-card {
        padding: 20px 14px 18px;
        border-radius: 14px;
    }
    .why-icon { font-size: 28px; margin-bottom: 10px; }
    .why-label { font-size: 8px; letter-spacing: 2px; margin-bottom: 6px; }
    .why-card h3 { font-size: 13px; margin-bottom: 6px; }
    .why-card p { font-size: 11px; line-height: 1.5; }

    /* Steps — горизонтальный скролл */
    .steps-section {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0;
        width: 94%;
        padding-bottom: 8px;
    }
    .step-card {
        min-width: 220px;
        scroll-snap-align: center;
        padding: 24px 18px 20px;
    }
    .step-number { font-size: 34px; margin-bottom: 12px; }
    .step-card h3 { font-size: 14px; }
    .step-card p { font-size: 12px; }
    .step-line {
        top: 48px;
        right: -8px;
        width: 16px;
    }

    /* Modals */
    .modal-box {
        padding: 24px 16px;
        border-radius: 16px;
        max-width: 92vw;
    }
    .modal-title { font-size: 15px; }
    .modal-desc { font-size: 13px; }
    .review-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

    /* Footer */
    .footer-badge {
        font-size: 10px;
        padding: 12px 20px;
        margin-bottom: 20px;
    }
}

/* === SMALL MOBILE (max 380px) === */
@media (max-width: 380px) {
    .hero h1 { font-size: 20px; }
    .hero h1 .gradient-text { font-size: 20px; }
    .hero p { font-size: 12px; }
    .modules-grid { grid-template-columns: 1fr; gap: 80px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 20px; }
    nav a { margin: 0 4px; font-size: 9px; }
}

/* === PLASMA CURSOR === */
@media (hover: hover) and (pointer: fine) {
    html, body, * { cursor: none !important; }
}

.cursor-plasma {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100001;
    opacity: 0;
    will-change: transform;
    background: radial-gradient(circle, #fff 0%, #64B5F6 35%, #2979FF 65%, transparent 100%);
    box-shadow:
        0 0 6px 2px rgba(41, 121, 255, 1),
        0 0 18px 6px rgba(41, 121, 255, 0.7),
        0 0 40px 12px rgba(41, 121, 255, 0.3);
    transition: width 0.12s ease, height 0.12s ease, box-shadow 0.12s ease;
}

.cursor-plasma.is-hover {
    width: 18px;
    height: 18px;
    box-shadow:
        0 0 8px 3px rgba(255, 160, 30, 1),
        0 0 26px 10px rgba(41, 121, 255, 0.85),
        0 0 60px 20px rgba(41, 121, 255, 0.4);
}

.cursor-plasma.is-click {
    width: 22px;
    height: 22px;
    box-shadow:
        0 0 10px 4px rgba(255, 255, 120, 1),
        0 0 36px 14px rgba(255, 200, 34, 0.95),
        0 0 72px 26px rgba(41, 121, 255, 0.55);
}

.cursor-plasma-trail {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    opacity: 0;
    will-change: transform;
    background: radial-gradient(circle, rgba(255, 120, 40, 0.7) 0%, transparent 100%);
}

.cursor-ibeam {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100001;
    width: 2px;
    height: 20px;
    background: var(--vulcan-light);
    box-shadow: 0 0 6px rgba(41, 121, 255, 0.7);
    opacity: 0;
    will-change: transform;
}

.cursor-ibeam::before,
.cursor-ibeam::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--vulcan-light);
    left: 50%;
    transform: translateX(-50%);
}

/* === PRODUCT SWITCH (GTA5RP / NFA) === */
.product-switch {
    display: flex; gap: 6px; padding: 6px; margin: 0;
    background: rgba(0,0,0,0.35); border: 1px solid rgba(41, 121, 255, 0.15); border-radius: 12px;
}
.product-switch a {
    padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
    text-decoration: none; color: var(--text-muted); letter-spacing: 0.3px;
    transition: all .2s ease;
}
.product-switch a.active {
    background: linear-gradient(135deg, var(--vulcan) 0%, var(--vulcan-light) 100%);
    color: #0a0a0a;
    box-shadow: 0 0 20px var(--vulcan-glow);
}
.product-switch a:not(.active):hover { color: var(--vulcan-light); }

.cursor-ibeam::before { top: 0; }
.cursor-ibeam::after  { bottom: 0; }