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

        :root {
            --black: #0a0a0a;
            --dark-blue: #0f172a;
            --medium-blue: #1e293b;
            --accent-blue: #3b82f6;
            --light-blue: #60a5fa;
            --text-gray: #e2e8f0;
            --text-secondary: #94a3b8;
            --success: #0c6ec3;
            --warning: #5183c4;
            --danger: #3538ef;
        }

        html {
            background-color: #0a0a0a;
        }

        body {
            font-family: 'MyFont';
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
            color: var(--text-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

header {
    padding: 30px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--light-blue);
}

.logo::before {
    content: "404";
    background: var(--accent-blue);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-active {
    color: var(--accent-blue)!important;
    border-bottom: var(--accent-blue) 3px solid;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.3s ease;
        padding: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .logo::before {
        font-size: 14px;
        padding: 3px 6px;
    }
    
    header {
        padding: 20px 0;
    }
}

        .confidential-banner {
            background: linear-gradient(90deg, var(--danger), var(--warning));
            padding: 15px;
            text-align: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            position: fixed;
            top: 105px;
            width: 100%;
            z-index: 999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .confidentioal-head {
            font-size: 16px;
        }

        .hero {
            padding: 260px 0 60px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
        }

        h1 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 30px;
            color: var(--text-gray);
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .subtitle {
            font-size: clamp(18px, 3vw, 24px);
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .attention-box {
            background: rgba(68, 142, 239, 0.1);
            border: 2px solid var(--danger);
            border-radius: 8px;
            padding: 20px;
            margin: 30px auto;
            max-width: 800px;
            color: var(--text-gray);
        }

        .video-section {
            padding: 60px 0;
            background: rgba(30, 41, 59, 0.3);
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto 40px;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(59, 130, 246, 0.3);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--medium-blue), var(--dark-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .play-button::after {
            content: "";
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAECklEQVR4nO2Y3VNUZRzHz0U3ZVN3zfQH9P4y09RVM1100XSXmkqJpCCVKCoCi4AkVmpvY7ViCAsuyvJikCYSL5E2YpiFg+GMyTCFE5GJEux5zu6e3bN79plPs3XDVA7innPYZvYzcy7PzOf7e575PfP7KUqaNGnmBXBvDLbGwBORuCOQMwG3K/8HgCVxGIxDXzROuw5tupQ9wbjsDpk8r6QywBNxGIpBkyGpNmBfSFIVkLiFSb2QdM+YvO2Hu5VURII3Bh3/kpd87Jd8+IfJR9MS33WTZn+MZ5RUw4QzhqT+v+SnTPZMST64avL+pIn7iknzRCxeMg13KamCEed8eA75qybvTpi8M2Gyezwsq8ej0j0W4yklFYhIzt2k/K5fouy8bPLWmMnun6LsHY3y6iQsWtAA4bj8bj7yP0d5czRG5YhB5UiUXZfCvDEc5ZEFCxCScuAW5LdfMqi4aLBtOEzFDwbbh02Wnp1YgHdDi9N/q/IXDMrOG5QOGZScC1MyGGH9Nwb3Ox3gpAXyrkGDojNhir41KO43eOGsU6/4TIw+S+R1CgcMCvp1Np/W2dIfYcMJJ05jOk63lfKndDae1Mn/MsjGrwyKTxos6fydO2wLMBXnuNXyJ3TW9+rk9eqs69LZ3BNkU5fBQ7YEuBaXR+2Q79F5/YsQr3WFyO3UWdep4Tqms6wTi0/jSlS22ynfEWLtsRDZ7RrZbRqb2zUKjgR40LIAv8Vki93yn2ms+VRjdatGVrNKbougtDnIs5YE+DUifU7JtwhWNQlWHvSz6qCg7IDGA0kHGI9Jr6PygpcPCTIaNNbWqWQnHeCygcdp+QOCFXWCDI+gPOkAYyafOC3vUVnmEazYL9iWdIDRKG6n5WtVXqxRya4KkJt0gJEIexZAfvk+QUWVFe30YoT3nJSv9pOVkHdf4znFCi5E2OmEfI3K8lpB/l5BqXuSRy2R/yuAQaXtldfIqhGUV2tk7fiROxUrGQpTblurVFnuEWyoUdnq9vO4YgffJyYpOyrv5xWPn/L9QTJ3XLe46rMZNCi2Ut4ryKj1k1+rUuIJ8phiNwNhXJbJa6yuF5R5BJk+p9YtAwauZOUbBS95BfkHNFwevwNVn83pMK5k5Bs01ngFZXWClY5V/Z8BbkX+0N8B8htUXL4ZC/v6fPk6TMl85b0qOQ2CUu/MAlV9NidClNysfLMg86BgU4NGUaNdQ/p86dPJ79bJm0vep5HjC1Ca6DaWD+bJ0Btg8fHE2uMG8omvyc+mBpUi7zQPK6nG0SD3dOkUJlYfNxrAfYkBxM7lVLIcMbivQ6fgc42CNkFeW4C81iCFrSpbGgMpctfnwjfJosMaT7frLD0cYHGL4MlTp7htzh/TpEmj2MGf8Jx4Ees6V1wAAAAASUVORK5CYII=');
            width: 49px;
            height: 49px;
            color: white;
            font-size: 30px;
            margin-left: 5px;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
            background: var(--light-blue);
        }
           .video-section {
            margin-bottom: 60px;
            position: relative;
        }

        .video-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(59, 130, 246, 0.3);
            animation: fadeIn 1s ease 0.6s both;
        }

        .video-wrapper::before {
            content: "";
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            background: var(--black);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--medium-blue), var(--dark-blue));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
            margin-bottom: 20px;
            position: relative;
        }

        .play-button::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            border: 2px solid var(--accent-blue);
            border-radius: 50%;
            animation: pulse-ring 1.5s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }



        .video-placeholder:hover .play-button {
            transform: scale(1.1);
            background: var(--light-blue);
            box-shadow: 0 15px 50px rgba(96, 165, 250, 0.5);
        }

        .play-text {
            color: var(--text-gray);
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-radius: 12px;
}

.play-button,
.play-text {
    position: relative;
    z-index: 2;
}

.video-placeholder:hover .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(59, 130, 246, 0.5) 100%
    );
}

        .video-info {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            padding: 0 10px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .video-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            padding: 10px 20px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .video-stat-icon {
            color: var(--accent-blue);
            font-size: 18px;
        }

        .timer-section {
            text-align: center;
            padding: 40px 0;
            background: rgba(15, 23, 42, 0.8);
            border-top: 2px solid var(--warning);
            border-bottom: 2px solid var(--warning);
        }

        .timer-title {
            font-size: 20px;
            color: var(--warning);
            margin-bottom: 15px;
        }

        .timer {
            font-size: 48px;
            color: var(--danger);
            font-weight: bold;
            font-family: 'MyFont';
            color: #ffffff;
           
        }

        .price-section {
            padding: 60px 0;
            text-align: center;
        }

        .price-box {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
            border: 3px solid var(--warning);
            border-radius: 12px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .price-box::before {
  content: "СПЕЦИАЛЬНАЯ ЦЕНА";
  position: absolute;
  right: -55px;
  background: #357cef57;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 13px;
  font-weight: bold;
        }

        .old-price {
            font-size: 36px;
            color: var(--text-secondary);
            text-decoration: line-through;
            opacity: 0.7;
        }

        .new-price {
            font-size: 64px;
            color: var(--success);
            font-weight: bold;
            margin: 20px 0;
        }

        .btn-buy {
            display: inline-block;
            padding: 25px 60px;
            background: linear-gradient(135deg, var(--success), var(--accent-blue));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px rgba(16, 47, 185, 0.3);
            margin-top: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .btn-buy:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 92, 185, 0.5);
        }

        .what-you-get {
            padding: 80px 0;
            background: rgba(30, 41, 59, 0.2);
        }

        .section-title {
            text-align: center;
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 60px;
            color: var(--text-gray);
        }

        .product-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .product-item {
            background: rgba(15, 23, 42, 0.8);
            padding: 30px;
            margin-bottom: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--accent-blue);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .product-item:hover {
            transform: translateX(10px);
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .product-image {
            background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            flex-shrink: 0;
        }

        .product-content h3 {
            font-size: 20px;
            color: var(--light-blue);
            margin-bottom: 10px;
        }

        .product-content p {
            color: var(--text-secondary);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .product-price {
            color: var(--warning);
            font-weight: bold;
        }

        .bonus-label {
            display: inline-block;
            background: var(--success);
            color: var(--black);
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-right: 10px;
        }

        .results {
            padding: 80px 0;
            text-align: center;
        }

        .results-box {
            background: rgba(16, 98, 185, 0.1);
            border: 2px solid var(--success);
            border-radius: 12px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .results-title {
            font-size: 32px;
            color: var(--success);
            margin-bottom: 30px;
        }

        .results-list {
            text-align: left;
            list-style: none;
            margin-top: 30px;
        }

        .results-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
            color: var(--text-gray);
        }

        .results-list li::before {
            content: "";
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAACLUlEQVR4nGNgGAWDEvAv+d/IN/v7e/4pb97y9jxczlB/i4+qFvDN+faBf96Pb/xzv37gnfbmLU/LpUfclUdbGEL/M1PFAv6pb96ADOef/fE1/6x3z/imv3rI233rIXfBjnMcORviKLaAt/dRKW/X3df8016/ABnOP/X5Hf4pj6/zTX54kbf26FWOxEVbOZLm2FFkiVDHRRmu8iOreWqOP+Gf+OAGyHD+iXfP8PXfPM7Xe+UQT/n2E5xJCxezZa7TpMgituI9Wpw565dzl+65ztcHMvzaIb6eS3t5O8/v4Gs/vZmrZNNerszFk7kK1kpSZBF7/GwHjoT5G3kqd58AG95xZhNv+8m1vK1HV/A27FvOXbJ2E2/xGl8GSgFP6vxg7vRlm3nq9m4DGc7XfHAxT+O+ebwNu2bylK9bSrkFKYsDubJXbOCp2bUJ2XDeup2TeSo2LSbbYI7EhTZcaYtW8lTt3IXuct7abTN4KzYu563d4k2ywezJi1Q4UhZO4y7ZfJC39cQ6FMPrds7mrVi/mrdifbt4904xkgzmztsozpEwp58rb+0xvtaTW2ARCjH8wDzeik2recrWTuCrWKVCsqs5EudGcmWvPs7beno3cmoBGc5dsWUdd9HqOXxVG0wYyAVcWcsOYSTF6p1reQpWreAtXkV6OKMDzowVB+CG1+9bx12weiNX3opEhvr/TAzUABypiyK4c1dt4S5Ys5Erb1kZQ+8xTqoYPAoGBAAAWD0MxUzLK7oAAAAASUVORK5CYII=');
            display: inline-block;
            width: 25px; 
            height: 25px;
            margin-right: 15px;
            font-size: 20px;
        }

        .summary {
            padding: 60px 0;
            background: rgba(30, 41, 59, 0.3);
        }

        .summary-box {
            background: rgba(15, 23, 42, 0.9);
            border: 2px solid var(--accent-blue);
            border-radius: 12px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .summary-list {
            list-style: none;
            margin: 30px 0;
        }

        .summary-list li {
            padding: 10px 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
        }

        .summary-list li::before {
            content: "";
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAACh0lEQVR4nGNgGNbAfv99DqXTHyIVDz3tkt9zf5bsjluLZLdenyO98UKXxLJjhRJz9tox1O9nIctw1Yt/IpVPf1yuePrDPMWzXyYqnPrUJ3/yQ7fciXcdMkdft0kfedkssfNeq8jyI1WiS/YbEG9y/X8Wtcs/25TPf1mmdOHbZFyGSx5+2SBx4Emd2L4n1SLbblYLr7/ozPD/PyNB88GGn/26gFjDRfc+rBDeea9MeMfdYoE1F+0IBwsJLhdFMlxo260C/rUXC3iX71bDGaHKpz6SbbjAput5fJuuZfPMP5jMsGoVM4YF4NRyEneEShJhON+Gqxk8i09lsfZt1MawQPHI825SDNfY/7Bi/oP3Kxc8fL8cbviaS2lcay4kc07c5Ithgfzu+7NJMXzxo4+rdr34vHPFkw+rkQ3nWnU+gWPatngMC+R23V2Abvi2Nz8ObXr1bZ/ukadN2Axf8+TjWs1dt/JRDF9xOo5l+vZ0DAtkt16bg+5ykOEH330/tuTp543qBx5WE2M469KT0azTtqVhWrDhYjd6sIBcDjJ89fPPW+c9+riSKMOXHo9gmr41DsMCiSVHCrGFufqBh9Ugw7c+/7wdZPi6Zx/Xae+4VYDLcOZFx0KZJ20NwLRgzl47UNmCLSlq7rtXtvjhh1WgCMXncpDhTLP3xzBM36GPmdPq61lEVxyrJJjO1+Bx+fyDwQwz9yaBzMK0gIGBAVQqggsucg2fvS+eYcEePQZ8AFQqkmX4rP2RDLMPeTAQBP//MwqsOmcPKrhIcjnEcCYGYgGoVORdcCgRVLbgjdAZuxIJBgtOELqKGVRwgcoWjulbwTmUZcr2dKapW+OYJ2wOBKcWXBE6bAAAvQ/fbSHz+LUAAAAASUVORK5CYII=');
            display: inline-block;
            width: 25px; 
            height: 25px;
            margin-right: 15px;
        }

        .total-value {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 8px;
        }

        .total-value .label {
            font-size: 18px;
            color: var(--text-secondary);
        }

        .total-value .amount {
            font-size: 36px;
            color: var(--text-gray);
            font-weight: bold;
        }

        .discount-value {
            font-size: 48px;
            color: var(--success);
            font-weight: bold;
            text-align: center;
            margin: 20px 0;
        }


        .guarantee {
            padding: 60px 0;
            text-align: center;
        }

        .guarantee-box {
            background: linear-gradient(135deg, rgba(16, 120, 185, 0.1), rgba(59, 130, 246, 0.1));
            border: 2px solid var(--success);
            border-radius: 12px;
            padding: 40px;
            max-width: 700px;
            margin: 0 auto;
        }

        .guarantee-icon {
            font-size: 64px;
        }

        .guarantee-title {
            font-size: 32px;
            color: var(--success);
            margin-bottom: 20px;
        }

        .testimonials {
            padding: 80px 0;
            background: rgba(30, 41, 59, 0.2);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial {
            background: rgba(15, 23, 42, 0.8);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .testimonial::before {
            content: """;
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: var(--accent-blue);
            opacity: 0.3;
        }

        .testimonial-text {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 20px;
            padding-left: 30px;
            line-height: 1.6;
        }

        .testimonial-author {
            color: var(--light-blue);
            font-weight: bold;
            text-align: right;
        }

        .faq {
            padding: 80px 0;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.6);
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .faq-question {
            padding: 20px 30px;
            cursor: pointer;
            color: var(--light-blue);
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(59, 130, 246, 0.1);
        }

        .faq-question::after {
            content: "+";
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .faq-item.active .faq-answer {
            padding: 20px 30px;
            max-height: 300px;
        }

        .final-cta {
            padding: 100px 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
        }

        .final-cta-box {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
            border: 3px solid var(--accent-blue);
            border-radius: 16px;
            padding: 60px 40px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .final-cta-box::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--accent-blue), var(--light-blue), var(--accent-blue));
            border-radius: 16px;
            opacity: 0.5;
            animation: gradient-animation 3s ease infinite;
            z-index: -1;
        }

        @keyframes gradient-animation {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .path {
            padding: 30px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 8px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .path-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: var(--accent-blue);
            color: var(--black);
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .path h3 {
            color: var(--light-blue);
            margin-bottom: 15px;
        }

        .path p {
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .savings-badge {
            display: inline-block;
            background: var(--warning);
            color: var(--black);
            padding: 10px 30px;
            border-radius: 30px;
            font-size: 24px;
            font-weight: bold;
            margin: 30px 0;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        footer {
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            background: rgba(10, 10, 10, 0.9);
        }

        @media (max-width: 768px) {
            .hero {
                padding: 280px 0 40px;
            }

            .product-item {
                flex-direction: column;
                text-align: center;
            }

            .timer {
                font-size: 36px;
            }

            .new-price {
                font-size: 48px;
            }

            .btn-buy {
                padding: 20px 40px;
                font-size: 18px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .paths {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .confidential-banner {
                font-size: 12px;
                top: 70px;
            }

            .confidentioal-head {
                font-size: 14px;
            }

            .logo {
                font-size: 18px;
            }

            .new-price {
                font-size: 36px;
            }
        }