:root {
            --neon-green: #00ff9d;
            --neon-pink: #ff00ff;
            --neon-blue: #00b8ff;
            --dark-bg: #001a33;
            --darker-bg: #000814;
            --text-color: #e6e6ff;
            --accent-yellow: #ffd700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--darker-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 255, 157, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 60%, rgba(255, 0, 255, 0.05) 0%, transparent 20%),
                linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 8, 20, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-green);
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--neon-pink);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-green);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 5% 50px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 650px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--neon-green);
            border: 2px solid var(--neon-green);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--neon-green);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover {
            color: var(--darker-bg);
        }
        
        .btn:hover:before {
            left: 0;
        }
        
        .cyber-grid {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            opacity: 0.2;
            background-image: 
                linear-gradient(rgba(0, 255, 157, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 157, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            transform: perspective(500px) rotateX(60deg) translateZ(0);
            transform-origin: bottom right;
        }
        
        /* Section Common Styles */
        section {
            padding: 80px 5%;
        }
        
        section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
            color: var(--neon-blue);
            text-shadow: 0 0 10px rgba(0, 184, 255, 0.5);
            position: relative;
        }
        
        section h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-pink));
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--neon-green);
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(0, 26, 51, 0.7);
            border: 1px solid var(--neon-blue);
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--neon-green);
            transition: height 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 184, 255, 0.2);
        }
        
        .product-card:hover:before {
            height: 100%;
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--neon-pink);
        }
        
        /* Prices Section */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-plan {
            background: rgba(0, 26, 51, 0.7);
            border: 1px solid var(--neon-green);
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-plan.featured {
            border-color: var(--neon-pink);
            transform: scale(1.05);
            z-index: 1;
        }
        
        .pricing-plan.featured:before {
            content: 'POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--neon-pink);
            color: var(--darker-bg);
            padding: 5px 30px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
        }
        
        .plan-name {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--neon-blue);
        }
        
        .plan-price {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-green);
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(0, 255, 157, 0.3);
        }
        
        /* Gallery Section */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 2px solid var(--neon-pink);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 8, 20, 0.8);
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* Feedback Section */
        .feedback-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background: rgba(0, 26, 51, 0.7);
            border: 1px solid var(--neon-blue);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding: 0 20px;
        }
        
        .feedback-text:before,
        .feedback-text:after {
            content: '"';
            font-size: 3rem;
            color: var(--neon-pink);
            position: absolute;
        }
        
        .feedback-text:before {
            top: -20px;
            left: -10px;
        }
        
        .feedback-text:after {
            bottom: -40px;
            right: -10px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--neon-green);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            color: var(--neon-green);
            margin-bottom: 5px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 184, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--neon-blue);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0, 255, 157, 0.3);
        }
        
        .faq-question {
            padding: 15px;
            background: rgba(0, 26, 51, 0.5);
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }
        
        .faq-question:after {
            content: '+';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--neon-green);
        }
        
        .faq-item.active .faq-question:after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 15px;
            max-height: 300px;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-form {
            background: rgba(0, 26, 51, 0.7);
            padding: 30px;
            border: 1px solid var(--neon-pink);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--neon-green);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(0, 8, 20, 0.8);
            border: 1px solid var(--neon-blue);
            color: var(--text-color);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .contact-info {
            padding: 30px;
        }
        
        .contact-info h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .info-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .info-item i {
            color: var(--neon-green);
            margin-right: 10px;
            min-width: 20px;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 5%;
            background: rgba(0, 8, 20, 0.9);
            border-top: 1px solid var(--neon-blue);
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 8, 20, 0.95);
            padding: 20px;
            border-top: 2px solid var(--neon-green);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            max-width: 80%;
        }
        
        .cookie-banner button {
            background: var(--neon-green);
            color: var(--darker-bg);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 50px 5% 30px;
            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-green);
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 255, 157, 0.3);
            font-size: 0.9rem;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 8, 20, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--dark-bg);
            padding: 40px;
            text-align: center;
            border: 2px solid var(--neon-green);
            max-width: 500px;
            width: 90%;
        }
        
        .modal-content h3 {
            color: var(--neon-green);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .close-modal {
            margin-top: 20px;
            background: var(--neon-green);
            color: var(--darker-bg);
            border: none;
            padding: 10px 25px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 968px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-plan.featured {
                transform: scale(1);
            }
        }
        
        @media screen and (max-width: 768px) {
            body {
                overflow-x: hidden;
            }
            
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background: rgba(0, 8, 20, 0.95);
                backdrop-filter: blur(10px);
                height: calc(100vh - 70px);
                width: 100%;
                flex-direction: column;
                align-items: center;
                justify-content: space-around;
                transform: translateX(100%);
                transition: transform 0.5s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateX(0);
            }
            
            .nav-links li {
                margin-left: 0;
                opacity: 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            section h2 {
                font-size: 2rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            section {
                padding: 60px 5%;
            }
        }

