:root {
            --bg-deep: #060609;
            --bg-panel: #0D0D14;
            --bg-side: #0A0A10;
            --bg-element: #08080C;
            --bg-primary: #0a0a0a;
            --border-subtle: #1C1C26;
            --text-primary: #FFFFFF;
            --text-muted: #7B7FA3;
            --accent: #CE1E1E;
            --accent-glow: rgba(206,30,30,0.6);
            --gradient-primary: linear-gradient(135deg, #CE1E1E, #ff4444);
            --gold: #E8B830;
            --green: #2ECC71;
            --blue: #5B7FFF;
            --purple: #9B59B6;
            --orange: #F39C12;
            --red: #E74C3C;
            --cyan: #00D4AA;
        }
        html {
    scroll-behavior: smooth;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        body {
            background: var(--bg-deep);
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-element); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

        /* ПРЕЛОАДЕР */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #060609;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-ring {
            width: 60px;
            height: 60px;
            margin: 0 auto 30px;
            position: relative;
        }

        .loader-ring::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top: 3px solid #CE1E1E;
            border-right: 3px solid #CE1E1E;
            border-radius: 50%;
            animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
        }

        .loader-ring::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            width: calc(100% - 16px);
            height: calc(100% - 16px);
            border: 2px solid transparent;
            border-bottom: 2px solid rgba(206, 30, 30, 0.4);
            border-left: 2px solid rgba(206, 30, 30, 0.4);
            border-radius: 50%;
            animation: spin 1.8s linear infinite reverse;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader-logo-text {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 6px;
            color: #fff;
            animation: textPulse 2s ease-in-out infinite;
        }

        @keyframes textPulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        /* CANVAS И ОГОНЁК */
        #trail-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9998;
        }

        #firefly {
            position: fixed;
            width: 1px; height: 1px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #dc143c, #4a0f0f);
            box-shadow: 0 0 20px 8px rgba(180,30,30,0.8), 0 0 40px 15px rgba(80,80,80,0.5), 0 0 60px 25px rgba(60,20,20,0.3);
            pointer-events: none;
            transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
            z-index: 9999;
            animation: flicker 0.12s infinite alternate;
        }

        @keyframes flicker {
            0% { opacity: 0.85; transform: translate(-50%, -50%) scale(0.95); }
            50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.05); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
        }

        #firefly.on-link {
            width: 1px; height: 1px;
            background: radial-gradient(circle at 30% 30%, #ff4444, #8b0000);
            box-shadow: 0 0 30px 15px rgba(200,30,30,0.9), 0 0 60px 25px rgba(100,100,100,0.6), 0 0 80px 35px rgba(60,15,15,0.5);
            animation: flicker-intense 0.1s infinite alternate;
        }

        @keyframes flicker-intense {
            0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.9); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
        }

        #particles-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            will-change: transform;
        }

        /* КОНТЕЙНЕР */
        .conteiner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* HEADER */
        .header {
            width: 100%;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: var(--bg-side);
            border-bottom: 1px solid var(--border-subtle);
            animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            animation-delay: 0.1s;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .header__inner {
            width: 100%;
            max-width: 1400px;
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 60px;
            margin: 0 auto;
        }

        .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

        .logo h2 {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--text-primary);
        }

        .nav_catalog { display: flex; align-items: center; gap: 24px; }

        .nav_categories {
            color: var(--text-muted);
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .nav_categories::after {
            content: '';
            position: absolute;
            width: 0; height: 2px;
            bottom: 0; left: 0;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav_categories:hover { color: var(--text-primary); }
        .nav_categories:hover::after { width: 100%; }

        /* Кнопка переключения языка */
        .lang-trigger-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #08080C;
            border: 1px solid #1C1C26;
            border-radius: 8px;
            padding: 6px 10px;
            cursor: pointer;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            margin-left: 15px;
            transition: all 0.3s;
        }
        .lang-trigger-btn:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.3);
        }
        .lang-trigger-btn img {
            width: 22px;
            height: 16px;
            border-radius: 2px;
            object-fit: cover;
        }
        
        /* Сетка языков в модалке */
        .lang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 10px 0;
        }
        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 10px;
            cursor: pointer;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.2s;
            color: #7B7FA3;
            font-size: 14px;
            font-weight: 600;
        }
        .lang-option:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border-color: rgba(255,255,255,0.15);
        }
        .lang-option.active {
            background: rgba(206,30,30,0.15);
            color: #fff;
            border-color: rgba(206,30,30,0.3);
        }
        .lang-option img {
            width: 24px;
            height: 18px;
            border-radius: 2px;
            object-fit: cover;
        }
        .lang-option .check-icon {
            margin-left: auto;
            color: #CE1E1E;
            opacity: 0;
            font-size: 14px;
        }
        .lang-option.active .check-icon {
            opacity: 1;
        }

        /* INTRO */
        .intro { padding: 60px 0; position: relative; z-index: 0; }

        .intro__inner { text-align: center; }

        .intro__inner h1 {
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            animation-delay: 0.3s;
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .gradient-text {
            background: linear-gradient(
                90deg,
                #e0e7ff 0%,
                #fecdd3 20%,
                #be123c 40%,
                #f43f5e 60%,
                #be123c 80%,
                #e0e7ff 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 48px;
            font-weight: 800;
            display: inline-block;
            margin-bottom: -10px;
            position: relative;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero-subtitle{
            font-size: 1rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 32px;
            margin-top: 20px;
            margin-bottom: 50px;
        }

        /* STATS */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            animation-delay: 0.7s;
        }

        .stat-item {
            text-align: center;
            background: var(--bg-side);
            border: 1px solid var(--border-subtle);
            padding: 24px 28px;
            border-radius: 16px;
            min-width: 150px;
            transition: all 0.3s;
            animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
            cursor: default;
        }

        .stat-item:nth-child(1) { animation-delay: 0.8s; }
        .stat-item:nth-child(2) { animation-delay: 0.95s; }
        .stat-item:nth-child(3) { animation-delay: 1.1s; }
        .stat-item:nth-child(4) { animation-delay: 1.25s; }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .stat-item:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(206, 30, 30, 0.15);
        }

        .stat-value {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #9e9fa0, #be123c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* SOCIAL SECTION */
        .social-section {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            margin: 0 0 60px;
            background: var(--bg-side);
            border: 1px solid var(--border-subtle);
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            animation-delay: 1.4s;
            transition: box-shadow 0.4s ease, border-color 0.4s ease;
        }

        .social-section:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .social-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
        .social-section p { color: var(--text-muted); margin-bottom: 30px; font-size: 1rem; }

        .social-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

        .social-button-card {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            width: 160px;
            padding: 24px 16px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            text-decoration: none;
            color: var(--text-primary);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        border-color 0.3s ease,
                        box-shadow 0.4s ease;
            animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .social-button-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.15), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
            pointer-events: none;
        }

        .social-button-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.15), 
                transparent);
            transform: skewX(-20deg);
            transition: left 0.7s cubic-bezier(0.65, 0, 0.35, 1);
            pointer-events: none;
            z-index: 2;
        }

        .social-button-card:first-of-type { animation-delay: 1.6s; }
        .social-button-card:last-of-type { animation-delay: 1.75s; }

        .social-button-card:hover {
            transform: translateY(-6px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.5), 
                        0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .social-button-card:hover::after {
            opacity: 1;
        }

        .social-button-card:hover::before {
            left: 150%;
        }

        .platform-icon-wrapper {
            width: 55px; height: 55px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        background 0.3s ease,
                        box-shadow 0.3s ease;
        }

        .social-button-card:hover .platform-icon-wrapper {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
            animation: pulseRing 0.8s ease-out forwards;
        }

        @keyframes pulseRing {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .platform-name { 
            font-weight: 700; 
            font-size: 18px; 
            transition: transform 0.3s ease;
        }

        .social-button-card:hover .platform-name {
            transform: translateY(-1px);
        }

        .social-action-btn {
            padding: 5px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.7rem;
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(5px);
            transition: background 0.3s ease, 
                        box-shadow 0.3s ease, 
                        color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-button-card:hover .social-action-btn {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }

        /* BOT CARD */
        .bots-showcase { margin-bottom: 60px; }

        .section-header { text-align: center; margin-bottom: 30px; }
        .section-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
        .section-header p { color: var(--text-muted); }

        .bot-card-compact {
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 22px;
            overflow: hidden;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 500px;
            margin: 0 auto;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
            isolation: isolate;
        }

        .bot-card-compact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
            z-index: 1;
        }

        .bot-card-compact:hover {
            transform: translateY(-5px);
            backdrop-filter: blur(25px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset, 
                        0 25px 30px -10px rgba(0, 0, 0, 0.6);
        }

        .bot-card-compact:hover::after {
            opacity: 1;
        }

        .compact-header {
            position: relative;
            z-index: 2;
        }

        .compact-footer {
            padding: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .compact-img { 
            width: 75px; 
            height: 75px; 
            margin-bottom: 16px;
            transition: filter 0.4s ease;
        }

        .bot-card-compact:hover .compact-img {
            animation: float-icon 2s ease-in-out infinite;
        }

        @keyframes float-icon {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        .compact-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            background: linear-gradient(
                90deg,
                #e0e7ff 0%,
                #fecdd3 20%,
                #be123c 40%,
                #f43f5e 60%,
                #be123c 80%,
                #e0e7ff 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmer 3s linear infinite;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .bot-card-compact:hover .compact-name {
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .compact-desc { 
            color: var(--text-muted); 
            font-size: 14px; 
            margin-bottom: 16px;
            transition: color 0.3s ease;
        }

        .bot-card-compact:hover .compact-desc {
            color: #cbd5e1;
        }

        .view-details {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: #fff;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            display: inline-block;
            backdrop-filter: blur(5px);
        }

        .bot-card-compact:hover .view-details {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 8px 30px;
            letter-spacing: 0.5px;
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
                        0 0 20px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .view-details:hover {
            background: rgba(255, 255, 255, 0.25) !important;
            transform: scale(1.05) !important;
        }

        /* REVIEWS */
        .reviews-container {
            background: var(--bg-side);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px 30px;
            margin-bottom: 60px;
            text-align: center;
        }

        .reviews-container .section-title { margin-bottom: 8px; }
        .reviews-container > p { color: var(--text-muted); margin-bottom: 30px; }

        .reviews-carousel { position: relative; margin-top: 25px; width: 100%; overflow: visible; }

        .carousel-clip {
            overflow: hidden;
            padding: 20px 0;
            margin: -20px 0;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-subtle);
            color: white;
            width: 44px; height: 44px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .carousel-arrow:hover {
            background: rgba(30, 41, 59, 0.9);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-arrow.prev { left: -22px; }
        .carousel-arrow.next { right: -22px; }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 24px;
            will-change: transform;
            padding: 10px 0;
        }

        .carousel-item { min-width: 320px; flex: 0 0 320px; padding: 10px 0; }

        .review-item {
            background: var(--bg-element);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: reviewGlow 3s ease-in-out infinite;
        }

        .review-item:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        @keyframes reviewGlow {
            0%, 100% {
                box-shadow: 0 0 0 rgba(238, 94, 94, 0);
            }
            50% {
                box-shadow: 0 0 30px rgba(238, 94, 94, 0.5);
            }
        }

        .review-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .carousel-dot {
            width: 10px; height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }

        .carousel-dot:hover { background: rgba(255, 255, 255, 0.5); transform: scale(1.2); }
        .carousel-dot.active { width: 24px; border-radius: 12px; background: var(--accent); }

        /* CTA */
        .cta-section {
            text-align: center;
            padding: 50px 30px;
            background: var(--bg-side);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            margin-bottom: 60px;
        }

        .cta-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
        .cta-section p { color: var(--text-muted); margin-bottom: 24px; }

        .cta-button {
            background: var(--accent);
            border: none;
            padding: 14px 36px;
            border-radius: 30px;
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: 0 4px 15px rgba(206, 30, 30, 0.3);
        }

        .cta-button:hover { background: #E02828; transform: translateY(-2px); }

        /* FOOTER */
        .footer {
            text-align: center;
            padding: 30px;
            border-top: 1px solid var(--border-subtle);
            color: var(--text-muted);
            font-size: 13px;
        }

        .security-badge {
            display: inline-flex;
            gap: 8px;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.3);
            padding: 8px 20px;
            border-radius: 30px;
            margin-top: 15px;
            color: var(--green);
            font-size: 13px;
        }

        /* MODAL */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(18, 22, 35, 0.6);
            backdrop-filter: blur(7px);
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.25s ease, visibility 0.25s;
            z-index: 1000;
            padding: 16px;
        }

        .modal-overlay.active { visibility: visible; opacity: 1; }

        .modal-card {
            max-width: 1000px;
            width: 92%;
            margin: 40px auto;
            background: rgba(37, 37, 37, 0.829);
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 30px;
            position: relative;
            animation: modalFadeIn 0.4s ease;
            max-height: 85vh;
            overflow-y: auto;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 16px; right: 16px;
            background: var(--bg-element);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            width: 36px; height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            border-color: var(--accent);
            background: rgba(206, 30, 30, 0.1);
        }

        .modal-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
            padding-right: 40px;
        }

        .modal-header h2 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.03em;
            background: linear-gradient(
                90deg,
                #e0e7ff 0%,
                #fecdd3 20%,
                #be123c 40%,
                #f43f5e 60%,
                #be123c 80%,
                #e0e7ff 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmer 3s linear infinite;
        }

        .modal-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-bottom: 24px;
        }

        .feature-tag {
            background: var(--bg-element);
            border: 1px solid var(--border-subtle);
            padding: 10px 14px;
            border-radius: 12px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-left: 2px solid var(--accent);
        }

        .pricing-grid {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .pricing-card {
            background: var(--bg-element);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            flex: 1;
            min-width: 140px;
            transition: all 0.3s;
        }

        .pricing-card:hover { border-color: var(--accent); transform: translateY(-3px); }

        .price-value { font-size: 28px; font-weight: 800; color: #fff; }
        .price-period {
            font-size: 12px;
            color: #fff;
            text-transform: uppercase;
            margin: 4px 0 12px;
            font-weight: 600
        }

        .btn-buy {
            background: var(--accent);
            border: none;
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            width: 100%;
            transition: all 0.25s;
        }

        .btn-buy:hover { background: #E02828; transform: translateY(-2px); }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
            gap: 16px;
        }

        .modal-btn {
            padding: 12px 28px;
            border-radius: 48px;
            font-weight: 600;
            border: none;
            background: #eef1fc;
            color: #1f293d;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .modal-btn:hover {
            background: #dce2fc;
        }

        /* IMAGE MODAL */
        .image-modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .image-modal.active { display: flex; }
        .image-modal img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 28px; }

        /* Стили для нового блока дисклеймера */
        .disclaimer-section {
            background: var(--bg-side);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px 30px;
            margin: 60px 0;
            text-align: left;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .disclaimer-section h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
            color: var(--text-primary);
        }

        .disclaimer-section p {
            margin-bottom: 16px;
            font-weight: 500;
            color: #94a3b8;
        }

        .disclaimer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .disclaimer-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            padding: 10px 24px;
            border: 1px solid var(--accent);
            border-radius: 30px;
            transition: all 0.3s;
            font-size: 14px;
            display: inline-block;
        }

        .disclaimer-link:hover {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 15px rgba(206, 30, 30, 0.3);
            transform: translateY(-2px);
        }

        /* АДАПТИВ */
        @media (max-width: 768px) {
            .header__inner {
                flex-direction: column;
                height: auto;
                padding: 16px;
                gap: 12px;
            }

            .nav_catalog { flex-wrap: wrap; justify-content: center; gap: 12px; }

            .intro__inner h1 { font-size: 32px; }
            .gradient-text { font-size: 32px; }

            .hero-stats { gap: 12px; }
            .stat-item { min-width: 120px; padding: 16px; }
            .stat-value { font-size: 24px; }

            .carousel-item { min-width: 260px; flex: 0 0 260px; }
            .carousel-arrow.prev { left: -10px; }
            .carousel-arrow.next { right: -10px; }

            .feature-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

            #profileModal {
                position: fixed;
                top: 50%;
                left: 50%;
                right: auto;
                transform: translate(-50%, -50%) scale(0.9);
                width: 90%;
                max-width: 320px;
            }

            #profileModal.show {
                transform: translate(-50%, -50%) scale(1);
            }
            
            /* Мобильная версия дропдауна */
            .lang-dropdown-list {
                position: fixed !important;
                z-index: 999999 !important;
            }
        }
     /* Бургер-меню */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Модальное окно меню */
.menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-content {
    width: 280px;
    height: 100%;
    background: var(--bg-side);
    border-left: 1px solid var(--border-subtle);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.menu-modal.active .menu-modal-content {
    transform: translateX(0);
}

.menu-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-element);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1;
}

.menu-modal-close:hover {
    border-color: var(--accent);
    background: rgba(206, 30, 30, 0.1);
}

.menu-modal .nav_categories {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.menu-modal .nav_categories:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.menu-modal .lang-trigger-btn {
    margin: 8px 0 0 0;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 10px;
}

/* Модалка языков - ПОВЕРХ ВСЕГО */
#langModal {
    z-index: 10003 !important;
}

#langModal .modal-card {
    max-width: 420px;
}

#langModal .lang-option {
    font-size: 13px;
    padding: 10px 14px;
}

@media (max-width: 778px) {
    .burger-btn {
        display: flex;
    }

    .header__inner {
        flex-direction: row;
        height: 60px;
        padding: 0 16px;
    }
    
    /* Скрываем обычное меню */
    .nav_catalog {
        display: none;
    }
    
    /* Уменьшаем текст в модалке языков на мобилках */
    #langModal .lang-option {
        font-size: 12px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    #langModal .lang-option img {
        width: 20px;
        height: 15px;
    }
}