/* Исправление статистических блоков на мобильных устройствах */

@media (max-width: 768px) {
    /* Исправляем grid layout для равномерного распределения */
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 2rem auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Делаем все карточки одинакового размера */
    .stat-card {
        width: 100% !important;
        min-height: 120px !important;
        padding: 1rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transform: none !important; /* Убираем 3D трансформации на мобильных */
    }
    
    /* Убираем hover эффекты на мобильных */
    .stat-card:hover {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(30, 41, 59, 0.1) !important;
    }
    
    /* Адаптируем размеры текста */
    .stat-number {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        opacity: 0.9;
    }
    
    /* Сбрасываем любые абсолютные позиционирования */
    .hero-stats,
    .stat-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        float: none !important;
    }
}

/* Для очень маленьких экранов (менее 375px) */
@media (max-width: 375px) {
    .hero-stats {
        gap: 0.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .stat-card {
        min-height: 100px !important;
        padding: 0.75rem !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
}

/* Фиксим проблемы с центрированием */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 !important;
        width: 100% !important;
    }
    
    /* Убираем возможные негативные margin'ы */
    .hero-stats {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Убираем возможные transform стили, которые могут сдвигать блоки */
    .stat-card,
    .stat-card.content-reveal,
    .stat-card.content-visible,
    .stat-card.animated {
        translate: none !important;
        rotate: none !important;
        scale: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Безопасные отступы для iPhone X и новее */
@supports (padding: env(safe-area-inset-left)) {
    @media (max-width: 768px) {
        .hero-stats {
            padding-left: max(1rem, env(safe-area-inset-left)) !important;
            padding-right: max(1rem, env(safe-area-inset-right)) !important;
        }
    }
}