/* Statistics Section */

.statistics {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1ff 100%);
    padding: 4rem 0;
    margin: -1px 0 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 102, 204, 0.08);
    border-radius: 18px;
    text-align: center;
    min-height: 210px;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: 0 14px 30px rgba(10, 25, 41, 0.1);
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    min-height: 4.2rem;
}

.stat-number {
    font-size: clamp(2.7rem, 4vw, 3.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.98rem;
    color: #5a6a7a;
    font-weight: 600;
    margin-top: 0.65rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.25rem;
    }

    .stat-card {
        min-height: 190px;
        padding: 1.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        min-height: 170px;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }
}
