:root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #190028;
            --matrix-green: #0af502;
            --electric-blue: #005678;
            --text-glow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
            --box-glow: 0 0 15px var(--cyber-teal), 0 0 30px var(--cyber-teal);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-purple);
            color: #fff;
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(25, 0, 40, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
            box-shadow: var(--box-glow);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--cyber-teal);
            text-decoration: none;
            text-shadow: var(--text-glow);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--neon-pink);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3 {
            color: var(--cyber-teal);
            margin-bottom: 1.5rem;
            text-shadow: var(--text-glow);
        }

        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--neon-pink);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        h3 {
            font-size: 1.8rem;
            color: var(--neon-pink);
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: #000;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 10px var(--neon-pink);
            margin-top: 1rem;
        }

        .btn:hover {
            background-color: var(--cyber-teal);
            color: #000;
            box-shadow: 0 0 20px var(--cyber-teal);
            transform: translateY(-3px);
        }

        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(25, 0, 40, 0.7), rgba(25, 0, 40, 0.7)), 
                        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            animation: fadeIn 1.5s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: textGlow 2s infinite alternate;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .about {
            background-color: rgba(5, 217, 232, 0.05);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: -1;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .about-text {
            padding-right: 2rem;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-glow);
            transition: transform 0.5s;
        }

        .about-image:hover {
            transform: scale(1.03);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .products {
            background-color: rgba(255, 42, 109, 0.05);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background-color: rgba(0, 86, 120, 0.2);
            border: 1px solid var(--cyber-teal);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s;
            box-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-glow);
        }

        .product-card h3 {
            margin-bottom: 1rem;
            color: var(--neon-pink);
        }

        .prices {
            background-color: rgba(10, 245, 2, 0.05);
        }

        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .price-card {
            background-color: rgba(255, 42, 109, 0.1);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .price-card.popular {
            transform: scale(1.05);
            border: 2px solid var(--cyber-teal);
            box-shadow: var(--box-glow);
            position: relative;
        }

        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--cyber-teal);
            color: #000;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .price-card h3 {
            color: var(--cyber-teal);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            margin: 1.5rem 0;
        }

        .price span {
            font-size: 1rem;
            color: #fff;
        }

        .price-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .price-features li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }

        .gallery {
            background-color: rgba(0, 86, 120, 0.1);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
            transition: all 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--box-glow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback {
            position: relative;
            overflow: hidden;
        }

        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: -1;
        }

        .slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(25, 0, 40, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .slide-content {
            text-align: center;
        }

        .client-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 2px solid var(--cyber-teal);
            box-shadow: 0 0 10px var(--cyber-teal);
        }

        .client-name {
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 0.5rem;
        }

        .client-position {
            color: var(--cyber-teal);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .client-text {
            font-style: italic;
            position: relative;
        }

        .client-text::before,
        .client-text::after {
            content: '"';
            color: var(--neon-pink);
            font-size: 1.5rem;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #555;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: var(--neon-pink);
            box-shadow: 0 0 5px var(--neon-pink);
        }

        .faq {
            background-color: rgba(255, 42, 109, 0.1);
        }

        .accordion {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--cyber-teal);
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header {
            background-color: rgba(5, 217, 232, 0.1);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--cyber-teal);
            transition: background-color 0.3s;
        }

        .accordion-header:hover {
            background-color: rgba(5, 217, 232, 0.2);
        }

        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .accordion-item.active .accordion-header::after {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(25, 0, 40, 0.7);
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .accordion-body {
            padding: 1rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: rgba(25, 0, 40, 0.7);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--box-glow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cyber-teal);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--cyber-teal);
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px var(--neon-pink);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--neon-pink);
            color: #000;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .submit-btn:hover {
            background-color: var(--cyber-teal);
            box-shadow: 0 0 20px var(--cyber-teal);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--dark-purple);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: var(--box-glow);
            border: 1px solid var(--neon-pink);
            position: relative;
            animation: modalFadeIn 0.5s;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--neon-pink);
        }

        .disclaimer {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid var(--neon-pink);
            font-size: 0.9rem;
            text-align: center;
        }

        footer {
            background-color: #000;
            color: #fff;
            padding: 3rem 2rem 1.5rem;
            border-top: 1px solid var(--cyber-teal);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--cyber-teal);
            margin-bottom: 1rem;
            text-shadow: var(--text-glow);
        }

        .footer-links h3 {
            color: var(--neon-pink);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyber-teal);
        }

        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-info i {
            margin-right: 0.8rem;
            color: var(--neon-pink);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 86, 120, 0.9);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 1rem;
        }

        .cookie-btn {
            background-color: var(--neon-pink);
            color: #000;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .cookie-btn:hover {
            background-color: var(--cyber-teal);
            box-shadow: 0 0 10px var(--cyber-teal);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes textGlow {
            0% { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink); }
            100% { text-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 45px var(--neon-pink); }
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(25, 0, 40, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: clip-path 0.5s ease;
                pointer-events: none;
            }

            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
                z-index: 1001;
            }

            .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);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .product-grid, .price-cards, .gallery-grid {
                grid-template-columns: 1fr;
            }

            .price-card.popular {
                transform: scale(1);
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        :root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #190028;
            --matrix-green: #0af502;
            --electric-blue: #005678;
            --text-glow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
            --box-glow: 0 0 15px var(--cyber-teal), 0 0 30px var(--cyber-teal);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-purple);
            color: #fff;
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        /* ... (все остальные стили из index.html) ... */

