:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --matrix-green: #00ff41;
            --dark-void: #0d0221;
            --hacker-text: #f8f8f8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-void);
            color: var(--hacker-text);
            overflow-x: hidden;
            padding-top: 80px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            border-bottom: 1px solid var(--electric-blue);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            text-decoration: none;
            text-shadow: 0 0 5px var(--neon-pink);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--matrix-green);
            text-shadow: 0 0 5px var(--matrix-green);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--matrix-green);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--electric-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 80px 20px;
            position: relative;
        }

        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: 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 {
            max-width: 800px;
            z-index: 2;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 5px var(--neon-pink);
            }
            to {
                text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--cyber-purple);
            }
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--electric-blue);
            color: var(--dark-void);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid var(--electric-blue);
            box-shadow: 0 0 10px var(--electric-blue);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--electric-blue);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--matrix-green);
        }

        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .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;
            line-height: 1.6;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--cyber-purple);
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.3);
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--matrix-green);
        }

        .product-card p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .price-card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--cyber-purple);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(211, 0, 197, 0.3);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--matrix-green);
            margin-bottom: 20px;
        }

        .price span {
            font-size: 1rem;
            color: var(--hacker-text);
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback-slide {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            padding: 30px;
            margin: 0 15px;
            text-align: center;
            transition: all 0.5s ease;
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .client-name {
            font-weight: bold;
            color: var(--neon-pink);
        }

        .client-position {
            color: var(--electric-blue);
            font-size: 0.9rem;
        }

        .slider-nav {
            text-align: center;
            margin-top: 30px;
        }

        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: var(--electric-blue);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            opacity: 1;
            background-color: var(--matrix-green);
            transform: scale(1.2);
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: rgba(5, 217, 232, 0.1);
            color: var(--electric-blue);
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-question.active::after {
            content: '-';
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-answer p {
            padding: 20px 0;
            line-height: 1.6;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
        }

        .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(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: var(--hacker-text);
            font-size: 1rem;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 50px;
            border: 1px solid var(--neon-pink);
        }

        .disclaimer p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--hacker-text);
        }

        footer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid var(--electric-blue);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            text-decoration: none;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-links h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--hacker-text);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--matrix-green);
            padding-left: 5px;
        }

        .contact-info p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-void);
            padding: 15px 20px;
            border-top: 1px solid var(--electric-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            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-banner p {
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .cookie-banner a {
            color: var(--electric-blue);
            text-decoration: none;
        }

        .cookie-banner a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background-color: var(--matrix-green);
            color: var(--dark-void);
        }

        .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(--dark-void);
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--electric-blue);
            cursor: pointer;
            background: none;
            border: none;
        }

        .modal h2 {
            color: var(--matrix-green);
            margin-bottom: 20px;
        }

        .modal p {
            margin-bottom: 30px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-void);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
                z-index: 999;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 20px 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);
            }

            h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                flex-direction: column;
            }
        }

        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

