<style>
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 120px;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Unbounded', sans-serif;
            font-weight: 600;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Glass morphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 16px;
        }

        .neo-card {
            background: var(--light);
            border-radius: 20px;
            box-shadow: 
                0 10px 25px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .neo-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 0;
            transition: all 0.3s ease;
            font-family: 'Unbounded', sans-serif;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 0.8rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            /* font-weight: 700; */
            font-size: 2rem;
            color: #3c2682;
            font-family: amavickfont;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
        /*    background: var(--gradient); */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
            font-family: 'Unbounded', sans-serif;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        nav a:hover:after {
            width: 100%;
        }

        .contact-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .phone-link:hover {
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: 'Unbounded', sans-serif;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: white;
        }

        .btn-accent {
            background: var(--accent);
            color: white;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: white;
            margin: 3% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            background: var(--gradient);
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
        }

        .modal-header .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
            background: none;
            border: none;
            color: white;
        }

        .modal-header .close:hover {
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-form .form-group {
            margin-bottom: 1.5rem;
        }

        .modal-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        .modal-form .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
            font-family: 'Montserrat', sans-serif;
        }

        .modal-form .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-note {
            text-align: center;
            margin-top: 1rem;
            color: var(--gray);
            font-size: 0.9rem;
            font-family: 'Montserrat', sans-serif;
        }

        .success-message {
            text-align: center;
            padding: 2rem;
            display: none;
        }

        .success-message i {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .success-message h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-family: 'Unbounded', sans-serif;
        }

        .success-message p {
            color: var(--gray);
            font-family: 'Montserrat', sans-serif;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 0 4rem;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Unbounded', sans-serif;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2rem;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .badge {
            padding: 0.5rem 1rem;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-form {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--gray-light);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
            font-family: 'Montserrat', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: float 3s ease-in-out infinite;
            font-family: 'Montserrat', sans-serif;
        }

        .floating-card h4 {
            font-family: 'Unbounded', sans-serif;
        }

        .floating-card:nth-child(1) {
            top: 10%;
            left: 0;
            animation-delay: 0s;
        }

        .floating-card:nth-child(2) {
            top: 60%;
            right: -190px;
            animation-delay: 1s;
        }

        .floating-card:nth-child(3) {
            bottom: 10%;
            left: 30%;
            animation-delay: 2s;
        }

        .floating-card:nth-child(4) {
            left: 40%;
            animation-delay: 2s;
            margin-top: 80%;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Sections */
        section {
            /*padding: 0; */
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
            font-family: 'Unbounded', sans-serif;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-family: 'Montserrat', sans-serif;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            padding: 2.5rem 2rem;
            text-align: center;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-family: 'Unbounded', sans-serif;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .price-tag {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Unbounded', sans-serif;
        }

        /* Price List Accordion */
        .price-list {
            max-width: 1000px;
            margin: 0 auto;
        }

        .price-category {
            scroll-margin-top: 120px;
            margin-bottom: 1rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            background: white;
        }

        .price-category-header {
            padding: 1.5rem 2rem;
            background: var(--gradient);
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .price-category-header:hover {
            background: var(--primary-dark);
        }

        .price-category-header h3 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-family: 'Unbounded', sans-serif;
        }

        .accordion-icon {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .price-category.active .accordion-icon {
            transform: rotate(180deg);
        }

        .price-category-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            background: white;
        }

        .price-category.active .price-category-content {
            max-height: 2000px;
            padding: 2rem;
        }

        .price-items {
            display: grid;
            gap: 1rem;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem;
            background: #f8fafc;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .price-item:hover {
            border-left-color: var(--primary);
            transform: translateX(5px);
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .service-name {
            flex: 1;
            font-weight: 500;
            color: var(--dark);
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
        }

        .service-price {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
            margin-left: 1rem;
            white-space: nowrap;
            font-family: 'Unbounded', sans-serif;
        }

        .price-note {
            text-align: center;
            margin-top: 3rem;
            padding: 1.5rem;
            background: rgba(99, 102, 241, 0.05);
            border-radius: 12px;
            color: var(--gray);
            font-style: italic;
            font-size: 0.9rem;
            font-family: 'Montserrat', sans-serif;
        }

        .accordion-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .accordion-btn {
            padding: 0.8rem 1.5rem;
            border: 2px solid var(--primary);
            background: white;
            color: var(--primary);
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Unbounded', sans-serif;
        }

        .accordion-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* Process */
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 3rem;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gray-light);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--light);
            font-family: 'Unbounded', sans-serif;
        }

        .step h3 {
            margin-bottom: 1rem;
            color: var(--dark);
            font-family: 'Unbounded', sans-serif;
        }

        .step p {
            font-family: 'Montserrat', sans-serif;
        }

        /* CTA */
        .cta {
            background: var(--gradient);
            color: white;
            text-align: center;
            padding: 6rem 0;
            border-radius: 30px;
            margin: 4rem 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-family: 'Unbounded', sans-serif;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            font-family: 'Montserrat', sans-serif;
        }

        /* Map Section */
        .map-container {
            margin-top: 3rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        #yandex-map {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
        }

        .map-info h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-family: 'amavickfont', sans-serif;
            font-size: 25px;
        }

        .map-info p {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.8rem;
            font-family: 'Montserrat', sans-serif;
        }

        .map-info i {
            color: var(--primary);
            width: 20px;
        }

        /* Footer */
        footer {
            background: var(--darker);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
            font-family: 'Unbounded', sans-serif;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-links a:hover {
            color: white;
        }

        .contact-info-footer p {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            color: #9ca3af;
            font-family: 'Montserrat', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.9rem;
            font-family: 'Montserrat', sans-serif;
        }

.footer-column a {
    color: #9ca3af !important;
    text-decoration: none;
}

.footer-column a:hover {
    color: #e0e7ff !important;
  /*  text-decoration: underline; */
  text-decoration: none !important;
}

.contact-info-footer a {
    color: #9ca3af !important;
    text-decoration: none;
}

.contact-info-footer a:hover {
    color: #e0e7ff !important;
  /*  text-decoration: underline; */
  text-decoration: none !important;
}

.trademark {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.trademark a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.trademark a:hover {
    color: #ffffff;
}


        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .modal-content {
                margin: 10% auto;
                width: 95%;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            nav ul.active {
                display: flex;
            }

            .contact-header {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }

            .process-steps:before {
                display: none;
            }

            .floating-card {
                position: relative;
                margin-bottom: 1rem;
            }

            .hero-image {
                display: none;
            }

            .price-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .service-price {
                margin-left: 0;
                align-self: flex-end;
            }

            .price-category-header {
                padding: 1.2rem 1.5rem;
            }

            .price-category-header h3 {
                font-size: 1.2rem;
            }

            .price-category.active .price-category-content {
                padding: 1.5rem;
            }

            .accordion-controls {
                flex-direction: column;
                align-items: center;
            }

            .map-container {
                height: 400px;
            }

            .modal-content {
                margin: 5% auto;
                width: 95%;
            }

            .modal-header {
                padding: 1.5rem;
            }

            .modal-body {
                padding: 1.5rem;
            }
        }

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@font-face {
	font-family: 'amavickfont'; 
	src: url(/css/amavickfont.ttf); 
}

/* Стили для страницы политики конфиденциальности */
.privacy-policy {
    padding: 120px 0 60px;
    background: var(--light);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-light);
}

.policy-header h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.policy-date {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

.policy-content {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1rem;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--dark);
}

.policy-section strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.policy-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.policy-contact h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.policy-contact p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.policy-contact a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.policy-contact a:hover {
    opacity: 0.8;
}

.policy-contact i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 40px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-contact {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.7rem;
    }
    
    .policy-content {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .policy-section {
        margin-bottom: 30px;
    }
}

    .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            padding: 0.8rem 1.5rem;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }

        .back-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: var(--primary);
            color: white;
        }
.privacy-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.privacy-text a {
    color: #666;
    text-decoration: underline;
}

.privacy-text a:hover {
    color: #333;
}

/* Убираем отступы section только на странице политики */
.privacy-policy section {
    padding: 0 !important;
    margin: 0 !important;
}

.privacy-policy .policy-section {
    padding: 0 !important;
    margin-bottom: 40px !important;
}

/* Если нужно совсем убрать отступы между секциями */
.privacy-policy .policy-section:last-child {
    margin-bottom: 0 !important;
}

/* Кнопка Наверх */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Исправление для мобильной версии политики */
@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .policy-content {
        margin: 0 5px !important;
        padding: 20px 15px !important;
    }
    
    .policy-section h2 {
        font-size: 1.2rem !important;
        line-height: 1.3;
        word-wrap: break-word;
    }
}

/* Дополнительные исправления для очень маленьких экранов */
@media (max-width: 360px) {
    .policy-header h1 {
        font-size: 1.3rem !important;
        padding: 0 5px;
    }
    
    .policy-content {
        padding: 15px 10px !important;
    }
    
    .policy-section {
        margin-bottom: 20px !important;
    }
    
    .policy-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Убедимся, что текст не выходит за границы */
.policy-header,
.policy-section {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.policy-header h1,
.policy-section h2 {
    max-width: 100%;
}
/* Стили для страницы проверки статуса */
.status-section {
    /* padding: 80px 0; */
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    min-height: calc(100vh - 200px);
}

.status-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.status-info h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.status-info ul {
    list-style: none;
    margin-bottom: 40px;
}

.status-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark);
}

.status-info li i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-alternative h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.status-frame {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 968px) {
    .status-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .status-section {
        padding: 60px 0;
    }
    
    .status-info h2 {
        font-size: 1.5rem;
    }
    
    .status-info li {
        font-size: 1rem;
    }
}

.status-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-light);
}

.status-header h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.status-date {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Стили для Cookie уведомления */
/* Cookie уведомление - мобильный первый подход */
#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darker);
    color: white;
    padding: 12px 10px;
    z-index: 9999;
    display: none;
    font-family: 'Montserrat', sans-serif;
}

.cookie-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.cookie-text-mobile p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #e5e7eb;
}

.cookie-text-mobile a {
    color: var(--primary) !important;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-buttons-mobile {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.cookie-btn-mobile {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-mobile.accept {
    background: var(--primary);
    color: white;
}

.cookie-btn-mobile.reject {
    background: transparent;
    color: white;
    border: 1px solid #6b7280;
}

.cookie-btn-mobile:hover {
    transform: translateY(-1px);
}

/* Для планшетов и выше */
@media (min-width: 769px) {
    #cookie-notification {
        padding: 15px;
    }
    
    .cookie-content-mobile {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 20px;
    }
    
    .cookie-text-mobile {
        flex: 1;
        min-width: 0;
    }
    
    .cookie-text-mobile p {
        font-size: 14px;
    }
    
    .cookie-buttons-mobile {
        width: auto;
        max-width: none;
        flex-shrink: 0;
    }
    
    .cookie-btn-mobile {
        flex: none;
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    #cookie-notification {
        padding: 10px 8px;
    }
    
    .cookie-text-mobile p {
        font-size: 12px;
    }
    
    .cookie-buttons-mobile {
        max-width: 250px;
    }
    
    .cookie-btn-mobile {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* Гарантия что текст не выходит за границы */
.cookie-text-mobile {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}


/* Секция консультации */
.consultation-section {
    background: var(--gradient);
    padding: 4rem 0;
}

.consultation-content {
    text-align: center;
    color: white;
}

.consultation-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
    line-height: 1.2;
}

.consultation-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.consultation-buttons-main {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.consultation-buttons-secondary {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Стили кнопок */
.btn-phone {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    font-weight: 600;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 600;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .consultation-section {
        padding: 3rem 0;
    }
    
    .consultation-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .consultation-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .consultation-buttons-main {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .consultation-buttons-secondary {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .consultation-buttons-secondary .btn {
        min-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .consultation-section {
        padding: 2rem 0;
    }
    
    .consultation-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .consultation-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .consultation-buttons-main {
        margin-bottom: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .consultation-buttons-secondary .btn {
        min-width: 220px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .consultation-title {
        font-size: 1.3rem;
    }
    
    .consultation-subtitle {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .consultation-buttons-secondary .btn {
        min-width: 200px;
    }
}


/* SEO секция */
.seo-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.seo-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
    font-family: 'Unbounded', sans-serif;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.seo-block h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
}

.seo-block ul {
    list-style: none;
    padding-left: 0;
}

.seo-block li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.seo-block li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seo-bottom-text {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.seo-bottom-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

/* Видимый SEO текст в hero */
.seo-text-visible {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.seo-text-visible p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .seo-block h3 {
        font-size: 1.1rem;
    }
    
    .seo-bottom-text {
        padding: 1.5rem;
    }
    
    .seo-bottom-text p {
        font-size: 1rem;
    }
}
/* Красивая SEO секция */
.seo-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.seo-card {
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.seo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.seo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.seo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Unbounded', sans-serif;
}

.seo-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.seo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.seo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.seo-features i {
    color: var(--secondary);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.seo-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* SEO CTA блок */
.seo-cta {
    background: var(--gradient);
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 20px;
}

.seo-cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.seo-cta-text h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
}

.seo-cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.seo-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .seo-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .seo-section {
        padding: 4rem 0;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seo-card {
        padding: 2rem 1.5rem;
    }
    
    .seo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .seo-card h3 {
        font-size: 1.2rem;
    }
    
    .seo-cta {
        padding: 2rem 1.5rem;
    }
    
    .seo-cta-text h4 {
        font-size: 1.3rem;
    }
    
    .seo-cta-text p {
        font-size: 1rem;
    }
    
    .seo-cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .seo-section {
        padding: 3rem 0;
    }
    
    .seo-card {
        padding: 1.5rem 1rem;
    }
    
    .seo-cta {
        padding: 1.5rem 1rem;
    }
    
    .seo-cta-buttons {
        flex-direction: column;
    }
    
    .seo-cta-buttons .btn {
        width: 100%;

            display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    }
}
.seo-cta-buttons .btn-phone-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;

        display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.seo-cta-buttons .btn-phone-outline:hover {
    background: white !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

    </style>