/**
 * Объединенный и оптимизированный CSS для landing страницы
 * Сгенерирован: 2025-07-01
 * Все стили сохранены без изменений
 */        :root {
            --primary-color: #9C1B1B;
            --secondary-color: #333;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
        }
        
        /* Фиксированный фон для всего сайта */
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            /* Используем WebP с fallback на JPEG */
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('/assets/images/main_bg.webp') center/cover fixed;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
        }
        
        /* Fallback для браузеров без поддержки WebP */
        .no-webp body {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                             url('/assets/images/main_bg.jpeg');
        }
        
        /* Убираем псевдоэлемент, так как фон теперь на body */
        /* body::before удален */
        
        /* Hero Section - теперь прозрачная, использует фон body */
        .hero-section {
            min-height: 100vh;
            background: transparent;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
        /* Прозрачные секции для эффекта */
        .content-section {
            position: relative;
            z-index: 1;
            background: transparent;
            margin: 0;
            transition: all 0.6s ease;
        }
        
        /* Стильные контейнеры для контента */
        .content-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .content-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.1) 100%
            );
            border-radius: 23px;
            z-index: -1;
        }
        
        .content-container:hover {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }
        
        /* Темные контейнеры для секций с темным фоном */
        .dark-content-container {
            background: rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .dark-content-container h2,
        .dark-content-container h3,
        .dark-content-container h4 {
            color: white;
        }
        
        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transform: translateY(30px);
            opacity: 0;
            animation: slideInUp 1s ease 0.3s forwards;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            transform: translateY(30px);
            opacity: 0;
            animation: slideInUp 1s ease 0.6s forwards;
        }
        
        .btn-group-hero {
            transform: translateY(30px);
            opacity: 0;
            animation: slideInUp 1s ease 0.9s forwards;
        }
        
        /* Анимации появления */
        @keyframes slideInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        /* Анимация переливающегося градиента */
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        /* Классы для анимации при скролле */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .animate-slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .animate-slide-left.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .animate-slide-right.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }
        
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), #c92a2a);
            border: none;
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            color: white;
            box-shadow: 0 4px 15px rgba(156, 27, 27, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        
        .btn-primary-custom:hover {
            background: linear-gradient(45deg, #7a1515, #a01e1e);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(156, 27, 27, 0.4);
            color: white;
        }
        
        .btn-outline-custom {
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid rgba(0, 0, 0, 0.9);
            padding: 16px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            color: white;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .btn-outline-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            transition: width 0.4s ease;
            z-index: -1;
        }
        
        .btn-outline-custom:hover::before {
            width: 100%;
        }
        
        .btn-outline-custom:hover {
            background: rgba(0, 0, 0, 0.9);
            border-color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            color: white;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: transparent;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 100%
            );
            border-radius: 18px;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: transparent;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stats-section {
            padding: 60px 0;
            background: transparent;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        /* Advantages Text Cloud */
        .advantages-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            min-height: 400px;
            position: relative;
            margin: 40px 0;
            padding: 40px 20px;
        }
        
        .cloud-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 30px;
            padding: 18px 28px;
            color: #1f2937;
            font-weight: 600;
            text-align: center;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            box-shadow: 
                0 12px 35px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            overflow: hidden;
            /* Анимация будет назначена отдельно для каждого элемента */
        }
        
        .cloud-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.1) 100%
            );
            border-radius: 28px;
            z-index: -1;
            transition: all 1.2s ease;
        }
        
        .cloud-item:hover {
            transform: translateY(-5px) scale(1.02);
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 20px 45px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        
        .cloud-item:hover::before {
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0.15) 100%
            );
        }
        
        .cloud-small {
            font-size: 0.95rem;
            padding: 14px 22px;
            animation-delay: 0.5s;
        }
        
        .cloud-medium {
            font-size: 1.15rem;
            padding: 18px 28px;
            animation-delay: 1.2s;
        }
        
        .cloud-large {
            font-size: 1.35rem;
            padding: 22px 34px;
            animation-delay: 2.1s;
        }
        
        .cloud-xlarge {
            font-size: 1.55rem;
            padding: 26px 40px;
            animation-delay: 3.3s;
        }
        
        /* Рандомное красное свечение для тегов */
        /* Анимация для красного свечения */
        @keyframes redGlow {
            0%, 94%, 100% {
                background: rgba(255, 255, 255, 0.15);
                border-color: rgba(255, 255, 255, 0.25);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
                color: #1f2937;
                transform: scale(1) translateY(0);
            }
            95%, 99% {
                background: linear-gradient(45deg, rgba(156, 27, 27, 0.5), rgba(220, 38, 38, 0.4));
                border-color: rgba(156, 27, 27, 0.7);
                box-shadow: 0 20px 50px rgba(156, 27, 27, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
                color: white;
                transform: scale(1.08) translateY(-3px);
            }
        }
        
        /* Анимация для синего свечения */
        @keyframes blueGlow {
            0%, 94%, 100% {
                background: rgba(255, 255, 255, 0.15);
                border-color: rgba(255, 255, 255, 0.25);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
                color: #1f2937;
                transform: scale(1) translateY(0);
            }
            95%, 99% {
                background: linear-gradient(45deg, rgba(89, 98, 135, 0.5), rgba(107, 115, 161, 0.4));
                border-color: rgba(89, 98, 135, 0.7);
                box-shadow: 0 20px 50px rgba(89, 98, 135, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
                color: white;
                transform: scale(1.08) translateY(-3px);
            }
        }
        
        /* Чередуем красные и синие анимации с разными задержками и длительностью */
        .cloud-item:nth-child(1) { 
            animation: redGlow 12s ease-in-out infinite;
            animation-delay: 0s; 
        }
        .cloud-item:nth-child(2) { 
            animation: blueGlow 13s ease-in-out infinite;
            animation-delay: 2s; 
        }
        .cloud-item:nth-child(3) { 
            animation: redGlow 14s ease-in-out infinite;
            animation-delay: 4s; 
        }
        .cloud-item:nth-child(4) { 
            animation: blueGlow 12s ease-in-out infinite;
            animation-delay: 6s; 
        }
        .cloud-item:nth-child(5) { 
            animation: redGlow 15s ease-in-out infinite;
            animation-delay: 8s; 
        }
        .cloud-item:nth-child(6) { 
            animation: blueGlow 13s ease-in-out infinite;
            animation-delay: 10s; 
        }
        .cloud-item:nth-child(7) { 
            animation: redGlow 14s ease-in-out infinite;
            animation-delay: 1s; 
        }
        .cloud-item:nth-child(8) { 
            animation: blueGlow 15s ease-in-out infinite;
            animation-delay: 3s; 
        }
        .cloud-item:nth-child(9) { 
            animation: redGlow 12s ease-in-out infinite;
            animation-delay: 5s; 
        }
        .cloud-item:nth-child(10) { 
            animation: blueGlow 14s ease-in-out infinite;
            animation-delay: 7s; 
        }
        .cloud-item:nth-child(11) { 
            animation: redGlow 13s ease-in-out infinite;
            animation-delay: 9s; 
        }
        .cloud-item:nth-child(12) { 
            animation: blueGlow 15s ease-in-out infinite;
            animation-delay: 11s; 
        }
        
        /* Дополнительные эффекты для облака тегов */
        .advantages-cloud::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle at center,
                rgba(255, 255, 255, 0.03) 0%,
                transparent 50%
            );
            animation: cloudGlow 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes cloudGlow {
            0%, 100% { 
                opacity: 0.5;
                transform: scale(1);
            }
            50% { 
                opacity: 1;
                transform: scale(1.1);
            }
        }
        
        /* Специальные эффекты для разных размеров облачных элементов */
        .cloud-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                transparent 0%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 28px;
        }
        
        .cloud-item:hover::after {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Стили для заголовка секции преимуществ */
        .advantages-section-title {
            position: relative;
            margin-bottom: 1.5rem;
            color: white !important;
        }
        
        .advantages-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            border-radius: 2px;
        }
        
        /* Responsive улучшения для облака */
        @media (max-width: 1200px) {
            .cloud-xlarge {
                font-size: 1.4rem;
                padding: 22px 36px;
            }
            
            .cloud-large {
                font-size: 1.25rem;
                padding: 20px 30px;
            }
        }
        
        /* Специальные стили для iPhone SE и очень маленьких экранов */
        @media (max-width: 375px) {
            /* Глобальные стили для предотвращения переполнения */
            * {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            /* Основной контейнер с минимальными отступами */
            .container {
                padding-left: 10px;
                padding-right: 10px;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            /* Hero секция */
            .hero-section {
                min-height: 100vh;
                padding: 30px 0;
            }
            
            .hero-content h1 {
                font-size: 1.3rem !important;
                margin-bottom: 0.5rem;
                line-height: 1.2;
                letter-spacing: -0.02em;
            }
            
            .hero-content p {
                font-size: 0.75rem !important;
                margin-bottom: 1rem;
                line-height: 1.3;
            }
            
            .hero-content .lead {
                font-size: 0.8rem !important;
            }
            
            /* Кнопки в hero - мобильная версия вертикально */
            .btn-group-hero {
                display: flex !important;
                flex-direction: column !important;
                gap: 0.8rem !important;
                margin-top: 1rem !important;
                align-items: center !important;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 12px 20px !important;
                font-size: 0.9rem !important;
                border-radius: 25px !important;
                width: 100% !important;
                max-width: 280px !important;
                text-align: center !important;
                margin-bottom: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 6px !important;
                white-space: nowrap !important;
            }
            
            .btn-primary-custom i,
            .btn-outline-custom i {
                font-size: 1rem !important;
                margin: 0 !important;
            }
            
            /* Контейнеры контента */
            .content-container {
                padding: 12px 8px !important;
                margin: 6px 0;
                border-radius: 10px;
            }
            
            .content-section {
                padding: 20px 0 !important;
            }
            
            /* Заголовки */
            h2 {
                font-size: 1.2rem !important;
                line-height: 1.2;
                margin-bottom: 0.5rem !important;
            }
            
            h3 {
                font-size: 1rem !important;
                line-height: 1.2;
            }
            
            h4 {
                font-size: 0.9rem !important;
            }
            
            .display-4 {
                font-size: 1.4rem !important;
                font-weight: 600 !important;
            }
            
            .display-5 {
                font-size: 1.3rem !important;
            }
            
            .display-6 {
                font-size: 1.2rem !important;
            }
            
            .lead {
                font-size: 0.85rem !important;
                line-height: 1.3 !important;
            }
            
            /* Карточки проблем */
            .problem-card {
                margin-bottom: 15px;
            }
            
            .problem-header {
                padding: 15px 10px !important;
            }
            
            .problem-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 10px;
            }
            
            .problem-icon i {
                font-size: 1.2rem;
            }
            
            .problem-title {
                font-size: 1rem !important;
            }
            
            .problem-content {
                padding: 15px 8px 60px !important;
            }
            
            .problem-item {
                padding: 10px 8px;
                margin-bottom: 12px;
                border-radius: 10px;
            }
            
            .problem-item-icon {
                width: 30px;
                height: 30px;
                margin-right: 10px;
                border-radius: 8px;
            }
            
            .problem-item-icon i {
                font-size: 0.85rem;
            }
            
            .problem-text strong {
                font-size: 0.85rem !important;
                margin-bottom: 3px;
            }
            
            .problem-text p {
                font-size: 0.75rem !important;
                line-height: 1.2;
            }
            
            /* Бейджи решений */
            .solution-badge {
                bottom: 20px;
            }
            
            .badge-text {
                padding: 8px 16px;
                font-size: 0.75rem !important;
                border-radius: 20px;
            }
            
            /* Объяснение проблемы */
            .problem-explanation {
                padding: 20px 12px !important;
                margin-top: 30px;
                border-radius: 15px;
            }
            
            .explanation-title {
                font-size: 1.2rem !important;
                margin-bottom: 10px;
            }
            
            .explanation-text {
                font-size: 0.85rem !important;
                line-height: 1.4;
                margin-bottom: 20px;
            }
            
            .solution-intro {
                padding: 15px 10px;
                border-radius: 12px;
            }
            
            .solution-title {
                font-size: 1.3rem !important;
                margin-bottom: 8px;
            }
            
            .solution-subtitle {
                font-size: 0.9rem !important;
            }
            
            /* Облако тегов */
            .advantages-cloud {
                gap: 6px !important;
                padding: 15px 3px !important;
                min-height: 180px;
            }
            
            .cloud-item {
                border-radius: 12px !important;
                padding: 6px 10px !important;
                font-size: 0.7rem !important;
                margin: 2px !important;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
            
            .cloud-xlarge {
                font-size: 0.8rem !important;
                padding: 7px 12px !important;
            }
            
            .cloud-large {
                font-size: 0.75rem !important;
                padding: 6px 11px !important;
            }
            
            .cloud-medium {
                font-size: 0.7rem !important;
                padding: 5px 10px !important;
            }
            
            .cloud-small {
                font-size: 0.65rem !important;
                padding: 4px 8px !important;
            }
            
            /* Описание преимуществ */
            .advantages-description {
                padding: 20px 12px;
                margin-top: 20px;
                border-radius: 12px;
            }
            
            .advantages-description h2 {
                font-size: 1.1rem !important;
                margin-bottom: 10px;
            }
            
            .advantages-description p {
                font-size: 0.85rem !important;
                line-height: 1.4;
            }
            
            /* Карточки услуг */
            .service-card {
                padding: 20px 12px !important;
                margin-bottom: 15px;
                border-radius: 15px;
            }
            
            .service-icon {
                font-size: 1.5rem !important;
                margin-bottom: 0.8rem;
            }
            
            .service-card h3 {
                font-size: 0.95rem !important;
                margin-bottom: 0.5rem;
            }
            
            .service-card p {
                font-size: 0.8rem !important;
                line-height: 1.3;
            }
            
            /* Секция "О нас" */
            .about-card {
                padding: 20px 12px !important;
                border-radius: 12px;
            }
            
            .about-item {
                padding: 12px 10px;
                gap: 10px;
                border-radius: 10px;
            }
            
            .about-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                border-radius: 10px;
            }
            
            .about-item-content h5 {
                font-size: 0.9rem !important;
                margin-bottom: 5px;
            }
            
            .about-item-content p {
                font-size: 0.75rem !important;
                line-height: 1.3;
            }
            
            /* Мотивационная секция */
            .motivation-card {
                padding: 20px 12px !important;
                border-radius: 12px;
            }
            
            .motivation-messages {
                gap: 8px !important;
                margin-bottom: 15px;
            }
            
            .motivation-item {
                padding: 15px 10px !important;
                gap: 10px;
                border-radius: 10px;
            }
            
            .motivation-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                border-radius: 10px;
            }
            
            .motivation-item h3 {
                font-size: 0.9rem !important;
                margin-bottom: 5px;
            }
            
            .motivation-item p {
                font-size: 0.75rem !important;
                line-height: 1.2;
            }
            
            .btn-large {
                padding: 12px 25px !important;
                font-size: 0.85rem !important;
            }
            
            .cta-subtitle {
                font-size: 0.75rem !important;
                margin-top: 8px;
            }
            
            /* Форма контактов */
            .contact-form {
                padding: 15px 10px !important;
                border-radius: 12px;
                margin: 0;
            }
            
            .contact-form h4 {
                font-size: 0.9rem !important;
                margin-bottom: 15px;
            }
            
            .form-control {
                padding: 10px 12px !important;
                font-size: 0.85rem !important;
                border-radius: 8px;
            }
            
            .contact-methods {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 6px !important;
            }
            
            .contact-option {
                padding: 6px 8px !important;
                font-size: 0.75rem !important;
                border-radius: 15px;
                gap: 4px;
            }
            
            .custom-checkbox {
                width: 16px;
                height: 16px;
            }
            
            .btn-submit {
                padding: 10px 20px !important;
                font-size: 0.85rem !important;
            }
            
            /* Футер */
            .footer {
                padding: 30px 0 15px;
            }
            
            .footer-content {
                padding: 20px 12px !important;
                border-radius: 15px;
            }
            
            .footer h5 {
                font-size: 1rem !important;
                margin-bottom: 10px;
            }
            
            .footer p,
            .footer li,
            .footer a {
                font-size: 0.8rem !important;
            }
            
            /* Кнопка помощи - ОБНОВЛЕНО 12:30 */
            .help-button {
                right: 8px !important;
                bottom: 8px !important;
                padding: 8px !important;
                font-size: 0 !important;
                border-radius: 50% !important;
                width: 40px !important;
                height: 40px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            
            .help-button i {
                font-size: 1rem !important;
                margin: 0 !important;
            }
            
            .help-button span {
                display: none !important;
            }
            
            /* Индикатор скролла */
            .scroll-indicator {
                width: 50px !important;
                height: 50px !important;
                bottom: 15px;
            }
            
            /* Видео контейнер */
            .video-container {
                margin: 0 5px;
                border-radius: 10px;
            }
            
            .video-play-btn {
                width: 45px !important;
                height: 45px !important;
            }
            
            .video-play-btn i {
                font-size: 1rem !important;
            }
            
            /* Статистика */
            .stat-number {
                font-size: 1.5rem !important;
            }
            
            .stat-label {
                font-size: 0.8rem !important;
            }
            
            /* Убираем лишние отступы */
            .row {
                margin-left: -5px;
                margin-right: -5px;
            }
            
            .col-12,
            [class*="col-"] {
                padding-left: 5px;
                padding-right: 5px;
            }
            
            /* Модальные окна */
            .modal-dialog {
                margin: 5px !important;
            }
            
            .modal-content {
                border-radius: 12px !important;
            }
            
            #helpModal .modal-header {
                padding: 12px 15px !important;
            }
            
            #helpModal .modal-title {
                font-size: 0.95rem !important;
            }
            
            #helpModal .modal-body {
                padding: 15px 10px !important;
            }
            
            #helpModal .form-control {
                padding: 8px 10px !important;
                font-size: 0.85rem !important;
            }
            
            #helpModal .btn-primary {
                padding: 8px 15px !important;
                font-size: 0.85rem !important;
            }
            
            /* Секции */
            .problems-section {
                padding: 40px 0 !important;
            }
            
            .services-section {
                padding: 40px 0 !important;
            }
            
            .about-section {
                padding: 40px 0 !important;
            }
            
            .stats-section {
                padding: 40px 0 !important;
            }
            
            .how-it-works-section {
                padding: 40px 0 !important;
            }
            
            .contact-section {
                padding: 40px 0 !important;
            }
        }
        
        /* Дополнительные мобильные стили для лучшей адаптивности */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }
            
            .hero-content p {
                font-size: 0.85rem;
                margin-bottom: 1.2rem;
                line-height: 1.4;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 10px 20px;
                font-size: 0.85rem;
                width: 100%;
                margin-bottom: 8px;
            }
            
            .service-card {
                padding: 25px 15px;
                margin-bottom: 20px;
            }
            
            .service-icon {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .service-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }
            
            .service-card p {
                font-size: 0.9rem;
                line-height: 1.4;
            }
            
            .content-container {
                padding: 15px 10px;
                margin: 8px 0;
                border-radius: 12px;
            }
            
            .problem-card {
                margin-bottom: 20px;
            }
            
            .problem-header {
                padding: 20px 15px;
            }
            
            .problem-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }
            
            .problem-icon i {
                font-size: 1.5rem;
            }
            
            .problem-title {
                font-size: 1.2rem;
            }
            
            .problem-content {
                padding: 20px 10px 70px;
            }
            
            .problem-item {
                padding: 12px;
                margin-bottom: 15px;
            }
            
            .problem-item-icon {
                width: 35px;
                height: 35px;
                margin-right: 12px;
            }
            
            .problem-item-icon i {
                font-size: 1rem;
            }
            
            .problem-text strong {
                font-size: 0.95rem;
                margin-bottom: 5px;
            }
            
            .problem-text p {
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            .badge-text {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .advantages-cloud {
                gap: 8px;
                padding: 20px 5px;
                min-height: 200px;
            }
            
            .help-button {
                right: 10px;
                bottom: 10px;
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            
            .help-button i {
                font-size: 0.9rem;
            }
            
            .scroll-indicator {
                width: 60px;
                height: 60px;
                bottom: 20px;
            }
            
            /* Модальные окна на маленьких экранах */
            .modal-dialog {
                margin: 10px;
            }
            
            .modal-content {
                border-radius: 15px;
            }
            
            #helpModal .modal-header {
                padding: 15px 20px;
            }
            
            #helpModal .modal-title {
                font-size: 1.1rem;
            }
            
            #helpModal .modal-body {
                padding: 20px 15px;
            }
            
            #helpModal .form-control {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
            
            #helpModal .btn-primary {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 992px) {
            .advantages-cloud {
                min-height: 350px;
                gap: 18px;
                padding: 35px 15px;
            }
            
            .cloud-xlarge {
                font-size: 1.3rem;
                padding: 20px 32px;
            }
            
            .cloud-large {
                font-size: 1.2rem;
                padding: 18px 28px;
            }
            
            .cloud-medium {
                font-size: 1.1rem;
                padding: 16px 24px;
            }
            
            .cloud-small {
                font-size: 0.9rem;
                padding: 12px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .advantages-cloud {
                min-height: 300px;
                gap: 15px;
                padding: 30px 10px;
            }
            
            .cloud-xlarge {
                font-size: 1.2rem;
                padding: 18px 28px;
            }
            
            .cloud-large {
                font-size: 1.1rem;
                padding: 16px 24px;
            }
            
            .cloud-medium {
                font-size: 1rem;
                padding: 14px 20px;
            }
            
            .cloud-small {
                font-size: 0.85rem;
                padding: 10px 16px;
            }
        }
        
        @media (max-width: 576px) {
            .advantages-cloud {
                min-height: 250px;
                gap: 12px;
                padding: 25px 5px;
            }
            
            .cloud-item {
                border-radius: 15px;
                padding: 8px 14px !important;
                font-size: 0.8rem !important;
                margin: 4px;
            }
            
            .cloud-xlarge {
                font-size: 0.9rem !important;
                padding: 10px 18px !important;
            }
            
            .cloud-large {
                font-size: 0.85rem !important;
                padding: 9px 16px !important;
            }
            
            .cloud-medium {
                font-size: 0.8rem !important;
                padding: 8px 14px !important;
            }
            
            .cloud-small {
                font-size: 0.75rem !important;
                padding: 7px 12px !important;
            }
        }
        
        /* Footer */
        .footer {
            background: transparent;
            color: white;
            padding: 60px 0 30px;
            position: relative;
            z-index: 1;
        }
        
        .footer-content {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .footer p {
            color: white;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 2px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .footer a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            border-bottom-color: transparent;
        }
        
        .footer a:hover::after {
            width: 100%;
        }
        
        /* Особый стиль для ссылок с иконками */
        .footer a[href^="tel"], 
        .footer a[href^="mailto"] {
            display: inline-flex;
            align-items: center;
            padding: 4px 0;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .footer a[href^="tel"]:hover, 
        .footer a[href^="mailto"]:hover {
            background: rgba(156, 27, 27, 0.2);
            padding-left: 4px;
            padding-right: 4px;
        }
        
        .footer ul li {
            color: white;
        }
        
        .footer .fas {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: white;
        }
        
        /* Contact Form Section */
        .contact-section {
            padding: 80px 0;
            background: transparent;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            padding: 50px;
            color: #1f2937;
            position: relative;
            box-shadow: 
                0 20px 60px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .contact-form:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 30px 80px rgba(0,0,0,0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .contact-form h4 {
            color: #1f2937 !important;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            color: #1f2937 !important;
            font-weight: 600;
        }
        
        .contact-form .fw-bold {
            color: #1f2937 !important;
        }
        
        .form-control {
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 18px;
            color: #1f2937;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.95);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(156, 27, 27, 0.1);
            color: #1f2937;
            outline: none;
        }
        
        .form-control::placeholder {
            color: rgba(31, 41, 55, 0.6);
        }
        
        .contact-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .contact-option {
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 25px;
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            user-select: none;
            position: relative;
            color: #1f2937;
        }
        
        .contact-option:hover {
            background: rgba(255, 255, 255, 0.8);
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(156, 27, 27, 0.1);
        }
        
        .contact-option.active {
            background: rgba(255, 255, 255, 0.9);
            border-color: var(--primary-color);
            color: #1f2937;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(156, 27, 27, 0.2);
        }
        
        /* Скрываем стандартные чекбоксы */
        .contact-option input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        
        /* Кастомные чекбоксы */
        .custom-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #dee2e6;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: white;
        }
        
        .contact-option:hover .custom-checkbox {
            border-color: var(--primary-color);
        }
        
        .contact-option.active .custom-checkbox {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .custom-checkbox::after {
            content: '✓';
            font-size: 14px;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .contact-option.active .custom-checkbox::after {
            opacity: 1;
        }
        
        /* Кастомный чекбокс для согласия */
        .privacy-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            margin-top: 20px;
        }
        
        .privacy-checkbox input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        
        .privacy-custom-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #dee2e6;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: white;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .privacy-checkbox:hover .privacy-custom-checkbox {
            border-color: var(--primary-color);
        }
        
        .privacy-checkbox input[type="checkbox"]:checked + .privacy-custom-checkbox {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .privacy-custom-checkbox::after {
            content: '✓';
            font-size: 12px;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .privacy-checkbox input[type="checkbox"]:checked + .privacy-custom-checkbox::after {
            opacity: 1;
        }
        
        .privacy-text {
            line-height: 1.5;
            font-size: 0.95rem;
            color: #1f2937;
        }
        
        .privacy-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        
        .privacy-link:hover {
            text-decoration: underline;
        }
        
        .contact-field {
            margin-top: 15px;
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn-submit {
            background: linear-gradient(45deg, var(--primary-color), #c92a2a);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        
        .btn-submit:hover {
            background: linear-gradient(45deg, #7a1515, #a01e1e);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(156, 27, 27, 0.3);
        }
        
        .btn-submit:focus {
            outline: none !important;
            box-shadow: 0 0 0 3px rgba(156, 27, 27, 0.25) !important;
        }
        
        .btn-submit:active {
            transform: translateY(0);
        }
        
        .form-status {
            margin-top: 20px;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .form-status.success {
            background: rgba(255, 255, 255, 0.9);
            color: #000000;
            border: 2px solid #28a745;
            border-left-width: 5px;
        }
        
        .form-status.success i {
            color: #28a745;
            margin-right: 8px;
        }
        
        .form-status.error {
            background: rgba(255, 255, 255, 0.9);
            color: #000000;
            border: 2px solid #dc3545;
            border-left-width: 5px;
        }
        
        .form-status.error i {
            color: #dc3545;
            margin-right: 8px;
        }
        
        .form-status.loading {
            background: rgba(255, 255, 255, 0.9);
            color: #000000;
            border: 2px solid #ffc107;
            border-left-width: 5px;
        }
        
        .form-status.loading i {
            color: #ffc107;
            margin-right: 8px;
        }
        
        /* Button group responsive */
        .btn-group-hero {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        /* Problems Section Styles */
        .problems-section {
            background: transparent;
            padding: 100px 0;
            position: relative;
            z-index: 1;
        }
        
        /* Темный текст для заголовков для лучшей читаемости */
        .problems-section h2,
        .problems-section .lead {
            color: #ffffff !important;
        }
        
        .problem-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            padding: 0;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        /* Специфичная тень для карточки грузоотправителей */
        .shippers-card {
            box-shadow: 
                0 20px 60px rgba(197, 29, 52, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        
        /* Специфичная тень для карточки перевозчиков */
        .carriers-card {
            box-shadow: 
                0 20px 60px rgba(89, 98, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        
        .problem-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .shippers-card:hover {
            box-shadow: 
                0 30px 80px rgba(197, 29, 52, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }
        
        .carriers-card:hover {
            box-shadow: 
                0 30px 80px rgba(89, 98, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }
        
        .problem-explanation {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 
                0 20px 60px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .explanation-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937 !important;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .explanation-text {
            font-size: 1.2rem;
            color: #374151 !important;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .problem-header {
            background-size: 400% 400%;
            animation: gradientShift 4s ease-in-out infinite;
            backdrop-filter: blur(15px);
            color: white !important;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .shippers-card .problem-header {
            background: linear-gradient(135deg, rgba(197, 29, 52, 1), rgba(156, 27, 27, 1), rgba(197, 29, 52, 1), rgba(180, 28, 40, 1));
            background-size: 400% 400%;
            animation: gradientShift 6s ease-in-out infinite;
            border: 1px solid rgba(197, 29, 52, 0.4);
        }
        
        .carriers-card .problem-header {
            background: linear-gradient(135deg, rgba(89, 98, 135, 1), rgba(107, 115, 161, 1), rgba(89, 98, 135, 1), rgba(74, 82, 112, 1));
            background-size: 400% 400%;
            animation: gradientShift 7s ease-in-out infinite;
            border: 1px solid rgba(89, 98, 135, 0.4);
        }
        
        .problem-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .problem-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .problem-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .problem-content {
            padding: 40px 30px 100px;
            color: #2e2e30;
        }
        
        .problem-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 15px;
            background: rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            color: #2e2e30;
        }
        
        .problem-item:hover {
            background: rgba(0,0,0,0.05);
            transform: translateX(5px);
        }
        
        .problem-item:last-child {
            margin-bottom: 0;
        }
        
        .problem-item-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .shippers-card .problem-item-icon {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(185, 28, 28, 0.15), rgba(153, 27, 27, 0.15), rgba(220, 38, 38, 0.15));
            background-size: 300% 300%;
            animation: gradientShift 5s ease-in-out infinite;
            color: #dc2626;
            transition: all 0.3s ease;
        }
        
        .carriers-card .problem-item-icon {
            background: linear-gradient(135deg, rgba(89, 98, 135, 0.15), rgba(107, 115, 161, 0.15), rgba(74, 82, 112, 0.15), rgba(89, 98, 135, 0.15));
            background-size: 300% 300%;
            animation: gradientShift 6s ease-in-out infinite;
            color: #596287;
            transition: all 0.3s ease;
        }
        
        .problem-item-icon i {
            font-size: 1.3rem;
        }
        
        .problem-text strong {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2e2e30 !important;
            display: block;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .problem-text p {
            color: #2e2e30 !important;
            margin: 0;
            line-height: 1.5;
            font-size: 1.1rem;
        }
        
        .solution-badge {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Кнопка решения для грузоотправителей - красная */
        .shippers-card .badge-text {
            background: linear-gradient(45deg, #c51d34, #dc2626);
            color: #f5f5f5;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 8px 25px rgba(197, 29, 52, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .shippers-card .badge-text:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
            color: white;
            text-decoration: none;
            background: linear-gradient(45deg, #9C1B1B, #c51d34);
        }
        
        .shippers-card .badge-text:active {
            transform: translateY(0);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
        }
        
        /* Кнопка решения для перевозчиков - синяя */
        .carriers-card .badge-text {
            background: linear-gradient(45deg, #596287, #6b73a1);
            color: #f5f5f5;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 8px 25px rgba(89, 98, 135, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .carriers-card .badge-text:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(89, 98, 135, 0.4);
            color: white;
            text-decoration: none;
            background: linear-gradient(45deg, #4a5270, #596287);
        }
        
        .carriers-card .badge-text:active {
            transform: translateY(0);
            box-shadow: 0 6px 20px rgba(89, 98, 135, 0.3);
        }
        
        .badge-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .solution-badge:hover .badge-text::before {
            left: 100%;
        }
        
        /* Убираем дублирующие старые стили */
        
        .problem-explanation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 12px;
            background: linear-gradient(90deg, #dc2626, #b91c1c, #991b1b, #7f1d1d, #dc2626);
            background-size: 300% 100%;
            animation: gradientShift 4s ease-in-out infinite;
        }
        
        /* Убираем дублирующие старые стили заголовков */
        
        .solution-intro {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            box-shadow: 
                0 15px 40px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            margin-top: 20px;
        }
        
        .solution-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937 !important;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .solution-subtitle {
            font-size: 1.2rem;
            color: #374151 !important;
            margin: 0;
            font-weight: 500;
        }

        /* How it Works Section Styles */
        .how-it-works-section {
            background: transparent;
            padding: 80px 0;
        }
        
        /* Scroll down indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
            z-index: 10;
            width: 120px;
            height: 120px;
            transition: all 0.4s ease;
        }
        
        .scroll-indicator:hover {
            transform: translateX(-50%) translateY(-10px) scale(1.1);
        }
        
        .scroll-indicator lottie-player {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 4px 15px rgba(255, 0, 0, 0.3));
        }
        
        .scroll-indicator:hover lottie-player {
            filter: drop-shadow(0 8px 25px rgba(255, 0, 0, 0.5));
        }
        
        .arrow-animation {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .arrow-animation i {
            position: absolute;
            color: #fff;
            font-size: 2rem;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
            animation: scrollArrow 2s infinite;
        }
        
        .arrow-animation i:first-child {
            top: 0;
            animation-delay: 0s;
        }
        
        .arrow-animation i:last-child {
            top: 20px;
            animation-delay: 0.2s;
        }
        
        @keyframes scrollArrow {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(10px);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        /* Hide scroll indicator on small screens to avoid overlap */
        @media (max-height: 600px) {
            .scroll-indicator {
                display: none;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* На мобильных устройствах используем обычный фон для лучшей производительности */
            body {
                background-attachment: scroll;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .hero-section {
                min-height: 70vh;
                padding: 60px 0;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 15px 35px;
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }
            
            .btn-group-hero {
                flex-direction: column;
                align-items: stretch;
            }
            
            .step-title {
                font-size: 2rem;
            }
            
            .scroll-section .col-lg-6 {
                margin-bottom: 30px;
            }
            
            .browser-content {
                padding: 20px;
                min-height: 300px;
            }
            
            /* Уменьшаем backdrop-filter для лучшей производительности */
            .content-section {
                backdrop-filter: blur(5px);
            }
            
            .service-card {
                backdrop-filter: blur(5px);
            }
            
            .content-container {
                backdrop-filter: blur(8px);
                padding: 25px 20px;
                margin: 15px 0;
                border-radius: 20px;
            }
            
            .content-section {
                padding: 40px 0;
            }
            
            .services-section {
                padding: 50px 0;
            }
            
            .about-section {
                padding: 50px 0;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-section {
                min-height: 100vh;
                padding: 40px 0;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .step-title {
                font-size: 1.5rem;
            }
            
            .scroll-indicator {
                bottom: 25px;
                width: 80px;
                height: 80px;
            }
            
            .scroll-text {
                font-size: 0.95rem;
            }
            
            .step-description {
                font-size: 1rem;
            }
            
            /* Problems section mobile */
            .problems-section {
                padding: 60px 0;
            }
            
            .problem-card {
                margin-bottom: 30px;
            }
            
            .content-container {
                padding: 20px 15px;
                margin: 10px 0;
                border-radius: 15px;
            }
            
            .content-section {
                padding: 30px 0;
            }
            
            h2 {
                font-size: 1.5rem !important;
            }
            
            .display-4 {
                font-size: 1.8rem !important;
            }
            
            .lead {
                font-size: 1rem !important;
            }
            
            .problem-content {
                padding: 25px 15px 80px;
            }
            
            .problem-item {
                padding: 15px;
                margin-bottom: 20px;
            }
            
            .problem-item-icon {
                width: 40px;
                height: 40px;
                margin-right: 15px;
            }
            
            .problem-item-icon i {
                font-size: 1.1rem;
            }
            
            .problem-text strong {
                font-size: 1rem;
            }
            
            .problem-explanation {
                padding: 30px 20px;
                margin-top: 40px;
            }
            
            .explanation-title {
                font-size: 1.5rem;
            }
            
            .solution-title {
                font-size: 1.8rem;
            }
            
            .solution-intro {
                padding: 25px;
            }
            
            .browser-content {
                padding: 15px;
                min-height: 250px;
            }
        }

        /* Стили для текста под облаком преимуществ */
        .advantages-description {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .advantages-description::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.05) 0%,
                transparent 50%,
                rgba(255, 255, 255, 0.05) 100%
            );
            border-radius: 18px;
            z-index: -1;
        }
        
        .advantages-description h2 {
            margin-bottom: 20px;
            color: white !important;
        }
        
        .advantages-description p {
            line-height: 1.7;
            color: #374151 !important;
            font-weight: 700;
        }
        
        /* Video Styles for How It Works Section */
        .video-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .responsive-video {
            width: 100%;
            height: auto;
            max-height: 450px;
            display: block;
            border-radius: 18px;
            transition: all 0.3s ease;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            opacity: 1;
            backdrop-filter: blur(2px);
        }
        
        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .video-play-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .video-play-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .video-play-btn i {
            font-size: 2rem;
            color: #9c1b1b;
            margin-left: 5px;
        }
        
        .video-container:hover .responsive-video {
            transform: scale(1.02);
        }
        
        /* Mobile responsive for video */
        @media (max-width: 768px) {
            .video-container {
                margin: 0 20px;
                border-radius: 15px;
            }
            
            .responsive-video {
                max-height: 300px;
                border-radius: 13px;
            }
            
            .video-play-btn {
                width: 60px;
                height: 60px;
            }
            
            .video-play-btn i {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .video-container {
                margin: 0 10px;
                border-radius: 12px;
            }
            
            .responsive-video {
                max-height: 250px;
                border-radius: 10px;
            }
            
            .video-play-btn {
                width: 50px;
                height: 50px;
            }
            
            .video-play-btn i {
                font-size: 1.2rem;
            }
        }
        
        /* About Section Styles */
        .about-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.1) 100%
            );
            border-radius: 23px;
            z-index: -1;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 35px 60px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.35);
        }
        
        .about-content {
            color: #374151;
        }
        
        .about-text .lead {
            color: #374151;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .about-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .about-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .about-item:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateX(10px);
        }
        
        .about-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: rgba(89, 98, 135, 0.8);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            border: 2px solid rgba(89, 98, 135, 0.5);
            transition: all 0.3s ease;
        }
        
        .about-item:hover .about-icon {
            background: rgba(89, 98, 135, 1);
            border-color: rgba(89, 98, 135, 0.8);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(89, 98, 135, 0.4);
        }
        
        .about-item-content h5 {
            color: #374151;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .about-item-content p {
            color: #374151;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Mobile responsive for About section */
        @media (max-width: 768px) {
            .about-card {
                padding: 40px 30px;
                border-radius: 20px;
            }
            
            .about-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px;
            }
            
            .about-icon {
                margin: 0 auto;
            }
            
            .about-item:hover {
                transform: translateY(-5px);
            }
        }
        
        @media (max-width: 576px) {
            .about-card {
                padding: 30px 20px;
                border-radius: 15px;
            }
            
            .about-details {
                gap: 20px;
            }
            
            .about-item {
                padding: 15px;
                border-radius: 12px;
            }
            
            .about-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        /* Motivation Section Styles */
        .motivation-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .motivation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.1) 100%
            );
            border-radius: 23px;
            z-index: -1;
        }
        
        .motivation-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 35px 60px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.35);
        }
        
        .motivation-messages {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }
        
        /* На всех экранах больше 576px - сетка 2x2 */
        @media (min-width: 577px) {
            .motivation-messages {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        .motivation-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 30px 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
        }
        
        .motivation-item:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
        }
        
        .motivation-icon {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            background: rgba(156, 27, 27, 0.8);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            border: 2px solid rgba(156, 27, 27, 0.5);
        }
        
        .motivation-item h3 {
            color: #374151;
            font-weight: 700;
            margin: 0 0 10px 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            line-height: 1.3;
        }
        
        .motivation-item p {
            color: #374151;
            margin: 0;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .motivation-cta {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-large {
            padding: 20px 50px;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .cta-subtitle {
            color: white;
            margin-top: 15px;
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        /* Mobile responsive for Motivation section */
        @media (max-width: 576px) {
            .motivation-messages {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 25px;
            }
            
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-content {
                padding: 25px 20px;
                border-radius: 20px;
            }
            
            .motivation-card {
                padding: 30px 20px;
                border-radius: 15px;
            }
            
            .motivation-item {
                padding: 20px 15px;
                border-radius: 12px;
            }
            
            .motivation-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .motivation-item h3 {
                font-size: 1.1rem;
            }
            
            .btn-large {
                padding: 16px 35px;
                font-size: 1rem;
            }
        }
        
        /* Средние экраны - сохраняем 2x2 но немного подстраиваем отступы */
        @media (min-width: 577px) and (max-width: 768px) {
            .motivation-card {
                padding: 40px 25px;
            }
            
            .motivation-item {
                padding: 20px 15px;
            }
            
            .motivation-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .motivation-item h3 {
                font-size: 1.2rem;
            }
        }
        
        /* Contact Form Responsive */
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }
            
            .contact-form {
                padding: 30px 20px;
                margin: 0 15px;
            }
            
            .contact-form h4 {
                font-size: 1.1rem;
            }
            
            .contact-methods {
                gap: 10px;
            }
            
            .contact-option {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .contact-section {
                padding: 40px 0;
            }
            
            .contact-form {
                padding: 20px 15px;
                border-radius: 15px;
                margin: 0 5px;
            }
            
            .form-control {
                padding: 12px;
                font-size: 0.9rem;
            }
            
            .contact-form h4 {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .contact-methods {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            
            .contact-option {
                padding: 8px 12px;
                font-size: 0.85rem;
                border-radius: 20px;
            }
            
            .btn-submit {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
        
        /* Фиксированная кнопка помощи справа внизу */
        .help-button {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 1000;
            background: linear-gradient(45deg, var(--primary-color), #c92a2a);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 25px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(156, 27, 27, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        
        .help-button:hover {
            background: linear-gradient(45deg, #7a1515, #a01e1e);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(156, 27, 27, 0.5);
            color: white;
        }
        
        .help-button i {
            font-size: 1.1rem;
        }
        
        /* Стили для модального окна помощи */
        #helpModal .modal-content {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        
        #helpModal .modal-header {
            background: linear-gradient(45deg, var(--primary-color), #c92a2a);
            color: white;
            border-radius: 20px 20px 0 0;
            border-bottom: none;
            padding: 20px 30px;
        }
        
        #helpModal .modal-title {
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        #helpModal .modal-title i {
            color: white !important;
        }
        
        #helpModal .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }
        
        #helpModal .btn-close:hover {
            opacity: 1;
        }
        
        #helpModal .modal-body {
            padding: 30px;
        }
        
        #helpModal .form-label {
            font-weight: 500;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }
        
        #helpModal .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        #helpModal .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(156, 27, 27, 0.1);
        }
        
        #helpModal textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }
        
        #helpModal .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), #c92a2a);
            border: none;
            border-radius: 10px;
            padding: 12px 25px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        #helpModal .btn-primary:hover {
            background: linear-gradient(45deg, #7a1515, #a01e1e);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(156, 27, 27, 0.3);
        }
        
        #helpModal .modal-footer {
            background-color: #f8f9fa;
            border-top: 1px solid #e0e0e0;
            border-radius: 0 0 20px 20px;
            padding: 20px;
        }
        
        #helpModal .modal-footer a {
            font-size: 1.2rem;
        }
        
        #helpModal .modal-footer a:hover {
            text-decoration: underline;
        }
        
        /* Стили для контактных опций в модальном окне */
        .contact-option-modal {
            background: rgba(240, 240, 240, 0.5);
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 12px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            user-select: none;
            position: relative;
            color: #333;
            font-size: 0.95rem;
            width: 100%;
            margin-bottom: 8px;
        }
        
        .contact-option-modal:hover {
            background: rgba(156, 27, 27, 0.05);
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(156, 27, 27, 0.1);
        }
        
        .contact-option-modal.active {
            background: rgba(156, 27, 27, 0.08);
            border-color: var(--primary-color);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .contact-option-modal i {
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }
        
        /* Скрываем стандартные чекбоксы */
        .contact-option-modal input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        
        /* Кастомные чекбоксы для модального окна */
        .custom-checkbox-modal {
            width: 18px;
            height: 18px;
            background: white;
            border: 2px solid #d0d0d0;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
            margin-right: 5px;
        }
        
        .contact-option-modal input[type="checkbox"]:checked + .custom-checkbox-modal {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .contact-option-modal input[type="checkbox"]:checked + .custom-checkbox-modal::after {
            content: '✓';
            position: absolute;
            top: -2px;
            left: 2px;
            color: white;
            font-size: 14px;
            font-weight: bold;
        }
        
        /* Поля ввода для модального окна */
        .contact-field-modal {
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Чекбокс согласия для модального окна */
        .privacy-checkbox-modal {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .privacy-checkbox-modal input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }
        
        .privacy-custom-checkbox-modal {
            width: 16px;
            height: 16px;
            min-width: 16px;
            background: white;
            border: 2px solid #d0d0d0;
            border-radius: 3px;
            margin-right: 8px;
            margin-top: 2px;
            transition: all 0.3s ease;
        }
        
        .privacy-checkbox-modal input[type="checkbox"]:checked + .privacy-custom-checkbox-modal {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .privacy-checkbox-modal input[type="checkbox"]:checked + .privacy-custom-checkbox-modal::after {
            content: '✓';
            position: absolute;
            color: white;
            font-size: 12px;
            font-weight: bold;
            margin-left: 1px;
            margin-top: -2px;
        }
        
        .privacy-text {
            color: #666;
        }
        
        .privacy-text a {
            text-decoration: underline;
        }
        
        /* Анимация пульсации для привлечения внимания */
        .help-button::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, var(--primary-color), #c92a2a);
            border-radius: 50px;
            z-index: -1;
            opacity: 0;
            animation: helpPulse 3s ease-in-out infinite;
        }
        
        @keyframes helpPulse {
            0%, 70%, 100% {
                opacity: 0;
                transform: scale(1);
            }
            35% {
                opacity: 0.3;
                transform: scale(1.1);
            }
        }
        
        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {
            .help-button {
                right: 20px;
                bottom: 20px;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .help-button {
                right: 15px;
                bottom: 15px;
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }

        /* === START: Мобильные фиксы из landing-mobile-fix.css === */
        /* Дополнительные стили для максимального использования пространства */

        /* Полноширинные блоки на мобильных */
        @media (max-width: 768px) {
            .problems-section .content-container {
                background: rgba(255, 255, 255, 0.05) !important;
                margin-left: -15px !important;
                margin-right: -15px !important;
                border-radius: 0 !important;
                border-left: none !important;
                border-right: none !important;
            }
            .stats-section .content-container {
                background: rgba(255, 255, 255, 0.08) !important;
                margin-left: -15px !important;
                margin-right: -15px !important;
                border-radius: 0 !important;
            }
            .problem-explanation {
                margin-left: -10px !important;
                margin-right: -10px !important;
                padding: 20px 15px !important;
                border-radius: 15px !important;
            }
            .services-grid {
                margin-left: -10px !important;
                margin-right: -10px !important;
            }
            .services-grid .col-lg-4,
            .services-grid .col-md-6 {
                padding-left: 5px !important;
                padding-right: 5px !important;
            }
            .stats-row {
                margin-left: -15px !important;
                margin-right: -15px !important;
            }
            .stat-item {
                padding: 20px 10px !important;
                margin-bottom: 10px !important;
                background: rgba(255, 255, 255, 0.1) !important;
                border-radius: 15px !important;
            }
            body {
                background-attachment: scroll !important;
            }
            .content-container {
                backdrop-filter: blur(8px);
            }
        }
        @media (max-width: 576px) {
            html, body {
                overflow-x: hidden !important;
                max-width: 100vw !important;
            }
            section {
                max-width: 100% !important;
                overflow-x: hidden !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .container {
                max-width: 100% !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .content-container {
                margin-left: 0 !important;
                margin-right: 0 !important;
                border-radius: 20px !important;
            }
            .content-container .row {
                margin-left: -8px !important;
                margin-right: -8px !important;
            }
            .col, [class*="col-"] {
                padding-left: 8px !important;
                padding-right: 8px !important;
            }
            .problem-card,
            .service-card,
            .stat-card {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }
        @media (max-width: 375px) {
            .hero-section {
                min-height: 100vh;
                padding: 40px 0 60px !important;
                display: flex;
                align-items: center;
            }
            .hero-content {
                padding: 0 5px !important;
                margin-bottom: 30px !important;
            }
            .hero-content h1 {
                font-size: 2.2rem !important;
                line-height: 1.1 !important;
                margin-bottom: 1rem !important;
                font-weight: 700 !important;
                word-break: break-word !important;
                letter-spacing: -0.5px !important;
            }
            .hero-content p.lead {
                font-size: 0.9rem !important;
                line-height: 1.4 !important;
                margin-bottom: 2.5rem !important;
            }
            .btn-group-hero {
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
                width: 100% !important;
                margin-top: 20px !important;
            }
            .btn-primary-custom {
                width: 100% !important;
                padding: 14px 24px !important;
                font-size: 0.95rem !important;
                margin: 0 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                font-weight: 600 !important;
                letter-spacing: 0.5px !important;
                box-shadow: 0 4px 12px rgba(156, 27, 27, 0.25) !important;
            }
            .container {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }
            .content-container {
                padding: 15px 10px !important;
                margin: 5px -5px !important;
                border-radius: 15px !important;
                backdrop-filter: blur(5px) !important;
            }
            .content-container .row {
                margin-left: -5px !important;
                margin-right: -5px !important;
            }
            .content-container [class*="col-"] {
                padding-left: 5px !important;
                padding-right: 5px !important;
            }
            .problem-card {
                margin-bottom: 15px !important;
                border-radius: 15px !important;
                margin-left: -5px !important;
                margin-right: -5px !important;
            }
            .problem-header {
                padding: 15px 10px !important;
            }
            .problem-icon {
                width: 60px !important;
                height: 60px !important;
                margin-bottom: 15px !important;
            }
            .problem-icon i {
                font-size: 1.5rem !important;
            }
            .problem-title {
                font-size: 1.1rem !important;
                margin-bottom: 0 !important;
            }
            .problem-content {
                padding: 15px 10px 70px !important;
            }
            .problem-item {
                padding: 12px 8px !important;
                margin-bottom: 10px !important;
                margin-left: 5px !important;
                margin-right: 5px !important;
                display: flex !important;
                align-items: flex-start !important;
                background: rgba(255, 255, 255, 0.1) !important;
                border-radius: 10px !important;
            }
            .problem-item-icon {
                width: 35px !important;
                height: 35px !important;
                min-width: 35px !important;
                margin-right: 12px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            .problem-item-icon i {
                font-size: 1.1rem !important;
            }
            .problem-text {
                font-size: 0.95rem !important;
                line-height: 1.3 !important;
            }
            .problem-text strong {
                font-size: 1.05rem !important;
            }
            .problem-text p {
                font-size: 0.9rem !important;
                margin-bottom: 0 !important;
            }
            .advantages-cloud {
                padding: 10px 0 !important;
                gap: 5px !important;
            }
            .cloud-item {
                font-size: 0.9rem !important;
                padding: 10px 12px !important;
                border-radius: 10px !important;
            }
            .cloud-xlarge {
                font-size: 1.1rem !important;
                padding: 14px 18px !important;
            }
            .cloud-large {
                font-size: 1rem !important;
                padding: 12px 16px !important;
            }
            .cloud-medium {
                font-size: 0.95rem !important;
                padding: 10px 14px !important;
            }
            .cloud-small {
                font-size: 0.85rem !important;
                padding: 8px 10px !important;
            }
            .section-title,
            .display-4,
            .display-5,
            .display-6 {
                font-size: 1.1rem !important;
            }
            .advantages-description h2 {
                font-size: 1.1rem !important;
            }
            .advantages-description p {
                font-size: 0.95rem !important;
            }
            .service-card {
                padding: 10px 8px !important;
                border-radius: 10px !important;
                margin-bottom: 10px !important;
            }
            .service-icon {
                width: 40px !important;
                height: 40px !important;
                margin-bottom: 10px !important;
            }
            .service-title {
                font-size: 1rem !important;
            }
            .service-description {
                font-size: 0.9rem !important;
            }
            .stat-item h3 {
                font-size: 1.1rem !important;
            }
            .stat-item p {
                font-size: 0.9rem !important;
            }
            .cta-section {
                padding: 20px 0 !important;
            }
            .cta-section .content-container {
                padding: 10px 8px !important;
                border-radius: 10px !important;
            }
            .cta-section h2 {
                font-size: 1.1rem !important;
            }
            .cta-section .btn-group {
                flex-direction: column !important;
                gap: 10px !important;
            }
            .cta-section .btn {
                width: 100% !important;
                font-size: 0.95rem !important;
                padding: 12px 0 !important;
            }
            footer {
                padding: 10px 8px !important;
            }
            footer h5 {
                font-size: 1rem !important;
            }
            footer p,
            footer a {
                font-size: 0.9rem !important;
            }
            .modal-dialog {
                margin: 10px !important;
            }
            .modal-content {
                border-radius: 10px !important;
            }
            .modal-header {
                padding: 10px 8px !important;
            }
            .modal-title {
                font-size: 1.1rem !important;
            }
            .modal-body {
                padding: 10px 8px !important;
            }
            .modal-footer {
                padding: 10px 8px !important;
            }
            .help-button {
                bottom: 20px !important;
                right: 20px !important;
                width: 44px !important;
                height: 44px !important;
                font-size: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                border-radius: 50% !important;
                padding: 10px !important;
            }
            
            .help-button i {
                font-size: 1.1rem !important;
                margin: 0 !important;
            }
            
            .help-button span {
                display: none !important;
            }
            body.scrolled .help-button {
                bottom: 10px !important;
            }
            .scroll-indicator {
                bottom: 20px !important;
                width: 40px !important;
                height: 40px !important;
            }
            .scroll-indicator lottie-player {
                width: 40px !important;
                height: 40px !important;
            }
            .animate-on-scroll,
            .animate-slide-left,
            .animate-slide-right,
            .animate-scale {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
            * {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                -webkit-hyphens: auto !important;
                -moz-hyphens: auto !important;
                -ms-hyphens: auto !important;
                hyphens: auto !important;
            }
        }
        @media (max-width: 320px) {
            .hero-content h1 {
                font-size: 1.5rem !important;
            }
            .btn-primary-custom {
                font-size: 0.8rem !important;
                padding: 10px 15px !important;
            }
            .container {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }
        }
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                min-height: auto !important;
                padding: 20px 0 !important;
            }
            .hero-content h1 {
                font-size: 1.5rem !important;
                margin-bottom: 0.5rem !important;
            }
            .hero-content p {
                margin-bottom: 1rem !important;
            }
            .scroll-indicator {
                display: none !important;
            }
            .content-section {
                padding: 30px 0 !important;
            }
            .problem-card {
                margin-bottom: 15px !important;
            }
        }
        /* iPhone 5/SE */
        @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
            .hero-content h1 {
                font-size: 1.2rem !important;
            }
        }

        /* === START: Мобильные фиксы из landing-mobile-fullwidth.css === */
        /* Общие стили для полноширинных секций на мобильных */
        @media (max-width: 768px) {
            .content-section {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .hero-section .container {
                max-width: 100% !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            .problems-section {
                background: rgba(0, 0, 0, 0.3);
                padding: 10px 0 !important;
            }
            .problem-card {
                border-radius: 0 !important;
                margin-bottom: 10px !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
            }
            .problem-item {
                margin-left: 0 !important;
                margin-right: 0 !important;
                background: rgba(255, 255, 255, 0.08) !important;
            }
            .advantages-cloud {
                padding: 20px 10px !important;
                margin: 0 !important;
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: center !important;
                gap: 8px !important;
            }
            .services-section .container {
                padding: 0 !important;
            }
            .service-card {
                margin: 0 0 10px 0 !important;
                border-radius: 0 !important;
                padding: 20px 15px !important;
                border-left: 3px solid var(--primary-color) !important;
                background: rgba(255, 255, 255, 0.95) !important;
            }
            .stats-section {
                background: rgba(0, 0, 0, 0.5);
                padding: 20px 0 !important;
            }
            .stat-item {
                background: rgba(255, 255, 255, 0.1) !important;
                border: 1px solid rgba(255, 255, 255, 0.2) !important;
                margin: 0 10px 15px 10px !important;
                padding: 25px 20px !important;
                border-radius: 15px !important;
                text-align: center !important;
            }
        }
        @media (max-width: 375px) {
            .container {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .hero-content {
                padding: 0 15px !important;
            }
            .problem-card {
                border-radius: 0 !important;
                border: none !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
            }
            .problem-header {
                padding: 20px 15px 15px !important;
                background: rgba(0, 0, 0, 0.2) !important;
            }
            .problem-content {
                padding: 15px !important;
                padding-bottom: 60px !important;
            }
            .problem-item {
                padding: 10px !important;
                margin-bottom: 8px !important;
                border-radius: 8px !important;
            }
            .problem-explanation {
                margin: 10px 0 !important;
                padding: 20px 15px !important;
                border-radius: 0 !important;
                background: rgba(255, 255, 255, 0.95) !important;
                color: #333 !important;
            }
            .explanation-content {
                max-width: 100% !important;
            }
            .service-card {
                box-shadow: none !important;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
                margin-bottom: 0 !important;
            }
            .service-card:last-child {
                border-bottom: none !important;
            }
            .cta-section .content-container {
                margin: 0 !important;
                border-radius: 0 !important;
                background: linear-gradient(135deg, var(--primary-color), #c92a2a) !important;
                padding: 30px 15px !important;
            }
            .cta-section h2,
            .cta-section p {
                color: white !important;
            }
            footer {
                padding: 20px 15px !important;
            }
            footer .container {
                padding: 0 !important;
            }
        }
        @media (max-width: 768px) {
            .problem-card,
            .service-card,
            .stat-item {
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s ease-out;
            }
            .problem-card.animated,
            .service-card.animated,
            .stat-item.animated {
                opacity: 1;
                transform: translateY(0);
            }
            .problem-card,
            .service-card {
                position: relative;
                overflow: hidden;
            }
            .problem-card::before,
            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                transition: left 0.5s;
            }
            .problem-card:hover::before,
            .service-card:hover::before {
                left: 100%;
            }
        }
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-section {
                min-height: auto !important;
                padding: 40px 0 !important;
            }
            .content-section {
                padding: 40px 0 !important;
            }
            .problem-card,
            .service-card {
                margin-bottom: 15px !important;
            }
        }
        /* === START: Мобильные фиксы из landing-iphone-se-fix.css === */
        /* Специальные фиксы для iPhone SE (375x667) */
        @media only screen and (min-device-width: 375px) and (max-device-width: 375px) and (device-height: 667px) and (-webkit-min-device-pixel-ratio: 2) {
            .hero-section {
                min-height: 100vh;
                min-height: -webkit-fill-available;
                padding: 0 !important;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            .hero-section > .container {
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 20px;
                padding-bottom: 40px;
            }
            .hero-section .row {
                width: 100%;
            }
            .hero-content {
                text-align: center;
                padding: 20px 10px !important;
                margin: 0 !important;
            }
            .hero-content h1 {
                font-size: 2.5rem !important;
                font-weight: 800 !important;
                margin-bottom: 1.2rem !important;
                line-height: 1 !important;
                letter-spacing: -1px !important;
            }
            .hero-content p.lead {
                font-size: 1rem !important;
                line-height: 1.4 !important;
                margin-bottom: 2rem !important;
                opacity: 0.9;
            }
            .btn-group-hero {
                margin-top: 30px !important;
                gap: 15px !important;
            }
            .btn-primary-custom {
                padding: 16px 30px !important;
                font-size: 1rem !important;
                font-weight: 600 !important;
                border-radius: 50px !important;
                min-height: 50px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            .btn-primary-custom i {
                margin-right: 8px !important;
                font-size: 1.1rem !important;
            }
            .scroll-indicator {
                position: absolute !important;
                bottom: 30px !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
            }
        }
        @media (width: 375px) {
            .hero-section {
                overflow: hidden;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-content h1,
            .hero-content p {
                padding-left: 5px;
                padding-right: 5px;
            }
            .btn-group-hero {
                padding: 0 10px;
            }
        }
        @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
            .hero-section {
                min-height: 100vh;
                padding: 20px 0 !important;
            }
            .hero-content h1 {
                font-size: 2rem !important;
                margin-bottom: 0.8rem !important;
            }
            .hero-content p.lead {
                font-size: 0.9rem !important;
                margin-bottom: 1.5rem !important;
            }
            .btn-group-hero {
                flex-direction: row !important;
                gap: 10px !important;
                justify-content: center !important;
            }
            .btn-primary-custom {
                width: auto !important;
                flex: 1 !important;
                max-width: 200px !important;
            }
            .scroll-indicator {
                display: none !important;
            }
        }
/* Дополнительные стили для максимального использования пространства */

/* Полноширинные блоки на мобильных */
@media (max-width: 768px) {
    /* Секция проблем растягивается на всю ширину */
    .problems-section .content-container {
        background: rgba(255, 255, 255, 0.05) !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    /* Секция преимуществ */
    .stats-section .content-container {
        background: rgba(255, 255, 255, 0.08) !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        border-radius: 0 !important;
    }
    
    /* Объяснение проблемы */
    .problem-explanation {
        margin-left: -10px !important;
        margin-right: -10px !important;
        padding: 20px 15px !important;
        border-radius: 15px !important;
    }
    
    /* Карточки сервисов на всю ширину */
    .services-grid {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .services-grid .col-lg-4,
    .services-grid .col-md-6 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Статистика */
    .stats-row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    
    .stat-item {
        padding: 20px 10px !important;
        margin-bottom: 10px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
    }
}

/* Дополнительные исправления для маленьких экранов */

/* Базовые исправления для всех мобильных устройств */
@media (max-width: 768px) {
    /* Убираем фиксированный фон на мобильных устройствах для производительности */
    body {
        background-attachment: scroll !important;
    }
    
    /* Уменьшаем blur для производительности */
    .content-container {
        backdrop-filter: blur(8px);
    }
}

/* Исправления для экранов до 576px */
@media (max-width: 576px) {
    /* Глобальное предотвращение горизонтального скролла */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Все секции должны быть ограничены по ширине */
    section {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Контент контейнеры на всю ширину с небольшими отступами */
    .content-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 20px !important;
    }
    
    /* Убираем отрицательные margin у row внутри контейнеров */
    .content-container .row {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }
    
    /* Колонки с минимальными отступами */
    .col, [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    /* Карточки на всю ширину */
    .problem-card,
    .service-card,
    .stat-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Специальные исправления для iPhone SE и экранов 375px */
@media (max-width: 375px) {
    /* Критичные элементы hero секции */
    .hero-section {
        min-height: 100vh;
        padding: 40px 0 60px !important; /* Больше отступов сверху и снизу */
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 0 5px !important;
        margin-bottom: 30px !important; /* Дополнительный отступ снизу */
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important; /* Увеличиваем для лучшей читаемости */
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
        font-weight: 700 !important;
        word-break: break-word !important;
        letter-spacing: -0.5px !important; /* Немного сжимаем буквы */
    }
    
    .hero-content p.lead {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2.5rem !important; /* Увеличиваем отступ перед кнопками */
    }
    
    /* Кнопки в hero секции */
    .btn-group-hero {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important; /* Увеличиваем отступ между кнопками */
        width: 100% !important;
        margin-top: 20px !important; /* Добавляем дополнительный отступ сверху */
    }
    
    .btn-primary-custom {
        width: 100% !important;
        padding: 14px 24px !important; /* Увеличиваем паддинги */
        font-size: 0.95rem !important; /* Немного увеличиваем шрифт */
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 12px rgba(156, 27, 27, 0.25) !important;
    }
    
    /* Контейнеры контента */
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .content-container {
        padding: 15px 10px !important;
        margin: 5px -5px !important; /* Отрицательные отступы для большей ширины */
        border-radius: 15px !important;
        backdrop-filter: blur(5px) !important;
    }
    
    /* Внутренние элементы контейнеров */
    .content-container .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    .content-container [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Карточки проблем */
    .problem-card {
        margin-bottom: 15px !important;
        border-radius: 15px !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    .problem-header {
        padding: 15px 10px !important;
    }
    
    .problem-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 15px !important;
    }
    
    .problem-icon i {
        font-size: 1.5rem !important;
    }
    
    .problem-title {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
    }
    
    .problem-content {
        padding: 15px 10px 70px !important;
    }
    
    .problem-item {
        padding: 12px 8px !important;
        margin-bottom: 10px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        display: flex !important;
        align-items: flex-start !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 10px !important;
    }
    
    .problem-item-icon {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        margin-right: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .problem-item-icon i {
        font-size: 0.9rem !important;
    }
    
    .problem-text {
        flex: 1 !important;
    }
    
    .problem-text strong {
        font-size: 0.95rem !important;
        display: block !important;
        margin-bottom: 5px !important;
    }
    
    .problem-text p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
    
    /* Облако преимуществ */
    .advantages-cloud {
        padding: 15px 0 !important;
        min-height: auto !important;
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .cloud-item {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        margin: 4px !important;
        border-radius: 15px !important;
    }
    
    .cloud-xlarge {
        font-size: 1rem !important;
        padding: 8px 16px !important;
    }
    
    .cloud-large {
        font-size: 0.9rem !important;
        padding: 7px 14px !important;
    }
    
    .cloud-medium {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
    
    .cloud-small {
        font-size: 0.75rem !important;
        padding: 5px 10px !important;
    }
    
    /* Заголовки секций */
    .section-title,
    .display-4,
    .display-5,
    .display-6 {
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    .display-4 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .display-5 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
    }
    
    .display-6 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    /* Текст в секциях */
    .advantages-description h2 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .advantages-description p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    /* Карточки услуг */
    .service-card {
        padding: 15px 10px !important;
        margin-bottom: 10px !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    .service-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .service-title {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .service-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* Статистика */
    .stat-item h3 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .stat-item p {
        font-size: 0.85rem !important;
    }
    
    /* CTA секция */
    .cta-section {
        padding: 30px 0 !important;
    }
    
    .cta-section .content-container {
        padding: 25px 15px !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    .cta-section h2 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .cta-section .btn-group {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .cta-section .btn {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Footer */
    footer {
        padding: 30px 0 !important;
    }
    
    footer h5 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    footer p,
    footer a {
        font-size: 0.85rem !important;
    }
    
    /* Модальное окно помощи */
    .modal-dialog {
        margin: 10px !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .modal-content {
        border-radius: 15px !important;
    }
    
    .modal-header {
        padding: 15px !important;
    }
    
    .modal-title {
        font-size: 1.1rem !important;
    }
    
    .modal-body {
        padding: 15px !important;
    }
    
    .modal-footer {
        padding: 15px !important;
    }
    
    /* Кнопка помощи */
    .help-button {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        bottom: 15px !important;
        right: 15px !important;
        border-radius: 25px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
        z-index: 1000 !important;
    }
    
    /* Уменьшаем кнопку при скролле */
    body.scrolled .help-button {
        transform: scale(0.8);
        opacity: 0.8;
    }
    
    /* Индикатор скролла */
    .scroll-indicator {
        bottom: 20px !important;
    }
    
    .scroll-indicator lottie-player {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Анимации - убираем или упрощаем для производительности */
    .animate-on-scroll,
    .animate-slide-left,
    .animate-slide-right,
    .animate-scale {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Исправление для длинных слов */
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
        hyphens: auto !important;
    }
}

/* Дополнительные исправления для экранов 320px */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .btn-primary-custom {
        font-size: 0.8rem !important;
        padding: 10px 15px !important;
    }
    
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Ландшафтная ориентация на мобильных устройствах */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto !important;
        padding: 20px 0 !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-content p {
        margin-bottom: 1rem !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .content-section {
        padding: 30px 0 !important;
    }
    
    .problem-card {
        margin-bottom: 15px !important;
    }
}

/* Фиксы для конкретных устройств */
/* iPhone 5/SE */
@media only screen 
    and (min-device-width: 320px) 
    and (max-device-width: 568px)
    and (-webkit-min-device-pixel-ratio: 2) {
    .hero-content h1 {
        font-size: 1.6rem !important;
    }
}

/* iPhone 12 mini */
@media only screen 
    and (min-device-width: 360px) 
    and (max-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}/* Дополнительные стили для полноширинных блоков на мобильных устройствах */

/* Общие стили для полноширинных секций на мобильных */
@media (max-width: 768px) {
    /* Убираем паддинги у секций для полной ширины */
    .content-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Hero секция на всю ширину */
    .hero-section .container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Проблемы - карточки на всю ширину с небольшим отступом */
    .problems-section {
        background: rgba(0, 0, 0, 0.3);
        padding: 10px 0 !important;
    }
    
    .problem-card {
        border-radius: 0 !important;
        margin-bottom: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Внутренние элементы проблем растянуты */
    .problem-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }
    
    /* Облако преимуществ на всю ширину */
    .advantages-cloud {
        padding: 20px 10px !important;
        margin: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    
    /* Секция услуг */
    .services-section .container {
        padding: 0 !important;
    }
    
    .service-card {
        margin: 0 0 10px 0 !important;
        border-radius: 0 !important;
        padding: 20px 15px !important;
        border-left: 3px solid var(--primary-color) !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    /* Статистика в виде карточек */
    .stats-section {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px 0 !important;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        margin: 0 10px 15px 10px !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
        text-align: center !important;
    }
}

/* Специальные стили для очень маленьких экранов */
@media (max-width: 375px) {
    /* Контейнеры без боковых отступов */
    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Hero контент с небольшими отступами */
    .hero-content {
        padding: 0 15px !important;
    }
    
    /* Карточки проблем */
    .problem-card {
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .problem-header {
        padding: 20px 15px 15px !important;
        background: rgba(0, 0, 0, 0.2) !important;
    }
    
    .problem-content {
        padding: 15px !important;
        padding-bottom: 60px !important;
    }
    
    .problem-item {
        padding: 10px !important;
        margin-bottom: 8px !important;
        border-radius: 8px !important;
    }
    
    /* Объяснение проблемы на всю ширину */
    .problem-explanation {
        margin: 10px 0 !important;
        padding: 20px 15px !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        color: #333 !important;
    }
    
    .explanation-content {
        max-width: 100% !important;
    }
    
    /* Сервисы */
    .service-card {
        box-shadow: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 0 !important;
    }
    
    .service-card:last-child {
        border-bottom: none !important;
    }
    
    /* CTA секция */
    .cta-section .content-container {
        margin: 0 !important;
        border-radius: 0 !important;
        background: linear-gradient(135deg, var(--primary-color), #c92a2a) !important;
        padding: 30px 15px !important;
    }
    
    .cta-section h2,
    .cta-section p {
        color: white !important;
    }
    
    /* Footer */
    footer {
        padding: 20px 15px !important;
    }
    
    footer .container {
        padding: 0 !important;
    }
}

/* Анимации для полноширинных блоков */
@media (max-width: 768px) {
    /* Появление карточек при скролле */
    .problem-card,
    .service-card,
    .stat-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease-out;
    }
    
    .problem-card.animated,
    .service-card.animated,
    .stat-item.animated {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Стиль "материал дизайн" для карточек */
    .problem-card,
    .service-card {
        position: relative;
        overflow: hidden;
    }
    
    .problem-card::before,
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .problem-card:hover::before,
    .service-card:hover::before {
        left: 100%;
    }
}

/* Оптимизация для landscape ориентации */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto !important;
        padding: 40px 0 !important;
    }
    
    .content-section {
        padding: 40px 0 !important;
    }
    
    .problem-card,
    .service-card {
        margin-bottom: 15px !important;
    }
}/* Специальные фиксы для iPhone SE (375x667) */

/* Фикс для правильного центрирования на iPhone SE */
@media only screen 
    and (min-device-width: 375px) 
    and (max-device-width: 375px)
    and (device-height: 667px)
    and (-webkit-min-device-pixel-ratio: 2) {
    
    /* Hero секция с правильным центрированием */
    .hero-section {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Обертка для контента */
    .hero-section > .container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .hero-section .row {
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
        padding: 20px 10px !important;
        margin: 0 !important;
    }
    
    /* Заголовок */
    .hero-content h1 {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
        margin-bottom: 1.2rem !important;
        line-height: 1 !important;
        letter-spacing: -1px !important;
    }
    
    /* Подзаголовок */
    .hero-content p.lead {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
        opacity: 0.9;
    }
    
    /* Группа кнопок с правильными отступами */
    .btn-group-hero {
        margin-top: 30px !important;
        gap: 15px !important;
    }
    
    /* Кнопки */
    .btn-primary-custom {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 50px !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Иконки в кнопках */
    .btn-primary-custom i {
        margin-right: 8px !important;
        font-size: 1.1rem !important;
    }
    
    /* Индикатор скролла */
    .scroll-indicator {
        position: absolute !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Дополнительный фикс для всех устройств с шириной 375px */
@media (width: 375px) {
    /* Убеждаемся что контент не наезжает друг на друга */
    .hero-section {
        overflow: hidden;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    /* Фикс для длинного текста */
    .hero-content h1,
    .hero-content p {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Кнопки не должны выходить за края */
    .btn-group-hero {
        padding: 0 10px;
    }
}

/* Ландшафтная ориентация iPhone SE */
@media only screen 
    and (min-device-width: 375px) 
    and (max-device-width: 667px)
    and (orientation: landscape)
    and (-webkit-min-device-pixel-ratio: 2) {
    
    .hero-section {
        min-height: 100vh;
        padding: 20px 0 !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-content p.lead {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-group-hero {
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
    }
    
    .btn-primary-custom {
        width: auto !important;
        flex: 1 !important;
        max-width: 200px !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
}/* Исправления для блока "Знакомые проблемы" на мобильных устройствах */

/* Основные исправления для маленьких экранов */
@media (max-width: 768px) {
    /* Увеличиваем отступ сверху для блока проблем */
    .problems-section {
        padding: 80px 0 60px !important; /* Больше места сверху */
    }
    
    /* Контейнер с правильными отступами */
    .problems-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
    
    /* Центрирование row */
    .problems-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Правильное выравнивание колонок для мобильных */
    .problems-section .col-lg-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px !important;
    }
    
    /* Убираем прозрачность и делаем текст читаемым */
    .problems-section .content-container {
        background: rgba(255, 255, 255, 0.25) !important; /* Светлый фон как у других блоков */
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 30px 15px !important;
        border-radius: 20px !important;
        max-width: calc(100% - 20px) !important; /* Центрируем с отступами */
        box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    }
    
    /* Заголовки секции - белые для контраста */
    .problems-section h2.display-4 {
        color: #ffffff !important;
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .problems-section p.lead {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Карточки проблем */
    .problem-card {
        background: rgba(255, 255, 255, 0.95) !important; /* Почти белый фон */
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important; /* Для правильного отображения скруглений заголовка */
        border-radius: 20px !important; /* Восстанавливаем скругления */
        position: relative !important;
        padding-bottom: 60px !important; /* Место для кнопки */
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Контент внутри карточек */
    .problem-content {
        padding: 15px !important;
        overflow: visible !important;
        margin-bottom: 20px !important; /* Отступ для кнопки */
    }
    
    /* Элементы проблем */
    .problem-item {
        background: rgba(0, 0, 0, 0.03) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px !important;
    }
    
    /* Текст проблем - темный для читаемости */
    .problem-text strong {
        color: #1a1a1a !important;
        font-size: 0.95rem !important;
    }
    
    .problem-text p {
        color: #333333 !important;
        font-size: 0.85rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Иконки грузоотправителей - красные */
    .shippers-card .problem-item-icon {
        background: rgba(220, 38, 38, 0.15) !important;
        color: #dc2626 !important;
    }
    
    /* Иконки перевозчиков - синие */
    .carriers-card .problem-item-icon {
        background: rgba(89, 98, 135, 0.15) !important;
        color: #596287 !important;
    }
    
    /* Заголовок карточки грузоотправителей - красный */
    .shippers-card .problem-header {
        background: linear-gradient(45deg, #9C1B1B, #c92a2a) !important;
        padding: 20px 15px !important;
        border-radius: 20px 20px 0 0 !important; /* Скругления сверху */
        margin: -1px -1px 0 -1px !important; /* Компенсация границы */
    }
    
    /* Заголовок карточки перевозчиков - синий */
    .carriers-card .problem-header {
        background: linear-gradient(45deg, #596287, #6b73a1) !important;
        padding: 20px 15px !important;
        border-radius: 20px 20px 0 0 !important; /* Скругления сверху */
        margin: -1px -1px 0 -1px !important; /* Компенсация границы */
    }
    
    .problem-title {
        color: #ffffff !important; /* Белый текст */
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }
    
    /* Иконка в заголовке тоже белая */
    .problem-header .problem-icon {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 15px !important;
    }
    
    .problem-header .problem-icon i {
        font-size: 1.5rem !important;
        color: #ffffff !important;
    }
    
    /* Кнопка решения */
    .solution-badge {
        position: absolute !important;
        bottom: 10px !important;
        right: 15px !important;
        left: auto !important; /* Убираем растягивание */
        text-align: right !important;
    }
    
    /* Кнопка решения для грузоотправителей - красная */
    .shippers-card .badge-text {
        background: linear-gradient(45deg, #9C1B1B, #c92a2a) !important;
        color: white !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
        display: inline-block !important;
        text-decoration: none !important;
        box-shadow: 0 2px 8px rgba(156, 27, 27, 0.3) !important;
        transition: all 0.3s ease !important;
    }
    
    .shippers-card .badge-text:hover {
        background: linear-gradient(45deg, #7f1717, #9C1B1B) !important;
        box-shadow: 0 4px 12px rgba(156, 27, 27, 0.4) !important;
        transform: translateY(-2px) !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    /* Кнопка решения для перевозчиков - синяя */
    .carriers-card .badge-text {
        background: linear-gradient(45deg, #596287, #6b73a1) !important;
        color: white !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
        display: inline-block !important;
        text-decoration: none !important;
        box-shadow: 0 2px 8px rgba(89, 98, 135, 0.3) !important;
        transition: all 0.3s ease !important;
    }
    
    .carriers-card .badge-text:hover {
        background: linear-gradient(45deg, #4a5270, #596287) !important;
        box-shadow: 0 4px 12px rgba(89, 98, 135, 0.4) !important;
        transform: translateY(-2px) !important;
        color: white !important;
        text-decoration: none !important;
    }
}

/* Специальные исправления для iPhone SE (375px) */
@media (max-width: 375px) {
    /* Еще больше места сверху */
    .problems-section {
        padding: 100px 0 60px !important;
    }
    
    /* Контейнер с минимальными боковыми отступами */
    .problems-section .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Контент контейнер с правильным выравниванием */
    .problems-section .content-container {
        background: rgba(255, 255, 255, 0.25) !important; /* Светлый фон */
        backdrop-filter: blur(15px) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 25px 10px !important;
        border-radius: 20px !important; /* Возвращаем скругления */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        max-width: calc(100% - 20px) !important;
    }
    
    /* Заголовок секции */
    .problems-section h2.display-4 {
        font-size: 1.5rem !important;
        padding: 0 10px !important;
        word-break: break-word !important;
    }
    
    .problems-section p.lead {
        font-size: 0.9rem !important;
        padding: 0 10px !important;
        line-height: 1.4 !important;
    }
    
    /* Карточки с правильным выравниванием */
    .problem-card {
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
        border-radius: 20px !important; /* Восстанавливаем скругления */
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 70px !important; /* Больше места для кнопки на маленьких экранах */
    }
    
    /* Правильное выравнивание колонок */
    .problems-section .col-lg-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    /* Контент с правильными отступами */
    .problem-content {
        padding-bottom: 10px !important;
    }
    
    /* Заголовок карточки для маленьких экранов */
    .problem-header {
        margin: 0 !important; /* Убираем отрицательные отступы на мобильных */
        border-radius: 20px 20px 0 0 !important;
    }
    
    /* Предотвращаем выход текста за границы */
    .problem-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 10px 8px !important;
    }
    
    .problem-item-icon {
        flex-shrink: 0 !important;
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
    }
    
    .problem-text {
        flex: 1 !important;
        min-width: 0 !important; /* Важно для правильного переноса текста */
    }
    
    .problem-text strong {
        display: block !important;
        word-break: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
    }
    
    .problem-text p {
        word-break: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
    }
    
    /* Блок объяснения проблемы */
    .problem-explanation {
        background: rgba(255, 255, 255, 0.95) !important;
        margin: 30px 5px 20px !important; /* Больше отступ сверху */
        padding: 25px 20px !important;
        border-radius: 20px !important; /* Такие же скругления как у карточек */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .explanation-title {
        color: #1a1a1a !important;
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .explanation-text {
        color: #333333 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .solution-title {
        color: #9C1B1B !important;
        font-size: 1.1rem !important;
        margin-top: 20px !important;
        text-shadow: none !important; /* Убираем тень */
        background: rgba(255, 255, 255, 0.8); /* Добавляем фон */
        padding: 10px 15px;
        border-radius: 10px;
        display: inline-block;
    }
    
    .solution-subtitle {
        color: #666666 !important;
        font-size: 0.9rem !important;
    }
}

/* Дополнительные фиксы для предотвращения горизонтального скролла */
@media (max-width: 768px) {
    .problems-section {
        overflow-x: hidden !important;
    }
    
    /* Убираем анимации для производительности */
    .animate-slide-left,
    .animate-slide-right,
    .animate-scale,
    .animate-on-scroll {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    /* Фикс для решения проблемы с белым текстом 100ВЁРСТ */
    .solution-intro {
        background: rgba(255, 255, 255, 0.9) !important;
        padding: 20px !important;
        border-radius: 15px !important;
        margin-top: 20px !important;
    }
    
    .solution-intro .solution-title {
        color: #9C1B1B !important;
        background: none !important;
        padding: 0 !important;
        text-shadow: none !important;
    }
    
    .solution-intro .solution-subtitle {
        color: #666666 !important;
        margin-top: 10px !important;
    }
}

/* Фикс для очень длинных слов */
@media (max-width: 375px) {
    .problem-text,
    .explanation-text,
    .solution-title,
    .solution-subtitle {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
}/* Исправление центрирования карточек в блоке "Знакомые проблемы" */

/* Для всех мобильных устройств */
@media (max-width: 991px) {
    /* Центрирование контейнера */
    .problems-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Центрирование content-container */
    .problems-section .content-container {
        width: 100%;
        max-width: calc(100% - 30px);
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Центрирование row внутри content-container */
    .problems-section .content-container .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 !important;
    }
    
    /* Колонки */
    .problems-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Карточки */
    .problem-card {
        width: 100%;
        max-width: 400px; /* Ограничиваем максимальную ширину */
        margin: 0 auto 20px auto !important;
    }
}

/* Для маленьких экранов (телефоны) */
@media (max-width: 576px) {
    .problems-section .content-container {
        padding: 20px 10px !important;
    }
    
    .problem-card {
        max-width: 100%; /* На маленьких экранах используем всю ширину */
    }
    
    /* Убираем горизонтальную прокрутку */
    .problems-section {
        overflow-x: hidden !important;
    }
    
    .problems-section .container {
        overflow-x: hidden !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Для очень маленьких экранов (320px - 375px) */
@media (max-width: 375px) {
    .problems-section .content-container {
        max-width: calc(100% - 20px);
        padding: 15px 8px !important;
    }
    
    .problem-card {
        font-size: 0.9rem;
    }
    
    .problem-header {
        padding: 15px 10px !important;
    }
    
    .problem-content {
        padding: 10px !important;
    }
}/* Статичный фон для лендинга */

/* Переопределяем основной фон */
body {
    /* Убираем fixed attachment для статичного фона */
    background-attachment: scroll !important;
    /* Фон остается на месте, не прокручивается с контентом */
    position: relative;
}

/* Создаем фиксированный слой для фона */
body::before {
    content: '';
    position: fixed; /* Это ключевое свойство - фон зафиксирован на экране */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    
    /* Фоновое изображение с затемнением */
    background: #1a1a1a; /* Фоновый цвет для областей без изображения */
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                      url('/assets/images/main_bg.webp');
    background-repeat: no-repeat;
    
    /* Позиционируем и масштабируем чтобы были видны обе фуры */
    background-position: center center;
    background-size: cover; /* Используем cover чтобы изображение всегда заполняло весь экран */
    
    /* Альтернативные варианты позиционирования */
    /* background-position: center 40%; - поднять изображение выше */
    /* background-size: contain; - показать все изображение целиком */
    /* background-size: 1400px auto; - фиксированная ширина */
    
    /* Фиксируем фон на месте */
    will-change: transform;
}

/* Для больших экранов */
@media (min-width: 1400px) {
    body::before {
        background-size: 100% auto; /* На больших экранах показываем больше */
        background-position: center center;
    }
}

/* Для средних экранов */
@media (min-width: 768px) and (max-width: 1399px) {
    body::before {
        background-size: 110% auto;
        background-position: center 45%; /* Немного поднимаем */
    }
}

/* Fallback для браузеров без поддержки WebP */
.no-webp body::before {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                     url('/assets/images/main_bg.jpeg');
}

/* Убираем динамическую загрузку фона */
body.bg-loaded {
    background: none !important;
}

/* Все секции должны быть выше фона */
section,
.content-section,
.hero-section {
    position: relative;
    z-index: 1;
}

/* Убеждаемся, что контент может прокручиваться */
html {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    position: relative;
    /* Убираем фон с body, он теперь на ::before */
    background: none !important;
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
    /* На мобильных используем фиксированный viewport */
    body::before {
        position: fixed;
        /* Важно: используем viewport units для правильного позиционирования */
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        /* Отключаем will-change для экономии ресурсов */
        will-change: auto;
        
        /* Заполняем весь экран без серых полос */
        background-size: cover !important;
        background-position: center center !important;
        
        /* Фиксы для правильной работы fixed на мобильных */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    body {
        /* Минимальная высота для корректного отображения фона */
        min-height: 100vh;
        overflow-x: hidden;
        /* Важно для iOS */
        position: relative;
        height: 100%;
    }
    
    /* Фикс для правильного скролла контента */
    html {
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    body::before {
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* Для ландшафтной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    body::before {
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* Специальная оптимизация для iOS Safari */
@supports (-webkit-touch-callout: none) {
    body::before {
        /* Фикс для iOS Safari */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        /* Используем -webkit-fill-available для iOS */
        height: -webkit-fill-available;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        /* Важно для iOS - предотвращаем изменение размера при скролле */
        background-attachment: scroll !important;
    }
}

/* Убираем артефакты при прокрутке */
@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    body::before {
        /* Предотвращаем "прыжки" фона при прокрутке */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
}

/* Альтернативный вариант со статичным градиентом */
.static-gradient-bg body::before {
    /* Простой градиент вместо изображения для лучшей производительности */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

/* Плавные переходы между секциями */
.content-section {
    /* Убираем фон полностью */
    background: none !important;
    backdrop-filter: none;
    transition: none;
}

/* Контейнеры контента с лучшей читаемостью */
.content-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Темные контейнеры */
.dark-content-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}/* Варианты позиционирования фонового изображения для видимости двух фур */

/* Вариант 1: По умолчанию - cover без серых полос */
body::before {
    background-size: cover !important;
    background-position: center center !important;
}

/* Вариант с увеличением для десктопа */
@media (min-width: 1200px) {
    body.bg-zoomed::before {
        background-size: 120% auto !important;
        background-position: center center !important;
    }
}

/* Вариант 2: Показать больше правой части (где вторая фура) */
body.bg-right::before {
    background-size: 130% auto !important;
    background-position: 40% center !important;
}

/* Вариант 3: Показать больше левой части */
body.bg-left::before {
    background-size: 130% auto !important;
    background-position: 60% center !important;
}

/* Вариант 4: Максимальное увеличение для видимости обеих фур */
body.bg-zoom::before {
    background-size: 150% auto !important;
    background-position: center 35% !important;
}

/* Вариант 5: Contain - показать все изображение целиком */
body.bg-contain::before {
    background-size: contain !important;
    background-position: center center !important;
    background-color: #1a1a1a; /* Фоновый цвет для областей без изображения */
}

/* Адаптивные варианты для разных размеров экрана */

/* Для широких экранов - меньше увеличение */
@media (min-width: 1600px) {
    body::before {
        background-size: 100% auto !important;
    }
    
    body.bg-zoom::before {
        background-size: 110% auto !important;
    }
}

/* Для планшетов */
@media (min-width: 768px) and (max-width: 1199px) {
    body::before {
        background-size: 140% auto !important;
        background-position: center 40% !important;
    }
}

/* Для мобильных - всегда cover чтобы не было серых полос */
@media (max-width: 767px) {
    body::before {
        background-size: cover !important;
        background-position: center center !important;
        /* Минимальная высота */
        min-height: 100vh;
    }
    
    /* Альтернативный вариант - если хотите видеть фуры крупнее */
    body.mobile-zoom::before {
        background-size: auto 100% !important; /* Заполняем по высоте */
        background-position: center center !important;
    }
}

/* Вспомогательные классы для тестирования позиционирования */

/* Показать сетку для позиционирования (только для разработки) */
body.bg-debug::before {
    opacity: 0.8;
}

body.bg-debug::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,0,0.1) 1px, transparent 1px);
    background-size: 10% 10%;
    z-index: 9999;
    pointer-events: none;
}

/* Анимация плавного появления фона */
body::before {
    animation: bgFadeIn 1.5s ease-out;
}

@keyframes bgFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}/* Фикс фонового изображения для мобильных устройств */

/* Основной фикс для мобильных */
@media (max-width: 768px) {
    /* Сбрасываем стили body */
    body {
        background: none !important;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Создаем фиксированный фон через псевдоэлемент */
    body::before {
        content: '';
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: -1;
        
        /* Фоновое изображение */
        background-color: #1a1a1a;
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                          url('/assets/images/main_bg.webp');
        background-repeat: no-repeat;
        background-position: center center !important;
        background-size: cover !important;
        
        /* Важные фиксы для мобильных */
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        
        /* Предотвращаем изменение размера */
        min-height: 100vh;
        min-height: -webkit-fill-available;
        
        /* Оптимизация производительности */
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    /* Фикс для html */
    html {
        height: 100%;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Весь контент должен быть выше фона */
    body > * {
        position: relative;
        z-index: 1;
    }
}

/* Специальный фикс для iOS */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        /* Viewport фикс для iOS */
        body::before {
            height: 100vh !important;
            /* Используем CSS переменную для динамической высоты viewport */
            height: calc(var(--vh, 1vh) * 100) !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
        }
        
        /* Предотвращаем bounce эффект в iOS */
        html {
            position: fixed;
            height: 100%;
            overflow: hidden;
        }
        
        body {
            position: fixed;
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }
    }
}

/* Фикс для Android Chrome */
@media (max-width: 768px) {
    /* Chrome mobile имеет проблемы с fixed positioning */
    @supports (display: grid) {
        body::before {
            /* Используем 100% вместо vh для Android */
            height: 100% !important;
            position: fixed !important;
        }
    }
}

/* Альтернативный подход для проблемных устройств */
@media (max-width: 768px) {
    /* Если fixed не работает, используем absolute с фиксированными размерами */
    body.fallback-bg {
        min-height: 100vh;
        background: #1a1a1a url('/assets/images/main_bg.webp') center center / cover no-repeat fixed !important;
    }
    
    body.fallback-bg::before {
        display: none;
    }
}

/* Дополнительные фиксы для маленьких экранов */
@media (max-width: 480px) {
    body::before {
        /* Убеждаемся что фон покрывает весь экран */
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* Фикс для ландшафтной ориентации */
@media (max-width: 768px) and (orientation: landscape) {
    body::before {
        background-size: cover !important;
        background-position: center center !important;
        height: 100vh !important;
        width: 100vw !important;
    }
}

/* Debug класс для проверки */
body.debug-bg::before {
    border: 5px solid red;
    opacity: 0.8;
}/* Стили для выделения текста */

/* Черный жирный текст для важных сообщений */
.text-highlight-bold {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    line-height: 1.6;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

/* Красное выделение для важного текста */
.text-highlight-red {
    color: #dc2626 !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

/* Альтернативный вариант с фоновым выделением */
.text-highlight-red-bg {
    background: linear-gradient(120deg, transparent 0%, rgba(220, 38, 38, 0.1) 10%, rgba(220, 38, 38, 0.1) 90%, transparent 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: #dc2626 !important;
    font-weight: 700;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .text-highlight-red {
        font-size: inherit;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        display: block; /* Меняем на block для правильного переноса */
    }
    
    /* Контейнер advantages-description */
    .advantages-description {
        padding: 0 10px;
        overflow: hidden;
    }
    
    .advantages-description p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding: 0 5px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 375px) {
    .text-highlight-red {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .advantages-description .fs-5 {
        font-size: 1rem !important;
    }
}

/* Улучшенные стили для уведомлений на лендинге */

/* Переопределяем стили Bootstrap alert для лучшей читаемости */
.alert {
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 15px 20px !important;
    font-weight: 500 !important;
    backdrop-filter: blur(10px) !important;
    max-width: 500px !important;
    margin-top: 20px !important;
}

/* Success сообщения - белый фон с зеленой рамкой */
.alert-success {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #155724 !important;
    border-left: 5px solid #28a745 !important;
}

.alert-success i {
    color: #28a745 !important;
}

/* Error/Danger сообщения - белый фон с красной рамкой */
.alert-danger {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #721c24 !important;
    border-left: 5px solid #dc3545 !important;
}

.alert-danger i {
    color: #dc3545 !important;
}

/* Warning сообщения - белый фон с желтой рамкой */
.alert-warning {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #856404 !important;
    border-left: 5px solid #ffc107 !important;
}

.alert-warning i {
    color: #ffc107 !important;
}

/* Info сообщения - белый фон с синей рамкой */
.alert-info {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #0c5460 !important;
    border-left: 5px solid #17a2b8 !important;
}

.alert-info i {
    color: #17a2b8 !important;
}

/* Кнопка закрытия */
.alert .btn-close {
    background-color: transparent !important;
    opacity: 0.7 !important;
}

.alert .btn-close:hover {
    opacity: 1 !important;
}

/* Анимация появления */
@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.alert.show {
    animation: slideDown 0.3s ease-out;
}

/* Мобильная адаптация */
@media (max-width: 576px) {
    .alert {
        max-width: 90% !important;
        font-size: 0.9rem !important;
        padding: 12px 15px !important;
    }
    
    .alert i {
        font-size: 1.1rem !important;
    }
}

/* Для темного фона лендинга */
.contact-section .alert {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Альтернативный стиль с градиентом (если нужно) */
.alert-gradient-success {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(240,255,240,0.95) 100%) !important;
    border-left: 5px solid #28a745 !important;
}

.alert-gradient-danger {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,240,240,0.95) 100%) !important;
    border-left: 5px solid #dc3545 !important;
}/* Исправление цветов для текстов */

/* Заголовок "100ВЁРСТ – это платформа..." должен быть красным */
.solution-intro .solution-title,
.solution-title {
    color: #9C1B1B !important;
    text-shadow: none !important; /* Убираем свечение */
}

/* Текст "Наша задача – максимально упростить..." - белый для лучшей читаемости */
.advantages-description .text-highlight-red,
.text-highlight-red,
p.text-highlight-red,
.fs-5.text-highlight-red {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important; /* Легкая тень для читаемости */
}

/* Усиление специфичности для десктопа */
.advantages-description p.fs-5.text-highlight-red {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .solution-intro .solution-title,
    .solution-title {
        color: #9C1B1B !important;
        text-shadow: none !important;
    }
    
    .advantages-description .text-highlight-red,
    .text-highlight-red,
    p.text-highlight-red,
    .fs-5.text-highlight-red {
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
        display: block !important;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .solution-intro .solution-title,
    .solution-title {
        color: #9C1B1B !important;
        text-shadow: none !important;
        font-size: 1.3rem !important;
    }
    
    .advantages-description .text-highlight-red,
    .text-highlight-red,
    p.text-highlight-red,
    .fs-5.text-highlight-red {
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
        font-size: 0.95rem !important;
    }
}

/* Дополнительное усиление для всех размеров экрана */
body .text-highlight-red,
body p.text-highlight-red,
body .fs-5.text-highlight-red,
body .advantages-description .text-highlight-red {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}/* Help Button Styles */
.help-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color, #9C1B1B);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 27, 27, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 27, 27, 0.4);
    background: #c92a2a;
}

.help-button i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .help-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Modal Styles */
#helpModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#helpModal .modal-header {
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

#helpModal .modal-footer {
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

/* Contact Options Styles */
.contact-option-modal {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    background: white;
}

.contact-option-modal:hover {
    border-color: var(--primary-color);
    background: #fef2f2;
}

.contact-option-modal.active {
    border-color: var(--primary-color);
    background: #fef2f2;
}

.contact-option-modal input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox-modal {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-option-modal.active .custom-checkbox-modal {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-option-modal.active .custom-checkbox-modal::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.contact-option-modal i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Privacy Checkbox */
.privacy-checkbox-modal {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
}

.privacy-checkbox-modal input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.privacy-custom-checkbox-modal {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.privacy-checkbox-modal input[type="checkbox"]:checked ~ .privacy-custom-checkbox-modal {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.privacy-checkbox-modal input[type="checkbox"]:checked ~ .privacy-custom-checkbox-modal::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.privacy-text {
    font-size: 14px;
    line-height: 1.5;
}

.privacy-text a {
    text-decoration: underline;
}

/* Contact Fields */
.contact-field-modal {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Status */
.form-status {
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}/* Critical CSS for above-the-fold content */
:root{--primary-color:#9C1B1B;--secondary-color:#333;--text-color:#333;--light-bg:#f8f9fa;--dark-bg:#2c3e50}
body{margin:0;font-family:'Roboto',sans-serif;color:var(--text-color);line-height:1.6;background:#1a1a1a;min-height:100vh}
body.bg-loaded{background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('/assets/images/main_bg.webp') center/cover fixed}
.hero-section{min-height:100vh;display:flex;align-items:center;color:white;position:relative;padding:80px 0}
.hero-content h1{font-size:3.5rem;font-weight:700;line-height:1.2;margin-bottom:1.5rem;text-shadow:2px 2px 4px rgba(0,0,0,0.5)}
.hero-content p{font-size:1.25rem;margin-bottom:2rem;text-shadow:1px 1px 2px rgba(0,0,0,0.5)}
.btn{display:inline-block;padding:14px 30px;text-decoration:none;border-radius:50px;font-weight:500;transition:all 0.3s;text-transform:uppercase;letter-spacing:1px}
.btn-danger{background-color:var(--primary-color);color:white;border:2px solid var(--primary-color)}
.btn-danger:hover{background-color:transparent;color:var(--primary-color)}
.btn-outline-danger{background-color:transparent;color:white;border:2px solid white}
.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
@media (min-width:768px){.container{max-width:720px}.hero-content h1{font-size:4rem}}
@media (min-width:992px){.container{max-width:960px}}
@media (min-width:1200px){.container{max-width:1140px}}

/* ===== ФИНАЛЬНЫЕ ФИКСЫ - HIGHEST PRIORITY ===== */

/* КНОПКА ПОМОЩИ - FINAL */
.help-button {
    position: fixed !important;
    right: 30px !important;
    bottom: 30px !important;
    z-index: 1000 !important;
    background: linear-gradient(45deg, #9C1B1B, #c92a2a) !important;
    color: white !important;
    border: none !important;
    padding: 15px 25px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(156, 27, 27, 0.3) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    min-height: 44px !important;
    min-width: 44px !important;
}

.help-button:hover {
    background: linear-gradient(45deg, #7a1515, #a01e1e) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(156, 27, 27, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.help-button i {
    font-size: 1.1rem !important;
    margin: 0 !important;
}

/* МОБИЛЬНЫЕ ФИКСЫ КНОПКИ ПОМОЩИ */
@media (max-width: 768px) {
    .help-button {
        right: 20px !important;
        bottom: 20px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .help-button {
        right: 15px !important;
        bottom: 15px !important;
        padding: 12px !important;
        font-size: 0 !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        justify-content: center !important;
    }
    
    .help-button i {
        font-size: 1.2rem !important;
        margin: 0 !important;
    }
    
    .help-button span {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .help-button {
        right: 12px !important;
        bottom: 12px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 10px !important;
    }
    
    .help-button i {
        font-size: 1.1rem !important;
    }
}

/* HERO КНОПКИ - FINAL */
@media (max-width: 480px) {
    .btn-group-hero {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-top: 1rem !important;
        align-items: center !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
    }
    
    .btn-primary-custom i,
    .btn-outline-custom i {
        font-size: 1rem !important;
        margin: 0 !important;
    }
}

/* МОДАЛЬНОЕ ОКНО ПОМОЩИ - МОБИЛЬНЫЕ СТИЛИ */
@media (max-width: 767px) {
    /* Само модальное окно */
    .modal-dialog {
        margin: 10px !important;
        max-width: none !important;
        width: calc(100% - 20px) !important;
    }
    
    .modal-content {
        border-radius: 15px !important;
    }
    
    .modal-header {
        padding: 15px !important;
        border-bottom: 1px solid #dee2e6 !important;
    }
    
    .modal-body {
        padding: 15px !important;
    }
    
    .modal-footer {
        padding: 15px !important;
    }
    
    .modal-title {
        font-size: 1.2rem !important;
    }
    
    /* Способы связи в модальном окне - ВЕРТИКАЛЬНО */
    .contact-methods-modal,
    .contact-options-modal {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .contact-option-modal {
        width: 100% !important;
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }
    
    .contact-option-modal i {
        font-size: 1.1rem !important;
        width: 20px !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .custom-checkbox-modal {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        /* Фикс для Android - принудительные размеры */
        max-width: 18px !important;
        max-height: 18px !important;
        border: 2px solid #ccc !important;
        border-radius: 4px !important;
        background: white !important;
        display: inline-block !important;
        position: relative !important;
    }
    
    /* Поля ввода в модальном окне */
    .contact-field-modal {
        margin-bottom: 15px !important;
    }
    
    .contact-field-modal input {
        width: 100% !important;
        padding: 12px 15px !important;
        font-size: 16px !important; /* Предотвращает зум на iOS */
        border-radius: 8px !important;
        border: 2px solid #dee2e6 !important;
        box-sizing: border-box !important;
    }
    
    .contact-field-modal label {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
        display: block !important;
    }
    
    /* Кнопка отправки */
    .btn-submit-modal {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
    }
    
    /* Чекбокс согласия */
    .privacy-checkbox-modal {
        margin-top: 15px !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        margin: 5px !important;
        width: calc(100% - 10px) !important;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 12px !important;
    }
    
    .modal-title {
        font-size: 1.1rem !important;
    }
    
    .contact-option-modal {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
    }
    
    .contact-option-modal i {
        font-size: 1rem !important;
    }
}

/* ДОПОЛНИТЕЛЬНЫЕ ФИКСЫ ДЛЯ ANDROID */
@media (max-width: 767px) {
    /* Фиксы для активного состояния чекбоксов */
    .contact-option-modal.active .custom-checkbox-modal {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
        flex-shrink: 0 !important;
    }
    
    .contact-option-modal.active .custom-checkbox-modal::after {
        content: '✓' !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        color: white !important;
        font-size: 12px !important;
        font-weight: bold !important;
        line-height: 1 !important;
    }
    
    /* Принудительные стили для контейнера опций */
    .contact-option-modal {
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    /* Дополнительный фикс для flex контейнера */
    .contact-methods-modal > *,
    .contact-options-modal > * {
        flex-shrink: 0 !important;
    }
    
    /* Фикс для Android WebView */
    .modal-content {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
    
    /* Принудительное отключение системных стилей Android */
    input[type="checkbox"] {
        -webkit-appearance: none !important;
        appearance: none !important;
        background: transparent !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* КРИТИЧЕСКИЙ ФИКС - ПРИНУДИТЕЛЬНОЕ ЦЕНТРИРОВАНИЕ БЛОКА "КОРЕНЬ ПРОБЛЕМЫ" - z-index: 999999 */

/* Полная перезагрузка всех стилей problems-section с максимальным приоритетом */
section.problems-section {
    display: block !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    padding: 60px 0 !important;
}

section.problems-section .container {
    display: block !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

section.problems-section .content-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    text-align: center !important;
}

/* Фикс для карточек проблем - восстанавливаем центрирование контента */

section.problems-section .problem-content {
    padding: 20px !important;
    text-align: left !important;
    box-sizing: border-box !important;
}

section.problems-section .problem-item {
    margin: 0 auto 15px auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: flex-start !important;
}

section.problems-section .problem-text {
    flex: 1 !important;
    max-width: calc(100% - 50px) !important;
    box-sizing: border-box !important;
}

section.problems-section .btn {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    display: block !important;
    text-align: center !important;
    max-width: 200px !important;
    width: auto !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}

/* Убеждаемся что карточки имеют относительное позиционирование для absolute кнопок */
section.problems-section .problem-card {
    margin: 0 auto 20px auto !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    padding-bottom: 80px !important;
}

section.problems-section .problem-explanation {
    margin: 20px auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

section.problems-section .solution-intro {
    margin: 20px auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

/* Все остальные секции тоже центрируем для консистентности */
.advantages-section .content-container,
.services-section .content-container,
.stats-section .content-container {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Мобильные адаптации */
@media (max-width: 768px) {
    section.problems-section {
        padding: 40px 0 !important;
    }
    
    section.problems-section .container {
        padding: 0 10px !important;
    }
    
    section.problems-section .content-container {
        padding: 30px 15px !important;
    }
    
    .advantages-section .content-container,
    .services-section .content-container,
    .stats-section .content-container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    section.problems-section .container {
        padding: 0 5px !important;
    }
    
    section.problems-section .content-container {
        padding: 20px 10px !important;
    }
    
    .advantages-section .content-container,
    .services-section .content-container,
    .stats-section .content-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}