/* =======================================
   RESET & BASE (IMPORTANT)
======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  line-height: 1.6;
}

/* =======================================
   VARIABLES
======================================= */
:root {
  --blue-light: #60a5fa;
  --blue-soft: #93c5fd;
  --dark: #020617;
}

/* =======================================
   GLOBAL SECTION SPACING (PRO)
======================================= */
section {
  padding: 100px 0;
}

.container,
.mutuelle-container,
.mutuelle-offre-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =======================================
   HERO PREMIUM
======================================= */
.hero-premium {
  height: 100vh;
  background: url('../img/Mutuelle.jpeg') center/cover no-repeat;
  position: relative;
}

.hero-premium .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), #020617);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 750px;
  width: 90%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--blue-light);
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

/* BOUTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-soft));
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid #fff;
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* =======================================
   PROCESS SECTION
======================================= */
.process-section {
  background: #f8fafc;
  text-align: center;
}

.process-section h2 {
  margin-bottom: 50px;
}

.process-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step:hover {
  transform: translateY(-8px);
}

.step span {
  font-size: 22px;
  font-weight: bold;
  color: #2eca6a;
  display: block;
  margin-bottom: 10px;
}

/* =======================================
   STATS
======================================= */
.stats {
   background: linear-gradient(135deg, #bae4ca, #70e69d);
  color: #fff;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  font-size: 22px;
  font-weight: bold;
}

/* =======================================
   SOLUTIONS
======================================= */
.solutions-section {
  background: #ffffff;
  text-align: center;
}

.solution-card {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.solution-card:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-5px);
}

/* =======================================
   AVANTAGES
======================================= */
.avantages-section {
  background: #f8fafc;
  text-align: center;
}

.avantage-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.avantage-card:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-5px);
}

/* =======================================
   CTA FINAL
======================================= */
.cta-mutuelle {
  background: linear-gradient(135deg, #2eca6a, #eff0f1);;
  color: #fff;
  text-align: center;
}

.btn-premium {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #2eca6a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-premium:hover {
  transform: translateY(-3px);
}

/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .process-grid,
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

}

.stats-container div {
  font-size: 28px;
  font-weight: bold;
}

.counter {
  color: #25712f;
  font-size: 40px;
  display: block;
}

/* =======================================
   HERO PREMIUM VERSION VERTE
======================================= */
.hero-premium {
  height: 100vh;
  background: url('../img/Mutuelle.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* SUPPRIME L’OVERLAY SOMBRE */
.hero-premium .overlay {
  display: none;
}

/* CONTENU */
.hero-content {
  max-width: 800px;
  width: 90%;
  color: #ffffff;
}

/* TITRE */
.hero-content h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* MOT EN VERT */
.hero-content h1 span {
  color: #22c55e; /* vert premium */
}

/* TEXTE */
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

/* BOUTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BOUTON PRINCIPAL */
.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34,197,94,0.6);
}

/* BOUTON SECONDAIRE */
.btn-outline {
  border: 1px solid #fff;
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* =========================
   SECTION MUTUELLE PREMIUM
========================= */

.mutuelle-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #25712f, #62769e);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* effet lumière subtil */
.mutuelle-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
  filter: blur(40px);
}

.mutuelle-container {
  max-width: 1200px;
  margin: auto;
}

.mutuelle-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */

.mutuelle-badge {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.mutuelle-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.mutuelle-text h2 span {
  color: #4f9cff;
}

.mutuelle-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.mutuelle-text p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ================= FEATURES ================= */

.mutuelle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.mutuelle-feature {
  background: rgba(255,255,255,0.06);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.mutuelle-feature:hover {
  transform: translateY(-3px);
  background: rgba(79,156,255,0.15);
}

/* ================= BUTTON ================= */

.mutuelle-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb, #4f9cff);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(37,99,235,0.3);
}

.mutuelle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,99,235,0.5);
}

/* ================= IMAGE ================= */

.mutuelle-image {
  position: relative;
}

.mutuelle-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(1);
  transition: 0.5s ease;
}

.mutuelle-image img:hover {
  transform: scale(1.03);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .mutuelle-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mutuelle-features {
    justify-content: center;
  }
}

/* ================= REVEAL ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   FORCE TEXTE BLANC MUTUELLE
========================= */

.mutuelle-section,
.mutuelle-section p,
.mutuelle-section h1,
.mutuelle-section h2,
.mutuelle-section h3,
.mutuelle-section span,
.mutuelle-section div {
  color: #ffffff !important;
}

/* Garde juste le bleu pour le titre highlight */
.mutuelle-text h2 span {
  color: #4f9cff !important;
}

/* subtitle un peu plus doux mais toujours blanc */
.mutuelle-subtitle {
  color: rgba(255,255,255,0.85) !important;
}