/* ============================================
   PAGE A-PROPOS — /a-propos (FR + EN + ES)
   Charge via @section('styles')
   ============================================ */

.a-propos-page .hero-section {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.a-propos-page .hero-section h1 {
  font-size: 2.4rem;
  margin: 0 0 0.5rem 0;
  /* color : ne pas definir ici. La regle .hero-section h1 (composants.css) */
  /* impose blanc avec !important pour garantir la lisibilite.              */
}

.a-propos-page .hero-subtitle {
  font-size: 1.15rem;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0.95;
}

.a-propos-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.a-propos-section {
  margin-bottom: 3.5rem;
}

.a-propos-section h2 {
  font-size: 1.8rem;
  color: var(--color3, #2c3e2d);
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color3, #0D9488);
  display: inline-block;
}

.a-propos-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color2);
  margin: 0 0 1rem 0;
}

.a-propos-liste {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.a-propos-liste li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  position: relative;
  line-height: 1.6;
  color: var(--color2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.a-propos-liste li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--color3, #0D9488);
  font-weight: 700;
}

.a-propos-liste li:last-child {
  border-bottom: none;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.engagement {
  background: var(--white, #fff);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-top: 3px solid var(--color3, #0D9488);
}

.engagement h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  color: var(--color3, #0f766e);
}

.engagement p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color2);
}

.chiffres-cles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.chiffre {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(13, 148, 136, 0.03));
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.chiffre-valeur {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color3, #0f766e);
  line-height: 1.1;
}

.chiffre-label {
  font-size: 0.88rem;
  color: var(--color2);
  line-height: 1.35;
}

.a-propos-cta {
  text-align: center;
  background: var(--color9, #f7f5ef);
  padding: 3rem 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.a-propos-cta h2 {
  border: none;
  margin: 0 0 0.75rem 0;
  font-size: 1.8rem;
}

.a-propos-cta p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.a-propos-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .a-propos-page .hero-section h1 {
    font-size: 1.8rem;
  }
  .a-propos-section h2 {
    font-size: 1.4rem;
  }
  .chiffre-valeur {
    font-size: 1.5rem;
  }
}
