/* ====================== ОСНОВА ====================== */
        :root {
            --background: linear-gradient(to bottom right, #1a1a1d, #2c2c2e);
            --text-color: #e0e0e0;
            --header-bg: #252529;
            --header-text: #d1d5db;
            --card-bg: #252529;
            --card-hover: #2f2f33;
            --accent: #60a5fa;
            --accent-dark: #3b82f6;
            --input-bg: #2c2c2e;
            --input-border: #3b3b3f;
            --input-text: #e0e0e0;
            --btn-primary: #60a5fa;
            --btn-primary-hover: #3b82f6;
            --btn-secondary: #4b5563;
            --btn-secondary-hover: #6b7280;
            --shadow: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-hover: 0 8px 24px rgba(0,0,0,0.45);
        }

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

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--background);
            color: var(--text-color);
            min-height: 100vh;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        header {
            background: var(--header-bg);
            padding: 16px 24px;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1100;
            border-bottom: 1px solid rgba(96, 165, 250, 0.1);
        }

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

        .logo {
            font-size: 1.65rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: #fff;
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--header-text);
            padding: 8px;
        }

        /* ====================== БОКОВОЕ МЕНЮ ====================== */
        .sidebar {
            position: fixed;
            left: 0;
            top: 80px;
            width: 280px;
            height: calc(100vh - 80px);
            background: var(--header-bg);
            padding: 40px 24px;
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
            overflow-y: auto;
        }

        .sidebar a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: var(--header-text);
            text-decoration: none;
            font-weight: 500;
            border-radius: 12px;
            margin-bottom: 8px;
            transition: all 0.2s ease;
        }

        .sidebar a:hover,
        .sidebar a.active {
            background: var(--accent);
            color: white;
            transform: translateX(6px);
        }

        .sidebar a i {
            font-size: 1.3rem;
            width: 24px;
        }

        /* ====================== ОСНОВНОЙ КОНТЕНТ ====================== */
        main {
            margin-left: 280px;
            max-width: 1200px;
            padding: 40px 40px 80px;
        }

        section {
            margin-bottom: 100px;
            scroll-margin-top: 100px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent);
        }

        .section-header .icon {
            font-size: 3rem;
            color: var(--accent);
        }

        .section-description {
            font-size: 1.15rem;
            max-width: 800px;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        /* Карточка с описанием */
        .feature-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 32px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }

        /* Галерея */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
        }

        .gallery a {
            display: block;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .gallery a:hover {
            transform: scale(1.04);
            box-shadow: var(--shadow-hover);
        }

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Большое изображение-обложка */
        .hero-image {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
            cursor: pointer;
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--btn-primary);
            color: white;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn:hover {
            background: var(--btn-primary-hover);
            transform: translateY(-2px);
        }

/* ====================== АДАПТИВ ====================== */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        top: 0;
        height: 100vh;
        width: 300px;
        padding-top: 115px; 
        box-shadow: 4px 0 20px rgba(0,0,0,0.6);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    main {
        margin-left: 0;
        padding: 24px 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 2rem;
            }
        }

        .card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow);
            transition: all 0.25s ease;
        }
        
        .card:hover {
            box-shadow: var(--shadow-hover);
        }
		
		/* ====================== ПРЕМИУМ БЛОК ОПИСАНИЕ + ЦЕНА ====================== */
.premium-description {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.description-content {
    flex: 1;
    min-width: 300px;
}

.description-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1.2;
}

.description-text {
    font-size: 1.28rem;
    line-height: 1.55;
    opacity: 0.95;
    color: var(--text-color);
}

.price-block {
    flex: 0 0 290px;
    text-align: center;
}

.price-tag {
    background: rgba(96, 165, 250, 0.08);
    border: 3px solid var(--accent);
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.price {
    display: block;
    font-size: 45px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.price-subtitle {
    font-size: 1.18rem;
    color: var(--header-text);
    font-weight: 600;
    display: block;
}

/* Адаптив */
@media (max-width: 768px) {
    .premium-description {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .price-block {
		flex: 0 0 160px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}

.buy-block {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 52px 40px;
    box-shadow: var(--shadow);
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(96, 165, 250, 0.2);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.buy-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.buy-subtitle {
    font-size: 1.22rem;
    opacity: 0.88;
    margin-bottom: 38px;
    color: #ccc;
}

.buy-buttons {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-buttons .btn {
    font-size: 1.48rem;
    padding: 19px 46px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.buy-buttons .btn:hover {
    box-shadow: var(--shadow-hover);
}

.buy-buttons .btn i {
    font-size: 2rem;
}

/* VK кнопка */
.vk-btn {
    background: #0077FF;
    color: #fff;
}
.vk-btn:hover {
    background: #005ecc;
}

/* Telegram кнопка */
.tg-btn {
    background: #229ED9;
    color: #fff;
}
.tg-btn:hover {
    background: #1e8ac4;
}

/* Адаптив */
@media (max-width: 768px) {
    .buy-block {
        padding: 40px 24px;
        margin: 40px 0;
    }
    .buy-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .buy-buttons .btn {
        min-width: auto;
    }
}