:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --cyber-yellow: #d1f700;
            --matrix-green: #00ff9f;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            color: var(--cyber-yellow);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--matrix-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--electric-blue);
        }
        
        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;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 5px var(--electric-blue);
        }
        
        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(90deg, var(--neon-pink), var(--matrix-green));
        }
        
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('../img/08.webp') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--neon-pink) 0%, transparent 50%, var(--electric-blue) 100%);
            opacity: 0.1;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ddd;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(5, 217, 232, 0.4);
        }
        
        .about {
            background-color: rgba(26, 26, 46, 0.7);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/02.webp') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .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 20px var(--neon-pink);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            background-color: rgba(26, 26, 46, 0.7);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--electric-blue);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.3);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            color: var(--cyber-yellow);
            margin-bottom: 10px;
        }
        
        .prices {
            background-color: rgba(26, 26, 46, 0.7);
            text-align: center;
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .price-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            border: 1px solid var(--matrix-green);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 159, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
        }
        
        .price-card:hover::before {
            left: 100%;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-card h3 {
            color: var(--neon-pink);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin: 20px 0;
            font-weight: bold;
        }
        
        .price span {
            font-size: 1rem;
            color: #ddd;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .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(26, 26, 46, 0.7);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            border-color: var(--neon-pink);
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: rgba(26, 26, 46, 0.7);
            text-align: center;
        }
        
        .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: 20px;
        }
        
        .testimonial {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: rgba(255, 42, 109, 0.2);
            font-family: serif;
        }
        
        .testimonial p {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--matrix-green);
        }
        
        .client-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name {
            text-align: left;
        }
        
        .client-name h4 {
            color: var(--cyber-yellow);
            margin-bottom: 5px;
        }
        
        .slider-nav {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-pink);
        }
        
        .faq {
            background-color: rgba(26, 26, 46, 0.7);
        }
        
        .accordion {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .accordion-header:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .accordion-header h3 {
            margin: 0;
            font-size: 1.2rem;
            color: white;
        }
        
        .accordion-icon {
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.3s;
        }
        
        .accordion-icon::before, .accordion-icon::after {
            content: '';
            position: absolute;
            background-color: var(--electric-blue);
            transition: all 0.3s;
        }
        
        .accordion-icon::before {
            width: 100%;
            height: 2px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        
        .accordion-icon::after {
            width: 2px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }
        
        .accordion-item.active .accordion-icon::after {
            height: 0;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: rgba(0, 0, 0, 0.2);
        }
        
        .accordion-content-inner {
            padding: 20px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            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-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-pink);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .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: var(--dark-purple);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            border: 2px solid var(--neon-pink);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            color: white;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--neon-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--dark-purple);
            padding: 15px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-top: 1px solid var(--electric-blue);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            color: white;
        }
        
        .cookie-decline {
            background: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        footer {
            background-color: #0f0f1a;
            color: #ddd;
            padding: 50px 5% 20px;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-container {
            max-width: 1400px;
            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-yellow);
            margin-bottom: 20px;
            display: inline-block;
            text-decoration: none;
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-links h3, .footer-contact h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 10px;
            color: var(--matrix-green);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #999;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-out;
                border-bottom: 1px solid var(--neon-pink);
            }
            
            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            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 5% 80px;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .price-card {
                width: 100%;
                max-width: 350px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 5%;
            }
            
            .btn {
                padding: 10px 25px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .floating {
            animation: float 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

