:root {
  /* Couleurs de référence fournies */
  --c-palette-1: #00aba7; /* Turquoise foncé */
  --c-palette-2: #0bbfba; /* Turquoise moyen */
  --c-palette-3: #3dd8cf; /* Menthe clair */
  --c-palette-4: #00b9c6; /* Cyan-Turquoise */
  --c-palette-5: #00b4c4; /* Cyan-Turquoise clair */
  --c-palette-6: #009abc; /* Bleu-cyan */
  --c-palette-7: #0081b6; /* Bleu profond */
  --c-palette-orange: #f6724d; /* Orange */

  /* Couleurs principales utilisées (sélection de la palette) */
  --c-primary-1: var(--c-palette-2);
  --c-primary-2: var(--c-palette-4);
  --c-primary-3: var(--c-palette-7);
  --c-teal-light: var(--c-palette-3);
  --c-accent: var(--c-palette-orange);

  --c-white: #ffffff;
  --c-dark: #0c1b35;
  --c-text-on-dark-bg: #f0f4f8;
  --c-text-on-light-bg: #102a43;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--c-text-on-light-bg);
  background: var(--c-white);
  line-height: 1.6;
}

#main-principal {
  flex-grow: 1;
  background: url("/public/images/fond_benefices.svg") center/cover no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Header ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  width: 100%;
  z-index: 1000; /* Valeur élevée pour être au-dessus de tout */
  transition: background-color 0.3s ease;
}

/* Style SPÉCIFIQUE au header de la page d'accueil (transparent, superposé) */
header.header-homepage {
  position: absolute;
  top: 0;
  left: 0;
}

/* Style SPÉCIFIQUE au header de l'application (fond blanc, collant) */
header.header-app {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #006ab3 0%, #00c59d 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #eef2f6;
}

header.header-homepage .header-actions, header.header-app .header-actions {
  display:flex;
  align-items: center;
  gap:20px;
}

/* Sur la homepage (fond sombre) : tout est blanc */
header.header-homepage .logo-container,
header.header-homepage nav a,
header.header-homepage .header-actions a {
    color: var(--c-white);
}
header.header-homepage .logo-container svg path {
    fill: var(--c-white);
}
header.header-homepage .header-actions .btn-accent {
    /* Le bouton reste orange, c'est bon */
}

/* Dans l'application (fond clair) : tout est sombre/coloré */
header.header-app .logo-container,
header.header-app nav a,
header.header-app .header-actions a:not(.btn) { /* le lien 'Connexion' */
    color: var(--c-white);
}
header.header-app .logo-container svg path {
    fill: var(--c-white); /* Logo turquoise */
}
header.header-app nav a:hover {
    color: var(--c-primary-2); /* survol turquoise */
}

.logo-container {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  gap: 0.6rem;
  color: var(--c-white);
}
.logo-container svg path {
  fill: var(--c-white);
}

header nav a {
  margin-right: 1.75rem;
  font-weight: 600;
  color: var(--c-white);
  transition: color 0.2s ease;
  font-size: 0.95rem;
  margin-right:15px;
}
header nav a:hover {
  color: var(--c-teal-light);
}

.btn {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 4px 14px -6px rgba(255, 116, 69, 0.4);
}
.btn-accent:hover {
  background: #e66034;
}
.btn-light {
  background: var(--c-white);
  color: var(--c-primary-2);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.2);
}
.btn-light:hover {
  background: #f0f0f0;
}
header .btn-accent {
  padding: 0.7rem 1.5rem;
}

/* ---------- Hero with vector background ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 2rem 140px 2rem;
  color: var(--c-white);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("/public/images/fond_vect.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-content {
  /* Nouveau conteneur pour le texte et les boutons */
  position: relative;
  z-index: 2; /* S'assurer que ce contenu est AU-DESSUS du .hero-bg */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Effet de titre multi-couches (Version finale) ---- */

.wrapper_h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  margin-bottom: 6rem;
}

/* Styles partagés par les deux h1 */
.wrapper_h1 h1 {
  font-size: clamp(2.8rem, 5vw + 1rem, 4.8rem);
  line-height: 1.15;
  font-weight: 900;
  max-width: 1200px;
  margin: 0;
}

/* L'OMBRE (couche du dessous) */
.h1bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  /* L'astuce : le texte lui-même est invisible... */
  color: transparent;

  /* ...pour ne laisser voir que ses ombres multiples. */
  text-shadow: 2px 2px 0px rgba(143, 240, 233, 0.3), 4px 4px 0px rgba(143, 240, 233, 0.35);
}

/* LE TEXTE PRINCIPAL (couche du dessus) */
.h1top {
  position: relative; /* Contexte de stacking pour le z-index */
  z-index: 2; /* S'assure qu'il est bien au-dessus de .h1bottom */

  /* Le dégradé pour le texte */
  background: linear-gradient(120deg, #1c7c7e, #086688, #0f3b3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* On ajoute une petite ombre portée sombre directement sur le texte principal
     pour lui donner du relief et mieux le détacher de l'ombre claire,
     comme sur votre modèle. */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.hero p {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem);
  max-width: 850px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .cards-container {
  margin-top: 3.5rem;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2; /* Assure que les cartes sont aussi au-dessus du fond */
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.card {
  position: relative;
  background: var(--c-primary-1);
  color: var(--c-white);
  box-shadow: 0 10px 10px -10px rgba(2, 78, 63, 0.9);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 0px;
  margin: 0px;
  border: 6px solid;
  border-image: linear-gradient(135deg, #7bf2ec, #025575) 1;
  border-radius: 12px;
}

.card-badge {
  position: absolute;
  top: -1rem;
  right: 1rem;
  background: rgba(218, 238, 244, 0.952);
  color: var(--c-primary-1);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.card-badge.roi {
  background: var(--c-primary-3);
  color: var(--c-white);
}

.card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  top: 0.75rem;
  width: 100%;
  text-align: center;
  z-index: 2;
  color: #0b525c;
}
.card p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  opacity: 1;
  position: absolute;
  z-index: 2;
  bottom: -70px;
  color: white;
  border-radius: 12px;
  margin: 5px 15px;
  padding: 8px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg);
}

.card_annonceur {
  background-image: url("/assets/images/annonceurs.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card_diffuseur {
  background-image: url("/assets/images/diffuseurs.svg");
  background-size: cover; /* Pour que l'image couvre toute la div */
  background-repeat: no-repeat; /* Pour ne pas répéter l'image */
  background-position: center; /* Pour centrer l'image dans la div */
}

.card_matching {
  background-image: url("/assets/images/matching.svg");
  background-size: cover; /* Pour que l'image couvre toute la div */
  background-repeat: no-repeat; /* Pour ne pas répéter l'image */
  background-position: center; /* Pour centrer l'image dans la div */
}

.card_roi {
  background-image: url("/assets/images/roi.svg");
  background-size: cover; /* Pour que l'image couvre toute la div */
  background-repeat: no-repeat; /* Pour ne pas répéter l'image */
  background-position: center; /* Pour centrer l'image dans la div */
}

/* ---------- Footer ---------- */
footer {
  background: var(--c-dark);
  color: var(--c-text-on-dark-bg);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }
  header nav {
    display: none;
  }
  .logo-container {
    font-size: 1.3rem;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 6vw + 0.5rem, 3.5rem);
  }
  .hero p {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.15rem);
  }
  .hero .cards-container {
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 30px;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .hero .cards-container {
    margin-top: 2rem;
  }
}

/* ---------- Sections argumentatives ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 2rem 0;
}

section h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--c-primary-3);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}

/* Section Qu'est-ce que Monetibox */
/* --------------------------------------------------------------------
   Nouvelle section “Qu’est-ce que Monetibox ?”
   ------------------------------------------------------------------ */
#monetibox-about {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #f8fdff 0%, #e8f8f5 100%);
}
#monetibox-about::before,
#monetibox-about::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -60%;
  left: -30%;
  background-image: radial-gradient(
      circle at 30% 30%,
      rgba(0, 181, 216, 0.12),
      transparent 35%
    ),
    radial-gradient(circle at 70% 70%, rgba(0, 224, 171, 0.12), transparent 40%),
    radial-gradient(
      circle at 25% 75%,
      rgba(255, 255, 255, 0.35),
      transparent 45%
    );
  transform: rotate(25deg);
  z-index: -1;
}
#monetibox-about::after {
  top: auto;
  bottom: -60%;
  left: auto;
  right: -30%;
  transform: rotate(-15deg);
}

/* Grille et cartes -------------------------------------------------- */
#monetibox-about .grid {
  display: grid;
  gap: 2rem;
}
#monetibox-about .cartes {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  column-gap: 2.25rem;
  gap: 3rem;
  margin-bottom: 3rem;
}
#monetibox-about .carte {
  /* ---- look premium ---- */
  background: #ffffff;
  border: none;
  border-radius: 1.5rem;
  padding: 3rem 2.25rem;
  text-align: center;

  /* ombre douce + anim */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;

  /* fade-in de base */
  opacity: 0;
  transform: translateY(40px);
}

#monetibox-about .carte:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
}
#monetibox-about .carte.visible {
  opacity: 1;
  transform: none;
}
#monetibox-about .carte i {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  color: var(--c-primary-2); /* turquoise plus vif */
}
#monetibox-about .carte h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--c-dark); /* texte plus sombre pour contraste */
}
#monetibox-about .carte p {
  position: static; /* remet dans le flux */
  margin-top: 1rem;
  margin-bottom: 0;
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-text-on-light-bg);
  opacity: 0.9;
}

#monetibox-about .carte.monetibox {
  background: linear-gradient(145deg,#009ed1 0%,#005086 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  position: relative;
}

/* Flèche gauche vers Annonceurs */
#monetibox-about .carte.monetibox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #008ec2; /* flèche vers la gauche */
}

/* Flèche droite vers Diffuseurs */
#monetibox-about .carte.monetibox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #006da2; /* flèche vers la droite */
}

#monetibox-about .carte.annonceur {
  background: linear-gradient(135deg, #f6724d, #c03d19);
  color:#fff;box-shadow:0 20px 50px rgba(0,0,0,.12);
}

#monetibox-about .carte.diffuseur {
  background: linear-gradient(135deg, #00b9c6, #0081b6);
  color:#fff;box-shadow:0 20px 50px rgba(0,0,0,.12);
}

#monetibox-about .carte.monetibox i,
#monetibox-about .carte.annonceur i,
#monetibox-about .carte.diffuseur i   {
  color:#fff;
}

#monetibox-about .carte.monetibox h3,
#monetibox-about .carte.annonceur h3,
#monetibox-about .carte.diffuseur h3 {
  color:#fff;
}

#monetibox-about .carte.monetibox p,
#monetibox-about .carte.annonceur p,
#monetibox-about .carte.diffuseur p {
  color:#fff;
}




#monetibox-about h2 span {
  color: var(--c-primary-1);
}
#monetibox-about .lead {
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.3rem);
  font-weight: 500;
  opacity: 0.85;
  max-width: 900px;
  margin: 0 auto 3.5rem; /* plus d’air sous le paragraphe */
}
#monetibox-about h2 {
  font-size: clamp(2.4rem, 1vw + 2.4rem, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(90deg, #01244a 0%, var(--c-primary-2) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#monetibox-about h2::after {
  display: none;
} /* supprime le petit filet orange global */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--c-text-on-light-bg);
}

.highlight-box {
  background: var(--c-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 171, 167, 0.1);
  border-left: 4px solid var(--c-primary-2);
  margin-top: 2rem;
}

.highlight-box h4 {
  color: var(--c-primary-2);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.connection-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 171, 167, 0.15);
}

.diagram-item {
  text-align: center;
  flex: 1;
  padding: 1rem;
}

.diagram-item .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.diagram-item h4 {
  color: var(--c-primary-3);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.diagram-item p {
  font-size: 0.9rem;
  color: var(--c-text-on-light-bg);
  opacity: 0.8;
}

.diagram-arrow {
  font-size: 2rem;
  color: var(--c-primary-2);
  margin: 0 1rem;
}

/* Section Pour qui (nouvelle version) */
.section-for-who {
  background: linear-gradient(180deg, var(--c-white) 0%, #f0f8ff 100%);
  padding: 4rem 0;
}

.section-for-who h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #01244a 0%, var(--c-primary-2) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback pour les navigateurs non compatibles */
}

.section-for-who h2::after {
  height: 4px;
  width: 80px;
  background: var(--c-accent); /* Utilise la couleur orange pour le trait */
  bottom: -1rem; /* Un peu plus d'espace */
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.for-who-card {
  color: var(--c-white);
  border-radius: 20px;
  box-shadow: 0 12px 35px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

  /* NOUVEAU : pour gérer le contenu texte et l'image */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Crucial pour que l'image respecte les coins arrondis */
  padding: 0; /* On retire le padding global */
}

/* NOUVELLES RÈGLES */
.for-who-card .card-content {
  padding: 2.5rem 2rem 1rem 2.5rem; /* On remet le padding ici, pour la partie texte uniquement */
}

.for-who-card .card-image {
  margin-top: auto; /* Pousse l'image en bas si le contenu n'est pas assez haut */
  line-height: 0; /* Évite les espaces superflus sous l'image */
}

.for-who-card .card-image img {
  width: 90%;
  margin: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid black;
}

/* On s'assure que le paragraphe a de l'espace en dessous, remplacé par le p.intro */
.for-who-card .intro {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* La grille redevient plus simple et naturellement responsive */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.for-who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.15);
}

.for-who-card.diffuseur {
  background: linear-gradient(135deg, #00b9c6, #0081b6);
}

.for-who-card.annonceur {
  background: linear-gradient(135deg, #f6724d, #c03d19);
}

.for-who-card .card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.for-who-card .icon {
  font-size: 2rem;
  line-height: 1; /* Assure un alignement parfait */
}

.for-who-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
}

.for-who-card .intro {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.for-who-card .benefits-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block; /* Pour que la bordure ne prenne pas toute la largeur */
}

.for-who-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.for-who-card li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  line-height: 1.5;
}

.for-who-card li::before {
  content: "\f00c"; /* Code unicode pour le checkmark de Font Awesome */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--c-white);
  font-size: 1rem;
}

/* Section Bénéfices */
.section-benefits {
  background: url("/public/images/fond_benefices.svg") center/cover no-repeat;
  padding: 6rem 2rem;
}

/* conteneur */
.benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

/* titre */
.benefits-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 5rem;
  position: relative;
  color: #ffffff; /* titre blanc */
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* légère ombre */
}
.benefits-title::after {
  content: \"\";
  display: block;
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 4px;
  background: #ff7545;
}

/* carte principale */
.benefit-main-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #00c59d 0%, #009ed1 100%);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  max-width: 1000px;
  margin: 0 auto 4rem;
}
.benefit-main-icon {
  flex-shrink: 0;
  font-size: 3.5rem;
  line-height: 1;
}
.benefit-main-icon i {
  color: #ffd54f;
}
.benefit-main-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.benefit-main-content p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* mini-cartes */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.benefit-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 260px;
  min-width: 260px;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.benefit-card i {
  font-size: 2rem;
}
.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* variantes couleur */
.benefit-card--profit {
  background: #009688;
}
.benefit-card--independence {
  background: #ff7445;
}
.benefit-card--performance {
  background: #006ab3;
}

/* responsive */
@media (max-width: 768px) {
  .benefit-main-card {
    flex-direction: column;
    text-align: left;
  }
}

.section-efforts {
  padding: 6rem 2rem;
  background: #aed7eb;
  background: linear-gradient(
    359deg,
    rgba(174, 215, 235, 1) 0%,
    rgba(172, 232, 224, 1) 53%,
    rgba(242, 254, 255, 1) 100%
  );
}
.efforts-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.efforts-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #01244a 0%, var(--c-primary-2) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback pour les navigateurs non compatibles */
}

.efforts-title::after {
  height: 4px;
  width: 80px;
  background: var(--c-accent); /* Utilise la couleur orange pour le trait */
  bottom: -1rem; /* Un peu plus d'espace */
}

/* -------- Cartes -------- */
.effort-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.effort-card {
  flex: 1 1 380px;
  min-width: 320px;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.effort-card--annonceur {
  background: linear-gradient(135deg, #f6724d, #c03d19);
}
.effort-card--diffuseur {
  background: linear-gradient(135deg, #009ed1 0%, #00c59d 100%);
}
.effort-icon {
  font-size: 2.5rem;
  line-height: 1;
}
.effort-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.effort-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}
.effort-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.effort-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
}
.effort-list li::before {
  content: \"\\f00c\"; /* fa-check */
  font-family: \"Font Awesome 6 Free\";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 0.9rem;
}
.effort-tip {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.effort-tip i {
  font-size: 1rem;
}
/* -------- Bloc messagerie -------- */
.communication-feature {
  max-width: 900px;
  margin: 0 auto;
  background: #006ab3;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  text-align: left;
}
.communication-feature i {
  font-size: 2rem;
  flex-shrink: 0;
}
.communication-text h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.communication-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}
/* -------- Responsive -------- */
@media (max-width: 768px) {
  .effort-card {
    min-width: 100%;
  }
  .communication-feature {
    flex-direction: column;
    text-align: center;
  }
  .communication-feature i {
    margin: 0 auto;
  }
}

/* Section Coût */
.section-cost {
  background: url("/public/images/fond_benefices.svg") center/cover no-repeat;
  padding: 8rem 2rem;
}

.cost-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.cost-title {
  font-size: 3rem;
  font-weight: 800;
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.cost-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 4px;
  background: #ff7445;
}

/* --- Carte principale --- */
.cost-main-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #006ab3 0%, #009ed1 100%);
  padding: 3rem 2rem;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
  text-align: left;
  margin-top: 100px;
}

.cost-badge {
  width: 100px;
  height: 100px;
  background: #00c59d;
  clip-path: polygon(
    30% 0,
    70% 0,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0 70%,
    0 30%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.cost-badge i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
}

/* texte carte principale */
.cost-main-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.cost-main-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
}

/* --- Sous-cartes --- */
.cost-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.cost-sub-card {
  flex: 1 1 380px;
  min-width: 320px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  text-align: left;
  background: #fff;
  color: #003b73;
}
.cost-sub-card i {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.cost-sub-card--verify {
  border-left: 15px solid #00c59d;
}
.cost-sub-card--verify i {
  color: #00c59d;
}
.cost-sub-card--why {
  border-left: 15px solid #ff7445;
}
.cost-sub-card--why i {
  color: #ff7445;
}

.cost-sub-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #006ab3;
}
.cost-sub-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .cost-main-card {
    flex-direction: column;
    text-align: center;
  }
  .cost-main-content p {
    max-width: none;
  }
  .cost-sub-card {
    min-width: 100%;
  }
}

/* === Section Balances (NEW) === */
.section-balance {
  background: linear-gradient(135deg, #f6fdff 0%, #ecf8fe 100%);
  padding: 6rem 2rem;
}

.balance-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  color: #003b73;
  text-align: center;
}

/* ----- Titres ----- */
.balance-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.balance-title span {
  font-size: 1.2em;
  color: #00c59d;
}
.balance-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 4px;
  background: #ff7445;
}

/* ----- Intro ----- */
.balance-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 3rem;
}

/* ----- Carte principale ----- */
.balance-main-card {
  background: #006ab3;
  color: #fff;
  border-radius: 26px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  text-align: left;
}
.balance-icon {
  font-size: 3rem;
  flex-shrink: 0;
  color: #ffd54f;
}
.balance-main-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.balance-main-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ----- Grille bénéfices ----- */
.balance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
}
.balance-benefit {
  flex: 1 1 300px;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.balance-benefit i {
  font-size: 2rem;
  color: #00c59d;
}
.balance-benefit h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #006ab3;
}
.balance-benefit p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ----- Call-to-action ----- */
.balance-cta {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: #003b73;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .balance-main-card {
    flex-direction: column;
    text-align: center;
  }
  .balance-icon {
    margin: 0 auto;
  }
  .balance-benefit {
    min-width: 100%;
  }
}

/* Section CTA finale */
.section-cta {
  background: linear-gradient(135deg, #006ab3 0%, #00c59d 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.1;
}

.cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 1.5rem auto 0;
  border-radius: 4px;
  background: #ffd54f;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.step-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  min-width: 250px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.step-icon {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00c59d, #009ed1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.step-icon i {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #ff7445;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #006ab3;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0.6;
}

.connector-line {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.step-connector i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-accent.btn-large {
  background: linear-gradient(135deg, #ff7445, #ff8c5a);
}

.btn-light.btn-large {
  background: white;
  color: #006ab3;
}

.btn-light.btn-large:hover {
  background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-steps-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-connector {
    transform: rotate(90deg);
  }
  
  .connector-line {
    width: 30px;
    height: 2px;
  }
  
  .step-card {
    min-width: 100%;
    max-width: 350px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .section-cta {
    padding: 4rem 1rem;
  }
  
  .step-card {
    padding: 1.5rem 1rem;
  }
}






/* Footer (nouvelle version professionnelle) */
footer {
  background-color: var(--c-dark); /* Utilisation de la couleur foncée principale du site */
  color: #a9b4c4; /* Couleur de texte plus douce pour le contraste */
  padding: 5rem 0 0;
  font-size: 0.95rem;
}

.footer-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  /* Grille flexible qui s'adapte automatiquement */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-column.about {
  grid-column: span 1; /* Par défaut */
}
/* Sur les grands écrans, la première colonne prend plus de place */
@media (min-width: 992px) {
    .footer-content {
        /* On force 4 colonnes sur la même ligne */
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-white);
}

.footer-tagline {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--c-white);
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background: var(--c-primary-2);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  text-decoration: none;
  color: #a9b4c4;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
  color: var(--c-white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #2a3a53; /* Ligne de séparation subtile */
  font-size: 0.85rem;
  color: #76869d;
}

/* Responsive pour le footer */
@media (max-width: 576px) {
    .footer-content {
        text-align: center;
    }
    .footer-logo-container, .social-icons {
        justify-content: center;
    }
    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .connection-diagram {
    flex-direction: column;
    gap: 1rem;
  }

  .diagram-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .efforts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo-section {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 0;
  }

  .profile-card,
  .effort-card {
    padding: 2rem;
  }

  .main-benefit,
  .cost-highlight {
    padding: 2rem;
  }

  .highlight-box {
    padding: 1.5rem;
  }

  .communication-feature {
    padding: 1.5rem;
  }
}

/* --- Bannière de Consentement aux Cookies --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c-dark);
  color: var(--c-text-on-dark-bg);
  padding: 1.25rem 2rem;
  z-index: 1050; /* Doit être au-dessus de la plupart des éléments */
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
  
  /* Animation */
  transition: transform 0.5s ease-in-out;
  transform: translateY(100%); /* Caché en bas par défaut */
}

#cookie-banner.show {
  transform: translateY(0); /* Le fait apparaître en glissant */
}

.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.cookie-text {
  flex-grow: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--c-primary-2);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-text a:hover {
  color: var(--c-teal-light);
}

.cookie-buttons {
  flex-shrink: 0; /* Empêche les boutons de se réduire */
}

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive pour le bandeau cookie sur mobile */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
}


/* Sélecteur de vue dans le header */
.view-switcher-header {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.view-switch-buttons-header {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-view-switch-header {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    border: none;
    white-space: nowrap;
}

.btn-view-switch-header:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Style pour le bouton ACTIF dans le header */
.btn-view-switch-header.active {
    color: white;
    cursor: default;
    background-color: #006ab3;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Responsive pour le sélecteur de vue du header */
@media (max-width: 768px) {
    .view-switcher-header {
        margin-right: 8px;
    }
    
    .btn-view-switch-header {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .view-switcher-header {
        margin-right: 4px;
    }
    
    .view-switch-buttons-header {
        gap: 2px;
    }
    
    .btn-view-switch-header {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
}

/* --- Sélecteur de vue (Annonceur/Diffuseur) --- */
.view-switcher-container {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
}

.view-switch-buttons {
    display: inline-flex;
    gap: 0.5rem;
    background-color: #e9ecef;
    border-radius: 99px;
    padding: 0.3rem;
}

.btn-view-switch {
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    color: #495057;
}

.btn-view-switch.active {
    color: white;
    cursor: default;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    background: var(--c-primary-3);
}

/* assets/css/public_style.css - À AJOUTER À LA FIN */

/* =================================================================== */
/* == STYLES POUR LES COMPOSANTS DE L'APPLICATION (PHASE 2)         == */
/* =================================================================== */

/* --- FORMULAIRES --- */

.form-container {
    background: var(--c-white);
    padding: 2rem 2.5rem; /* Plus d'air */
    border-radius: 16px; /* Bords plus arrondis, comme les cartes */
    box-shadow: 0 10px 30px rgba(0, 91, 127, 0.1); /* Ombre douce et colorée */
    max-width: 500px;
    margin: 3rem auto; /* Espace vertical */
}

.form-container h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-primary-3); /* Bleu profond */
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-text-on-light-bg);
}

/* Style unifié pour tous les champs de formulaire */
.form-control,
input[type="text"], 
input[type="email"], 
input[type="password"], 
textarea, 
select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #dbe1e8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #f8fafc;
}

/* Effet de surbrillance au focus, très important pour l'UX */
.form-control:focus,
input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus, 
textarea:focus, 
select:focus {
    outline: none;
    background-color: var(--c-white);
    border-color: var(--c-primary-2); /* Bordure turquoise */
    box-shadow: 0 0 0 3px rgba(0, 185, 198, 0.2); /* Halo turquoise */
}

/* Le bouton dans un formulaire prend toute la largeur */
.form-container .btn {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    margin-top: 1rem; /* Espace au-dessus du bouton */
}

/* Liens dans le formulaire (mdp oublié, s'inscrire) */
.form-container p, .form-container a {
    color: var(--c-text-on-light-bg);
}
.form-container a:not(.btn) {
    font-weight: 600;
    color: var(--c-primary-2);
    text-decoration: none;
}
.form-container a:not(.btn):hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
}

/* Le bouton qui déclenche le menu */
.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

/* La petite flèche vers le bas */
.dropdown .dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.2s ease-in-out;
}

/* Le menu caché */
.dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px); /* Un peu d'espace sous le bouton */
    right: 0;
    min-width: 220px;
    background: var(--c-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eef2f6;
    padding: 0.5rem;
    list-style: none;
    z-index: 1010;
    color:black;
    
    /* Animation d'apparition */
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Affichage du menu au survol du conteneur .dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Les liens dans le menu */
.header-actions .dropdown-menu a { /* On a ajouté .header-actions au début */
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    color: var(--c-text-on-light-bg) !important; /* Cette couleur va maintenant s'appliquer partout */
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a i {
    width: 16px; /* Pour aligner les textes */
    text-align: center;
    color: #8492a6;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f0f5ff;
    color: var(--c-primary-3); /* Bleu foncé au survol */
}

.dropdown-menu a:hover i {
    color: var(--c-primary-3);
}

/* Le séparateur */
.dropdown-menu .divider {
    height: 1px;
    background-color: #eef2f6;
    margin: 0.5rem 0;
}
/* assets/css/public_style.css - À AJOUTER À LA FIN */

/* --- Messages Flash (Notifications) --- */

/* Style de base pour le message lui-même */
.flash-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    margin: 0 auto; /* Pour centrer si le conteneur est plus large */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.flash-message.flash-success {
    background-color: #1a4241; /* Vert foncé semi-transparent */
    color: var(--c-white);
    border: 1px solid rgba(61, 216, 207, 0.5);
}
.flash-message.flash-error {
    background-color: #7f1d1d; /* Rouge foncé semi-transparent */
    color: var(--c-white);
    border: 1px solid rgba(246, 114, 77, 0.5);
}

/* Positionnement pour la PAGE D'ACCUEIL */
.flash-container-homepage {
    position: absolute;
    top: 100px; /* Assez bas pour être sous le header */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1001; /* Au-dessus du hero, mais potentiellement sous le header si besoin */
}

/* Positionnement pour les PAGES DE L'APPLICATION */
.flash-container-app {
    /* Il est déjà dans le <div class="container">, donc il est déjà centré. */
    /* On lui ajoute juste un peu d'espace. */
    padding-top: 0;
}
.flash-container-app .flash-message {
    /* On peut lui donner des couleurs plus vives sur fond blanc */
    box-shadow: none;
}
.flash-container-app .flash-message.flash-success {
    background-color: #7fd1c1;
    color: #234e52;
    border-color: #b2f5ea;
}
.flash-container-app .flash-message.flash-error {
    background-color: #fed7d7;
    color: #742a2a;
    border-color: #fbb6b6;
}


/* =================================================================== */
/* == STYLES POUR LES PAGES SPÉCIALISÉES (ANNONCEUR / DIFFUSEUR)    == */
/* =================================================================== */

/* --- Héros Spécialisé --- */
.hero-specialized {
    padding: 6rem 2rem;
    color: var(--c-white);
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.hero-specialized.advertiser-hero {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(135deg, #f6724d, #c03d19);
}
.hero-specialized.diffuser-hero {
    background: linear-gradient(135deg, #00b9c6, #0081b6);
}
.hero-specialized-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1;
}
.hero-specialized h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.hero-specialized .lead {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    opacity: 0.95;
}

/* --- Section des bénéfices pour Annonceur --- */
.section-advertiser-benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--c-white) 0%, #f8fdff 100%);
}
.section-advertiser-benefits h2 {
    font-size: clamp(2.4rem, 1vw + 2.4rem, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(90deg, #01244a 0%, var(--c-primary-2) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}
.section-advertiser-benefits h2::after { display: none; }
.section-advertiser-benefits h2 span {
  background: linear-gradient(90deg, var(--c-primary-2) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefits-grid-advertiser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}
.benefit-item-advertiser {
    background: var(--c-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 91, 127, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-top: 4px solid var(--c-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item-advertiser:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 91, 127, 0.12);
}
.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--c-accent);
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-primary-3);
    margin-bottom: 0.75rem;
}
.benefit-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.benefit-data-point {
    background: #fff5f2;
    border-left: 3px solid var(--c-accent);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a14120;
}
.benefit-data-point i {
    font-size: 1rem;
    color: white;
}

/* --- Section "Comment ça marche" (Adapte le composant existant) --- */
.section-how-it-works {
    padding: 6rem 2rem;
    background: #f0f8ff;
}
.section-how-it-works .cta-header h2 {
    color: var(--c-primary-3);
    text-shadow: none;
}
.section-how-it-works .cta-header h2::after {
    background: var(--c-accent);
}
.section-how-it-works .cta-subtitle {
    color: var(--c-text-on-light-bg);
    opacity: 0.9;
}
.section-how-it-works .step-card {
    max-width: 300px;
    background: white;
    flex-basis: 220px; /* Base size */
    flex-grow: 1;
}
.section-how-it-works .step-card .step-number {
    background: linear-gradient(135deg, var(--c-accent), #d15633);
}
.section-how-it-works .step-connector i {
    color: var(--c-primary-2);
    background: none;
    padding: 0;
    opacity: 0.5;
}
/* Grid pour 5 éléments */
.cta-steps-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: start;
    gap: 1rem;
}
.cta-steps-5 .step-connector { display: none; } /* On cache les flèches sur la grille */
@media (min-width: 1200px) {
    .cta-steps-5 { grid-template-columns: repeat(5, 1fr); }
    .cta-steps-5 .step-connector { display: flex; transform: none; }
    .cta-steps-5 .step-card { min-width: auto; }
}


/* --- Section Cas d'Usage / Preuve Sociale --- */
.section-case-studies {
    background: url("/public/images/fond_benefices.svg") center/cover no-repeat;
    padding: 6rem 2rem;
}
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.case-study-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    color: var(--c-white);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}
.case-study-card:hover {
    background: rgba(255, 255, 255, 0.15);
}
.case-study-card > .fa-quote-left {
    font-size: 2.5rem;
    color: var(--c-accent);
    margin-bottom: 1.5rem;
}
.case-study-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color:white;
}
.case-study-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.case-study-result {
    background: var(--c-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Section CTA Final --- */
.section-final-cta {
    background: linear-gradient(135deg, #006ab3 0%, #00c59d 100%);
    color: white;
    padding: 6rem 2rem;
}
.section-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.section-final-cta p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* =================================================================== */
/* == STYLES POUR LA PAGE DIFFUSEUR (COMPLÉMENT)                    == */
/* =================================================================== */

/* --- Section des bénéfices pour Diffuseur --- */
.section-diffuser-benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--c-white) 0%, #f0f8ff 100%);
}
.section-diffuser-benefits h2 {
    font-size: clamp(2.4rem, 1vw + 2.4rem, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(90deg, #01244a 0%, var(--c-primary-2) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5rem;
}
.section-diffuser-benefits h2::after { display: none; }
.section-diffuser-benefits h2 span {
  background: linear-gradient(90deg, var(--c-primary-3) 0%, var(--c-primary-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefits-grid-diffuser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}
.benefit-item-diffuser {
    background: var(--c-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 91, 127, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-top: 4px solid var(--c-primary-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item-diffuser:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 91, 127, 0.12);
}
.benefit-item-diffuser .benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--c-primary-2);
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.benefit-item-diffuser .benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-primary-3);
    margin-bottom: 0.75rem;
}
.benefit-item-diffuser .benefit-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.benefit-item-diffuser .benefit-data-point {
    background: #eefbff;
    border-left: 3px solid var(--c-primary-2);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #005a7e;
}
.benefit-item-diffuser .benefit-data-point i {
    font-size: 1rem;
    color: var(--c-primary-2);
}

/* --- Styles spécifiques pour les composants en mode Diffuseur --- */

/* Section "Comment ça marche" */
.section-how-it-works.diffuser-style .cta-header h2::after {
    background: var(--c-primary-2);
}
.section-how-it-works.diffuser-style .step-card .step-number {
    background: linear-gradient(135deg, var(--c-primary-2), var(--c-primary-3));
}

/* Section "Cas d'usage" */
.section-case-studies.diffuser-style .case-study-card > .fa-quote-left {
    color: var(--c-primary-2);
}
.section-case-studies.diffuser-style .case-study-result {
    background: var(--c-primary-2);
}


/* =================================================================== */
/* == STYLES RAFFINÉS POUR LA PAGE ANNONCEUR                        == */
/* =================================================================== */

/* --- Particules animées sur le hero --- */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* --- Titres raffinés --- */
.hero-title-refined {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    color: #ffeadf;
}

.hero-subtitle-refined {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* --- Boutons premium --- */
.btn-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--c-accent);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* --- En-têtes de section raffinés --- */
.section-header-refined {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-refined h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--c-accent) 0%, #e85d3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
}

/* --- Cartes de bénéfices raffinées --- */
.benefit-item-advertiser {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.benefit-item-advertiser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-accent), #e85d3d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item-advertiser:hover::before {
    transform: scaleX(1);
}

.benefit-item-advertiser:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--c-accent);
}

.benefit-item-advertiser.benefit-primary {
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
    border-color: rgba(246, 114, 77, 0.2);
}

.benefit-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--c-accent), #e85d3d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white !important;
    box-shadow: 0 8px 24px rgba(246, 114, 77, 0.3);
    position: relative;
    z-index: 2;
}

.benefit-icon i {
    color: white !important;
}

.benefit-accent-line {
    position: absolute;
    top: 35px;
    left: 70px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-accent), transparent);
    opacity: 0.6;
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.benefit-data-point {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.benefit-data-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--c-accent);
}

.data-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--c-accent), #e85d3d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.data-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
}

.data-content strong {
    color: #1f2937;
    font-weight: 600;
}

/* --- Processus raffiné --- */
.refined-process {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.refined-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f1f5f9' fill-opacity='0.5'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.refined-step {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.refined-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-number-refined {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--c-accent), #e85d3d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(246, 114, 77, 0.3);
    position: relative;
}

.step-number-refined::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(246, 114, 77, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0; }
}

.step-content-refined h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-content-refined p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
}

/* --- Témoignages raffinés --- */
.refined-testimonials {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

/* --- CTA Final Raffiné --- */
.section-final-cta.refined-cta {
    background: linear-gradient(135deg, var(--c-primary-3) 0%, var(--c-primary-2) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    color: white; /* Applique la couleur blanche à tout le texte par défaut */
}

.section-final-cta.refined-cta h2 {
    color: white; /* Assure la couleur blanche du titre */
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-final-cta.refined-cta p {
    color: rgba(255, 255, 255, 0.9); /* Blanc légèrement transparent pour le sous-titre */
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-premium {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* =================================================================== */
/* == BOUTON D'ACTION POUR LES CARTES 'FOR WHO' (PAGE D'ACCUEIL)   == */
/* =================================================================== */

.for-who-card .card-action {
    padding: 1rem 2.5rem 2rem; /* Ajoute de l'espace autour du bouton */
    text-align: center;
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--c-white);
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.for-who-card .card-content {
    /* On s'assure que la carte ait une structure flexible pour bien placer le bouton */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.for-who-card .card-action {
    margin-top: auto; /* Pousse le bouton vers le bas */
}

/* =================================================================== */
/* == STYLES RAFFINÉS POUR LA PAGE DIFFUSEUR                        == */
/* =================================================================== */

/* --- Hero raffiné pour diffuseur --- */
.diffuser-hero-refined {
    background: linear-gradient(135deg, #00b4c4 0%, #006ab3 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
    color: var(--c-white);
}

.hero-particles-diffuser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px, 45px 45px;
    animation: particlesFloat 25s linear infinite;
}

.hero-specialized-icon-refined {
    margin-bottom: 2rem;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.hero-specialized-icon-refined .icon-wrapper i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.icon-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ffd54f;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-buttons-refined {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-premium-diffuser {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--c-primary-3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-premium-diffuser::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 196, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-premium-diffuser:hover::before {
    left: 100%;
}

.btn-premium-diffuser:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--c-primary-2);
}

/* --- Section bénéfices raffinée --- */
.section-diffuser-benefits-refined {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--c-white) 0%, #f0f8ff 100%);
    position: relative;
}

.text-gradient-diffuser {
    background: linear-gradient(135deg, var(--c-primary-2) 0%, var(--c-primary-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid-diffuser-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-item-diffuser-refined {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-item-diffuser-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary-2), var(--c-primary-3));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item-diffuser-refined:hover::before {
    transform: scaleX(1);
}

.benefit-item-diffuser-refined:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--c-primary-2);
}

.benefit-primary-diffuser {
    background: linear-gradient(135deg, #eef9ff 0%, #ffffff 100%);
    border-color: rgba(0, 185, 198, 0.2);
}

.benefit-icon-container-refined {
    position: relative;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon-refined {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--c-primary-2), var(--c-primary-3));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white !important;
    box-shadow: 0 8px 24px rgba(0, 185, 198, 0.3);
    position: relative;
    z-index: 2;
}

.benefit-accent-line-diffuser {
    position: absolute;
    top: 35px;
    left: 70px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary-2), transparent);
    opacity: 0.6;
}

.benefit-content-refined h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-content-refined p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.benefit-data-point-refined {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.benefit-data-point-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--c-primary-2);
}

.data-icon-diffuser {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--c-primary-2), var(--c-primary-3));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Processus raffiné --- */
.section-how-it-works-refined {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.process-timeline-diffuser {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card-refined {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card-refined:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-number-diffuser {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--c-primary-2), var(--c-primary-3));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 185, 198, 0.3);
    position: relative;
}

.step-number-diffuser::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 185, 198, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* --- Cas d'usage raffinés --- */
.section-case-studies-refined {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.case-study-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.case-study-card-refined {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary-2), var(--c-teal-light));
}
.company-info-diffuser h4 {
  color:white;
}

/* =================================================================== */
/* == CORRECTION : CTA FINAL RAFFINÉE (DIFFUSEUR)                 == */
/* =================================================================== */

.section-final-cta-refined.diffuser-cta {
    background: linear-gradient(135deg, #00b4c4 0%, #006ab3 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    color: var(--c-white);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Le contenu doit être au-dessus des particules */
.section-final-cta-refined .cta-content-refined {
    position: relative;
    z-index: 2;
}

/* Titre du CTA */
.section-final-cta-refined.diffuser-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--c-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

/* Paragraphe du CTA */
.section-final-cta-refined.diffuser-cta p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Conteneur des boutons (pour s'assurer du centrage) */
.section-final-cta-refined .cta-buttons-refined {
    display: flex;
    justify-content: center;
}

/* Assurer que la classe .btn-large est bien prise en compte */
.section-final-cta-refined .btn.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* =================================================================== */
/* == STYLES POUR L'EFFET DE STACKING (NOUVELLES SECTIONS)          == */
/* =================================================================== */

/* --- Transformation promise dans le hero --- */
.transformation-promise {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: left;
}

.promise-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.old-way {
    text-decoration: line-through;
    opacity: 0.7;
}

.new-way {
    color: #7bf2ec;
}

/* --- Section Stacked Offers --- */
.section-stacked-offers {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f8f5 100%);
    position: relative;
}

.section-stacked-offers h2 {
    font-size: clamp(2.4rem, 1vw + 2.4rem, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(90deg, #01244a 0%, var(--c-primary-2) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 4rem;
}

.section-stacked-offers h2 span {
    background: linear-gradient(90deg, var(--c-accent) 0%, #e85d3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-stacked-offers h2::after { display: none; }

/* --- Premium Offer Badge --- */
.premium-offer-badge {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: white;
}

.badge-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.badge-content i {
    font-size: 2.5rem;
    color: #ffd54f;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.badge-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd54f;
    letter-spacing: 0.5px;
}

.badge-content p {
    line-height: 1.6;
    opacity: 0.95;
}

.offer-stack {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-stack:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.offer-stack-annonceur {
    border-color: var(--c-accent);
}

.offer-stack-diffuseur {
    border-color: var(--c-primary-2);
}

.stack-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stack-header i {
    font-size: 2rem;
    padding: 0.8rem;
    border-radius: 12px;
    color: white;
}

.offer-stack-annonceur .stack-header i {
    background: var(--c-accent);
}

.offer-stack-diffuseur .stack-header i {
    background: var(--c-primary-2);
}

.stack-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-primary-3);
    margin: 0;
}

.stack-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.stack-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--c-text-on-light-bg);
}

.stack-benefits li i {
    font-size: 1rem;
    color: var(--c-primary-2);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.offer-stack-annonceur .stack-benefits li i {
    color: var(--c-accent);
}

.value-comparison {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    text-align: center;
}

.estimated-value {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.estimated-value span {
    font-weight: 700;
    color: var(--c-primary-3);
}

.real-cost {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-accent);
}

.real-cost span {
    font-size: 1.8rem;
}

/* --- Immediate Bonus --- */
.immediate-bonus {
    background: linear-gradient(135deg, #fef3f2 0%, #fff5f2 100%);
    border: 2px solid rgba(246, 114, 77, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.bonus-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.bonus-content i {
    font-size: 2.5rem;
    color: var(--c-accent);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.bonus-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 1rem;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bonus-list span {
    font-size: 1rem;
    color: #a14120;
    font-weight: 500;
}

/* --- Section Comparison --- */
.section-comparison {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
}

.section-comparison h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    color: var(--c-primary-3);
    margin-bottom: 3rem;
}

.section-comparison h2 span {
    color: var(--c-accent);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison-table thead th {
    padding: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table thead th:first-child {
    text-align: left;
    background: #f8fafc;
    color: var(--c-primary-3);
}

.comparison-table thead .competitor {
    background: #fef2f2;
    color: #991b1b;
}

.comparison-table thead .monetibox {
    background: #ecfdf5;
    color: #065f46;
}

.comparison-table tbody td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    background: #f8fafc;
    font-weight: 600;
    color: var(--c-primary-3);
}

.competitor-cell {
    background: #fef2f2;
    color: #991b1b;
    text-align: center;
}

.monetibox-cell {
    background: #ecfdf5;
    color: #065f46;
    text-align: center;
    font-weight: 600;
}

.competitor-cell i,
.monetibox-cell i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* --- Section Guarantee --- */
.section-guarantee {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.guarantee-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    border-left: 6px solid #22c55e;
}

.guarantee-card i {
    font-size: 3rem;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-primary-3);
    margin-bottom: 1.5rem;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.guarantee-points p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--c-text-on-light-bg);
    margin: 0;
}

/* --- Final Message in CTA --- */
.final-message {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.final-message p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.stacked-offers-flex {
        display:flex;
        flex-direction: row;
        gap: 2rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .stack-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .badge-content,
    .bonus-content,
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .comparison-table-wrapper {
        font-size: 0.9rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .offer-stack {
        padding: 2rem 1.5rem;
    }
    
    .stack-benefits li {
        font-size: 0.95rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
}