/* Statistics Component - Persona Style */
.statistics-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.statistics-box {
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 0;
    justify-content: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: #9bb5e8;
    filter: brightness(1.2);
}

.stat-icon i {
    font-size: 1.75rem;
    color: #9bb5e8;
    filter: brightness(1.2);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .statistics-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        padding: 4rem 3.5rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-box {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 3.5rem 2.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-label {
        text-align: center;
        width: 100%;
        font-size: 0.8rem;
    }
}
