:root {
            --primary: #0a0a18;
            --accent: #00f3ff;
            --secondary: #ff00c8;
            --text: #ffffff;
            --text-secondary: #a0a0b0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;}
        
        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(10, 10, 24, 0.8);
            border-radius: 10px;
            border: 1px solid var(--accent);
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--accent);
            font-size: 2.5rem;
        }
        
        h2 {
            color: var(--accent);
            margin: 25px 0 15px;
            font-size: 1.8rem;
        }
        
        h3 {
            color: var(--secondary);
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        p, li {
            color: var(--text-secondary);
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }
        
        @media (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
:root {
            --primary: #0a0a18;
            --accent: #00f3ff;
            --secondary: #ff00c8;
            --text: #ffffff;
            --text-secondary: #a0a0b0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;}
        
        .container {
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 24, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--accent);
        }
        
        .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: 700;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 100px 0;
        }
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 10, 24, 0.9), rgba(10, 10, 24, 0.8)), url('https://images.unsplash.com/photo-1729505305192-610539203144?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent), var(--secondary));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            color: var(--primary);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.3);
        }
        
        .about {
            background-color: rgba(0, 243, 255, 0.05);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--accent), var(--secondary));
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .about-text p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        .products {
            position: relative;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background: rgba(160, 160, 176, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 243, 255, 0.2);
        }
        
        .product-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .product-card p {
            color: var(--text-secondary);
        }
        
        .prices {
            background-color: rgba(255, 0, 200, 0.05);
        }
        
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: rgba(10, 10, 24, 0.8);
            border: 1px solid var(--secondary);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--accent);
            transform: scale(1.05);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular:before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--accent);
            color: var(--primary);
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(45deg);
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0 30px;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .gallery {
            position: relative;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 10, 24, 0.9));
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }
        
        .gallery-item-overlay h3 {
            color: var(--accent);
            margin-bottom: 5px;
        }
        
        .gallery-item-overlay p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        .feedback {
            background-color: rgba(0, 243, 255, 0.05);
        }
        
        .slider-container {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 40px;
            background: rgba(10, 10, 24, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .slide-content {
            text-align: center;
        }
        
        .client-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--accent);
        }
        
        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--accent);
        }
        
        .client-position {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }
        
        .client-feedback {
            font-style: italic;
            color: var(--text);
            line-height: 1.8;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: var(--accent);
        }
        
        .faq {
            position: relative;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(160, 160, 176, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(0, 243, 255, 0.1);
        }
        
        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent);
        }
        
        .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;
            color: var(--text-secondary);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        .contact {
            background: linear-gradient(rgba(10, 10, 24, 0.9), rgba(10, 10, 24, 0.9)), url('https://images.unsplash.com/photo-1654172501173-1d20f2fad942?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background: rgba(10, 10, 24, 0.8);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(160, 160, 176, 0.1);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 5px;
            color: var(--text);
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 24, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: var(--primary);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
        }
        
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .modal p {
            margin-bottom: 20px;
            color: var(--text-secondary);
        }
        
        .close-modal {
            padding: 10px 25px;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .close-modal:hover {
            background: var(--secondary);
        }
        
        .disclaimer {
            background: rgba(255, 0, 200, 0.1);
            padding: 30px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .disclaimer-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            width: 90%;
            max-width: 600px;
            border: 1px solid var(--accent);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            display: none;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
            color: var(--text);
        }
        
        .cookie-text p {
            margin-bottom: 10px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }
        
        .cookie-accept {
            background: var(--accent);
            color: var(--primary);
            border: none;
        }
        
        .cookie-accept:hover {
            background: var(--secondary);
        }
        
        .cookie-settings {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }
        
        .cookie-settings:hover {
            background: rgba(0, 243, 255, 0.1);
        }
        
        footer {
            background: rgba(10, 10, 24, 0.95);
            padding: 60px 0 30px;
            border-top: 1px solid var(--accent);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        
        .footer-col p {
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 250px;
                height: calc(100vh - 70px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.5s ease;
                border-left: 1px solid var(--accent);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
        }

