/* ========================================
   Softropix  - Main Styles
   ======================================== */

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

:root {
    --bg-primary: #000000;
    --bg-header: rgba(0, 0, 0, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-green: #00ff88;
    --font-logo: 'Michroma', sans-serif;
    --font-main: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.hidden {
    transform: translateY(-100%);
}

.logo {
    font-family: var(--font-logo);
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    letter-spacing: 2px;
}

.logo::before,
.logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.logo::before {
    color: var(--accent-green);
    z-index: -1;
}

.logo::after {
    color: #00ffcc;
    z-index: -2;
}

.logo:hover::before {
    opacity: 1;
    animation: glitch-1 0.3s infinite;
}

.logo:hover::after {
    opacity: 1;
    animation: glitch-2 0.3s infinite;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-secondary);
}

.header-right {
    display: flex;
    align-items: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--text-primary);
}

.lang-divider {
    color: var(--text-secondary);
}

/* ========================================
   HERO BANNER
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 100px 50px;
    overflow: hidden;
    background-color: #0a0a0a;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70%;
    height: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.9;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Gallery - горизонтальная справа */
.hero-gallery {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.gallery-item {
    width: 180px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-item:hover {
    border-color: rgba(255,255,255,0.8);
    opacity: 1;
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Buttons */
.btn {
    position: relative;
    padding: 18px 40px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #000000;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
}

/* Slider Progress Bar */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.slider-pause {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

.slider-progress {
    width: 100px;
    height: 3px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background-color: var(--text-primary);
    width: 0%;
    transition: width 0.1s linear;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--text-primary);
}

.dot:hover {
    background-color: var(--text-primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 30px 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

/* ========================================
   SUPPORT SECTION
   ======================================== */

.support-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

.code-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.code-symbol {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: #00ff88;
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    text-shadow: 0 0 15px #00ff88, 0 0 30px #00ff88;
}

.s1 { animation: float1 20s ease-in-out infinite; font-size: 18px; }
.s2 { animation: float2 25s ease-in-out infinite; font-size: 24px; }
.s3 { animation: float3 22s ease-in-out infinite; font-size: 16px; }
.s4 { animation: float1 28s ease-in-out infinite; font-size: 22px; }
.s5 { animation: float2 18s ease-in-out infinite; font-size: 20px; }
.s6 { animation: float3 24s ease-in-out infinite; font-size: 26px; }
.s7 { animation: float1 30s ease-in-out infinite; font-size: 28px; }
.s8 { animation: float2 21s ease-in-out infinite; font-size: 18px; }
.s9 { animation: float3 26s ease-in-out infinite; font-size: 20px; }
.s10 { animation: float1 19s ease-in-out infinite; font-size: 24px; }
.s11 { animation: float2 27s ease-in-out infinite; font-size: 16px; }
.s12 { animation: float3 23s ease-in-out infinite; font-size: 22px; }
.s13 { animation: float1 29s ease-in-out infinite; font-size: 18px; }
.s14 { animation: float2 20s ease-in-out infinite; font-size: 26px; }
.s15 { animation: float3 25s ease-in-out infinite; font-size: 20px; }
.s16 { animation: float1 22s ease-in-out infinite; font-size: 24px; }
.s17 { animation: float2 28s ease-in-out infinite; font-size: 16px; }
.s18 { animation: float3 19s ease-in-out infinite; font-size: 22px; }
.s19 { animation: float1 24s ease-in-out infinite; font-size: 18px; }
.s20 { animation: float2 30s ease-in-out infinite; font-size: 20px; }
.s21 { animation: float3 21s ease-in-out infinite; font-size: 24px; }
.s22 { animation: float1 26s ease-in-out infinite; font-size: 16px; }
.s23 { animation: float2 18s ease-in-out infinite; font-size: 22px; }
.s24 { animation: float3 27s ease-in-out infinite; font-size: 28px; }
.s25 { animation: float1 23s ease-in-out infinite; font-size: 18px; }
.s26 { animation: float2 29s ease-in-out infinite; font-size: 20px; }
.s27 { animation: float3 20s ease-in-out infinite; font-size: 24px; }
.s28 { animation: float1 25s ease-in-out infinite; font-size: 16px; }
.s29 { animation: float2 22s ease-in-out infinite; font-size: 22px; }
.s30 { animation: float3 28s ease-in-out infinite; font-size: 20px; }

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(-30px, -10px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-25px, 25px); }
    50% { transform: translate(35px, -15px); }
    75% { transform: translate(15px, 35px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, 30px); }
    50% { transform: translate(-30px, -25px); }
    75% { transform: translate(25px, -20px); }
}

.support-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, #000000 70%);
    z-index: 2;
}

.support-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
}

.support-title {
    font-family: var(--font-logo);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.support-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.support-btn {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 50px;
}

/* ========================================
   MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background-color: #111111;
    border: 1px solid #222222;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
    pointer-events: auto;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-logo);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

/* ========================================
   FORM
   ======================================== */

.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.form-status.success {
    color: var(--accent-green);
}

.form-status.error {
    color: #ff4444;
}
/* ========================================
   PRODUCT SHOWCASE (StatX)
   ======================================== */

.product-showcase {
    position: relative;
    padding: 100px 50px;
    background-color: #050505; /* Чуть светлее черного */
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.showcase-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Визуал слева (картинки) */
.showcase-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
}

.stack-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

/* Эффект карт */
.img-back {
    top: -20px;
    left: -20px;
    transform: scale(0.95) rotate(-3deg);
    opacity: 0.6;
    z-index: 1;
}

.img-front {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(0deg);
}

/* Анимация при наведении */
.showcase-visual:hover .img-back {
    transform: translate(-30px, -20px) rotate(-6deg) scale(0.95);
    opacity: 0.8;
}

.showcase-visual:hover .img-front {
    transform: translate(10px, 10px) rotate(2deg);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

/* Текст справа */
.showcase-info {
    flex: 1;
    text-align: left;
}

.showcase-title {
    font-family: var(--font-logo);
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.showcase-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    margin-bottom: 25px;
}

.showcase-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Мобильная версия */
@media (max-width: 900px) {
    .showcase-content {
        flex-direction: column-reverse;
        padding: 40px 0;
    }
    .showcase-visual {
        width: 100%;
        height: 300px;
        margin-bottom: 40px;
    }
    .showcase-info {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}
/* ========================================
   GLASSMORPHISM PAGE (Deep Glass)
   ======================================== */

.glass-page {
    background-color: #050505;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* <--- ВОТ ЭТА КОМАНДА СТАВИТ ИХ В СТОЛБИК */
    align-items: center;
    justify-content: flex-start; /* Начинаем сверху */
    position: relative;
    /* overflow: hidden; <--- УДАЛЯЕМ ЭТО, чтобы можно было листать вниз */
    padding: 120px 20px 100px;
}

/* --- 1. ЖИВОЙ ФОН (AURORA) --- */
.aurora-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 100, 255, 0.05) 50%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulseAurora 10s ease-in-out infinite;
}

@keyframes pulseAurora {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* --- 2. СТЕКЛЯННАЯ КАРТОЧКА --- */
.glass-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-content {
    display: flex;
    flex-direction: column;
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.glass-title {
    font-family: var(--font-logo); /* Теперь Michroma */
    font-size: 56px;
    color: #fff;
    letter-spacing: -1px;
}

.glass-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.glass-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- СПИСОК ОСОБЕННОСТЕЙ (ОБНОВЛЕН) --- */
.glass-features-list {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Расстояние между строчками */
}

.feature-item {
    display: flex;
    align-items: center;
    color: #bbb; /* Чуть светлее */
    font-size: 14px;
    line-height: 1.4;
}

.f-check {
    color: var(--accent-green);
    margin-right: 12px;
    font-weight: bold;
    font-size: 14px;
}

/* Кнопка-свечение */
.glass-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-glow {
    background: linear-gradient(135deg, #fff 0%, #ddd 100%);
    color: #000;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.file-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #666;
    font-family: monospace;
}

/* Правая часть: Картинка */
.glass-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s;
}

.glass-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-visual:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Адаптив */
@media (max-width: 900px) {
    .glass-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }
    .glass-visual {
        order: -1;
    }
    .glass-title {
        font-size: 40px;
    }
}
/* =========================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   ========================================= */
@media (max-width: 768px) {

    /* ШАПКА */
    .header {
        position: fixed !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
        padding: 15px 20px !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        font-size: 18px !important;
        order: 1;
    }

    .header-right {
        order: 2;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px !important;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link {
        font-size: 12px !important;
    }

    .lang-btn {
        font-size: 12px !important;
    }

    /* ROCKSTAR STYLE - HERO НА ВЕСЬ ЭКРАН */
    .hero {
        height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    .hero-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        opacity: 0.85 !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 100%) !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 10 !important;
        padding: 0 25px 20px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 36px !important;
        letter-spacing: 2px !important;
        margin-bottom: 8px !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 25px !important;
        opacity: 0.8;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn {
        width: 100% !important;
        padding: 16px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        text-align: center;
    }

    .btn-primary {
        background: rgba(255,255,255,0.95) !important;
    }

    .btn-secondary {
        background: rgba(255,255,255,0.1) !important;
        border: 1px solid rgba(255,255,255,0.3) !important;
    }

    /* ГАЛЕРЕЯ - СКРЫВАЕМ НА МОБИЛЕ */
    .hero-gallery {
        display: none !important;
    }

    /* ПРОГРЕСС-БАР КАК У ROCKSTAR (сегменты внизу) */
    .hero-slider-dots {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        padding: 15px 25px 40px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .slider-progress {
        display: none !important;
    }

    .slider-pause {
        order: 2 !important;
        font-size: 14px !important;
        margin-left: 15px !important;
    }

    .dot {
        flex: 1 !important;
        max-width: 60px !important;
        height: 3px !important;
        width: auto !important;
        border-radius: 2px !important;
        background: rgba(255,255,255,0.3) !important;
    }

    .dot.active {
        background: rgba(255,255,255,0.9) !important;
    }

    /* PRODUCT SHOWCASE (StatX) */
    .product-showcase {
        padding: 60px 20px !important;
    }

    .showcase-content {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .showcase-visual {
        height: 200px !important;
        order: 1;
    }

    .visual-stack {
        max-width: 90% !important;
        height: 200px !important;
    }

    .showcase-info {
        text-align: center !important;
        order: 2;
    }

    .showcase-title {
        font-size: 32px !important;
    }

    .showcase-line {
        margin: 0 auto 20px !important;
    }

    .showcase-desc {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }

    /* SUPPORT СЕКЦИЯ */
    .support-section {
        min-height: 400px !important;
        padding: 60px 20px !important;
    }

    .support-title {
        font-size: 28px !important;
    }

    .support-desc {
        font-size: 14px !important;
    }

    .support-btn {
        padding: 15px 30px !important;
        font-size: 14px !important;
    }

    /* FOOTER */
    .footer {
        padding: 20px !important;
    }

    .footer-content {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
    }

    .footer-left {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .footer-left span[style] {
        display: none !important;
    }

    /* GLASS PAGE (Страница программ) */
    .glass-page {
        padding: 100px 15px 60px !important;
    }

    .glass-card {
        grid-template-columns: 1fr !important;
        padding: 25px !important;
        gap: 30px !important;
    }

    .glass-title {
        font-size: 28px !important;
    }

    .glass-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .glass-visual {
        order: -1;
    }

    .glass-actions {
        flex-direction: column !important;
        width: 100%;
    }

    .btn-glow {
        width: 100% !important;
        justify-content: center;
    }

    /* MODAL */
    .modal {
        padding: 25px !important;
        width: 95% !important;
    }

    .modal-title {
        font-size: 20px !important;
    }

    /* LEGAL PAGES */
    .legal-layout {
        margin-top: 100px !important;
        padding: 15px !important;
    }

    .legal-main-title {
        font-size: 24px !important;
    }

    .legal-section-title {
        font-size: 18px !important;
    }

    .legal-paragraph {
        font-size: 14px !important;
    }
}