/* Fix mobile stats - ensure "10M+" is fully visible */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem !important;
    }
    
    .stat-item {
        padding: 1.5rem 1rem !important;
        min-height: auto !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        word-break: keep-all !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
}
