/* Stats Section - Copilote AI */
.service-stats-section {
    padding: 2rem 0;
    background: var(--color-tertiary, #000000);
    color: var(--color-secondary, #ffffff);
}

.service-stats-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 800;
}

.stats-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}