  
        /* Все CSS стили */
        :root {
            /* Цвета */
            --primary-color: #2a73ff;
            --primary-hover: #1a5de0;
            --primary-light: rgba(42, 115, 255, 0.1);
            --secondary-color: #f0f5ff;
            --secondary-hover: #e1ebff;
            --error-color: #dc3545;
            --error-light: rgba(220, 53, 69, 0.1);
            --success-color: #28a745;
            --success-light: rgba(40, 167, 69, 0.1);
            --warning-color: #ffc107;
            --text-color: #2a2a2a;
            --text-light: #555;
            --text-lighter: #777;
            --bg-color: #f8f9fa;
            --white: #ffffff;
            --gray-light: #e9ecef;
            --gray: #6c757d;
            --dark: #343a40;
            
            /* Тени */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            
            /* Анимации */
            --transition: all 0.3s ease;
            --transition-fast: all 0.15s ease;
            
            /* Скругления */
            --border-radius: 8px;
            --border-radius-lg: 12px;
            --border-radius-xl: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 0;
            overflow-x: hidden;
        }

        /* Улучшения для клавиатурной навигации */
        body.keyboard-navigation :focus-visible {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Шапка */
        .top-header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: center;
            height: 80px;
            transition: var(--transition);
            transform: translateY(-100%);
        }

        .top-header.header-visible {
            transform: translateY(0);
        }

        .header-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3e3467;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #1e46aa;
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        .main-nav {
            display: flex;
            gap: 25px;
        }

        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .main-nav a:hover {
            color: var(--primary-color);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border-radius: var(--border-radius);
            padding: 10px;
            min-width: 220px;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 10px 15px;
            border-radius: 5px;
            margin: 5px 0;
            white-space: nowrap;
        }

        .dropdown-content a:hover {
            background: var(--secondary-color);
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .auth-button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            padding: 8px 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .auth-button:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(42, 115, 255, 0.3);
        }

        .auth-button.secondary {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        .auth-button.secondary:hover {
            background: var(--secondary-hover);
        }

        .auth-text {
            display: inline;
        }

        /* Бургер-меню */
        .burger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .burger-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 2px 0;
            transition: var(--transition);
        }

        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: var(--white);
            z-index: 999;
            padding: 20px;
            transform: translateX(100%);
            transition: var(--transition);
            overflow-y: auto;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .mobile-nav a {
            display: block;
            padding: 15px;
            background: var(--bg-color);
            border-radius: var(--border-radius);
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .mobile-nav a:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .mobile-auth {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Поисковое меню */
        .search-fullwidth-bg {
            background: linear-gradient(270deg, rgb(10 185 134 / 59%), rgb(96 162 243 / 54%) 99.89%);
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }

        .search-container {
            max-width: 800px;
            width: 100%;
            padding: 0 20px;
        }

        .search-form {
            display: flex;
            width: 100%;
            margin: 30px auto;
        }

        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 12px 0 0 12px;
            font-size: 1.1rem;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            height: 60px;
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }

        .search-button {
            background: #346df1;
            color: var(--white);
            border: none;
            border-radius: 0 12px 12px 0;
            padding: 0 35px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: var(--shadow-lg);
            height: 60px;
        }

        .search-button:hover {
            background: #1445b6;
            transform: translateY(-1px);
            box-shadow: 0 8px 30px rgb(255 255 255 / 40%);
        }

        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border-radius: 0 0 12px 12px;
            box-shadow: var(--shadow-lg);
            z-index: 10;
            max-height: 300px;
            overflow-y: auto;
            display: none;
        }

        .search-input:focus + .search-button + .search-suggestions,
        .search-suggestions:hover {
            display: block;
        }

        .suggestion-item {
            padding: 12px 20px;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: var(--bg-color);
        }

        .suggestion-icon {
            color: var(--gray);
            font-size: 1.2rem;
        }

        .suggestion-text {
            flex: 1;
        }

        .suggestion-type {
            font-size: 0.8rem;
            color: var(--gray);
            background: var(--gray-light);
            padding: 2px 8px;
            border-radius: 10px;
        }

        /* Модальные окна */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            max-width: 800px;
            min-width: 40%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--shadow-lg);
            width: 90%;
        }

        .legal-modal-content {
            max-width: 1000px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            color: var(--error-color);
            background: var(--error-light);
        }

        .modal-title {
            font-size: 1.8rem;
            color: var(--text-color);
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-light);
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(42, 115, 255, 0.2);
        }

        .submit-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            padding: 15px 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 115, 255, 0.3);
        }

        .form-footer {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-light);
        }

        .form-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        /* Тарифы */
        .tariffs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 20px 0;
        }

        .tariff-card {
            background: var(--white);
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius-lg);
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            position: relative;
        }

        .tariff-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .tariff-card.popular {
            border-color: #ff6b6b;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b6b;
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .tariff-name {
            font-size: 1.4rem;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .tariff-price {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .tariff-price span {
            font-size: 1rem;
            font-weight: normal;
            color: var(--text-light);
        }

        .tariff-features {
            list-style: none;
            margin-bottom: 25px;
            text-align: left;
        }

        .tariff-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
        }

        .tariff-features li:before {
            content: "✓";
            color: var(--primary-color);
            margin-right: 10px;
            font-weight: bold;
        }

        /* Платежная форма */
        .payment-form {
            margin-top: 20px;
        }

        .card-element {
            position: relative;
        }

        .card-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Стили для поля номера карты */
        #cardNumber {
            padding-right: 50px;
            letter-spacing: 1px;
        }

        /* Адаптация для мобильных */
        @media (max-width: 576px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Результат оплаты */
        .result-container {
            text-align: center;
            padding: 30px 0;
        }

        .result-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .success {
            color: var(--success-color);
        }

        .error {
            color: var(--error-color);
        }

        .result-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .result-message {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        /* Основной контент */
        .hero-section {
            background: #f1f1f1;
            background-size: cover;
            padding: 60px 20px;
            text-align: center;
            color: #3e3467;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .stats {
            background: rgb(255 255 255 / 48%);
            border-radius: var(--border-radius-lg);
            padding: 15px;
            display: inline-block;
            margin: 20px 0 30px;
            font-size: 1.1rem;
            backdrop-filter: blur(5px);
        }

        /* Быстрые ссылки */
        .quick-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .quick-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            width: 120px;
            transition: var(--transition);
        }

        .quick-link:hover {
            transform: translateY(-5px);
        }

        .link-icon {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            color: var(--primary-color);
            box-shadow: var(--shadow);
            margin-bottom: 12px;
        }

        .link-text {
            color: #383838;
            font-weight: 500;
            text-align: center;
            font-size: 0.95rem;
        }

        /* Секции с карточками */
        .feature-section {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
            scroll-margin-top: 100px;
        }

        .feature-section.reverse {
            flex-direction: row-reverse;
        }

        .feature-image {
            flex: 1;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .gradient-border {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius-lg);
            padding: 10px;
            background: linear-gradient(270deg, rgb(10 185 134 / 59%), rgb(96 162 243 / 54%) 99.89%);
        }

        .gradient-border img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .feature-image.fin {
            background: linear-gradient(45deg, #2ed573, #1e90ff);
        }

        .feature-image.gov {
            background: linear-gradient(45deg, #ff4757, #5352ed);
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-size: 2.5rem;
            color: var(--text-color);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .feature-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 35px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            margin-bottom: 20px;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.4rem;
            font-weight: bold;
        }

        .feature-list.sud li:before {
            color: #ff6b6b;
        }

        .feature-list.fin li:before {
            color: #2ed573;
        }

        .feature-list.gov li:before {
            color: #5352ed;
        }

        /* Плавающее меню */
        .floating-nav {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white);
            border-radius: 50px;
            padding: 15px 10px;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .floating-nav.visible {
            opacity: 1;
            visibility: visible;
        }

        .floating-nav a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3rem;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .floating-nav a:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .floating-nav a.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Особенности */
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 2.3rem;
            color: var(--text-color);
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary-color);
            border-radius: 3px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 70px;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 35px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .feature-title-card {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .feature-desc {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* Преимущества */
        .advantages {
            background: var(--secondary-color);
            padding: 80px 0;
            margin: 60px 0;
            border-radius: 20px;
        }

        .advantages-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
        }

        .advantage-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .advantage-icon {
            background: var(--primary-color);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .advantage-text h3 {
            margin-bottom: 12px;
            color: var(--text-color);
            font-size: 1.3rem;
        }

        .advantage-text p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* Подвал */
        .footer {
            background: var(--text-color);
            color: #ddd;
            padding: 70px 0 30px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--primary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 50px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 1rem;
        }

        /* Правовые документы */
        .legal-docs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .legal-doc {
            background: var(--bg-color);
            border-radius: var(--border-radius-lg);
            padding: 25px;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid var(--gray-light);
        }

        .legal-doc:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .legal-doc-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .legal-doc-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .legal-doc-desc {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.5;
        }

        .doc-content {
            padding: 20px;
            line-height: 1.8;
            color: var(--text-light);
        }

        .doc-content h3 {
            margin: 25px 0 15px;
            color: var(--text-color);
        }

        .doc-content p {
            margin-bottom: 15px;
        }

        .doc-content ul {
            padding-left: 30px;
            margin-bottom: 20px;
        }

        .doc-content li {
            margin-bottom: 10px;
        }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .feature-section {
                gap: 40px;
            }
            
            .feature-image {
                height: 400px;
            }
            
            .feature-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .feature-section {
                flex-direction: column;
                gap: 40px;
                margin: 60px auto;
            }
            
            .feature-section.reverse {
                flex-direction: column;
            }
            
            .feature-image {
                width: 100%;
                max-width: 600px;
                height: 350px;
            }
            
            .tariffs {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .legal-docs {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 0;
            }
            
            .header-container {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .main-nav {
                display: none;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .burger-btn {
                display: flex;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .quick-links {
                gap: 15px;
            }
            
            .quick-link {
                width: 100px;
            }
            
            .link-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .floating-nav {
                display: none;
            }
            
            .search-button span {
                display: none;
            }
            
            .search-button {
                padding: 0 25px;
            }
            
            .modal-content {
                padding: 30px;
            }
            
            .feature-title {
                font-size: 2rem;
            }
            
            .feature-subtitle {
                font-size: 1.1rem;
            }
            
            .auth-text {
                display: none;
            }

            .search-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .quick-links {
                gap: 10px;
            }
            
            .quick-link {
                width: 85px;
            }
            
            .link-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .link-text {
                font-size: 0.85rem;
            }
            
            .modal-content {
                padding: 25px 20px;
                width: 95%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .feature-title {
                font-size: 1.8rem;
            }
            
            .feature-list li {
                font-size: 1rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .stats {
                font-size: 0.9rem;
                padding: 10px;
            }
            
            .search-input {
                padding: 15px;
                font-size: 1rem;
            }
            
            .search-button {
                padding: 0 15px;
            }
        }

        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }

        /* Утилиты */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Сообщения об ошибках */
        .form-error {
            color: var(--error-color);
            background: var(--error-light);
            padding: 10px 15px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .form-alert {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 15px 25px;
            background-color: var(--error-color);
            color: white;
            border-radius: var(--border-radius);
            z-index: 10000;
            box-shadow: var(--shadow-lg);
        }

        /* Ленивая загрузка изображений */
        .lazy {
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lazy.loaded {
            opacity: 1;
        }
        
        /* Плавающая кнопка поддержки */
        .support-fab {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a73ff, #6a11cb);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(42, 115, 255, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .support-fab:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 6px 25px rgba(42, 115, 255, 0.6);
        }

        .support-fab .fab-icon {
            font-size: 24px;
        }

        .support-bubble {
            position: absolute;
            bottom: 70px;
            right: 20px;
            background: white;
            color: #333;
            padding: 12px 16px;
            border-radius: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            font-size: 14px;
            max-width: 200px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            pointer-events: none;
            font-weight: 500;
            border: 1px solid #e0e0e0;
            display: none;
        }

        .support-bubble.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .close-bubble {
            position: absolute;
            top: 5px;
            right: 8px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #777;
        }

        .notification {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: white;
            color: #333;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            z-index: 1500;
            max-width: 300px;
            display: none;
            animation: slideUp 0.5s ease;
            border-left: 4px solid #2a73ff;
        }
        
        .notification.show {
            display: block;
        }
        
        .notification h4 {
            margin-bottom: 8px;
            color: #2a73ff;
        }

        .close-notification {
            position: absolute;
            top: 8px;
            right: 10px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #777;
        }

        /* SEO статья */
        .seo-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .seo-content {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .seo-content h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: #2a73ff;
            text-align: center;
        }

        .seo-content h3 {
            font-size: 1.5rem;
            margin: 30px 0 20px;
            color: #3e3467;
        }

        .seo-content p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .seo-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }

        .seo-table th, .seo-table td {
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            text-align: left;
        }

        .seo-table th {
            background-color: #f0f5ff;
            font-weight: 600;
        }

        .seo-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .seo-tips {
            background: #f0f8ff;
            border-left: 4px solid #2a73ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(42, 115, 255, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(42, 115, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(42, 115, 255, 0); }
        }

        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Исправления для модального окна тарифов */
        #tariffModal .tariffs {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        #tariffModal .tariff-card {
            padding: 20px;
        }

        /* Стили для модального окна поддержки */
        .operators {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .operator {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .support-info {
            text-align: center;
            margin-bottom: 30px;
        }

        .topics h3 {
            text-align: center;
            margin-bottom: 20px;
        }

        .topic-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .topic-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-color);
            padding: 15px;
            border-radius: var(--border-radius);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--gray-light);
            min-height: 60px;
        }

        .topic-item:hover {
            background: var(--secondary-color);
            border-color: var(--primary-color);
        }

        .topic-item.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .contact-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .telegram {
            background: #0088cc;
            color: white;
        }

        .whatsapp {
            background: #25D366;
            color: white;
        }

        .email {
            background: var(--primary-color);
            color: white;
        }

        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Стили для выбора способа оплаты */
        .payment-methods {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .payment-method {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .payment-method:hover {
            border-color: var(--primary-color);
        }

        .payment-method.active {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .payment-method .icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .payment-method.active .icon {
            color: var(--primary-color);
        }

        .payment-method .name {
            font-weight: 500;
        }
        
        .payment-info {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 10px;
            text-align: center;
        }
        
        .hidden {
            display: none;
        }
        
             /* Контейнер для таблиц */
        .table-container {
            width: 100%;
            overflow-x: auto;
            margin: 20px 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
        }
                .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/imgrus/01.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
         }