:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --matrix-green: #00ff41;
            --dark-bg: #0d0221;
            --text-light: #f8f8f8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            border-bottom: 1px solid var(--electric-blue);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--neon-pink);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--matrix-green);
            text-shadow: 0 0 5px var(--matrix-green);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--matrix-green);
            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(--electric-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 0.9));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--cyber-purple);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 15px var(--cyber-purple);
        }
        
        .btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            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-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;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--electric-blue);
            font-size: 36px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--matrix-green);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--matrix-green);
        }
        
        .about-text p {
            margin-bottom: 15px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--electric-blue);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(5, 217, 232, 0.3);
            border-color: var(--matrix-green);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            color: var(--neon-pink);
            margin-bottom: 10px;
            font-size: 22px;
        }
        
        .product-info p {
            margin-bottom: 15px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: rgba(211, 0, 197, 0.05);
        }
        
        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .pricing-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 40px 30px;
            width: 300px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--cyber-purple);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border-color: var(--matrix-green);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 10px;
            right: -30px;
            background-color: var(--matrix-green);
            color: var(--dark-bg);
            padding: 5px 30px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 12px;
        }
        
        .pricing-card:hover {
            box-shadow: 0 10px 30px rgba(211, 0, 197, 0.3);
        }
        
        .pricing-card h3 {
            color: var(--electric-blue);
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 36px;
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .price span {
            font-size: 16px;
            color: var(--text-light);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: rgba(0, 255, 65, 0.05);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid var(--matrix-green);
        }
        
        .slide-content {
            text-align: center;
        }
        
        .client-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--electric-blue);
        }
        
        .client-name {
            color: var(--neon-pink);
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .client-position {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .client-feedback {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .rating {
            color: var(--matrix-green);
            font-size: 20px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--electric-blue);
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            opacity: 1;
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(5, 217, 232, 0.1);
            color: var(--electric-blue);
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(5, 217, 232, 0.2);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: rgba(255, 42, 109, 0.05);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--electric-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--matrix-green);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
        }
        
        textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--cyber-purple);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: var(--neon-pink);
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: rgba(13, 2, 33, 0.9);
            border-top: 1px solid var(--cyber-purple);
            font-size: 14px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: rgba(5, 217, 232, 0.05);
            padding: 60px 0 30px;
            border-top: 1px solid var(--electric-blue);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--matrix-green);
            padding-left: 5px;
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--electric-blue);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(5, 217, 232, 0.2);
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 20px;
            border-top: 1px solid var(--electric-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-banner .btn {
            flex-shrink: 0;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--dark-bg);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--matrix-green);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--electric-blue);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--neon-pink);
            transform: rotate(90deg);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul 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);
            }
            
            .hero {
                height: auto;
                padding: 120px 0;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                width: 100%;
                max-width: 350px;
                margin-bottom: 20px;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .contact-form {
                padding: 20px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

