/* ============================================================
   NHI – Négoce Hygiène Industrielle
   Feuille de style principale
   Auteur : GitHub Copilot | Version : 1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   1. VARIABLES CSS
   ============================================================ */
:root {
  /* Couleurs principales */
  --blue:          #1f3caa;
  --bluemiddle:    #4b6ea3;
  --blue-dark:     #162b7a;
  --blue-light:    #edf6ff;
  --green:         #a1c95b;
  --green-dark:    #7fa345;
  --green-light:   #f0f7e2;
  --white:         #edf6ff;
  --gray-light:    #f4f6f9;
  --gray-mid:      #dde2ea;
  --gray-text:     #6b7280;
  --text-dark:     #111827;
  --text-body:     #374151;

  /* Typographie */
  --font-head:     'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:     1180px;

  /* Coins arrondis */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  /* Ombres */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);

  /* Transition globale */
  --transition:    all 0.25s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

/* ============================================================
   3. CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Classe d'accessibilité */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Classe couleur texte */
.text-green {
  color: var(--green);
  font-weight: 900;
}

/* ============================================================
   4. TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem);  font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem);  font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* ============================================================
   5. BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

/* Bleu foncé (principal) */
.btn-primary {
  background: var(--blue-dark);
  color: white;
  border: none;
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contour blanc (sur fond sombre) */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Vert */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contour bleu (sur fond blanc) */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Petit bouton */
.btn-sm {
  padding: 9px 20px;
  font-size: .85rem;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}

@supports (backdrop-filter: blur(10px)) {
  @media (min-width: 769px) {
    .nav {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
  }
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Liens desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 12px 16px;
  display: block;
  border-radius: var(--radius-sm);
}

.nav-mobile .btn {
  margin-top: 8px;
  justify-content: center;
}

/* ============================================================
   7. HERO (page d'accueil)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--blue-dark) 0%, #1d4b8f 65%, #1a5276 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Cercles décoratifs CSS-only */
.hero::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -6%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -18%;
  left: -8%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(42,125,79,0.1);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideInRight 0.9s cubic-bezier(.22,.68,0,1.2) 0.3s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    max-width: 450px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding-right: 20px;
}


/* Badge "partenaire terrain" */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,125,79,0.2);
  border: 1px solid rgba(42,125,79,0.45);
  color: var(--green);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%        { opacity: 0.5; transform: scale(0.8); }
}

/* Apparition décalée des bulles hero */
@keyframes tagAppear {
  from { opacity: 0; transform: translateY(22px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Flottement doux continu */
@keyframes tagFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: #7fa345;
}

/* Citation clé */
.hero-quote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  font-style: italic;
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 18px;
  margin: 28px 0;
  font-family: var(--font-head);
  font-weight: 400;
}

/* Tags de preuve — style bulle */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .87rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 20px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: default;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hero-tag:hover {
  background: rgba(126,235,181,0.20);
  border-color: rgba(126,235,181,0.50);
  box-shadow: 0 6px 24px rgba(126,235,181,0.14);
}

/* Petit point vert à la place du ✓ texte */
.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Apparition décalée + flottement par bulle (périodes légèrement diff → déphasage naturel) */
.hero-tags li:nth-child(1) {
  animation: tagAppear 0.65s cubic-bezier(.22,.68,0,1.2) .40s both,
             tagFloat  3.6s ease-in-out 1.10s infinite;
}
.hero-tags li:nth-child(2) {
  animation: tagAppear 0.65s cubic-bezier(.22,.68,0,1.2) .60s both,
             tagFloat  4.1s ease-in-out 1.30s infinite;
}
.hero-tags li:nth-child(3) {
  animation: tagAppear 0.65s cubic-bezier(.22,.68,0,1.2) .80s both,
             tagFloat  3.2s ease-in-out 1.50s infinite;
}

/* CTA du hero */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: -45px;
}

/* ============================================================
   8. SECTIONS – STRUCTURE COMMUNE
   ============================================================ */
.section {
  padding: 88px 0;
}

.section-gray {
  background: var(--gray-light);
}

.section-blue {
  background: var(--blue-dark);
  color: var(--white);
}

/* En-tête centré de section */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-blue .section-label { color: var(--green); }

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-blue .section-header h2 { color: var(--white); }
.section-blue .section-header p  { color: rgba(255,255,255,0.72); }

/* ============================================================
   9. GRILLES UTILITAIRES
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ============================================================
   10. CARTES GÉNÉRIQUES
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,75,143,0.18);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

.card-icon.green { background: var(--green-light); color: var(--green); }

/* ============================================================
   11. VALEURS
   ============================================================ */
.valeur-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Barre verte en haut */
.valeur-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transition: var(--transition);
}

.valeur-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.valeur-card:hover::before {
  height: 4px;
}

.valeur-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  color: var(--green);
}

.valeur-card h3 {
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.valeur-card p {
  color: var(--gray-text);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   12. SECTEURS
   ============================================================ */
.secteur-card {
  background: var(--white);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  min-height: 300px;
}

.secteur-icon {
  color: var(--blue);
}

.secteur-card h3 {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.secteur-card p {
  color: var(--gray-text);
  font-size: .88rem;
  margin: 0;
  flex-grow: 1;
}

.link-arrow {
  color: var(--blue);
  font-size: .84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  transition: var(--transition);
}

.link-arrow:hover { gap: 8px; }

.link-arrow:hover { gap: 8px; }

.secteur-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.secteur-icon {
  color: var(--blue);
}

.secteur-card h3 {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.secteur-card p {
  color: var(--gray-text);
  font-size: .88rem;
  margin: 0;
  flex-grow: 1;
}

.link-arrow {
  color: var(--blue);
  font-size: .84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  transition: var(--transition);
}

.link-arrow:hover { gap: 8px; }

/* ============================================================
   13. BANDEAU CTA
   ============================================================ */
.cta-banner {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42,125,79,0.12);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   14. STATISTIQUES / CHIFFRES CLÉS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-text);
  font-size: .88rem;
  line-height: 1.4;
}

/* ============================================================
   15. BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 14px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .84rem;
  color: var(--gray-text);
}

.breadcrumb a {
  color: var(--blue);
  transition: var(--transition);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--gray-mid);
  font-size: .75rem;
  user-select: none;
}

.breadcrumb [aria-current="page"] {
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================================
   16. HERO DES PAGES INTÉRIEURES
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--blue-dark), var(--blue));
  padding: 100px 0 56px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0;
}

/* ============================================================
   17. FORMULAIRE CONTACT
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-required {
  color: var(--green);
  margin-left: 2px;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--text-body);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,75,143,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ============================================================
   18. BLOC COORDONNÉES CONTACT
   ============================================================ */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-info-content h4 {
  font-size: .78rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 600;
  font-family: var(--font-head);
}

.contact-info-content p,
.contact-info-content a {
  font-size: .96rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
  transition: var(--transition);
}

.contact-info-content a:hover {
  color: var(--blue);
}

/* Badges de réassurance */
.reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-body);
}

.reassurance-item::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   19. ACCORDÉON FAQ
   ============================================================ */
.faq-list {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gray-light);
  color: var(--blue);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--gray-text);
  font-size: .94rem;
  line-height: 1.75;
}

/* ============================================================
   20. CARTES PRODUITS
   ============================================================ */
.produit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.produit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,75,143,0.2);
}

.produit-card-img {
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--blue);
  overflow: hidden;
}

.produit-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.produit-card-body {
  padding: 22px 24px;
}

.produit-card-body h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.produit-card-body p {
  color: var(--gray-text);
  font-size: .88rem;
  margin-bottom: 16px;
}

.produit-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.produit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px 0;
}

.produit-list li {
  font-size: .88rem;
  color: var(--gray-text);
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.produit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.produit-tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

/* ============================================================
   21. PAGE À PROPOS
   ============================================================ */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.apropos-grid.reverse > :first-child { order: 2; }
.apropos-grid.reverse > :last-child  { order: 1; }

.apropos-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.apropos-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* Service commercial */
.apropos-commercial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.apropos-commercial-vertical {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.commercial-with-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.apropos-commercial-text {
  text-align: left;
}

.commercial-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.commercial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.commercial-list {
  display: inline-block;
  text-align: left;
  margin: 16px 0 0 20px;
  padding: 0;
  color: var(--gray-text);
  line-height: 1.9;
}

.commercial-list li {
  list-style: disc;
  font-size: 0.97rem;
}

.prodis-block {
  background: white;
  border: 1px solid var(--gray-mid);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prodis-logo-inline {
  height: 32px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 10px;
  display: inline;
}

.prodis-block p {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 0.97rem;
  margin: 0;
}

.prodis-block strong {
  color: var(--blue-dark);
}

/* Engagements */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px));
  gap: 20px;
  justify-content: center;
}

.engagement-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  text-align: center;
}

.engagement-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.engagement-icon {
  margin-bottom: 12px;
  color: var(--green);
  display: flex;
  justify-content: center;
}

.engagement-item h4 {
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.engagement-item p {
  color: var(--gray-text);
  font-size: .875rem;
  line-height: 1.6;
}

/* Citation différence */
.difference-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.difference-bg-guillemet {
  display: block;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  opacity: .75;
}

.difference-main {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
  color: var(--blue-dark);
  margin: 0 auto 24px;
  text-align: center;
  width: 100%;
}

.difference-main em {
  font-style: normal;
  color: var(--green);
}

.difference-divider {
  width: 40px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.difference-sub {
  display: block;
  font-size: .95rem;
  font-style: normal;
  font-weight: 400;
  color: var(--gray-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
  width: 100%;
}

/* Étapes / approche */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--gray-text);
  font-size: .9rem;
  margin: 0;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.82);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 32px;
}

/* Colonne marque */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-zone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42,125,79,0.2);
  border: 1px solid rgba(42,125,79,0.4);
  color: var(--green);
  font-size: .73rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-linkedin:hover {
  opacity: 1;
}

/* Colonnes liens */
.footer-col h4 {
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-head);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* Colonne contact */
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer-contact-item .icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--green);
}

.footer-contact-item span {
  font-size: .875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Bas de footer */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   23. ALERTES & MESSAGES
   ============================================================ */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
}

.alert.show { display: flex; }

.alert-success {
  background: var(--green-light);
  border: 1px solid rgba(42,125,79,0.3);
  color: var(--green-dark);
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

/* ============================================================
   24. ANIMATIONS AU SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   25. UTILITAIRES
   ============================================================ */
.text-center  { text-align: center; }
.text-green   { color: var(--green); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--gray-text); }
.fw-bold      { font-weight: 700; }
.mb-0         { margin-bottom: 0 !important; }
.mt-0         { margin-top: 0 !important; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mt-40        { margin-top: 40px; }
.mb-40        { margin-bottom: 40px; }

/* Accessibilité */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   26. RESPONSIVE – 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4       { grid-template-columns: repeat(2, 1fr); }
  .grid-5       { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .apropos-grid { gap: 40px; }
  .stats-grid   { grid-template-columns: repeat(3, 1fr); }
  
  .products-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .difference-grid { grid-template-columns: 1fr; }
  .advantages-grid { gap: 24px; }

  /* Nouveaux composants homepage */
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-title { font-size: 2.4rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   27. RESPONSIVE – 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 56px; }
  .nav-inner { height: 68px; }

  /* Sections */
  .section { padding: 60px 0; }

  /* Grilles → colonne unique */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 { grid-template-columns: 1fr; }

  /* Formulaire */
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }

  /* Statistiques */
  .stats-grid { grid-template-columns: 1fr; gap: 1px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* À propos */
  .apropos-grid { grid-template-columns: 1fr; gap: 32px; }
  .commercial-with-photo { grid-template-columns: 1fr; gap: 28px; }
  .commercial-photo-wrap { aspect-ratio: 16/9; }
  .apropos-grid.reverse > :first-child { order: unset; }
  .apropos-grid.reverse > :last-child  { order: unset; }
  .engagement-grid { grid-template-columns: 1fr; }
  .difference-quote { padding: 0 12px; }
  .difference-bg-guillemet { font-size: 3rem; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* CTA */
  .cta-banner-actions { flex-direction: column; align-items: center; }

  /* Grilles avantages & positionnement */
  .advantages-grid { grid-template-columns: 1fr; gap: 20px; }
  .apropos-commercial { grid-template-columns: 1fr; gap: 32px; }
  .products-grid-6 { grid-template-columns: 1fr; }

  /* Carousel */
  .carousel-slide { padding: 32px 20px; }
  .slide-list { columns: 1; }
  .slide-content h3 { font-size: 1.35rem; }

  /* Hero image box */
  .hero-image-box { height: auto; min-height: 180px; padding: 20px 0; }
  .hero-image-placeholder { width: 160px; height: 160px; font-size: 64px; }
  .hero-badge-1 { bottom: 10px; left: 8px; font-size: 0.75rem; padding: 6px 10px; }
  .hero-badge-2 { top: 10px; right: 8px; font-size: 0.75rem; padding: 6px 10px; }

  /* Positionnement */
  .positioning-hero { padding: 48px 16px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Héro ancienne version */
  .hero-cta-main { flex-direction: column; align-items: center; }
  .hero-cta-main .btn-lg { width: 100%; justify-content: center; }
  .hero-subtitle { font-size: 1rem; }

  /* Nouveaux composants homepage */
  .hero-premium { padding: 80px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; font-size: 0.85rem; }
  
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { padding: 16px; text-align: center; }
  .quick-benefits { padding: 40px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .positioning { padding: 60px 0; }
  .positioning-quote { font-size: 1.6rem; }
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 1.6rem; }

  /* Centrage texte mobile – page accueil */
  .section-header { text-align: center; padding: 0 8px; }
  .section-header h2,
  .section-header p { text-align: center; }
  .product-card { text-align: center; align-items: center; }
  .products-grid { gap: 16px; }

  /* Produit cards – layout horizontal sur mobile */
  .produit-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .produit-card-img {
    width: 110px;
    min-width: 110px;
    height: auto !important;
    border-bottom: none;
    border-right: 1px solid var(--gray-mid);
    flex-shrink: 0;
  }

  .produit-card-img img {
    width: 110px;
    height: 100% !important;
    object-fit: cover;
  }

  .produit-card-img [data-lucide] {
    width: 36px;
    height: 36px;
  }

  .produit-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .produit-card-body h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .produit-list {
    margin: 6px 0 10px 0;
  }

  .produit-list li {
    font-size: 0.82rem;
    margin-bottom: 4px;
  }

  .produit-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .produit-tags-group {
    margin-bottom: 8px;
  }

  .produit-card-body .btn {
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

/* ============================================================
   28. RESPONSIVE – 480px (petits mobiles)
   ============================================================ */
@media (max-width: 480px) {
  .hero { padding: 100px 0 56px; }
  .card { padding: 24px 18px; }
  .btn  { padding: 12px 22px; font-size: .88rem; }
  .apropos-visual { padding: 36px 24px; font-size: 4rem; }
  .nav-logo-img { height: 48px; }
  .nav-inner { height: 60px; }
  .advantages-grid { gap: 16px; }
  .carousel-slide { padding: 24px 14px; }
  .slide-content h3 { font-size: 1.15rem; }
  .positioning-hero { padding: 32px 12px; }
  .faq-question { font-size: .88rem; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; }
  .difference-item { padding: 24px 20px; }
  .pillar-card { padding: 28px 20px; }
  .footer-bottom { gap: 8px; }
  .footer-legal { flex-direction: column; align-items: center; gap: 8px; }
  .cta-banner-actions .btn-lg { width: 100%; justify-content: center; }
  .product-block-img { height: 160px; }
  .stats-grid { grid-template-columns: 1fr; }

  /* Nouveaux composants */
  .hero-premium { padding: 60px 0 40px; }
  .hero-title { font-size: 1.6rem; line-height: 1.2; }
  .hero-description { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-trust { gap: 8px; }
  .hero-image-placeholder { width: 200px; height: 200px; font-size: 80px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-badge-1 { bottom: 20px; left: 10px; }
  .hero-badge-2 { top: 40px; right: 10px; }
  
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-header h2 { font-size: 1.6rem; }
  .positioning-quote { font-size: 1.4rem; line-height: 1.3; }
  .pillar-card { padding: 24px 20px; }
  .pillar-icon { font-size: 2rem; }
  .pillar-card h3 { font-size: 1.1rem; }
  .pillar-card p { font-size: 0.85rem; }

  /* Produit cards – très petits écrans */
  .produit-card-img {
    width: 90px;
    min-width: 90px;
  }

  .produit-card-img img {
    width: 90px;
  }

  .produit-card-body {
    padding: 12px 14px;
  }

  .produit-card-body h3 {
    font-size: 0.88rem;
  }

  .produit-list li {
    font-size: 0.78rem;
  }
}

/* ============================================================
   29. ICÔNES SVG — Lucide
   ============================================================ */

/* Taille de base : les SVG Lucide héritent de currentColor */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Tailles par conteneur */
.card-icon         [data-lucide] { width: 26px; height: 26px; }
.valeur-icon       [data-lucide] { width: 34px; height: 34px; }
.secteur-icon      [data-lucide] { width: 30px; height: 30px; }
.engagement-icon   [data-lucide] { width: 24px; height: 24px; }
.apropos-visual    [data-lucide] { width: 80px; height: 80px; opacity: 0.5; }
.produit-card-img  [data-lucide] { width: 56px; height: 56px; }
.contact-info-icon [data-lucide] { width: 22px; height: 22px; }
.quick-cta-icon    [data-lucide] { width: 24px; height: 24px; }
.demande-tab       [data-lucide] { width: 14px; height: 14px; vertical-align: -2px; }
.footer-zone-badge [data-lucide] { width: 12px; height: 12px; vertical-align: -1px; }
.footer-contact-item .icon [data-lucide] { width: 16px; height: 16px; }

/* Icônes process (hors classes nommées) */
.icon-block { display: flex; justify-content: center; margin-bottom: 14px; }
.icon-block [data-lucide] { width: 38px; height: 38px; }

/* Icônes dans les boutons */
.btn [data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   29. CAROUSEL PRODUITS
   ============================================================ */

.produits-carousel {
  position: relative;
  padding: 20px 0;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-light);
}

.carousel-slides {
  display: flex;
  transition: transform var(--transition);
  transform: translateX(0);
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 56px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
}

.carousel-slide.hidden {
  display: none;
}

.slide-content {
  max-width: 720px;
  margin: 0 auto;
}

.slide-icon {
  font-size: 56px;
  color: var(--blue);
  margin-bottom: 20px;
  display: inline-flex;
}

.carousel-slide[data-slide="5"] .slide-icon {
  color: var(--blue-dark);
}

.slide-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 0;
}

.slide-desc {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.slide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  columns: 2;
  gap: 20px;
}

.slide-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: var(--text-body);
  line-height: 1.5;
  break-inside: avoid;
}

.slide-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

/* Navigation du carousel */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--blue-dark);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn [data-lucide] {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot:hover {
  background: var(--blue);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--blue-dark);
  width: 12px;
  height: 12px;
}

/* ============================================================
   30. HERO REFONTE – NOUVEAU DESIGN
   ============================================================ */

.hero-new {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1d5276 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.hero-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  animation: slideInDown 0.8s cubic-bezier(.22,.68,0,1.2) both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-headline {
  max-width: 900px;
}

.hero-accroche {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  white-space: normal;
  word-break: break-word;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-title-item {
  display: inline-block;
}

.hero-title-sep {
  margin: 0 10px;
  color: var(--green);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-main {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 6px;
}

/* Bulles décoratives */
.hero-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.bubble-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 5%;
  animation: float 10s ease-in-out infinite;
}

.bubble-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 5%;
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ============================================================
   31. BANDEAU AVANTAGES
   ============================================================ */

.advantages-banner {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.advantage-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.4rem;
}

.advantage-item h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

.advantage-item p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   32. GRILLE PRODUITS 6 BLOCS
   ============================================================ */

.products-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-block {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-block:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.product-block-img {
  width: 100%;
  height: 200px;
  background: var(--gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-block:hover .product-block-img img {
  transform: scale(1.05);
}

.product-block-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-block-body h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
  margin-top: 0;
}

.product-block-body p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.6;
}

.product-link {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  text-decoration: none;
}

.product-link:hover {
  gap: 8px;
  color: var(--green);
}

/* ============================================================
   33. SECTION DIFFÉRENCIATION BLEUE
   ============================================================ */

.section-blue {
  background: linear-gradient(140deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.section-blue .section-header {
  color: var(--white);
}

.section-blue .section-header h2 {
  color: var(--white);
}

.section-blue .section-header p {
  color: rgba(255,255,255,0.78);
}

.section-blue .section-label {
  color: var(--green);
}

.difference-highlight {
  text-align: center;
  max-width: 800px;
  margin: -40px auto 60px;
}

/* .difference-quote rule moved to À propos section above */

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.difference-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.difference-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.difference-icon {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.difference-icon [data-lucide] {
  width: 48px;
  height: 48px;
}

.difference-item h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.difference-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   31. NOUVEAU HOMEPAGE – SECTIONS PREMIUM
   ============================================================ */

/* ===== HERO PREMIUM ===== */
.hero-premium {
  background: linear-gradient(rgba(22, 43, 122, 0.65), rgba(15, 31, 82, 0.70)), url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 160px 0 140px;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(circle at 30% 70%, #a1c95b 0%, transparent 40%),
                    radial-gradient(circle at 80% 20%, #7fa345 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.6rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: white;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border-radius: 8px;
  white-space: nowrap;
}

.btn-primary.btn-lg {
  background: #a1c95b;
  color: #162b7a;
}

.btn-primary.btn-lg:hover {
  background: #91bc4b;
  transform: translateY(-2px);
}

.btn-outline.btn-lg {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline.btn-lg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #a1c95b;
  color: #a1c95b;
}

.hero-trust {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust span strong {
  color: var(--green);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-box {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(161, 201, 91, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: rgba(161, 201, 91, 0.4);
  position: relative;
  z-index: 1;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: #162b7a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge-1 {
  bottom: 40px;
  left: 20px;
}

.hero-badge-2 {
  top: 60px;
  right: 20px;
}

/* ===== QUICK BENEFITS ===== */
/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--blue-dark);
  overflow: hidden;
  padding: 14px 0;
  max-width: 100%;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 40px;
}

.ticker-item i {
  color: var(--green);
  width: 16px;
  height: 16px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.quick-benefits {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  transition: var(--transition);
  background: rgb(235, 244, 254);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}

.benefit-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}

.benefit-card .benefit-icon,
.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.benefit-card:hover {
  background: var(--blue-light);
  transform: translateY(-6px);
}

.benefit-icon {
  font-size: 2.4rem;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.5;
}

/* ===== PRODUCTS SHOWCASE ===== */
.products-showcase {
  background: white;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 4px;
}

.product-card {
  background: white;
  border: 2px solid var(--gray-mid);
  border-radius: 12px;
  padding: 24px 24px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.product-card:hover {
  border-color: var(--green);
}

.product-icon {
  font-size: 3rem;
  color: #111;
  display: flex;
  justify-content: center;
}

.product-card h3 {
  font-size: 1.2rem;
  color: var(--blue);
  margin: 0;
  font-weight: 600;
}

.product-card p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.product-link {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ===== POSITIONING SECTION ===== */
.positioning {
  background: white;
  color: var(--gray-dark);
  padding: 0 0 100px 0;
  position: relative;
  overflow: hidden;
}

.positioning::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 201, 91, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.positioning-hero {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  background: #3795ee;
  padding: 80px 20px;
}

.positioning-quote {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
  color: white;
}

.positioning-quote strong {
  color: var(--green);
}

.positioning-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.pillar-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  color: var(--gray-dark);
}

.pillar-card:hover {
  background: #eef4fb;
  border-color: #3795ee;
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.8rem;
  color: var(--blue-dark);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--gray-dark);
}

.pillar-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: white;
  color: var(--blue-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-banner .btn-secondary {
  color: var(--blue-dark);
  border-color: rgba(29,75,143,0.45);
}
.cta-banner .btn-secondary:hover {
  background: rgba(29,75,143,0.08);
  border-color: var(--blue-dark);
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 32px;
}

/* ============================================================
   30. IMPRESSION
   ============================================================ */

/* Respecte les préférences d'animation utilisateur */
@media (prefers-reduced-motion: reduce) {
  .hero-tags li:nth-child(1),
  .hero-tags li:nth-child(2),
  .hero-tags li:nth-child(3) {
    animation: none;
    opacity: 1;
  }
}

@media print {
  .nav,
  .hero-actions,
  .cta-banner,
  .footer-bottom .footer-legal { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
}

/* ============================================================
   RESPONSIVE FINAL – écrase toutes les règles composants
   (placé EN FIN de fichier pour avoir la priorité correcte)
   ============================================================ */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  /* Avantages banner */
  .advantages-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Produits 6 blocs */
  .products-grid-6    { grid-template-columns: repeat(2, 1fr); }

  /* Grille différenciation */
  .difference-grid    { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Pillars */
  .pillars-grid       { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Hero premium */
  .hero-premium       { padding: 120px 0 100px; }
  .hero-title         { font-size: clamp(1.8rem, 4vw, 2.8rem); }

  /* Carousel */
  .slide-list         { columns: 1; }
}

/* ---- 768px (mobile) ---- */
@media (max-width: 768px) {

  /* ===== HERO PREMIUM ===== */
  .hero-premium {
    padding: 90px 0 60px;
    min-height: auto;
  }
  .hero-grid {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    align-items: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding-right: 0;
    width: 100%;
  }
  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    text-align: center;
  }
  .hero-description {
    white-space: normal;
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-cta-group .btn,
  .hero-cta-group .btn-lg {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
  }
  .hero-tagline {
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
  }

  /* ===== TICKER ===== */
  .ticker-item {
    font-size: 0.85rem;
    padding: 0 24px;
  }

  /* ===== BENEFITS (avantages rapides) ===== */
  .quick-benefits {
    padding: 40px 0;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .benefit-card {
    padding: 16px 12px;
    text-align: center;
  }
  .benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  .benefit-card h3 {
    font-size: 0.92rem;
  }
  .benefit-card p {
    font-size: 0.82rem;
  }

  /* ===== PRODUITS (catégories showcase) ===== */
  .products-showcase {
    padding: 56px 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 16px;
  }
  .product-card-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .product-card h3 {
    font-size: 1rem;
    margin: 0 0 4px;
  }
  .product-card p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
  }
  .product-link {
    margin-top: 6px;
  }

  /* ===== PRODUITS 6 BLOCS ===== */
  .products-grid-6 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-block-img {
    height: 180px;
  }

  /* ===== POSITIONNEMENT ===== */
  .positioning {
    padding: 0 0 60px;
  }
  .positioning-hero {
    padding: 48px 0;
  }
  .positioning-quote {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    line-height: 1.3;
  }
  .positioning-subtitle {
    font-size: 0.95rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .pillar-card {
    padding: 28px 20px;
  }
  .pillar-card h3 {
    font-size: 1.1rem;
  }
  .pillar-card p {
    font-size: 0.9rem;
  }

  /* ===== AVANTAGES BANNER ===== */
  .advantages-banner {
    padding: 36px 0;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    padding: 56px 0;
  }
  .cta-banner h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    line-height: 1.3;
  }
  .cta-banner p {
    font-size: 1rem;
  }
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-banner .btn-lg,
  .cta-banner .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  /* CTA bandeau index.html (lien inline) */
  .cta-banner a.btn-lg {
    display: inline-flex;
    width: auto;
    max-width: 90vw;
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.4;
    padding: 14px 24px;
  }

  /* ===== CAROUSEL ===== */
  .carousel-slide {
    padding: 32px 20px;
  }
  .slide-list {
    columns: 1;
  }
  .slide-content h3 {
    font-size: 1.3rem;
  }
  .slide-desc {
    font-size: 0.9rem;
  }
  .carousel-nav {
    margin-top: 24px;
    gap: 16px;
  }

  /* ===== DIFFÉRENCIATION (section bleue) ===== */
  .difference-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .difference-item {
    padding: 24px 20px;
  }

  /* ===== SECTION HEADER ===== */
  .section-header {
    margin-bottom: 36px;
    padding: 0 4px;
  }
  .section-label {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ===== HERO ACCROCHE (ancienne section) ===== */
  .hero-accroche { font-size: 0.85rem; }
  .hero-title-sep { display: none; }
  .hero-title-item { display: block; }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta-main {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-main .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ---- 480px (très petits mobiles) ---- */
@media (max-width: 480px) {

  /* Benefits : 1 colonne sur iPhone SE */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Hero */
  .hero-premium { padding: 72px 0 48px; }
  .hero-title   { font-size: 1.5rem; }
  .hero-description { font-size: 0.92rem; }

  /* Produit card en liste */
  .product-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .product-card-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
  }

  /* Piliers */
  .pillar-card { padding: 20px 16px; }
  .pillar-icon { font-size: 2rem; }

  /* CTA */
  .cta-banner { padding: 40px 0; }
  .cta-banner a.btn-lg {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Section label */
  .section-label { font-size: 0.85rem; }
  .section-header h2 { font-size: 1.4rem; }
}
