:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --deep-purple: #2e2157;
            --cyber-yellow: #f9f002;
            --matrix-green: #0f0;
            --dark-bg: #0d0221;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--electric-blue);
            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(--neon-pink);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 5px 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 ease;
        }
        
        .nav-links 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;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        h1, h2, h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--electric-blue);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--cyber-yellow);
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: var(--dark-bg);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--electric-blue);
            color: var(--dark-bg);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }
        
        .hero {
            height: 90vh;
            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-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 20%, var(--dark-bg) 70%);
            z-index: 1;
        }
        
        .about {
            background-color: rgba(46, 33, 87, 0.3);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px var(--electric-blue);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            position: relative;
            overflow: hidden;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(46, 33, 87, 0.5);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--electric-blue);
        }
        
        .product-icon {
            font-size: 3rem;
            color: var(--neon-pink);
            margin-bottom: 20px;
        }
        
        .prices {
            background-color: rgba(13, 2, 33, 0.8);
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: var(--deep-purple);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-pink);
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255, 42, 109, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }
        
        .price-card:hover::before {
            left: 100%;
        }
        
        .price-card h3 {
            margin-bottom: 30px;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--cyber-yellow);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--electric-blue);
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }
        
        .gallery {
            background-color: rgba(46, 33, 87, 0.3);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(13, 2, 33, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        .feedback {
            position: relative;
        }
        
        .feedback::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;
        }
        
        .feedback-slider {
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 20px;
        }
        
        .feedback-card {
            background-color: rgba(46, 33, 87, 0.7);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 2px solid var(--neon-pink);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--neon-pink);
        }
        
        .client-date {
            color: var(--electric-blue);
            font-size: 0.9rem;
        }
        
        .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;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }
        
        .faq {
            background-color: rgba(46, 33, 87, 0.3);
        }
        
        .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;
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.2);
        }
        
        .faq-question {
            background-color: rgba(46, 33, 87, 0.5);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--cyber-yellow);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(13, 2, 33, 0.7);
        }
        
        .faq-answer-content {
            padding: 20px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(46, 33, 87, 0.5);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
        }
        
        .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;
            background-color: rgba(13, 2, 33, 0.7);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        footer {
            background-color: var(--deep-purple);
            padding: 50px 0 20px;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--electric-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--neon-pink);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 42, 109, 0.3);
            color: var(--electric-blue);
            font-size: 0.9rem;
        }
        
        .disclaimer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            border-left: 3px solid var(--neon-pink);
        }
        
        .disclaimer p {
            font-size: 0.9rem;
            color: var(--electric-blue);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--deep-purple);
            padding: 15px 0;
            border-top: 1px solid var(--neon-pink);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--neon-pink);
            color: var(--dark-bg);
            border: none;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--electric-blue);
            border: 1px solid var(--electric-blue);
        }
        
        .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-color: var(--deep-purple);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--neon-pink);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: var(--electric-blue);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--neon-pink);
            transform: rotate(90deg);
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--deep-purple);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
                border-bottom: 1px solid var(--neon-pink);
            }
            
            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            .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);
            }
            
            .hero {
                height: auto;
                padding: 150px 0 100px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .price-cards, .product-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                padding: 30px 20px;
                margin: 0 15px;
            }
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .float {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .parallax {
            background-attachment: fixed;
        }

