/* Базовые стили */
        /* Отключаем подсветку при нажатии на мобильных устройствах */
        * {
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }

        /* Восстанавливаем выделение текста для элементов, где это нужно */
        p, h1, h2, h3, h4, h5, h6, span, div:not(.btn):not(.feature-card):not(.pricing-card):not(.integration-card):not(.faq-item):not(.social-link):not(.theme-toggle):not(.mobile-menu-toggle) {
            -webkit-user-select: text;
            user-select: text;
        }

        :root {
            /* Основные цвета */
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #818cf8;
            --secondary: #10b981;
            --accent: #f59e0b;

            /* Цвета карт */
            --card-main-from: #5770e7;
            --card-main-to: #20c9a0;
            --card-middle-from: #4f4fd8;
            --card-middle-to: #6a5fdd;
            --card-back-from: #3db865;
            --card-back-to: #f0a030;

            /* Нейтральные цвета */
            --text: #1f2937;
            --text_light: #6b7280;
            --background: #ffffff;
            --background-alt: #f9fafb;
            --border: #e5e7eb;
            --border_light: #f3f4f6;

            /* Функциональные цвета */
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;

            /* Размеры */
            --container-width: 1200px;
            --header-height: 80px;
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --border-radius-lg: 16px;

            /* Тени */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

            /* Переходы */
            --transition: all 0.3s ease;
            --transition-fast: all 0.15s ease;
        }

        /* Темная тема - полностью переработана для лучшей читаемости */
        .dark-theme {
            /* Основные цвета */
            --primary: #8b5cf6;
            --primary-dark: #7c3aed;
            --primary-light: #a78bfa;
            --secondary: #10b981;
            --accent: #f59e0b;

            /* Нейтральные цвета - более мягкий контраст */
            --text: #e2e8f0;
            --text-light: #94a3b8;
            --background: #121212; /* Изменено на более темный цвет */
            --background-alt: #1e1e1e; /* Изменено на более темный цвет */
            --border: #2e2e2e;
            --border-light: #3d3d3d;

            /* Функциональные цвета */
            --success: #22c55e;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;

            /* Тени для темной темы */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
        }

        /* Сброс стилей */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
            "Helvetica Neue", sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: var(--text);
            background-color: var(--background);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .dark-theme body::before {
            background: radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition-fast);
        }

        a:hover {
            color: var(--primary-dark);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Контейнер */
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Заголовки */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5em;
            color: var(--text);
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        h4 {
            font-size: 1.25rem;
        }

        /* Секции */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-header.left-aligned {
            text-align: left;
            margin: 0 0 30px;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-top: 1rem;
        }

        /* Акцентный текст */
        .accent {
            color: var(--primary);
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            text-align: left;
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
            text-align: center;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.4);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }

        .btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            20% {
                transform: scale(25, 25);
                opacity: 0.3;
            }
            100% {
                opacity: 0;
                transform: scale(40, 40);
            }
        }

        .btn svg {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            background-color: var(--background-alt);
            color: var(--text);
            transform: translateY(-2px);
            border-color: var(--primary-light);
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        .btn-block {
            width: 100%;
            display: block;
        }

        /* Хедер */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: transparent;
            z-index: 1000;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .header.scrolled {
            background-color: var(--background);
            box-shadow: var(--shadow-sm);
        }

        .dark-theme .header.scrolled {
            background-color: rgba(18, 18, 18, 0.95);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        <
        div class

        =
        "logo"
        >

        <
        a href

        =
        "#"
        class

        =
        "logo-link"
        onclick

        =
        "window.scrollTo({top: 0, behavior: 'smooth'}); return false;"
        >

        <
        span class

        =
        "logo-text"
        >
        GEM

        <
        span class

        =
        "accent"
        > pay

        <
        /
        span >

        <
        /
        span >

        <
        /
        a >

        <
        /
        div >
        .logo-link {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text);
            position: relative;
            display: inline-block;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, var(--text), var(--text));
            -webkit-background-clip: text;
            background-clip: text;
        }

        .logo-text .accent {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline;
        }

        .main-nav {
            display: flex;
            align-items: center;
        }

        .main-nav ul {
            display: flex;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            color: var(--text);
            font-weight: 500;
            position: relative;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .main-nav a:hover {
            color: var(--primary);
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition-fast);
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--text);
            transition: var(--transition-fast);
            position: relative;
            overflow: hidden;
        }

        .theme-toggle:hover {
            background-color: var(--background-alt);
            color: var(--primary);
        }

        .theme-toggle .icon-light {
            display: none;
            position: absolute;
            transition: transform 0.3s ease;
        }

        .theme-toggle .icon-dark {
            display: block;
            position: absolute;
            transition: transform 0.3s ease;
        }

        .dark-theme .theme-toggle .icon-light {
            display: block;
            transform: rotate(0deg);
        }

        .dark-theme .theme-toggle .icon-dark {
            display: none;
            transform: rotate(180deg);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text);
        }

        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            height: auto;
            background-color: var(--background);
            z-index: 999;
            transform: translateX(100%);
            transition: var(--transition);
            overflow-y: auto;
            padding: 2rem 0;
            box-shadow: var(--shadow-md);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Новая сетка для мобильного меню */
        .mobile-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .mobile-menu-column {
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-column h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .mobile-menu-column ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-column a {
            color: var(--text);
            font-size: 0.95rem;
            transition: var(--transition-fast);
            display: block;
            padding: 5px 0;
        }

        .mobile-menu-column a:hover {
            color: var(--primary);
        }

        /* Стили для упрощенного мобильного меню */
        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 1.5rem;
            margin: 0 auto;
            max-width: 300px;
            width: 100%;
        }

        .mobile-actions .btn {
            width: 100%;
            justify-content: center;
            font-size: 1.1rem;
            padding: 0.9rem 1.5rem;
        }

        .mobile-actions .btn-primary {
            margin-top: 0.5rem;
        }

        /* Загрузочный экран */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.1) 0%, transparent 50%), var(--background);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .splash-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .splash-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            border-radius: var(--border-radius-lg);
            background-color: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-lg);
            animation: fadeIn 1s ease;
        }

        .dark-theme .splash-content {
            background-color: rgba(30, 30, 30, 0.5);
        }

        .splash-logo-text {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
            color: var(--text);
        }

        .splash-logo-text .accent {
            color: var(--primary);
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline;
        }

        .dark-theme .splash-logo-text {
            color: #ffffff;
        }

        .dark-theme .splash-content {
            background-color: rgba(30, 30, 30, 0.7);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
        }

        .dark-theme .splash-tagline {
            color: #b4b4b4;
        }

        .splash-tagline {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .splash-loader {
            width: 300px;
            height: 6px;
            background-color: var(--border);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .splash-loader::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 30%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            animation: loading 1.5s infinite;
            border-radius: 3px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes loading {
            0% {
                left: -30%;
            }
            100% {
                left: 100%;
            }
        }

        /* Hero секция */
        .hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            flex: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 1rem;
            max-width: 600px;
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        /* Hero stats styles start */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
            text-align: left;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            min-width: 120px;
            text-align: left;
            align-items: flex-start;
        }

        /* Hero stats styles end */

        /* Stat value styles start */
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
            text-align: left;
            display: block;
            width: 100%;
        }

        /* Stat value styles end */

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
            text-align: left; /* Также выравниваем метки по левому краю для согласованности */
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1500px;
        }

        /* Обновляем стили для карт с 3D-эффектами */
        .card-visual {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 250px;
            transform-style: preserve-3d;
            cursor: pointer;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotateX(0deg) rotateZ(0deg);
            }
            50% {
                transform: translateY(-10px) rotateX(2deg) rotateZ(1deg);
            }
            100% {
                transform: translateY(0px) rotateX(0deg) rotateZ(0deg);
            }
        }

        .card-element {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            backface-visibility: hidden;
            overflow: hidden;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transform-style: preserve-3d;
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: white;
        }

        .card-content {
            position: relative;
            transform-style: preserve-3d;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-main {
            background: linear-gradient(135deg, var(--card-main-from), var(--card-main-to));
            z-index: 3;
            transform: translateZ(40px);
        }

        .card-middle {
            background: linear-gradient(135deg, var(--card-middle-from), var(--card-middle-to));
            z-index: 2;
            transform: translateZ(20px) translateX(-20px) translateY(20px);
        }

        .card-back {
            background: linear-gradient(135deg, var(--card-back-from), var(--card-back-to));
            z-index: 1;
            transform: translateZ(0) translateX(-40px) translateY(40px);
        }

        /* Анимация при наведении или с классом hovered */
        .card-visual.hovered {
            transform: rotateX(15deg);
            animation: none !important;
        }

        .card-visual.hovered .card-main {
            transform: translateZ(80px) translateX(100px) translateY(-80px) rotateZ(5deg);
            box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.2), 0 20px 20px -10px rgba(0, 0, 0, 0.1);
        }

        .card-visual.hovered .card-middle {
            transform: translateZ(40px) rotateZ(-2deg);
            box-shadow: 0 25px 35px -8px rgba(0, 0, 0, 0.18), 0 15px 15px -8px rgba(0, 0, 0, 0.08);
        }

        .card-visual.hovered .card-back {
            transform: translateZ(0) translateX(-100px) translateY(80px) rotateZ(-8deg);
            box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
        }

        /* Добавляем эффект свечения при наведении */
        .card-visual.hovered .card-element {
            filter: brightness(1.1);
        }

        .card-chip {
            width: 50px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            margin-bottom: 20px;
            transform: translateZ(5px);
            box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.1);
        }

        .card-number {
            font-size: 1.5rem;
            letter-spacing: 2px;
            margin-bottom: 30px;
            transform: translateZ(10px);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .card-details {
            display: flex;
            justify-content: space-between;
            transform: translateZ(8px);
        }

        .card-name,
        .card-date {
            font-size: 1rem;
            text-transform: uppercase;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        /* Блок преимуществ */
        .features {
            background-color: var(--background-alt);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background-color: var(--background);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background-color: var(--primary);
            color: white;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .feature-card:hover h3 {
            color: var(--primary);
        }

        .feature-card p {
            color: var(--text-light);
            margin-top: auto;
            min-height: 4.5em; /* Добавляем минимальную высоту для выравнивания */
            display: flex;
            align-items: flex-start; /* Выравниваем текст по верхнему краю */
        }

        /* Pricing Section */
        .pricing {
            background-color: var(--background);
            position: relative;
        }

        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }

        .pricing-card {
            background-color: var(--background);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px 30px;
            flex: 1;
            max-width: 400px;
            transition: var(--transition);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, var(--primary-light), transparent);
            opacity: 0.05;
            transition: height 0.3s ease;
            z-index: 0;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .pricing-card:hover::after {
            height: 100%;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-md);
            position: relative;
            z-index: 2;
        }

        .pricing-card-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .pricing-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .pricing-card:hover .pricing-icon {
            transform: scale(1.1);
            background-color: var(--primary);
            color: white;
        }

        .pricing-icon svg {
            width: 35px;
            height: 35px;
        }

        .pricing-card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .pricing-tag {
            display: inline-block;
            padding: 5px 12px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-card-price {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
            position: relative;
            z-index: 1;
        }

        .pricing-card-price .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text);
            display: block;
            line-height: 1;
            margin-bottom: 10px;
        }

        .pricing-card-price .period {
            font-size: 1rem;
            color: var(--text-light);
        }

        .pricing-card-features {
            margin-bottom: 30px;
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }

        .pricing-card-features ul {
            padding-left: 10px;
        }

        .pricing-card-features li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
            color: var(--text-light);
        }

        .pricing-card-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .pricing-card-action {
            margin-top: auto;
            position: relative;
            z-index: 1;
        }

        .pricing-note {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-light);
            padding: 20px;
            border-radius: var(--border-radius);
            background-color: var(--background-alt);
        }

        .pricing-note a {
            font-weight: 500;
        }

        /* Обновленные стили для компактного отображения тарифов */
        .pricing-cards.compact {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Обновляем стили для карточек тарифов, чтобы они соответствовали карточкам преимуществ */
        .pricing-cards.compact .pricing-card {
            background-color: var(--background);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 25px 20px;
            flex: 1;
            max-width: 350px;
            transition: var(--transition);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
        }

        .pricing-cards.compact .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }

        .pricing-cards.compact .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-md);
            position: relative;
            z-index: 2;
        }

        .pricing-cards.compact .pricing-card-header {
            margin-bottom: 15px;
        }

        .pricing-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
        }

        .pricing-cards.compact .pricing-card-header h3 {
            font-size: 1.25rem;
            margin-bottom: 5px;
        }

        .pricing-cards.compact .pricing-tag {
            display: inline-block;
            padding: 3px 10px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-cards.compact .pricing-card-price {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .pricing-cards.compact .pricing-card-price .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text);
            display: block;
            line-height: 1;
        }

        .pricing-cards.compact .pricing-card-action {
            width: 100%;
        }

        /* О нас */
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .stats-dashboard {
            background-color: var(--background);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            padding: 30px;
            width: 100%;
            max-width: 500px;
            position: relative;
            overflow: hidden;
        }

        .stats-dashboard::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            opacity: 0.05;
            border-radius: 0 0 0 100%;
            z-index: 0;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .dashboard-title {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .dashboard-period {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .dashboard-chart {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            height: 200px;
            gap: 15px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, var(--primary), var(--secondary));
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
            position: relative;
        }

        .chart-bar:hover {
            transform: scaleY(1.05);
        }

        .chart-bar::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
            border-radius: var(--border-radius-sm);
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .dashboard-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-name {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 8px;
            text-align: center;
            width: 100%;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            width: 100%;
        }

        /* Улучшаем контрастность текста в дашборде статистики для темной темы */
        .dark-theme .dashboard-title,
        .dark-theme .dashboard-period,
        .dark-theme .stat-name,
        .dark-theme .stat-value {
            color: #ffffff;
        }

        .dark-theme .dashboard-title {
            color: #ffffff;
            font-weight: 600;
        }

        .dark-theme .dashboard-period {
            color: #b4b4b4;
        }

        .dark-theme .stat-name {
            color: #b4b4b4;
        }

        .dark-theme .stat-value {
            color: #ffffff;
            font-weight: 600;
        }

        /* Интеграции и поддержка */
        .integrations {
            background-color: var(--background-alt);
            position: relative;
            overflow: hidden;
        }

        .integrations::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            opacity: 0.05;
            z-index: 0;
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .integration-card {
            background-color: var(--background);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .integration-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .integration-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .integration-card:hover::after {
            transform: scaleX(1);
        }

        .integration-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .integration-card:hover .integration-icon {
            transform: scale(1.1);
            background-color: var(--primary);
            color: white;
        }

        .integration-icon svg {
            width: 35px;
            height: 35px;
        }

        .integration-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .integration-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .integration-features {
            margin-top: auto;
            width: 100%;
        }

        .integration-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .integration-feature svg {
            width: 18px;
            height: 18px;
            color: var(--success);
            margin-right: 10px;
            flex-shrink: 0;
        }

        .integration-feature span {
            color: var(--text);
            font-size: 0.95rem;
        }

        /* Как это работает */
        .how-it-works {
            background-color: var(--background);
            position: relative;
        }

        .steps {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            position: relative;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 50px;
            left: 25px;
            width: 2px;
            height: calc(100% - 10px);
            background: linear-gradient(to bottom, var(--primary), var(--primary-light));
            z-index: 0;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            font-size: 1.25rem;
            font-weight: 600;
            margin-right: 30px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 15px -5px var(--primary);
        }

        .step-content {
            flex: 1;
        }

        .step-content h3 {
            margin-bottom: 10px;
            color: var(--text);
            transition: var(--transition);
        }

        .step:hover .step-content h3 {
            color: var(--primary);
        }

        .step-content p {
            color: var(--text-light);
        }

        .how-it-works-cta {
            text-align: center;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .faq-item {
            background-color: var(--background);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: box-shadow 0.4s ease, transform 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .faq-item:last-child {
            margin-bottom: 0;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 30px;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .faq-item:hover .faq-question {
            background-color: var(--background-alt);
        }

        .faq-question h3 {
            margin-bottom: 0;
            font-size: 1.125rem;
            flex: 1;
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-question h3 {
            color: var(--primary);
        }

        .faq-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            color: var(--text);
            margin-left: 15px;
            font-size: 24px;
            font-weight: bold;
            line-height: 1;
            transition: transform 0.5s ease, color 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            color: var(--primary);
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 20px;
            opacity: 1;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.6;
            transform: translateY(10px);
            transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
            opacity: 0;
        }

        .faq-item.active .faq-answer p {
            transform: translateY(0);
            opacity: 1;
        }

        .faq-cta {
            text-align: center;
        }

        .faq-cta p {
            margin-bottom: 15px;
            color: var(--text-light);
        }

        /* CTA */
        .cta {
            background-color: var(--background-alt);
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Футер */
        .footer {
            background-color: var(--background);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
            position: relative;
        }

        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 90%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr; /* Изменено с 1.5fr 1fr 1fr 1fr */
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-description {
            color: var(--text-light);
            margin: 20px 0;
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--background-alt);
            color: var(--text);
            transition: var(--transition-fast);
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-size: 1.125rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            transition: var(--transition-fast);
            text-decoration: none;
            position: relative;
            display: inline-block;
        }

        .footer-links a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid var(--border);
            position: relative;
            z-index: 1;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
        }

        .footer-legal a {
            color: var(--text-light);
            font-size: 0.875rem;
            transition: var(--transition-fast);
        }

        .footer-legal a:hover {
            color: var(--primary);
        }

        .footer-copyright {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        /* Счетчик статистики */
        .stats-counter {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 60px auto;
            max-width: 800px;
        }

        .counter-item {
            text-align: center;
            flex: 1;
        }

        .counter-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            position: relative;
        }

        /* Удаляем псевдоэлемент с плюсом */
        .counter-value::after {
            content: none;
        }

        .counter-label {
            font-size: 1rem;
            color: var(--text-light);
        }

        /* Анимации */
        [data-aos] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        [data-aos-delay="100"] {
            transition-delay: 0.1s;
        }

        [data-aos-delay="200"] {
            transition-delay: 0.2s;
        }

        [data-aos-delay="300"] {
            transition-delay: 0.3s;
        }

        [data-aos-delay="400"] {
            transition-delay: 0.4s;
        }

        [data-aos-delay="500"] {
            transition-delay: 0.5s;
        }

        /* Добавьте после стилей .theme-container */
        .theme-container {
            background-color: var(--background);
            min-height: 100vh;
        }

        .dark-theme .feature-card,
        .dark-theme .stats-dashboard,
        .dark-theme .faq-item,
        .dark-theme .integration-card {
            background-color: var(--background-alt);
        }

        /* Обновляем стили для темной темы, чтобы карточки тарифов имели тот же фон, что и карточки преимуществ */
        .dark-theme .pricing-cards.compact .pricing-card {
            background-color: #1e1e1e;
        }

        .dark-theme .features,
        .dark-theme .cta {
            background-color: var(--background);
        }

        /* Заменяем все медиа-запросы в конце файла на следующие */

        /* Медиа-запросы */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }

            h2 {
                font-size: 2.25rem;
            }

            .hero-title {
                font-size: 3rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }

            .hero {
                padding: 140px 0 80px;
            }

            .hero .container {
                flex-direction: column;
                gap: 60px;
            }

            .hero-content,
            .hero-image {
                flex: none;
                width: 100%;
            }

            .about-content {
                flex-direction: column;
                gap: 60px;
            }

            .about-text,
            .about-image {
                flex: none;
                width: 100%;
            }

            .integrations-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .header {
                max-width: calc(100% - 16px);
                left: 8px;
                top: 8px;
            }

            .mobile-menu {
                top: calc(var(--header-height) + 8px);
                left: 8px;
                width: calc(100% - 16px);
            }

            /* Центрируем элементы в шапке по вертикали */
            .logo,
            .header-actions {
                display: flex;
                align-items: center;
            }

            .logo-text {
                font-size: 1.25rem;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
            }

            .header-actions .btn {
                display: none;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            /* Исправляем кнопку "Подключить API" в мобильной версии */
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                width: 100%;
            }

            .hero-cta .btn {
                width: 100%;
                max-width: 100%;
                text-align: center;
                justify-content: center;
            }

            .pricing-cards.compact {
                flex-direction: column;
                align-items: center;
            }

            .pricing-cards.compact .pricing-card {
                width: 100%;
                max-width: 300px;
            }

            .cta-content h2 {
                font-size: 1.75rem;
            }

            .cta-content p {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            /* Карточки в мобильной версии - сдвигаем вправо */
            .card-visual {
                max-width: 320px;
                height: 200px;
                margin-left: auto;
                margin-right: auto;
            }

            .card-visual.hovered .card-main {
                transform: translateZ(60px) translateX(60px) translateY(-60px) rotateZ(5deg);
            }

            .card-visual.hovered .card-back {
                transform: translateZ(0) translateX(-60px) translateY(60px) rotateZ(-8deg);
            }

            .card-number {
                font-size: 1.25rem;
            }

            /* Выравниваем данные конверсии в мобильной версии */
            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                margin-top: 15px;
            }

            .dashboard-stat {
                text-align: center;
                padding: 0 5px;
            }

            .stat-name {
                font-size: 0.75rem;
                margin-bottom: 5px;
                min-height: 2.5em;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .stat-value {
                font-size: 1.2rem;
                line-height: 1.2;
            }

            /* Футер в мобильной версии */
            .footer {
                padding: 60px 0 30px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 30px;
            }

            .footer-col:first-child {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-description {
                margin: 20px auto;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .footer-copyright {
                margin-top: 10px;
            }

            /* Убираем футер из мобильного меню */
            .mobile-menu .footer-links-container,
            .mobile-menu .footer-col,
            .mobile-menu .footer-bottom {
                display: none;
            }

            .stats-counter {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            /* Для очень маленьких экранов */
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col {
                margin-bottom: 30px;
            }

            .footer-col:last-child {
                margin-bottom: 0;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        /* Стили для планшетов (средние экраны) */
        @media (min-width: 577px) and (max-width: 991px) {
            .mobile-menu-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .mobile-menu-column h3 {
                font-size: 1rem;
            }

            .mobile-menu-column a {
                font-size: 0.9rem;
                padding: 6px 0;
            }
        }

        /* Исправляем футер в мобильной версии, чтобы он отображался в 3 колонки */
        @media (max-width: 768px) {
            .footer-links-container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                margin-top: 30px;
            }

            .footer-col {
                margin-bottom: 0;
            }

            .footer-col h4 {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .footer-links li {
                margin-bottom: 5px;
            }

            .footer-links a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .footer-links-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .footer-col h4 {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .footer-links a {
                font-size: 0.8rem;
            }

            .footer-links li {
                margin-bottom: 8px;
            }
        }

        /* Мобильное меню для маленьких экранов */
        .mobile-menu-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .mobile-menu-column {
            text-align: center;
        }

        .mobile-menu-column ul {
            align-items: center;
        }

        /* Эффект shimmer для элементов */
        .shimmer {
            position: relative;
            overflow: hidden;
        }

        .shimmer::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.2) 50%,
                    rgba(255, 255, 255, 0) 100%
            );
            animation: shimmer 2s infinite;
            z-index: 1;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 200%;
            }
        }

        /* Стили для счетчика пользователей */
        .user-counter {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(90deg, var(--primary-light), var(--primary));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 500;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }

        .user-counter-icon {
            margin-right: 8px;
        }

        .user-counter-text {
            font-size: 0.9rem;
        }

        /* Улучшаем читаемость в темной теме */
        .dark-theme .logo-text {
            color: #ffffff;
        }

        .dark-theme .hero-title,
        .dark-theme .section-header h2,
        .dark-theme h3,
        .dark-theme .counter-value,
        .dark-theme .stat-value,
        .dark-theme .cta-content h2 {
            color: #ffffff;
        }

        .dark-theme .hero-subtitle,
        .dark-theme .section-header p,
        .dark-theme .feature-card p,
        .dark-theme .counter-label,
        .dark-theme .stat-label,
        .dark-theme .cta-content p {
            color: #b4b4b4;
        }

        .dark-theme .btn-outline {
            color: #e2e8f0;
            border-color: #3d3d3d;
        }

        .dark-theme .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: var(--primary-light);
        }

        /* Исправляем футер в мобильной версии */
        @media (max-width: 768px) {
            .footer-content {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            .footer-col:first-child {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-description {
                margin: 20px auto;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .footer-col h4 {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .footer-links a {
                font-size: 0.8rem;
            }

            .footer-links li {
                margin-bottom: 8px;
            }
        }

        /* Стилизуем счетчик статистики в цветах лендинга */
        .stats-counter {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 60px auto;
            max-width: 800px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .counter-item {
            text-align: center;
            flex: 1;
            position: relative;
            padding: 20px 10px;
            border-radius: var(--border-radius-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .counter-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
            background-color: rgba(255, 255, 255, 0.5);
        }

        .dark-theme .counter-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .counter-value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .counter-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .dark-theme .counter-label {
            color: #b4b4b4;
        }

        .dark-theme .stats-counter {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        }

        /* Улучшаем отображение статистики в hero секции для мобильных устройств */
        @media (max-width: 768px) {
            .hero-stats {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                margin-top: 2rem;
                width: 100%;
            }

            .hero-stats .stat-item {
                min-width: 100%;
                text-align: center;
            }

            .hero-stats .stat-value {
                font-size: 2rem;
            }

            .hero-stats .stat-label {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-stats .stat-value {
                font-size: 1.75rem;
            }

            .hero-stats .stat-label {
                font-size: 0.9rem;
            }
        }