        :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 {
                gap: 0.5rem;
                margin-top: 1rem;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 8px 16px !important;
                font-size: 0.75rem !important;
                width: 100%;
                margin-bottom: 6px;
                border-radius: 40px;
            }
            
            .btn-primary-custom i,
            .btn-outline-custom i {
                font-size: 0.8rem;
                margin-right: 4px !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;
            }
            
            /* Кнопка помощи */
            .help-button {
                right: 8px !important;
                bottom: 8px !important;
                padding: 6px 12px !important;
                font-size: 0.7rem !important;
                border-radius: 40px;
            }
            
            .help-button i {
                font-size: 0.75rem !important;
                margin-right: 3px;
            }
            
            /* Индикатор скролла */
            .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: 1.2rem !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;
            }
        }
