/* ==========================================================================
   PAGE À PROPOS - VERSION 2 (HERO SECTION & HEADER)
   Fidèle aux spécifications de la maquette Figma
   ========================================================================== */

/* 1. HERO SECTION  */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 1114px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Dégradé progressif vers le blanc en bas pour se fondre dans la suite de la page */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%),
    url('../assets/images/hero-bg-2.png') no-repeat center center;
  background-size: cover;
  padding: 81px 24px 100px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}

/* Conteneur intérieur centré */
.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* Titre principal : "Qui sommes nous ?" (Dm Sans, 96px, gras) */
.about-hero-title {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-primary);
  /* #02182B */
  font-size: 96px;
  /* Taille exacte Figma */
  font-size: clamp(44px, 5.8vw, 96px);
  /* Responsive fluide */
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: none;
}

/* Sous-titre : (Dm Sans, 20px, Regular, max-width: 517px) */
.about-hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-primary);
  /* #02182B */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 517px;
  margin-top: 16px;
  margin-bottom: 0;
  letter-spacing: -0.6px;
}

/* Bouton CTA : "Découvrez notre mission" (278px x 77px, cyan background) */
.about-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 278px;
  height: 77px;
  background-color: var(--color-accent);
  /* #07B1F0 */
  color: var(--text-white);
  /* #FFFFFF */
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  border: none;
  border-radius: 0;
  /* Style industriel strict : angles droits */
  text-decoration: none;
  letter-spacing: -0.52px;
  margin-top: 30px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(7, 177, 240, 0.15);
}

.about-hero-btn:hover {
  background-color: #058ec1;
  /* Bleu cyan plus sombre */
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(7, 177, 240, 0.3);
}

.about-hero-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   3. HISTOIRE ET ÉVOLUTION 
   ========================================================================== */
.about-history {
  background-color: var(--bg-white);
  padding: 120px 24px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.history-container {
  max-width: 1440px;
  /* Aligné sur la largeur de grille du design system */
  margin: 0 auto;
}

.history-grid {
  display: grid;
  grid-template-columns: 606px 1fr;
  gap: 97px;
  /* Écart exact Figma (894px - 191px - 606px = 97px) */
  align-items: center;
}

/* Colonne Gauche : Textes */
.history-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge manuscrit "Notre histoire" */
.history-badge {
  font-family: 'Permanent Marker', cursive;
  color: #53b730;
  /* Vert exact Figma rgb(83, 183, 48) */
  font-size: 43px;
  line-height: 1.2;
  margin-bottom: 24px;
  display: inline-block;
  transform: rotate(-3deg);
  /* Effet d'écriture naturelle */
}

.history-block {
  width: 100%;
  margin-bottom: 40px;
}

/* Titres Inter, gras, 43px */
.history-title {
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  /* #02182B */
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -1.29px;
}

.history-text-wrap {
  display: flex;
  position: relative;
}

/* Ligne décorative verticale */
.history-vertical-line {
  /* width: 2px; */
  height: 60vh;
  /* background-color: var(--color-primary); */
  /* border-left: 1.54px dashed var(--color-primary); */
  border-left: 1.54px dashed #202a31;
  opacity: 0.15;
  margin-left: 12px;
  /* margin-right: 58px; */
  /* Ligne à 60px du début du texte (58px + 2px) */
  align-self: stretch;
}

/* Paragraphes */
.history-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.6px;
  margin: 0 2rem;
  flex: 1;
}

/* Styles de texte spécifiques Figma */
.text-highlight-bold {
  font-weight: 600;
  color: var(--color-sectors-desc);
  /* #668AA4 */
}

.text-muted-blue {
  font-weight: 400;
  color: var(--color-sectors-desc);
  /* #668AA4 */
}

.text-highlight {
  font-weight: 500;
  color: var(--color-primary);
  /* #02182B */
}

/* Séparateur horizontal de 504px */
.history-divider {
  width: 100%;
  max-width: 504px;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.3;
  margin: 10px 0 50px 60px;
  /* Aligné avec le texte (décalage de la ligne verticale) */
}

/* Colonne Droite : Images staggered */
.history-images {
  display: flex;
  flex-direction: column;
  gap: 178px;
  /* Écart exact Figma (661px - 483px = 178px) */
  align-items: flex-end;
  position: relative;
}

.history-img-wrapper {
  width: 572px;
  /* Largeur exacte Figma */
  height: 483px;
  /* Hauteur exacte Figma */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(2, 24, 43, 0.08);
  /* Ombre premium */
  transition: transform var(--transition-normal);
}

.history-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  /* Style industriel : angles vifs */
  filter: grayscale(10%) contrast(105%);
  transition: transform 0.5s ease;
}

.history-img-wrapper:hover img {
  transform: scale(1.05);
  /* Effet zoom haut de gamme */
}

/* ==========================================================================
   5. SECTION MISSION ("CE QUI NOUS ANIME")
   ========================================================================== */
.about-mission {
  /* Gris-vert très clair de fond de section */
  /* background-color: #f8faf7;  */
  padding-top: 80px;
  padding-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.mission-main-title {
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 40px 0;
  letter-spacing: -1.29px;
}

.about-mission > div > .container {
  padding: 0 80px;
}

.mission-band {
  background-color: rgb(240, 251, 234);
  border-top: 1px dashed rgb(193, 193, 193);
  border-bottom: 1px dashed rgb(193, 193, 193);
  padding: 80px;
  width: 100%;
  box-sizing: border-box;
}

.mission-grid {
  display: grid;
  /* grid-template-columns: auto 1fr auto 1fr auto 1fr auto; */
  grid-template-columns: auto auto auto auto auto auto auto auto auto;
  align-items: stretch;
  /* Espacement horizontal fluide */
  gap: 0 40px; 
  position: relative;
}

.mission-line {
  /* width: 1px; */
  border-left: 1px dashed rgb(193, 193, 193);
  /* padding 80px de mission-band + 40px de débordement en haut et bas = 120px de chaque côté */
  height: calc(100% + 240px);
  /* margin-top: -120px; */
  position: relative;
  z-index: 2;
  align-self: center;
}

.mission-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-card-title {
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.8px;
}

.mission-card-text {
  font-family: 'DM Sans', sans-serif;
  color: rgb(37, 74, 29); /* Vert foncé pour le texte Figma #254a1d */
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.6px;
}

/* ==========================================================================
   4. MEDIA QUERIES & RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .history-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .history-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 572 / 483;
  }

  .history-images {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: 800px;
    padding-top: 100px;
  }

  .about-history {
    padding: 80px 24px;
  }

  .history-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .history-images {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .history-img-wrapper {
    flex: 1;
    max-width: 48%;
  }

  .history-vertical-line {
    margin-right: 20px;
    height: 30vh;
  }


  .history-divider {
    margin-left: 0;
  }

  .about-mission > div > .container {
    padding: 0px;
  }

  .mission-grid {
    /* grid-template-columns: auto 1fr auto 1fr auto 1fr auto; */
    grid-template-columns: auto auto auto auto auto auto auto auto auto;
    gap: 0 20px;
  }

  .mission-card-title {
    font-size: 24px;
  }

  .mission-card-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 640px;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .about-hero-subtitle {
    font-size: 18px;
    padding: 0 10px;
  }

  .about-hero-btn {
    width: 240px;
    height: 66px;
    font-size: 16px;
    margin-top: 24px;
  }

  .about-history {
    padding: 60px 16px;
  }

  .history-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .history-badge {
    font-size: 32px;
  }

  .history-vertical-line {
    height: 60vh;
  }

  .history-divider {
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .history-images {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .history-img-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .about-mission {
    padding-top: 60px;
  }

  .mission-main-title {
    font-size: 32px;
    margin-bottom: 30px;
    padding: 0 16px;
  }

  .mission-band {
    padding: 40px 16px;
  }

  .mission-line {
    display: none;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .mission-card-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   5. SECTION ÉQUIPE ("UNE ÉQUIPE D'EXPERTS A VOTRE ÉCOUTE")
   ========================================================================== */
.about-team {
  background-color: var(--bg-white);
  /* padding: 120px 24px; */
  padding: 120px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.team-container {
  /* max-width: 1440px; */
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.team-main-title {
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -1.29px;
}

.team-main-subtitle {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-sectors-desc); /* #668AA4 */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 80px auto;
  letter-spacing: -0.6px;
}

.team-wave-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  margin: 0 auto;
}

/* Double Vague SVG en arrière-plan */
.team-wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Cercles décoratifs bleus de fond */
.team-dot {
  position: absolute;
  background-color: rgb(234, 244, 248);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.dot-1 { width: 24px; height: 24px; left: 6%; top: 40%; }
.dot-2 { width: 24px; height: 24px; left: 23%; top: 50%; }
.dot-3 { width: 20px; height: 20px; left: 47%; top: 62%; }
.dot-4 { width: 36px; height: 36px; left: 56%; top: 42%; }
.dot-5 { width: 20px; height: 20px; left: 93%; top: 63%; }

/* Membres de l'équipe */
.team-member {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  z-index: 10;
}

.member-terrell { left: 12%; top: 220px; }
.member-alexa { left: 34%; top: 40px; }
.member-tash { left: 62%; top: 250px; }
.member-anna { left: 86%; top: 60px; }

/* Styles d'avatars */
.member-avatar {
  /* border: 1px solid var(--color-primary); */
  border: 1px solid #02182b30;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.member-avatar-img {
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.15); /* Zoom initial pour masquer les contours */
  transition: transform var(--transition-normal);
}

/* Tailles des avatars basées sur les spécifications exactes */
.member-avatar.size-sm {
  width: 168px;
  height: 168px;
}
.member-avatar.size-sm .member-avatar-img {
  width: 122px;
  height: 122px;
}

.member-avatar.size-md {
  width: 200px;
  height: 200px;
}
.member-avatar.size-md .member-avatar-img {
  width: 150px;
  height: 150px;
}

/* Precision sizing for Anna Jakobs */
.member-anna .member-avatar {
  width: 198px;
  height: 198px;
}
.member-anna .member-avatar-img {
  width: 170px;
  height: 170px;
}

.member-avatar.size-lg {
  width: 254px;
  height: 254px;
}
.member-avatar.size-lg .member-avatar-img {
  width: 194px;
  height: 194px;
}

/* Cartes d'informations (Info Cards / Tooltips) */
.member-info-card {
  position: relative;
  background-color: rgb(234, 244, 248);
  /* border: 1px solid var(--color-primary); */
  border: 1px solid #02182b30;
  box-shadow: 0 4px 12px rgba(2, 24, 43, 0.05);
  padding: 14px 20px;
  margin-top: 18px;
  text-align: center;
  width: max-content;
  min-width: 157px;
  box-sizing: border-box;
  transition: all var(--transition-normal);
}

/* Specific tooltip sizes to match Figma */
.member-alexa .member-info-card { min-width: 203px; padding: 18px 24px; }
.member-anna .member-info-card { min-width: 171px; }

/* Flèche pointant vers le haut */
.member-info-card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: rgb(234, 244, 248);
  /* border-top: 1px solid var(--color-primary); */
  border-top: 1px solid #02182b30;
  /* border-left: 1px solid var(--color-primary); */
  border-left: 1px solid #02182b30;
  z-index: 2;
  transition: border-color var(--transition-normal);
}

.member-name {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 2px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.member-alexa .member-name {
  font-size: 23px;
}
.member-anna .member-name {
  font-size: 19px;
}

.member-role {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-sectors-desc); /* #668AA4 */
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

/* Interactivité Premium (Hover) */
.team-member:hover {
  z-index: 20;
}
.team-member:hover .member-avatar {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(7, 177, 240, 0.15);
}
.team-member:hover .member-avatar-img {
  transform: scale(1.22); /* Zoom supplémentaire au survol */
}
.team-member:hover .member-info-card {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(2, 24, 43, 0.08);
  border-color: var(--color-accent);
}
.team-member:hover .member-info-card::before {
  border-top-color: var(--color-accent);
  border-left-color: var(--color-accent);
}

/* Responsivité (Tablettes & Mobiles) */
@media (max-width: 1024px) {
  .about-team {
    padding: 80px 24px;
  }
  .team-main-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .team-main-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .team-wave-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    height: auto;
    max-width: 700px;
    margin: 0 auto;
  }
  .team-wave-svg, .team-dot {
    display: none; /* Masque les éléments décoratifs de fond */
  }
  .team-member {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  /* Réinitialise les décalages absolus */
  .member-terrell, .member-alexa, .member-tash, .member-anna {
    position: static;
  }
}

@media (max-width: 600px) {
  .team-wave-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .member-avatar.size-lg {
    width: 200px;
    height: 200px;
  }
  .member-avatar.size-lg .member-avatar-img {
    width: 150px;
    height: 150px;
  }
}

/* ==========================================================================
   6. SECTION SECTEURS D'ACTIVITÉS
   ========================================================================== */
.about-sectors {
  background-color: var(--bg-white);
  padding: 120px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.sectors-container {
  width: 100%;
  margin: 0 auto;
}

.sectors-title {
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  margin: 40px auto;
  letter-spacing: -1.29px;
  text-align: center;
  padding: 0 24px;
  width: 54%;
}

.sectors-divider {
  width: 100%;
  max-width: 504px;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.3;
  margin: 0 auto 60px auto;
}

.sectors-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 40px 10%;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Cache la barre de défilement Firefox */
  border-top: 1px dashed #02182b30;
  border-bottom: 1px dashed #02182b30;
}

/* Cache la barre de défilement Webkit */
.sectors-carousel::-webkit-scrollbar {
  display: none;
}

.sector-card {
  flex: 0 0 450px;
  height: 361px;
  position: relative;
  clip-path: url(#folder-clip);
  -webkit-clip-path: url(#folder-clip);
  overflow: hidden;
  scroll-snap-align: center;
  background-color: var(--color-primary);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

/* Image d'arrière-plan avec transition premium */
.sector-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

/* Overlay dégradé sombre pour lisibilité optimale du texte blanc */
.sector-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 24, 43, 0) 20%, rgba(2, 24, 43, 0.85) 100%);
  z-index: 2;
  transition: opacity var(--transition-normal);
}

/* Contenu textuel placé en bas à gauche */
.sector-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sector-card-title {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-white);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px 0;
  letter-spacing: -0.8px;
  text-align: left;
}

.sector-card-text {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.6px;
  text-align: left;
}

/* Interactivité Premium (Hover) */
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 24, 43, 0.15);
}

.sector-card:hover .sector-card-bg {
  transform: scale(1.08);
}

.sector-card:hover .sector-card-overlay {
  background: linear-gradient(180deg, rgba(2, 24, 43, 0) 10%, rgba(2, 24, 43, 0.9) 100%);
}

/* Responsivité (Tablettes & Mobiles) */
@media (max-width: 1024px) {
  .about-sectors {
    padding: 80px 0;
  }
  
  .sectors-title {
    font-size: 32px;
    margin-bottom: 32px;
    width: 80%;
  }
  
  .sectors-divider {
    margin-bottom: 40px;
    max-width: 320px;
  }
  
  .sectors-carousel {
    padding: 40px 24px;
    gap: 20px;
  }
  
  .sector-card {
    flex: 0 0 450px;
    height: 361px;
    transform: scale(0.8);
  }
}

@media (max-width: 600px) {
  .sectors-carousel {
    padding: 40px 16px;
    gap: 16px;
  }
}

/* ==========================================================================
   7. SECTION ENGAGEMENTS ("Qualité & sécurité: Nos engagements")
   ========================================================================== */
.about-commitments {
  background-color: rgb(240, 251, 234); /* #F0FBEA */
  width: 100%;
  min-height: 762px;
  padding: 120px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitments-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Wrapper pour l'icône SVG avec micro-animation d'hover */
.commitments-icon-wrapper {
  margin-bottom: 40px;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.commitments-icon-wrapper:hover {
  transform: scale(1.05) translateY(-4px);
}

.commitments-icon {
  display: block;
}

.commitments-title {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-primary); /* #02182B */
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 30px auto;
  letter-spacing: -1.29px;
  max-width: 742px;
}

.commitments-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 750px;
  width: 100%;
}

.commitments-text {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-sectors-desc); /* #668AA4 */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.6px;
}

/* Style spécifique pour mettre en gras les termes clés des engagements */
.commitments-text strong {
  color: var(--color-primary); /* #02182B */
  font-weight: 600;
}

/* Responsivité (Tablettes & Mobiles) */
@media (max-width: 1024px) {
  .about-commitments {
    min-height: 600px;
    padding: 80px 24px;
  }

  .commitments-title {
    font-size: 36px;
    max-width: 600px;
  }

  .commitments-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about-commitments {
    min-height: auto;
    padding: 60px 16px;
  }

  .commitments-icon-wrapper {
    margin-bottom: 24px;
  }
  
  .commitments-icon {
    width: 130px;
    height: 144px;
  }

  .commitments-title {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
  }

  .commitments-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ==========================================================================
   8. SECTION CHIFFRES CLÉS — STYLES IMPORTÉS DE ACCUEIL
   ========================================================================== */
.chiffres-section {
  width: 100%;
  /* position: relative; */
  /* left: 50%; */
  /* margin-left: -50vw; */
  /* margin-top: 120px; */
  background-color: var(--text-white);
  padding: 120px 0;
  /* box-sizing: border-box; */
  overflow: hidden;
}

.chiffres-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* Alignement sur les autres conteneurs (Actualités, etc.) */
  /* max-width: 1308px;  */
  margin: 0 auto;
  /* padding: 0 1.5rem; */
  position: relative;
  padding-left: 80px;
}

/* --------------------------------------------------------------------------
   COLONNE CONTENU & STATISTIQUES (GAUCHE)
   -------------------------------------------------------------------------- */
.chiffres-content {
  flex: 1;
  max-width: 600px; /* Limite la largeur du texte pour laisser la place à la main */
  z-index: 2; /* Pour passer au-dessus de l'image si ça se chevauche sur petites résolutions */
}

.chiffres-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 43px; /* Taille officielle Figma */
  font-weight: 700;
  color: var(--color-primary); /* Bleu marine #02182B */
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
}

.chiffres-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; /* Taille officielle Figma */
  font-weight: 400;
  color: var(--color-sectors-desc); /* Bleu-gris #668AA4 */
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin: 0 0 48px 0;
}

/* Liste des statistiques */
.chiffres-stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chiffres-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Le chiffre vert en Inter Extra Bold */
.stat-number {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--color-partners-green); /* Vert d'action #53B730 */
  width: 130px; /* Largeur fixe pour aligner parfaitement les libellés */
  flex-shrink: 0;
  display: inline-block;
}

/* Le libellé en DM Sans Bold */
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   COLONNE ILLUSTRATION (DROITE)
   -------------------------------------------------------------------------- */
.chiffres-illustration {
  /* Positionnement absolu pour coller l'image au bord droit de l'écran */
  position: absolute;
  right: calc(-50vw + 50%); /* Débordement à droite jusqu'au bord de l'écran */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

.chiffres-hand-img {
  max-width: none;
  width: 65vw; /* S'adapte dynamiquement à la largeur de l'écran */
  min-width: 500px;
  max-height: 800px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.05));
  transition: transform var(--transition-normal);
}

/* Effet interactif premium sur l'image */
.chiffres-hand-img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   MEDIA QUERIES — RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .chiffres-section {
    padding: 80px 0;
    margin-top: 80px;
  }

  .chiffres-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-left: 0;
    width: 90%;
  }

  .chiffres-content {
    max-width: 100%;
    text-align: center;
  }

  .chiffres-stats-list {
    align-items: center;
  }

  .chiffres-illustration {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
    display: none;
  }

  .chiffres-hand-img {
    width: 100%;
    max-width: 500px;
    object-position: center;
  }
}

@media (max-width: 768px) {
  .chiffres-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .chiffres-container {
    padding-left: 20px;
  }

  .chiffres-title {
    font-size: 32px; /* Réduit pour mobile */
    margin-bottom: 16px;
  }

  .chiffres-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .chiffres-stats-list {
    gap: 20px;
  }

  .chiffres-stat-item {
    flex-direction: column;
  }

  .stat-number {
    font-size: 32px;
    /* text-align: center; */
  }
}

/* ==========================================================================
   9. SECTION CONTACT CTA — STYLES & ANIMATIONS
   ========================================================================== */
.about-contact {
  background-color: var(--text-white);
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 784px;
  box-sizing: border-box;
  text-align: center;
}

.contact-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 742px; /* Largeur max de Group 95 Figma */
  margin: 0 auto;
}

/* Enveloppe Verte */
.contact-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 219px;
  height: 149px;
  margin-bottom: 40px;
  transition: transform var(--transition-normal);
}

.contact-icon {
  width: 100%;
  height: 100%;
}

/* Animation au survol de l'enveloppe */
.contact-icon-wrapper:hover {
  transform: translateY(-8px) scale(1.03);
}

/* Titre */
.contact-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 43px; /* Taille Figma */
  font-weight: 600;
  color: var(--color-primary); /* Bleu marine #02182B */
  margin: 0 0 24px 0;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

/* Descriptions */
.contact-desc-content {
  margin-bottom: 48px;
}

.contact-desc-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary); /* Couleur foncée */
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.contact-desc-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-sectors-desc); /* Bleu-gris #668AA4 */
  margin: 0;
  line-height: 1.5;
}

/* Bouton Contact Cyan aux Angles Vifs */
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 77px;
  background-color: rgb(7, 177, 240); /* Cyan Figma */
  color: var(--text-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0; /* Angles vifs Figma */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(7, 177, 240, 0.1);
  transition: background-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* Effets premium au survol du bouton */
.contact-button:hover {
  background-color: #058ec0; /* Teinte cyan plus foncée */
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(7, 177, 240, 0.25);
}

/* ==========================================================================
   MEDIA QUERIES RESPONSIVE — CONTACT CTA
   ========================================================================== */

@media (max-width: 1024px) {
  .about-contact {
    min-height: auto;
    padding: 80px 24px;
  }

  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-contact {
    padding: 60px 16px;
  }

  .contact-icon-wrapper {
    width: 175px;
    height: 119px;
    margin-bottom: 30px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
  }

  .contact-desc-content {
    margin-bottom: 32px;
  }

  .contact-desc-primary,
  .contact-desc-secondary {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-button {
    width: 180px;
    height: 65px;
    font-size: 16px;
  }
}