/* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1A1A2E;
            color: #fff;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 255, 255, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF00FF;
            text-decoration: none;
            text-shadow: 0 0 10px #FF00FF;
        }
        
        .logo:hover {
            color: #00FFFF;
            text-shadow: 0 0 10px #00FFFF;
            transition: all 0.3s ease;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #00FFFF;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #fff;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('../img/07.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #FF00FF;
            text-shadow: 0 0 15px #FF00FF;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px #FF00FF, 0 0 20px #FF00FF;
            }
            to {
                text-shadow: 0 0 20px #FF00FF, 0 0 30px #FF00FF;
            }
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #00FFFF;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #FF1493;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
        }
        
        .btn:hover {
            background-color: #00FFFF;
            color: #1A1A2E;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
        }
        
        /* Блок "Почему мы" */
        .why-us {
            padding: 80px 0;
            background-color: #16213E;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #FF00FF;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, #FF00FF, #00FFFF);
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .feature {
            flex-basis: calc(33.333% - 30px);
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
            border-color: #00FFFF;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #FF1493;
            margin-bottom: 20px;
        }
        
        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #00FFFF;
        }
        
        .feature p {
            color: #fff;
        }
        
        /* О нас */
        .about {
            padding: 80px 0;
            background-color: #1A1A2E;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FF00FF;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #fff;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            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);
        }
        
        /* Описание продукта */
        .product {
            padding: 80px 0;
            background-color: #16213E;
        }
        
        .product-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .product-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .product-image:hover img {
            transform: scale(1.05);
        }
        
        .product-text {
            flex: 1;
        }
        
        .product-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FF00FF;
        }
        
        .product-text p {
            margin-bottom: 20px;
            color: #fff;
        }
        
        .product-features {
            margin-top: 30px;
        }
        
        .product-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .product-feature-icon {
            color: #00FFFF;
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .product-feature-text {
            color: #fff;
        }
        
        /* Цены */
        .pricing {
            padding: 80px 0;
            background-color: #1A1A2E;
        }
        
        .pricing-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-plan {
            flex-basis: calc(33.333% - 30px);
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .pricing-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
            border-color: #FF00FF;
        }
        
        .pricing-plan.featured {
            border-color: #FF1493;
            box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
        }
        
        .pricing-plan.featured::before {
            content: 'Más Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #FF1493;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #00FFFF;
        }
        
        .plan-price {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FF00FF;
        }
        
        .plan-price span {
            font-size: 1rem;
            color: #fff;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            margin-bottom: 10px;
            color: #fff;
            position: relative;
            padding-left: 25px;
        }
        
        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00FFFF;
        }
        
        /* Галерея */
        .gallery {
            padding: 80px 0;
            background-color: #16213E;
        }
        
        .gallery-grid {
            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;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
            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);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay-text {
            color: #fff;
            font-size: 1.2rem;
            text-align: center;
            padding: 0 20px;
        }
        
        /* Отзывы */
        .testimonials {
            padding: 80px 0;
            background-color: #1A1A2E;
        }
        
        .testimonial-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            flex: 0 0 100%;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            text-align: center;
            margin: 0 15px;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #00FFFF;
        }
        
        .testimonial-author span {
            display: block;
            font-weight: normal;
            color: #fff;
            font-size: 0.9rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .testimonial-nav button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            border: none;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .testimonial-nav button.active {
            background-color: #FF1493;
        }
        
        /* FAQ */
        .faq {
            padding: 80px 0;
            background-color: #16213E;
        }
        
        .faq-items {
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(255, 0, 255, 0.1);
            color: #00FFFF;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 0, 255, 0.2);
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #fff;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }
        
        /* Контактная форма */
        .contact {
            padding: 80px 0;
            background-color: #1A1A2E;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00FFFF;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: #fff;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF00FF;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: #0F1419;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Футер */
        footer {
            background-color: #0F1419;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-logo {
            flex-basis: 30%;
        }
        
        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #FF00FF;
        }
        
        .footer-logo p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links {
            flex-basis: 30%;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #00FFFF;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: #FF1493;
        }
        
        .footer-contact {
            flex-basis: 30%;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #00FFFF;
        }
        
        .footer-contact p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Всплывающая плашка cookie */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(26, 26, 46, 0.95);
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: #fff;
            margin-right: 20px;
        }
        
        .cookie-text a {
            color: #00FFFF;
            text-decoration: none;
        }
        
        .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: #FF1493;
            color: #fff;
        }
        
        .cookie-accept:hover {
            background-color: #00FFFF;
            color: #1A1A2E;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Модальное окно */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: #1A1A2E;
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 10px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .modal-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #FF00FF;
        }
        
        .modal-text {
            margin-bottom: 30px;
            color: #fff;
        }
        
        .modal-close {
            padding: 10px 20px;
            background-color: #FF1493;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .modal-close:hover {
            background-color: #00FFFF;
            color: #1A1A2E;
        }
        
        /* Marquee */
        .marquee {
            background-color: #16213E;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }
        
        .marquee-content {
            display: flex;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .marquee-item {
            white-space: nowrap;
            padding: 0 30px;
            color: #00FFFF;
            font-size: 1.2rem;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .feature {
                flex-basis: calc(50% - 30px);
            }
            
            .pricing-plan {
                flex-basis: calc(50% - 30px);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color:#1A1A2E;
                flex-direction: column;
                top: 68px;
            }

            nav ul.active{
                display: flex;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content,
            .product-content {
                flex-direction: column;
            }
            
            .feature {
                flex-basis: 100%;
            }
            
            .pricing-plan {
                flex-basis: 100%;
            }
            
            .footer-logo,
            .footer-links,
            .footer-contact {
                flex-basis: 100%;
            }
        }

