/* --- CORRECTION SCROLL HORIZONTAL --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- CLASSE POUR LE SPAN EN COULEUR DANS "DU TERRAIN A LA TECHNIQUE" --- */
.text-highlight {
    color: var(--blue);
}

/* --- SECTION DEVIS (ARRIERE PLAN GRIS) --- */
.section-gray {
    background: #f8fafc;
    border-top: 1px solid #eee;
}

.devis-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.devis-wrapper {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.devis-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    text-transform: none;
}

.devis-text {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* --- GRILLE CHIFFRES (STATS) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    /* Container pour chaque chiffre */
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: var(--blue);
    font-weight: 700;
    display: block; /* Important pour que le chiffre soit sur sa propre ligne */
}

.stat-label {
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* --- RESPONSIVE GRILLE --- */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* --- BAS DE PAGE (CTA) --- */
.text-highlight-big {
    font-family: 'Syne', sans-serif;
    color: var(--blue);
    font-size: 2.5rem;
}

/* --- LOGOS CARRIÈRE (MOBILE) --- */
@media (max-width: 768px) {
    .career-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cl-label {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .club-logo {
        margin: 0 5px;
        max-height: 50px;
    }
}