/* Стили CSS */
        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a0033, #330066, #6600cc);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 30px rgba(102, 0, 204, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff33cc;
            text-decoration: none;
            text-shadow: 0 0 10px #ff33cc;
            letter-spacing: 2px;
        }
        
        .logo:hover {
            color: #ff66ff;
            text-shadow: 0 0 15px #ff66ff;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: #ff33cc;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ff33cc;
            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: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/11.webp') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ff33cc;
            text-shadow: 0 0 20px #ff33cc;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #e6ccff;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #ff33cc, #6600cc);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 51, 204, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 51, 204, 0.6);
        }
        
        /* Секции */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #ff33cc;
            margin-bottom: 15px;
            text-shadow: 0 0 10px #ff33cc;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #e6ccff;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About секция */
        .about {
            background: rgba(51, 0, 102, 0.3);
            position: relative;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #ff66ff;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #e6ccff;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 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 Description секция */
        .product {
            background: rgba(102, 0, 204, 0.2);
        }
        
        .product-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(26, 0, 51, 0.6);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 51, 204, 0.3);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: #ff33cc;
            margin-bottom: 15px;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ff66ff;
        }
        
        .feature-card p {
            color: #e6ccff;
        }
        
        /* Цены */
        .pricing {
            background: rgba(51, 0, 102, 0.3);
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: rgba(26, 0, 51, 0.7);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 51, 204, 0.3);
        }
        
        .pricing-card.featured {
            border: 2px solid #ff33cc;
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            background: linear-gradient(90deg, #6600cc, #ff33cc);
            padding: 20px;
            text-align: center;
        }
        
        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 15px 0;
        }
        
        .pricing-price span {
            font-size: 1rem;
            font-weight: normal;
        }
        
        .pricing-body {
            padding: 30px;
        }
        
        .pricing-body ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-body ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #e6ccff;
        }
        
        .pricing-body ul li:last-child {
            border-bottom: none;
        }
        
        .pricing-body ul li::before {
            content: '✓';
            color: #ff33cc;
            margin-right: 10px;
            font-weight: bold;
        }
        
        /* Галерея */
        .gallery {
            background: rgba(102, 0, 204, 0.2);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 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: rgba(26, 0, 51, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: #fff;
            font-size: 1.2rem;
            text-align: center;
            padding: 0 20px;
        }
        
        /* Отзывы */
        .testimonials {
            background: rgba(51, 0, 102, 0.3);
        }
        
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-item {
            background: rgba(26, 0, 51, 0.7);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #e6ccff;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: #ff66ff;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #cc99ff;
            font-size: 0.9rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background: #ff33cc;
        }
        
        /* FAQ */
        .faq {
            background: rgba(102, 0, 204, 0.2);
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(26, 0, 51, 0.7);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(102, 0, 204, 0.3);
        }
        
        .faq-question h3 {
            color: #ff66ff;
            font-size: 1.2rem;
        }
        
        .faq-icon {
            color: #ff33cc;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: #e6ccff;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* Почему мы */
        .why-us {
            background: rgba(51, 0, 102, 0.3);
        }
        
        .why-us-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-us-card {
            background: rgba(26, 0, 51, 0.6);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .why-us-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 51, 204, 0.3);
        }
        
        .why-us-icon {
            font-size: 3rem;
            color: #ff33cc;
            margin-bottom: 15px;
        }
        
        .why-us-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ff66ff;
        }
        
        .why-us-card p {
            color: #e6ccff;
        }
        
        /* Наши преимущества */
        .advantages {
            background: rgba(102, 0, 204, 0.2);
        }
        
        .advantages-marquee {
            overflow: hidden;
            position: relative;
            margin-top: 40px;
        }
        
        .advantages-track {
            display: flex;
            animation: marquee 20s linear infinite;
        }
        
        .advantage-item {
            flex: 0 0 300px;
            background: rgba(26, 0, 51, 0.7);
            margin: 0 15px;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .advantage-item h3 {
            color: #ff66ff;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .advantage-item p {
            color: #e6ccff;
        }
        
        /* Что вы получите */
        .benefits {
            background: rgba(51, 0, 102, 0.3);
        }
        
        .benefits-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            background: rgba(26, 0, 51, 0.7);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: #ff33cc;
            margin-right: 25px;
        }
        
        .benefit-text h3 {
            color: #ff66ff;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .benefit-text p {
            color: #e6ccff;
        }
        
        /* Форма обратной связи */
        .contact {
            background: rgba(102, 0, 204, 0.2);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(26, 0, 51, 0.7);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ff66ff;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(102, 0, 204, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff33cc;
            box-shadow: 0 0 10px rgba(255, 51, 204, 0.3);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(26, 0, 51, 0.9);
            padding: 30px 0;
            text-align: center;
            color: #cc99ff;
            font-size: 0.9rem;
        }
        
        /* Футер */
        footer {
            background: rgba(26, 0, 51, 0.9);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ff66ff;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #e6ccff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ff33cc;
        }
        
        .footer-contact p {
            color: #e6ccff;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cc99ff;
            font-size: 0.9rem;
        }
        
        /* Cookie плашка */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(26, 0, 51, 0.95);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: #e6ccff;
            font-size: 0.9rem;
        }
        
        .cookie-text a {
            color: #ff33cc;
            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: #ff33cc;
            color: #fff;
        }
        
        .cookie-accept:hover {
            background: #ff66ff;
        }
        
        .cookie-decline {
            background: transparent;
            color: #e6ccff;
            border: 1px solid #e6ccff;
        }
        
        .cookie-decline:hover {
            background: rgba(230, 204, 255, 0.1);
        }
        
        /* Попап */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: linear-gradient(135deg, #330066, #6600cc);
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .popup-close:hover {
            color: #ff33cc;
        }
        
        .popup h3 {
            color: #ff66ff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .popup p {
            color: #e6ccff;
            margin-bottom: 20px;
        }
        
        .popup-btn {
            display: inline-block;
            padding: 10px 25px;
            background: #ff33cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .popup-btn:hover {
            background: #ff66ff;
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(26, 0, 51, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .benefit-item {
                flex-direction: column;
                text-align: center;
            }
            
            .benefit-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

