:root {
            --neon-pink: #ff2a6d;
            --cyber-blue: #05d9e8;
            --dark-purple: #2a1a5e;
            --matrix-green: #00ff9d;
            --black-light: #0d0221;
            --main-font: 'Courier New', monospace;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--main-font);
        }
        
        body {
            background-color: var(--black-light);
            color: var(--matrix-green);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-pink);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            color: var(--cyber-blue);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 5px var(--cyber-blue);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--matrix-green);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--matrix-green);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--cyber-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
        }
        
        h1 {
            font-size: 3rem;
            background: linear-gradient(90deg, var(--neon-pink), var(--cyber-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: neonGlow 2s infinite alternate;
        }
        
        h2 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--neon-pink);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--neon-pink);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--dark-purple));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
            margin-top: 20px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.8);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 0.9)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: white;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 20%, var(--black-light) 70%);
            z-index: 1;
        }
        
        /* About Section */
        .about {
            background-color: rgba(42, 26, 94, 0.2);
            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') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            background-color: rgba(13, 2, 33, 0.8);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background: linear-gradient(145deg, var(--dark-purple), var(--black-light));
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid var(--neon-pink);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 42, 109, 0.4);
        }
        
        .product-card h3 {
            color: var(--cyber-blue);
            margin-bottom: 15px;
        }
        
        .product-card .price {
            color: var(--neon-pink);
            font-size: 1.5rem;
            font-weight: bold;
            margin: 15px 0;
        }
        
        /* Prices Section */
        .prices {
            background-color: rgba(42, 26, 94, 0.3);
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .price-card {
            background: linear-gradient(145deg, var(--black-light), var(--dark-purple));
            border-radius: 10px;
            padding: 40px 30px;
            width: 300px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid var(--cyber-blue);
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent 45%,
                rgba(5, 217, 232, 0.1) 50%,
                transparent 55%
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(5, 217, 232, 0.4);
        }
        
        .price-card.popular {
            border: 2px solid var(--neon-pink);
            transform: scale(1.05);
        }
        
        .price-card.popular::after {
            content: 'POPULAR';
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--neon-pink);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .price-card .price {
            font-size: 2.5rem;
            color: var(--matrix-green);
            margin: 20px 0;
        }
        
        .price-card .price span {
            font-size: 1rem;
            color: var(--cyber-blue);
        }
        
        .price-card ul {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
            font-weight: bold;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: rgba(13, 2, 33, 0.9);
        }
        
        .gallery h2 {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover {
            box-shadow: 0 10px 25px rgba(255, 42, 109, 0.4);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(13, 2, 33, 0.9), transparent);
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        
        .gallery-item h3 {
            color: white;
            margin-bottom: 5px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover h3 {
            transform: translateY(0);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: rgba(42, 26, 94, 0.2);
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 30px;
            background: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--cyber-blue);
        }
        
        .slide-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--neon-pink);
            margin-bottom: 20px;
        }
        
        .client-name {
            color: var(--neon-pink);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .client-position {
            color: var(--cyber-blue);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .client-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .rating {
            color: var(--matrix-green);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--dark-purple);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq {
            background-color: rgba(13, 2, 33, 0.8);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--dark-purple);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--neon-pink);
        }
        
        .faq-question {
            background: linear-gradient(90deg, var(--dark-purple), var(--black-light));
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(90deg, var(--black-light), var(--dark-purple));
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.3rem;
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 40px auto 0;
            background: rgba(42, 26, 94, 0.3);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--cyber-blue);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--cyber-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(13, 2, 33, 0.7);
            border: 1px solid var(--dark-purple);
            border-radius: 5px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px rgba(255, 42, 109, 0.3);
        }
        
        textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, var(--neon-pink), var(--dark-purple));
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.8);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--black-light);
            padding: 20px;
            border-top: 1px solid var(--neon-pink);
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-purple);
            color: white;
            padding: 60px 20px 30px;
            position: relative;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--cyber-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 5px var(--cyber-blue);
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--matrix-green);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--cyber-blue);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--dark-purple), var(--black-light));
            color: white;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--neon-pink);
            color: white;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--matrix-green);
            border: 1px solid var(--matrix-green);
        }
        
        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: linear-gradient(145deg, var(--black-light), var(--dark-purple));
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
            border: 1px solid var(--neon-pink);
            animation: modalFadeIn 0.5s ease;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--matrix-green);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--neon-pink);
            transform: rotate(90deg);
        }
        
        .modal h2 {
            margin-bottom: 20px;
        }
        
        .modal p {
            margin-bottom: 30px;
        }
        
        /* Animations */
        @keyframes neonGlow {
            0% {
                text-shadow: 0 0 10px rgba(255, 42, 109, 0.8), 0 0 20px rgba(255, 42, 109, 0.6), 0 0 30px rgba(255, 42, 109, 0.4);
            }
            100% {
                text-shadow: 0 0 15px rgba(5, 217, 232, 0.8), 0 0 25px rgba(5, 217, 232, 0.6), 0 0 35px rgba(5, 217, 232, 0.4);
            }
        }
        
        @keyframes shine {
            0% {
                transform: rotate(30deg) translate(-30%, -30%);
            }
            100% {
                transform: rotate(30deg) translate(30%, 30%);
            }
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--black-light);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: left 0.5s ease;
                z-index: 999;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero {
                height: auto;
                padding: 120px 20px;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .price-card {
                width: 100%;
                max-width: 350px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

