:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #2e2157;
            --cyber-yellow: #f9f002;
            --matrix-green: #0afc06;
            --black-light: #0d0221;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--black-light);
            color: #fff;
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-pink);
            backdrop-filter: blur(5px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--neon-pink);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--electric-blue);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--electric-blue);
            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;
        }

        section {
            padding: 80px 5%;
            position: relative;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(13, 2, 33, 0.8), rgba(13, 2, 33, 0.9)), url('../img/05.webp') no-repeat center center/cover;
            color: white;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeIn 1.5s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--neon-pink);
            display: block;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #fff;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--neon-pink);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--electric-blue);
            color: var(--electric-blue);
            box-shadow: 0 0 15px var(--electric-blue);
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background-color: var(--electric-blue);
            color: var(--black-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--neon-pink), var(--electric-blue));
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }

        .about-text p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px var(--neon-pink);
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background: rgba(46, 33, 87, 0.6);
            border-radius: 10px;
            overflow: hidden;
            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-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 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--cyber-yellow);
        }

        .product-info p {
            margin-bottom: 15px;
        }

        .prices-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .price-card {
            background: rgba(46, 33, 87, 0.6);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.3);
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--neon-pink);
        }

        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 10px;
            right: -30px;
            background-color: var(--cyber-yellow);
            color: var(--black-light);
            padding: 5px 30px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.8rem;
        }

        .price-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--electric-blue);
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }

        .price span {
            font-size: 1rem;
            color: #fff;
        }

        .price-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .price-features li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
        }

        .price-features li:last-child {
            border-bottom: none;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: all 0.3s ease;
            border: 1px solid var(--matrix-green);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover {
            box-shadow: 0 0 20px var(--matrix-green);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }

        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 30px;
            background: rgba(46, 33, 87, 0.6);
            border-radius: 10px;
            border: 1px solid var(--cyber-yellow);
            box-shadow: 0 0 15px rgba(249, 240, 2, 0.3);
        }

        .feedback-slide .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .feedback-slide .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--neon-pink);
        }

        .feedback-slide .client-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feedback-slide .client-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--electric-blue);
        }

        .feedback-slide .client-position {
            font-size: 0.9rem;
            color: #ccc;
        }

        .feedback-slide .stars {
            color: var(--cyber-yellow);
            margin-bottom: 15px;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--electric-blue);
            transform: scale(1.2);
        }

        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: rgba(46, 33, 87, 0.6);
            color: var(--electric-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(46, 33, 87, 0.8);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
        }

        .faq-item.active .faq-question::after {
            content: '-';
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(13, 2, 33, 0.8);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background: rgba(46, 33, 87, 0.6);
            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 15px;
            background-color: rgba(13, 2, 33, 0.8);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--neon-pink);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
        }

        footer {
            background-color: var(--dark-purple);
            padding: 50px 5% 30px;
            color: white;
            border-top: 1px solid var(--neon-pink);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--electric-blue);
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--electric-blue);
        }

        .footer-logo span {
            color: var(--neon-pink);
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .footer-links h3,
        .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--neon-pink);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--electric-blue);
            padding-left: 5px;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info li i {
            margin-right: 10px;
            color: var(--neon-pink);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }

        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            border-left: 3px solid var(--neon-pink);
            font-size: 0.9rem;
        }

        .disclaimer p {
            margin-bottom: 10px;
        }

        .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-color: var(--dark-purple);
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 30px var(--electric-blue);
            position: relative;
            animation: modalFadeIn 0.5s ease;
        }

        .modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
        }

        .modal-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--neon-pink);
            transform: rotate(90deg);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 1px solid var(--electric-blue);
            box-shadow: 0 -5px 20px rgba(5, 217, 232, 0.3);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
            margin-bottom: 10px;
        }

        .cookie-text p {
            font-size: 0.9rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background-color: var(--matrix-green);
            color: var(--black-light);
            border: none;
        }

        .cookie-accept:hover {
            background-color: var(--electric-blue);
        }

        .cookie-decline {
            background-color: transparent;
            border: 1px solid var(--neon-pink);
            color: white;
        }

        .cookie-decline:hover {
            background-color: rgba(255, 42, 109, 0.2);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .burger {
                display: block;
            }

            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                padding: 20px 5%;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
                border-top: 1px solid var(--neon-pink);
                border-bottom: 1px solid var(--neon-pink);
            }

            nav.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .btn-secondary {
                margin-left: 0;
            }

            .about-content {
                flex-direction: column;
            }

            .prices-container {
                flex-direction: column;
                align-items: center;
            }

            .price-card {
                width: 100%;
                max-width: 350px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .product-card,
            .gallery-item {
                min-width: 100%;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

