:root {
            --primary: #ff00aa;
            --secondary: #00f0ff;
            --dark: #0a0a20;
            --light: #e0e0ff;
            --accent: #ffcc00;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 32, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            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: var(--light);
            margin: 5px;
            transition: all 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 10, 32, 0.7), rgba(10, 10, 32, 0.7)), url('..img/01.webp') no-repeat center center/cover;
            position: relative;
        }
        
        .hero-content {
            max-width: 600px;
            animation: fadeIn 1.5s ease-in-out;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary);
        }
        
        .hero h1 span {
            color: var(--secondary);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s;
            border: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
            color: var(--dark);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--secondary);
            display: inline-block;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .about-text p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: linear-gradient(rgba(10, 10, 32, 0.9), rgba(10, 10, 32, 0.9)), url('img/02.webp') no-repeat center center/cover;
            background-attachment: fixed;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--primary);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 0, 170, 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 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .product-info p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular::before {
            content: 'Popular';
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--primary);
            color: var(--dark);
            padding: 5px 30px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 14px;
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .price {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .price span {
            font-size: 16px;
            color: var(--light);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: linear-gradient(rgba(10, 10, 32, 0.9), rgba(10, 10, 32, 0.9)), url('img/03.webp') no-repeat center center/cover;
            background-attachment: fixed;
        }
        
        .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;
            transition: transform 0.3s;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .feedback-slider {
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-slide {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 10px;
            margin: 0 15px;
            border: 1px solid var(--primary);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .client-name p {
            color: var(--secondary);
            font-size: 14px;
        }
        
        .client-feedback p {
            line-height: 1.6;
            font-style: italic;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(rgba(10, 10, 32, 0.9), rgba(10, 10, 32, 0.9)), url('img/04.webp') no-repeat center center/cover;
            background-attachment: fixed;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--primary);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 0, 170, 0.1);
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--secondary);
        }
        
        .faq-question span {
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background-color: rgba(0, 240, 255, 0.1);
        }
        
        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 20px;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--dark);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--secondary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(0, 240, 255, 0.1);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background-color: #050510;
            padding: 60px 0 20px;
            color: var(--light);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info p i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(255, 0, 0, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 40px;
            border-left: 4px solid var(--primary);
        }
        
        .disclaimer p {
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
            border-top: 1px solid var(--primary);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-text {
            flex: 1;
        }
        
        .cookie-text p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-buttons {
            display: flex;
            margin-left: 20px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            margin-left: 10px;
            transition: background-color 0.3s;
        }
        
        .cookie-accept {
            background-color: var(--primary);
            color: var(--dark);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--dark);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 2px solid var(--primary);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--primary);
        }
        
        .modal h3 {
            font-size: 24px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .modal p {
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 32, 0.95);
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            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 h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin-bottom: 15px;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .cookie-content {
                flex-direction: column;
            }
            
            .cookie-buttons {
                margin-left: 0;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .price {
                font-size: 36px;
            }
            
            .contact-form {
                padding: 20px;
            }
        }

