/* === Liens spéciaux === */
.link-highlight {
  color: var(--clr-accent);
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-highlight:hover {
  color: var(--clr-secondary);
}

/* === HERO === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, var(--clr-primary) 0%, #7d8aa3 100%);
  color: white;
  padding: 1rem 2rem;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #f0f0f0;
}
.btn-xl {
  font-size: 1.3rem;
  padding: 1.2rem 2.4rem;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--radius);
  border:solid 1px black;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-xl:hover {
  background: var(--clr-secondary);
  transform: scale(1.05);
}

/* === SECTIONS GÉNÉRALES === */
.section {
  padding: 2rem 1.5rem;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--clr-primary);
}
.section-dark {
  background: #2c2c2c;
  color: white;
}
.section-dark h2 {
  color: var(--clr-accent);
}
.section-light {
  background: white;
  color: var(--clr-text);
}
.section-cta {
  background: var(--clr-primary);
  color: white;
  text-align: center;
}
.section-cta h2 {
  font-size: 2rem;
}
.section-cta p {
  font-size: 1.2rem;
  margin: 1rem auto 2rem;
  max-width: 600px;
}

/* === SECTION SOLUTION === */
.section-solution {
  background: linear-gradient(to right, #f3f7fc, #e8f0ff);
  text-align: center;
}
.section-solution .intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-secondary);
  margin-bottom: 1rem;
}
.section-solution .highlight {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);

  /* Ombre forte */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.section-solution .highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* === SECTION OBJECTIFS === */
.section-goals {
  background: var(--clr-bg-block);
  text-align: center;
}
.section-goals .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.section-goals .card {
  flex: 1 1 240px;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;

  /* Ombre marquée par défaut */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

  /* Animation */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;                  /* JS animation */
  transform: translateY(30px); /* JS animation */
}
.section-goals .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.section-goals .card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--clr-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-goals .card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--clr-text);
}

.section-cta h2 {
  font-size: 2rem;
  color: #14B8A6; 
}

.section-cta p {
  font-size: 1.2rem;
  margin: 1rem auto 2rem;
  max-width: 600px;
  color: #f0f0f0; /* gris clair pour lisibilité */
}
.liste-centree {
  text-align: center;
}
ul {
  list-style-type: none; /* supprime complètement le marker */
  padding-left: 0;       /* enlève l’espace réservé */
}