
        :root {
            --primary: #6a00ff;
            --secondary: #00ff88;
            --dark: #0a0a12;
            --light: #f0f0f5;
            --accent: #ff00aa;
            --text: #e0e0e8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(106, 0, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(106, 0, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 1px solid var(--primary);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--primary);
        }

        nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px;
            transition: all 0.3s ease;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 48px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h2 {
            font-size: 36px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 3px;
            background-color: var(--accent);
        }

        h3 {
            font-size: 24px;
            color: var(--secondary);
        }

        p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            margin-top: 20px;
        }

        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 0, 255, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-secondary:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            max-width: 600px;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(-20px); }
            100% { transform: translateY(-50%) translateX(0); }
        }

        .hero-image img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(106, 0, 255, 0.5));
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 50px;
        }

        .feature {
            flex: 0 0 calc(33.333% - 20px);
            margin-bottom: 40px;
            padding: 30px;
            background-color: rgba(106, 0, 255, 0.1);
            border-radius: 10px;
            border: 1px solid var(--primary);
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
            background-color: rgba(106, 0, 255, 0.2);
        }

        .feature-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .quote {
            padding: 60px;
            background-color: rgba(0, 255, 136, 0.1);
            border-left: 5px solid var(--secondary);
            margin: 60px 0;
            position: relative;
        }

        .quote::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 100px;
            color: rgba(0, 255, 136, 0.2);
            font-family: serif;
            line-height: 1;
        }

        .quote-text {
            font-size: 24px;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .quote-author {
            font-weight: bold;
            color: var(--secondary);
        }

        .pricing {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            flex: 0 0 300px;
            background-color: rgba(10, 10, 18, 0.8);
            border: 1px solid var(--primary);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(106, 0, 255, 0.3);
        }

        .price-card.popular {
            border: 1px solid var(--secondary);
        }

        .popular-badge {
            position: absolute;
            top: 0;
            right: 20px;
            background-color: var(--accent);
            color: white;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            transform: translateY(-50%);
            border-radius: 20px;
        }

        .price {
            font-size: 48px;
            font-weight: bold;
            color: var(--secondary);
            margin: 20px 0;
        }

        .price span {
            font-size: 16px;
            color: var(--text);
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(106, 0, 255, 0.3);
            padding-bottom: 20px;
        }

        .faq-question {
            font-weight: bold;
            color: var(--secondary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 500px;
            margin-top: 15px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(106, 0, 255, 0.1);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--primary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(10, 10, 18, 0.8);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--text);
            font-size: 16px;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        footer {
            background-color: #06060a;
            padding: 60px 0 20px;
            border-top: 1px solid var(--primary);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-col {
            flex: 0 0 calc(25% - 30px);
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(106, 0, 255, 0.3);
            margin-top: 20px;
            font-size: 14px;
            color: rgba(224, 224, 232, 0.6);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--dark);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--secondary);
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-popup:hover {
            color: var(--accent);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            border-top: 1px solid var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-btn {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cookie-btn:hover {
            background-color: var(--primary);
            color: white;
        }

        @media (max-width: 992px) {
            .hero-image {
                opacity: 0.3;
            }

            .feature {
                flex: 0 0 calc(50% - 15px);
            }

            .footer-col {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: right 0.3s;
                border-left: 1px solid var(--primary);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .feature {
                flex: 0 0 100%;
            }

            .hero-image {
                display: none;
            }

            .quote {
                padding: 30px;
            }

            .quote-text {
                font-size: 18px;
            }

            .contact-form {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .footer-col {
                flex: 0 0 100%;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* Анимации */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
