/*
 * CHARTE GRAPHIQUE — Polices
 * Pour revenir aux polices par défaut : supprimer le <link> vers ce fichier
 * dans chaque page HTML du site (une ligne par page).
 *
 * Récap charte :
 * - Helvetica Neue Regular   → texte principal + sous-titres
 * - Helvetica Neue Italic    → légende / note annexe
 * - Helvetica Neue Bold      → titres
 * - Helvetica Neue Condensed Bold → titres spéciaux / graphique (majuscules)
 */

:root {
  --font-charte: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-charte-condensed: "Helvetica Neue Condensed Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --- Texte principal : tout le contenu en Helvetica Neue Regular par défaut --- */
/* Exclure les pictos Font Awesome (.fa, .fa-solid, .fa-regular, .fa-brands) pour garder les icônes */
body,
body *:not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
  font-family: var(--font-charte) !important;
  font-weight: 400 !important;
}

/* --- Titres : Helvetica Neue Bold --- */
h1, h2, h3, h4,
.hero h1,
.section h2,
.card h3,
.pipeline-step h3,
.panel h4,
.solution-pipeline .pipeline-header h2,
.solution-overview .overview-header h2,
.roi-result h3,
#total-summary h3 {
  font-weight: 700 !important;
}

/* --- Titres spéciaux / graphique : Helvetica Neue Condensed Bold, majuscules --- */
.eyebrow,
.pipeline-badge,
.badge,
.brand,
.stat-badges .badge {
  font-family: var(--font-charte-condensed) !important;
  font-weight: 700 !important;
  font-stretch: condensed !important;
  text-transform: uppercase !important;
}

/* --- Légende / note annexe : Helvetica Neue Italic --- */
.label,
.copyright,
footer small,
.footer small,
.roi-form label,
.kpi,
#total-summary > p,
#total-summary > div[style*="grid"] > div > div:last-child {
  font-style: italic !important;
}
