        :root {
            --primary: #ff652f;
            --secondary: #fbd00c;
            --accent: #ff6b6b;
            --dark: #1a202c;
            --light: #ffffff;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --bg-gradient: linear-gradient(135deg, #58fb0c 0%, #892fff 100%);
            --card-bg: rgba(255, 255, 255, 0.95);
            --card-border: rgba(226, 232, 240, 0.6);
            --scroll-bg: rgb(255 255 255 / 82%);
            --glass-bg: rgba(255, 255, 255, 0.9);
            --progress-dot: rgba(45, 55, 72, 0.2);
            --border-color: #e2e8f0;
            --primary-rgb: 255, 101, 47;
        }
        
        [data-theme="dark"] {
            --primary: #60a5fa;
            --secondary: #fbbf24;
            --accent: #f87171;
            --dark: #f7fafc;
            --light: #0f172a;
            --text-primary: #f1f5f9;
            --text-secondary: #e2e8f0;
            --text-muted: #94a3b8;
            --bg-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            --card-bg: rgba(30, 41, 59, 0.95);
            --card-border: rgba(71, 85, 105, 0.5);
            --scroll-bg: rgba(15, 23, 42, 0.95);
            --glass-bg: rgba(30, 41, 59, 0.8);
            --progress-dot: rgba(148, 163, 184, 0.3);
            --border-color: #475569;
            --primary-rgb: 96, 165, 250;
        }
        
        /* Fix для мобильных - предотвращаем сдвиг */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            overflow-x: hidden !important;
            overflow-y: auto !important;
            scroll-behavior: smooth;
            height: auto !important;
            position: relative !important;
            width: 100% !important;
            max-width: 100% !important;
        }
        
        body {
            min-height: 100vh;
            background: var(--light);
            overflow-x: hidden !important;
            width: 100% !important;
        }
        
        body.main-page {
            overflow-x: hidden !important;
            position: relative !important;
            height: auto !important;
        }
        
        /* Фикс для всех контейнеров */
        .main-content, section, .container, .max-w-* {
            overflow-x: hidden !important;
        }
        
        /* Фикс для карточек на мобильных */
        .modern-card, .pain-card, .income-card, .support-card {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        /* Предотвращаем сдвиг при появлении AOS элементов */
        [data-aos] {
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }
        
        .scroll-section, .slide { display: none !important; }
        .main-content { display: block !important; position: relative; z-index: 1; }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            pointer-events: none;
            animation: floatParticle linear infinite;
        }
        
        @keyframes floatParticle {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .floating-card {
            animation: floatCard 6s ease-in-out infinite;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .pulse-border {
            animation: pulseBorder 2s ease-in-out infinite;
        }
        
        @keyframes pulseBorder {
            0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
            50% { box-shadow: 0 0 0 20px rgba(var(--primary-rgb), 0); }
        }
        
        .gradient-border {
            position: relative;
            background: var(--card-bg);
            border-radius: 20px;
        }
        
        .gradient-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gradient-border:hover::before { opacity: 1; }
        
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 40px;
            font-size: 12px;
        }
        
        .testimonial-slider {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
        }
        
        .testimonial-slider::-webkit-scrollbar { height: 6px; }
        .testimonial-slider::-webkit-scrollbar-track { background: var(--border-color); border-radius: 3px; }
        .testimonial-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
        
        .testimonial-card {
            scroll-snap-align: start;
            flex: 0 0 100%;
            min-width: 280px;
        }
        
        @media (min-width: 768px) {
            .testimonial-card { flex: 0 0 calc(33.333% - 1rem); }
        }
        
        .cta-pulse {
            animation: ctaPulse 1.5s ease infinite;
        }
        
        @keyframes ctaPulse {
            0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0); }
            100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
        }
        
        @media (max-width: 768px) {
            .counter-number { font-size: 2rem; }
            .hero-title { font-size: 2rem; }
        }
        
        .faq-question {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover { color: var(--primary); }
        .faq-answer { transition: all 0.3s ease; }
        .faq-answer.hidden { display: none; }
        .rotate-180 { transform: rotate(180deg); }
        
        section { scroll-margin-top: 80px; }
        
        @media (max-width: 767px) {
            .hero-particles { display: none !important; }
        }
        
        /* Стили для триггерных карточек */
        .pain-card {
            background: linear-gradient(135deg, rgba(239,68,68,0.05), rgba(239,68,68,0.02));
            border-left: 4px solid #ef4444;
        }
        
        .income-card {
            background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(16,185,129,0.02));
            border-left: 4px solid #10b981;
        }
        
        .urgent-badge {
            background: #ef4444;
            color: white;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
            100% { opacity: 0.7; transform: scale(1); }
        }
        
        .social-proof {
            background: rgba(var(--primary-rgb), 0.05);
            border-radius: 16px;
        }
        
        .step-card {
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-8px);
        }
        
        .ai-badge {
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
        }
        
        .modern-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            width: 100%;
        }
        
        .modern-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 80%, black) 100%);
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            border-radius: 12px;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
        }
        
        /* Адаптивная кнопка - на мобильных только иконка */
        .btn-primary-responsive {
            background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 80%, black) 100%);
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (max-width: 640px) {
            .btn-primary-responsive .btn-text {
                display: none;
            }
            .btn-primary-responsive {
                width: 40px;
                height: 40px;
                padding: 0 !important;
            }
            .btn-primary-responsive i {
                margin: 0 !important;
            }
        }
        
        @media (min-width: 641px) {
            .btn-primary-responsive {
                padding: 8px 24px;
            }
            .btn-primary-responsive .btn-text {
                display: inline;
            }
            .btn-primary-responsive i {
                margin-right: 8px;
            }
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 12px;
        }
        
        .btn-secondary:hover {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .theme-toggle-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .theme-toggle-button {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fff 0%, #d5d5d5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .theme-toggle-button { width: 60px; height: 60px; }
        }
        
        .theme-toggle-button:hover {
            transform: scale(1.05);
        }
        
        [data-theme="dark"] .moon-icon {
            display: none;
        }
        
        [data-theme="light"] .sun-icon {
            display: none;
        }
        
        /* Стили для блока поддержки */
        .support-card {
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(139,92,246,0.05));
            border: 1px solid rgba(var(--primary-rgb), 0.2);
        }
        
        .community-badge {
            background: rgba(16,185,129,0.1);
            border-radius: 40px;
            padding: 4px 12px;
            display: inline-block;
        }
        
        .comparison-item {
            background: rgba(var(--primary-rgb), 0.05);
            border-radius: 16px;
            padding: 1rem;
        }
        
        /* Фикс для сеток на мобильных */
        .grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .grid.md\:grid-cols-2, .grid.md\:grid-cols-3, .grid.md\:grid-cols-4 {
                grid-template-columns: 1fr !important;
            }
            .container, .max-w-7xl, .max-w-6xl, .max-w-4xl {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }
        }
        
        /* Фикс для AOS на мобильных - предотвращаем сдвиг */
        [data-aos].aos-animate {
            transform: translateZ(0) !important;
        }
        
        /* Предотвращаем горизонтальный скролл */
        .overflow-hidden {
            overflow-x: hidden !important;
        }
        
        img, svg, video, iframe {
            max-width: 100%;
        }

    /* Плавающие блоки на картинках */
    .floating-bubble {
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(var(--primary-rgb), 0.2);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
        z-index: 50;
        overflow: visible;
    }

    /* Важно: чтобы блоки не обрезались */
    .overflow-visible {
        overflow: visible !important;
    }

    .modern-card {
        overflow: visible !important;
    }

    /* Стили для контейнера картинки */
    .relative.overflow-hidden.rounded-2xl {
        overflow: hidden;
    }

    /* Родительский контейнер тоже должен быть overflow visible */
    .flex.justify-center.relative {
        overflow: visible !important;
    }

    .floating-bubble:hover {
        transform: scale(1.05);
        border-color: var(--primary);
        box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }

    /* Предотвращаем обрезание текста */
    .floating-bubble .whitespace-nowrap {
        white-space: nowrap;
    }

    /* ========== ХАОТИЧНЫЕ АНИМАЦИИ ДЛЯ ПЕРВОГО СЛАЙДЕРА ========== */

    /* Блок 1 - двигается вверх-вниз с разной амплитудой */
    .bubble-1 {
        animation: floatUpDown 3.2s ease-in-out infinite;
    }

    /* Блок 2 - двигается вправо-влево с замедлением */
    .bubble-2 {
        animation: floatLeftRight 4.7s ease-in-out infinite;
    }

    /* Блок 3 - двигается по диагонали */
    .bubble-3 {
        animation: floatDiagonal 5.3s ease-in-out infinite;
    }

    /* ========== ХАОТИЧНЫЕ АНИМАЦИИ ДЛЯ ВТОРОГО СЛАЙДЕРА ========== */

    /* Блок успеха 1 - двигается вверх-вниз с другой скоростью */
    .bubble-success-1 {
        animation: floatUpDownSlow 4.1s ease-in-out infinite;
    }

    /* Блок успеха 2 - двигается вправо-влево с другой скоростью */
    .bubble-success-2 {
        animation: floatLeftRightSlow 3.8s ease-in-out infinite;
    }

    /* Блок успеха 3 - двигается по кругу (эллипс) */
    .bubble-success-3 {
        animation: floatEllipse 6.2s ease-in-out infinite;
    }

    /* ========== КЛЮЧЕВЫЕ КАДРЫ АНИМАЦИЙ ========== */

    /* Вверх-вниз (быстрое) */
    @keyframes floatUpDown {
        0%, 100% {
            transform: translateY(0px);
        }
        25% {
            transform: translateY(-12px);
        }
        75% {
            transform: translateY(12px);
        }
    }

    /* Вверх-вниз (медленное) */
    @keyframes floatUpDownSlow {
        0%, 100% {
            transform: translateY(0px);
        }
        33% {
            transform: translateY(-15px);
        }
        66% {
            transform: translateY(10px);
        }
    }

    /* Влево-вправо (быстрое) */
    @keyframes floatLeftRight {
        0%, 100% {
            transform: translateX(0px);
        }
        30% {
            transform: translateX(-14px);
        }
        70% {
            transform: translateX(14px);
        }
    }

    /* Влево-вправо (медленное) */
    @keyframes floatLeftRightSlow {
        0%, 100% {
            transform: translateX(0px);
        }
        25% {
            transform: translateX(10px);
        }
        75% {
            transform: translateX(-12px);
        }
    }

    /* Диагональное движение */
    @keyframes floatDiagonal {
        0%, 100% {
            transform: translate(0px, 0px);
        }
        25% {
            transform: translate(-10px, -8px);
        }
        50% {
            transform: translate(8px, -5px);
        }
        75% {
            transform: translate(-5px, 10px);
        }
    }

    /* Движение по эллипсу */
    @keyframes floatEllipse {
        0% {
            transform: translate(0px, 0px);
        }
        25% {
            transform: translate(12px, -8px);
        }
        50% {
            transform: translate(0px, -12px);
        }
        75% {
            transform: translate(-10px, -5px);
        }
        100% {
            transform: translate(0px, 0px);
        }
    }

    /* ========== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ========== */

    /* Добавляем задержки для более хаотичного движения */
    .bubble-1 { animation-delay: 0.2s; }
    .bubble-2 { animation-delay: 0.7s; }
    .bubble-3 { animation-delay: 0.4s; }
    .bubble-success-1 { animation-delay: 0.3s; }
    .bubble-success-2 { animation-delay: 0.8s; }
    .bubble-success-3 { animation-delay: 0.5s; }

    /* Адаптация под планшеты */
    @media (max-width: 1024px) {
        .floating-bubble {
            transform: scale(0.9);
        }
        
        .floating-bubble .whitespace-nowrap {
            white-space: normal;
            min-width: 130px;
        }
        
        .bubble-1 { left: -10px !important; top: 5% !important; }
        .bubble-2 { right: -15px !important; top: 20% !important; }
        .bubble-3 { left: -8px !important; bottom: 10% !important; }
        .bubble-success-1 { left: -15px !important; top: 40% !important; }
        .bubble-success-2 { right: -20px !important; top: 30% !important; }
        .bubble-success-3 { right: -10px !important; bottom: 10% !important; }
    }

    /* Адаптация под мобильные */
    @media (max-width: 768px) {
        .floating-bubble {
            transform: scale(0.8);
            padding: 4px 10px !important;
        }
        
        .floating-bubble span {
            font-size: 10px !important;
        }
        
        .floating-bubble i {
            font-size: 12px !important;
        }
        
        .bubble-1 { left: -5px !important; top: 2% !important; min-width: 120px !important; }
        .bubble-2 { right: -10px !important; top: 15% !important; min-width: 130px !important; }
        .bubble-3 { left: -3px !important; bottom: 8% !important; min-width: 110px !important; }
        .bubble-success-1 { left: -8px !important; top: 42% !important; min-width: 140px !important; }
        .bubble-success-2 { right: -12px !important; top: 25% !important; min-width: 130px !important; }
        .bubble-success-3 { right: -5px !important; bottom: 8% !important; min-width: 120px !important; }
        
        /* Упрощаем анимации на мобильных */
        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0px) scale(0.8); }
            25% { transform: translateY(-6px) scale(0.8); }
            75% { transform: translateY(6px) scale(0.8); }
        }
        
        @keyframes floatLeftRight {
            0%, 100% { transform: translateX(0px) scale(0.8); }
            30% { transform: translateX(-8px) scale(0.8); }
            70% { transform: translateX(8px) scale(0.8); }
        }
    }

    /* Для очень маленьких экранов */
    @media (max-width: 480px) {
        .floating-bubble {
            display: none;
        }
    }

            /* Анимация появления блоков */
            .floating-bubble {
                animation-fill-mode: both;
            }

            .bubble-1 { animation-delay: 0.2s; }
            .bubble-2 { animation-delay: 0.5s; }
            .bubble-3 { animation-delay: 0.8s; }
            .bubble-success-1 { animation-delay: 0.3s; }
            .bubble-success-2 { animation-delay: 0.6s; }
            .bubble-success-3 { animation-delay: 0.9s; }

            .tab-btn {
        color: var(--text-secondary);
        background: transparent;
        transition: all 0.3s ease;
    }

    .tab-btn.active {
        background: var(--primary);
        color: white;
    }

    .tab-btn:hover:not(.active) {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary);
    }

    .tab-content {
        transition: opacity 0.3s ease;
    }

    .tab-content.hidden {
        display: none;
    }
    /* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА ========== */

    /* Модальное окно */
    #socialProofModal {
        transition: all 0.3s ease;
    }

    #socialProofModal.flex {
        display: flex !important;
    }

    #socialProofModal.hidden {
        display: none !important;
    }

    /* Стили для табов */
    .tab-btn {
        color: var(--text-secondary);
        background: transparent;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .tab-btn.active {
        background: var(--primary);
        color: white;
    }

    .tab-btn:hover:not(.active) {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary);
    }

    .tab-content {
        transition: opacity 0.3s ease;
    }

    .tab-content.hidden {
        display: none;
    }

    /* Стили для ссылок внутри модалки */
    .modal-link, a[target="_blank"] {
        color: var(--primary);
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .modal-link:hover, a[target="_blank"]:hover {
        opacity: 0.8;
        text-decoration: underline;
    }

    /* Стили для карточек внутри табов */
    .stat-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
    }

    /* Стили для градиентных чисел */
    .gradient-number {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Стили для полосок прогресса */
    .progress-bar {
        transition: width 1s ease-out;
    }

    /* Стили для скролла внутри модалки */
    .modal-scroll {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--border-color);
    }

    .modal-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .modal-scroll::-webkit-scrollbar-track {
        background: var(--border-color);
        border-radius: 3px;
    }

    .modal-scroll::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }

    /* Стили для sticky элементов */
    .sticky-header {
        position: sticky;
        top: 0;
        background: inherit;
        backdrop-filter: blur(12px);
        z-index: 20;
    }

    /* Стили для бейджей */
    .badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

    .badge-blue {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }

    .badge-green {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }

    .badge-red {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }

    .badge-yellow {
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
    }

    .badge-purple {
        background: rgba(139, 92, 246, 0.1);
        color: #8b5cf6;
    }

    /* Стили для анимации пульсации индикаторов */
    @keyframes indicatorPulse {
        0%, 100% {
            opacity: 0.5;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.2);
        }
    }

    .indicator-active {
        animation: indicatorPulse 1.5s ease infinite;
    }

    /* Стили для затемнения фона модалки */
    .modal-backdrop {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(4px);
    }

    /* Стили для кнопки закрытия */
    .modal-close-btn {
        transition: all 0.3s ease;
    }

    .modal-close-btn:hover {
        transform: rotate(90deg);
        background: rgba(var(--primary-rgb), 0.1);
    }

    /* Стили для разделителей */
    .divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        margin: 20px 0;
    }

    /* Стили для цитат */
    .quote-block {
        border-left: 3px solid var(--primary);
        padding-left: 16px;
        font-style: italic;
    }

    /* Стили для статистических блоков */
    .stats-grid {
        display: grid;
        gap: 16px;
    }

    @media (min-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Стили для hover эффектов на карточках кейсов */
    .case-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .case-card:hover {
        transform: translateX(4px);
        border-color: var(--primary);
    }

    /* Стили для источников */
    .source-link {
        font-size: 11px;
        color: var(--text-muted);
        transition: color 0.2s ease;
    }

    .source-link:hover {
        color: var(--primary);
    }

    /* Стили для иконок в табах */
    .tab-icon {
        margin-right: 8px;
        font-size: 14px;
    }

    /* Стили для мобильной адаптации модалки */
    @media (max-width: 768px) {
        .tab-btn {
            padding: 8px 16px;
            font-size: 12px;
        }
        
        .tab-icon {
            margin-right: 4px;
            font-size: 12px;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Стили для темной темы в модалке */
    [data-theme="dark"] .modal-content {
        background: var(--card-bg);
    }

    [data-theme="dark"] .stat-card {
        background: rgba(255, 255, 255, 0.03);
    }

    /* Анимация появления модалки */
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    #socialProofModal .bg-white,
    #socialProofModal .dark\:bg-gray-900 {
        animation: modalFadeIn 0.3s ease-out;
    }

    /* Стили для активного состояния индикаторов слайдера */
    .indicator.active, .indicator2.active {
        width: 24px !important;
        background-color: white !important;
    }

    /* Стили для предотвращения переполнения текста в плавающих блоках */
    .floating-bubble {
        word-break: keep-all;
        white-space: nowrap;
    }

    @media (max-width: 640px) {
        .floating-bubble {
            white-space: normal;
            word-break: break-word;
            min-width: 100px !important;
            max-width: 130px !important;
        }
    }

    body.modal-open {
        overflow: hidden;
        padding-right: var(--scrollbar-width, 0px);
    }

    .modal-action-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        border-radius: 40px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .modal-action-btn-primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
    }

    .modal-action-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(var(--primary-rgb), 0.4);
    }

    .modal-action-btn-secondary {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary);
    }

    .modal-action-btn-secondary:hover {
        background: rgba(var(--primary-rgb), 0.2);
    }

    #socialProofModal {
        position: fixed !important;
        top: 10% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 9999 !important;
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(8px) !important;
    }

    #socialProofModal .bg-white,
    #socialProofModal .dark\:bg-gray-900 {
        position: relative;
        z-index: 10000 !important;
    }

    body.modal-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }

    .modal-close-btn {
        z-index: 10001 !important;
    }

    .tab-btn, .tab-content {
        position: relative;
        z-index: 1;
    }

    .main-content {
        position: relative;
        z-index: 1;
    }

    .theme-toggle-container,
    nav,
    footer {
        z-index: 100 !important;
    }

    #socialProofModal .sticky-header,
    #socialProofModal .sticky {
        top: 0 !important;
    }

    #socialProofModal .max-w-6xl.mx-auto.px-4.sm\:px-6.lg\:px-8.py-8 {
        padding-top: 20px !important;
    }

    #socialProofModal .tab-content.active {
        padding-top: 10px;
    }