﻿/* =====================================================
   styles.css — FRESH'O VITROPLANTS v6
   Accueil + À propos + Ferme ZC + Vitroplants + Impact
   ===================================================== */

/* ================================================
   1. RESET & VARIABLES
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  /* Brand Colors */
  --green-deep: #1f2937;
  --green-dark: #1b5e20;
  --green-mid: #2e7d32;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --yellow: #ffd600;
  --yellow-warm: #ffc107;
  --yellow-pale: #fffde7;
  --blue-ocean: #0d47a1;
  --blue-mid: #1565c0;
  --blue-light: #42a5f5;
  --blue-pale: #e3f2fd;
  --ochre: #bf8b30;
  --sand: #f5efe0;
  --white: #ffffff;
  --off-white: #fafafa;
  --text: #0f1a10;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-serif: "Fraunces", serif;
  --font-body: "DM Sans", sans-serif;
  --font: "Poppins", sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 40px rgba(102, 187, 106, 0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--green-pale);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
em {
  font-family: var(--font-serif);
  font-style: italic;
}

/* ================================================
   3. LAYOUT & UTILITAIRES
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(102, 187, 106, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition:
    left 0.1s,
    top 0.1s;
}

/* ===== SCROLL REVEAL ===== */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   4. TYPOGRAPHIE COMMUNE
   ================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.tag-light {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
}
.section-title em {
  color: var(--green-mid);
  font-style: italic;
}
.title-light {
  color: var(--white);
}
.title-light em {
  color: var(--yellow);
}
.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-desc {
  margin: 0.75rem auto 0;
}

/* ================================================
   5. BOUTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-yellow-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-yellow-lg:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}
.btn-yellow-lg svg {
  transition: transform var(--transition);
}
.btn-yellow-lg:hover svg {
  transform: translateX(3px);
}

.btn-glass-lg {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.btn-glass-lg:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-icon {
  transition: transform var(--transition);
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Navbar styles are centralized in components/navbar.css */

/* ================================================
   7. HERO ACCUEIL
   ================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #0a3d0f 0%,
    #1b5e20 25%,
    #2e7d32 50%,
    #1a5e1f 75%,
    #0f4c1f 100%
  );
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.shape-1 {
  width: 800px;
  height: 800px;
  top: -250px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(102, 187, 106, 0.08) 0%,
    rgba(102, 187, 106, 0.04) 50%,
    rgba(102, 187, 106, 0) 100%
  );
}
.shape-3 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 60%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.08) 0%,
    rgba(255, 214, 0, 0.04) 50%,
    rgba(255, 214, 0, 0) 100%
  );
}
.shape-4 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  right: 15%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.shape-5 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 25%;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.08) 0%,
    rgba(255, 193, 7, 0.04) 50%,
    rgba(255, 193, 7, 0) 100%
  );
  border-radius: 50%;
  animation: float-reverse 8s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-3deg);
  }
}
@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(-5deg);
  }
  66% {
    transform: translateY(-10px) rotate(3deg);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.trust-item {
  text-align: center;
}
.trust-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}
.hero-visual {
  position: relative;
  height: 420px;
}
.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  animation: cardFloat 4s ease-in-out infinite;
}
.visual-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.main-card {
  width: 320px;
  height: 340px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.visual-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.visual-placeholder span {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  display: block;
  animation: iconGlow 3s ease-in-out infinite;
}
.visual-placeholder p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.small-card {
  width: 160px;
  height: 80px;
  flex-direction: row;
  gap: 0.75rem;
  padding: 0 1.25rem;
  background: rgba(255, 214, 0, 0.1);
  border-color: rgba(255, 214, 0, 0.2);
}
.top-right {
  right: 0;
  top: 30px;
  animation: cardFloat 4s ease-in-out infinite 0.5s;
}
.bottom-left {
  left: 0;
  bottom: 40px;
  animation: cardFloat 4s ease-in-out infinite 1s;
}
.card-emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.card-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes iconGlow {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
  }
}

/* ================================================
   8. ENGAGEMENT / PILLAR CARDS
   ================================================ */
.section-engagement {
  background: var(--white);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;

/* ================================================
   PILIERS - CATALOGUE VISUEL (FERME)
   ================================================ */
.section-piliers.catalog-piliers {
  background: #f5f7f2;
}

.section-piliers.catalog-piliers .catalog-header {
  margin-bottom: 2rem;
}

.section-piliers.catalog-piliers .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.section-piliers.catalog-piliers .catalog-card {
  background: #ffffff;
  border: 1px solid rgba(24, 45, 28, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(22, 45, 26, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.section-piliers.catalog-piliers .catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22, 45, 26, 0.14);
}

.section-piliers.catalog-piliers .pilier-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.section-piliers.catalog-piliers .pilier-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.section-piliers.catalog-piliers .catalog-card:hover .pilier-visual img {
  transform: scale(1.04);
}

.section-piliers.catalog-piliers .pilier-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.section-piliers.catalog-piliers .pilier-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: rgba(20, 59, 28, 0.85);
  color: #ffffff;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.section-piliers.catalog-piliers .catalog-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.section-piliers.catalog-piliers .pc-headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.section-piliers.catalog-piliers .pc-headline h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.75rem);
  line-height: 1.1;
  margin: 0;
  color: #16301f;
}

.section-piliers.catalog-piliers .pc-kpi {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: #2e7d32;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.section-piliers.catalog-piliers .catalog-body > p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4d5a50;
  margin-bottom: 1rem;
}

.section-piliers.catalog-piliers .catalog-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.section-piliers.catalog-piliers .catalog-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #355144;
  line-height: 1.45;
}

.section-piliers.catalog-piliers .catalog-list li::before {
  content: none;
}

.section-piliers.catalog-piliers .catalog-list i {
  margin-top: 0.18rem;
  color: #28a83b;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .section-piliers.catalog-piliers .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .section-piliers.catalog-piliers .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.section-piliers.catalog-piliers .catalog-card:nth-child(4) {
  grid-column: 2;
}

@media (max-width: 980px) {
  .section-piliers.catalog-piliers .catalog-card:nth-child(4) {
    grid-column: auto;
  }
}
  left: 0;
  right: 0;
  height: 4px;
}
.pillar-1::before {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}
.pillar-2::before {
  background: linear-gradient(90deg, #1565c0, #42a5f5);
}
.pillar-3::before {
  background: linear-gradient(90deg, #e65100, #ffa726);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pillar-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}
.pillar-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
}
.pillar-link:hover {
  color: var(--green-dark);
}

/* ================================================
   9. ATOUTS
   ================================================ */
.section-atouts {
  background: var(--beige);
}
.atouts-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.atouts-left p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1rem;
}
.atouts-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.atout-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.atout-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--green-light);
}
.atout-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.atout-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.atout-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ================================================
   10. CIBLES
   ================================================ */
.section-cibles {
  background: var(--off-white);
}
.cible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.cible-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.cible-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cible-featured {
  border-color: var(--green-dark);
  transform: translateY(-8px);
}
.cible-badge-top {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem;
  letter-spacing: 0.05em;
}
.cible-header {
  padding: 1.75rem 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cible-1 {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.cible-2 {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}
.cible-3 {
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
}
.cible-2 h3 {
  color: var(--white);
}
.cible-icon {
  font-size: 2rem;
}
.cible-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.cible-list {
  padding: 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cible-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.cible-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}
.cible-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cible-cta {
  display: block;
  margin: 0.5rem 1.75rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}
.cible-featured .cible-cta {
  color: var(--green-light);
}
.cible-cta:hover {
  text-decoration: underline;
}

/* ================================================
   11. STATS BANDE
   ================================================ */
.section-stats {
  background: var(--green-dark);
  padding: 4rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 3rem;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-sup {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--yellow);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--white);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================
   12. PROCESSUS HORIZONTAL
   ================================================ */
.section-process {
  background: var(--white);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}
.step-num {
  width: 46px;
  height: 46px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-dark);
}
.step-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.step-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================================
   13. CTA BANDE
   ================================================ */
.section-cta {
  background: linear-gradient(135deg, #0a3d0f 0%, #1b5e20 100%);
  padding: 5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER UNIFIÉ
   ================================================ */
.footer {
  background: var(--encre);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(102, 187, 106, 0.3) 50%,
    transparent 100%
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-logo {
  height: 100px;
  width: auto;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Correction pour l'affichage du footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-brand-name .brand-accent {
  color: var(--green-light);
}
.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li {
  list-style: none;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.footer-contact-info a {
  color: var(--green-light);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-info a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: var(--transition);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3.5rem 0 1.5rem;
  }
  .footer-container {
    padding: 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    gap: 1rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}
.breadcrumb-dark {
  color: rgba(255, 255, 255, 0.4);
}
.page-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.75rem 0 1.25rem;
}
.page-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
}
.about-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================================
   16. VISION & MISSION
   ================================================ */
.section-vm {
  padding: 5rem 0;
  background: var(--white);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vm-card {
  padding: 3rem 3.5rem;
}
.vm-vision {
  background: var(--green-dark);
  color: var(--white);
}
.vm-mission {
  background: var(--off-white);
}
.vm-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.vm-vision .vm-label {
  color: var(--yellow);
  opacity: 1;
}
.vm-mission .vm-label {
  color: var(--green-mid);
}
.vm-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 1.5rem;
  quotes: none;
  border: none;
  padding: 0;
}
.vm-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.mission-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.mission-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.mission-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.mission-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ================================================
   17. TIMELINE HISTOIRE
   ================================================ */
.section-timeline {
  padding: 5rem 0;
  background: var(--off-white);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 80px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 12px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-year {
  position: absolute;
  left: -80px;
  top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-mid);
  width: 60px;
  text-align: right;
  letter-spacing: 0.04em;
}
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-dark);
  z-index: 1;
}
.timeline-dot-active {
  background: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.15);
}
.timeline-dot-future {
  border-color: var(--border);
  background: var(--off-white);
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  flex: 1;
  transition: var(--transition);
}
.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.timeline-future {
  opacity: 0.7;
}
.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.timeline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}
.timeline-tag-future {
  background: var(--yellow-soft);
  color: #7b6000;
}

/* ================================================
   18. VALEURS
   ================================================ */
.section-valeurs {
  padding: 5rem 0;
  /* background: var(--white); */
}
.valeurs-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.valeurs-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 1rem 0 2rem;
}
.valeurs-quote {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--beige);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.quote-bar {
  width: 3px;
  min-height: 60px;
  background: var(--green-dark);
  border-radius: 10px;
  flex-shrink: 0;
}
.valeurs-quote p {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.valeurs-quote cite {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.valeurs-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.valeur-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.valeur-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.valeur-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.v-green {
  background: #e8f5e9;
}
.v-blue {
  background: #e3f2fd;
}
.v-yellow {
  background: #fffde7;
}
.v-orange {
  background: #fff3e0;
}
.v-red {
  background: #fce4ec;
}
.v-purple {
  background: #f3e5f5;
}
.valeur-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.valeur-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================================================
   19. VISITES OUVERTES
   ================================================ */
.section-visites {
  padding: 5rem 0;
  background: #F4FFF2;
}
.visites-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.visites-contenu {
  max-width: 500px;
}
.visites-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.visites-visuel {
  position: relative;
}
.visites-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}
.visites-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.visites-infos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.visite-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.visite-info:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.visite-icone {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.visite-texte strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.visite-texte p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ================================================
   20. ÉQUIPE
   ================================================ */
.section-equipe {
  padding: 5rem 0;
  background: var(--beige);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.team-featured {
  border-color: var(--green-dark);
  border-width: 2px;
  background: linear-gradient(160deg, #f0faf0, var(--white));
}
.team-avatar {
  font-size: 3rem;
  line-height: 1;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
}
.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}
.team-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.team-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.team-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.team-join {
  background: var(--green-dark);
  border-color: transparent;
  justify-content: center;
}
.team-join-icon {
  font-size: 2.5rem;
}
.team-join h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.team-join p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ================================================
   20. STATS SOBRE (À propos)
   ================================================ */
.section-about-stats {
  padding: 3.5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
}
.about-stats-label {
  padding-right: 3rem;
  border-right: 1px solid var(--border);
}
.about-stats-label h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.about-stats-label p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about-stat-box {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
}
.about-stat-box:last-child {
  border-right: none;
}
.asb-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.asb-num span {
  color: var(--green-light);
  font-size: 1.2rem;
}
.asb-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================
   21. FERME — HEADER
   ================================================ */
.ferme-header {
  min-height: 85vh;
  background: linear-gradient(
    140deg,
    #051a07 0%,
    #0d3511 40%,
    #1b5e20 80%,
    #2e7d32 100%
  );
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.ferme-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fh-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(102, 187, 106, 0.06);
}
.fh-c1 {
  width: 700px;
  height: 700px;
  right: -200px;
  top: -200px;
}
.fh-c2 {
  width: 400px;
  height: 400px;
  left: -100px;
  bottom: -150px;
}
.fh-leaf {
  position: absolute;
  font-size: 4rem;
  opacity: 0.07;
}
.fh-l1 {
  top: 15%;
  left: 8%;
  transform: rotate(-20deg);
}
.fh-l2 {
  bottom: 20%;
  right: 10%;
  transform: rotate(15deg);
  font-size: 6rem;
}
.fh-l3 {
  top: 55%;
  left: 45%;
  transform: rotate(-10deg);
  font-size: 3rem;
}
.ferme-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.ferme-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 214, 0, 0.12);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 214, 0, 0.25);
}
.ferme-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.ferme-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.ferme-header-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.ferme-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fmetric {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.fmetric:hover {
  background: rgba(255, 255, 255, 0.13);
}
.fmetric-main {
  padding: 2rem;
}
.fmetric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fmetric-sm {
  padding: 1.25rem 1rem;
}
.fmetric-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.fmetric-sm .fmetric-icon {
  font-size: 1.3rem;
}
.fmetric-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.fmetric-sm .fmetric-val {
  font-size: 1.4rem;
}
.fmetric-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fmetric-zero {
  background: var(--yellow);
  border-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.fmetric-zero-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.fmetric-zero-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}

/* ================================================
   22. RIBBON (commun Ferme + Vitroplants + Impact)
   ================================================ */
.ferme-ribbon,
.vp-ribbon,
.impact-ribbon {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow-x: auto;
}
.ferme-ribbon-inner,
.vp-ribbon-inner,
.impact-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: max-content;
  padding: 0 1.5rem;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  white-space: nowrap;
}
.ribbon-icon {
  font-size: 1.1rem;
}
.ribbon-text {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.ribbon-text strong {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.ribbon-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ================================================
   23. FERME — PILIERS
   ================================================ */
.section-piliers {
  background: var(--off-white);
}
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pilier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.pilier-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.pilier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
.pilier-solar {
  background: linear-gradient(135deg, #1a3700, #2e5e00);
}
.pilier-water {
  background: linear-gradient(135deg, #003366, #0066cc);
}
.pilier-waste {
  background: linear-gradient(135deg, #4a0033, #800055);
}
.pilier-monitor {
  background: linear-gradient(135deg, #1a1a4a, #333380);
}
.pilier-icon-wrap {
  font-size: 2.2rem;
}
.pilier-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}
.pilier-body {
  padding: 1.75rem 2rem;
}
.pilier-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pilier-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.pilier-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pilier-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.pilier-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 0.75rem;
  top: 0.1rem;
}

/* ================================================
   24. FERME — CARTE PLAN DU SITE
   ================================================ */
.section-carte {
  padding: 5rem 0;
  background: var(--beige);
}
.carte-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.map-placeholder {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  border-radius: var(--radius-lg);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 4px;
}
.map-zone {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-zone:hover {
  background: rgba(255, 255, 255, 0.22);
}
.map-zone span {
  font-size: 1.8rem;
}
.map-zone small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-align: center;
}
.mz-serres {
  grid-column: span 2;
}
.carte-infra {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.infra-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.infra-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.infra-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dot-green {
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.2);
}
.dot-yellow {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.2);
}
.dot-blue {
  background: #42a5f5;
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.2);
}
.infra-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.infra-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.infra-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
}
.infra-tag-yellow {
  background: var(--yellow-soft);
  color: #7b6000;
}
.infra-tag-blue {
  background: #e3f2fd;
  color: #1565c0;
}

.section-carte .section-carte-header {
  margin-bottom: 3rem;
}

.section-carte .section-carte-header .section-desc {
  max-width: 720px;
}

.carte-journey {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.map-journey {
  position: relative;
  min-height: 640px;
  padding: 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, #63AB45, transparent 28%),
    radial-gradient(circle at bottom right, #63AB45, transparent 30%),
    linear-gradient(180deg, #f9fcf8 0%, #eef8ef 100%);
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: 0 18px 50px rgba(12, 36, 18, 0.08);
  overflow: hidden;
}

.map-journey-path {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(27, 94, 32, 0.14) 13% 14%, transparent 14% 100%),
    linear-gradient(180deg, transparent 0 14%, rgba(27, 94, 32, 0.14) 14% 15%, transparent 15% 33%, rgba(27, 94, 32, 0.14) 33% 34%, transparent 34% 52%, rgba(27, 94, 32, 0.14) 52% 53%, transparent 53% 71%, rgba(27, 94, 32, 0.14) 71% 72%, transparent 72% 100%);
  opacity: 0.45;
  pointer-events: none;
}

.map-journey .map-zone {
  position: absolute;
  width: 170px;
  min-height: 120px;
  background: rgba(255, 255, 255, 0.88);
  color: #16301f;
  border-radius: 24px;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 12px 28px rgba(12, 36, 18, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
}

.map-journey .map-zone span {
  font-size: 2rem;
}

.map-journey .map-zone i {
  font-size: 1.75rem;
  color: #1b5e20;
}

.map-journey .map-zone strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.map-journey .map-zone small {
  color: #5d6f64;
  font-size: 0.72rem;
  margin-top: 0.25rem;
}

.mz-lab { top: 3rem; left: 2rem; }
.mz-serres { top: 2rem; right: 2.5rem; }
.mz-pepiniere { top: 16rem; left: 5rem; }
.mz-energie { top: 15rem; right: 4rem; }
.mz-demo { top: 29rem; left: 2.5rem; }
.mz-formation { top: 31rem; right: 2rem; }

.carte-journey-list {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.carte-journey-list .infra-item {
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
}

.carte-journey-list .infra-item h4 {
  font-size: 1rem;
}

.carte-journey-list .infra-item p {
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .carte-journey {
    grid-template-columns: 1fr;
  }

  .map-journey {
    min-height: 540px;
  }
}

@media (max-width: 768px) {
  .map-journey {
    min-height: auto;
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
  }

  .map-journey-path {
    display: none;
  }

  .map-journey .map-zone {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    text-align: left;
    padding: 1rem;
  }

  .map-journey .map-zone strong,
  .map-journey .map-zone small {
    margin-top: 0;
  }
}

/* ================================================
   25. FERME — POURQUOI ZÉRO CARBONE
   ================================================ */
.section-pourquoi {
  background: var(--white);
}
.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pourquoi-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pourquoi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.pourquoi-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.pq-eco {
  background: #e8f5e9;
}
.pq-conf {
  background: #e3f2fd;
}
.pq-clim {
  background: #f3e5f5;
}
.pq-comp {
  background: #fff3e0;
}
.pourquoi-card h3 {
  font-size: 1rem;
  font-weight: 700;
}
.pourquoi-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.pourquoi-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  align-self: flex-start;
}

/* ================================================
   26. VITROPLANTS — HEADER
   ================================================ */
.vp-header {
  min-height: 85vh;
  background:
    linear-gradient(rgba(26, 51, 0, 0.7), rgba(77, 140, 28, 0.5)),
    url("images/img9.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.vp-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vp-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.06);
}
.vp-c1 {
  width: 600px;
  height: 600px;
  right: -150px;
  top: -150px;
}
.vp-c2 {
  width: 350px;
  height: 350px;
  left: -80px;
  bottom: -120px;
}
.vp-leaf {
  position: absolute;
  opacity: 0.09;
}
.vp-l1 {
  font-size: 8rem;
  top: 10%;
  right: 5%;
  transform: rotate(20deg);
}
.vp-l2 {
  font-size: 5rem;
  bottom: 15%;
  left: 3%;
  transform: rotate(-15deg);
}
.vp-l3 {
  font-size: 3.5rem;
  top: 50%;
  left: 40%;
  transform: rotate(10deg);
}
.vp-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.vp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.vp-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.vp-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.vp-header-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.vp-kpis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vp-kpi {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.vp-kpi:hover {
  background: rgba(0, 0, 0, 0.28);
}
.vp-kpi-main {
  padding: 2rem;
}
.vp-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.vp-kpi-sm {
  padding: 1.25rem 1rem;
}
.vp-kpi-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.vp-kpi-sm .vp-kpi-icon {
  font-size: 1.2rem;
}
.vp-kpi-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.vp-kpi-sm .vp-kpi-val {
  font-size: 1.5rem;
}
.vp-kpi-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vp-kpi-zero {
  background: var(--yellow);
  border-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.vp-kpi-zero-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.vp-kpi-zero-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.4;
}

/* ================================================
   27. IMPACT HEADER
   ================================================ */
.impact-header {
  min-height: 85vh;
  background:
    linear-gradient(135deg, #0a1f0a99 0%, #1b5e2099 100%),
    url("images/img10.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.impact-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ih-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(102, 187, 106, 0.04);
  animation: pulseGlow 8s ease-in-out infinite;
}
.ih-c1 {
  width: 800px;
  height: 800px;
  right: -250px;
  top: -250px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(102, 187, 106, 0.04) 50%,
    rgba(102, 187, 106, 0) 100%
  );
  animation: floatRotate 12s linear infinite;
}
.ih-c2 {
  width: 500px;
  height: 500px;
  left: -150px;
  bottom: -200px;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.06) 0%,
    rgba(255, 214, 0, 0.03) 50%,
    rgba(255, 214, 0, 0) 100%
  );
  animation: floatRotate 15s linear infinite reverse;
}
.ih-c3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 60%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: pulseGlow 6s ease-in-out infinite;
}
.ih-icon {
  position: absolute;
  font-size: 4.5rem;
  opacity: 0.08;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  transition: var(--transition);
}
.ih-i1 {
  top: 15%;
  left: 8%;
  transform: rotate(-20deg);
  animation: iconFloat 7s ease-in-out infinite;
}
.ih-i2 {
  bottom: 20%;
  right: 10%;
  transform: rotate(15deg);
  animation: iconFloat 9s ease-in-out infinite 1s;
}
.ih-i3 {
  top: 55%;
  left: 45%;
  transform: rotate(-10deg);
  animation: iconFloat 8s ease-in-out infinite 2s;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.04;
    transform: scale(1);
  }
  50% {
    opacity: 0.08;
    transform: scale(1.05);
  }
}
@keyframes floatRotate {
  0% {
    transform: rotate(0deg) translateX(0px);
  }
  25% {
    transform: rotate(90deg) translateX(10px);
  }
  50% {
    transform: rotate(180deg) translateX(0px);
  }
  75% {
    transform: rotate(270deg) translateX(-10px);
  }
  100% {
    transform: rotate(360deg) translateX(0px);
  }
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
    opacity: 0.08;
  }
  33% {
    transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 5deg));
    opacity: 0.12;
  }
  66% {
    transform: translateY(-8px) rotate(calc(var(--rotation, 0deg) - 3deg));
    opacity: 0.06;
  }
}
.ih-i1 {
  --rotation: -20deg;
}
.ih-i2 {
  --rotation: 15deg;
}
.ih-i3 {
  --rotation: -10deg;
}
.impact-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.impact-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.impact-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.impact-header-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.impact-triple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.triple-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.triple-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}
.triple-card:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.triple-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  animation: iconBounce 4s ease-in-out infinite;
}
.triple-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff !important;
  line-height: 1;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.7),
    0 0 4px #fff,
    0 0 0.5px #fff;
  margin-bottom: 0.25rem;
}
.triple-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ================================================
   28. IMPACT TABS
   ================================================ */
.section-impact-tabs {
  background: var(--white);
}
.impact-tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.impact-tab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.impact-tab-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.itc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.itc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.itc-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.itc-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.itc-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.itc-metric {
  text-align: center;
  flex: 1;
}
.itc-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.itc-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.itc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.itc-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.itc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

/* ================================================
   29. PARTENAIRES
   ================================================ */
.section-partenaires {
  background: var(--off-white);
}
.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.partenaire-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.partenaire-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.partenaire-featured {
  border-color: var(--green-dark);
  transform: translateY(-8px);
}
.partenaire-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.pc-research {
  background: #e8f5e9;
}
.pc-intl {
  background: #e3f2fd;
}
.pc-coop {
  background: #fff8e1;
}
.pc-priv {
  background: #fff3e0;
}
.pc-gov {
  background: #fce4ec;
}
.partenaire-body {
  flex: 1;
}
.partenaire-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #28A83B;
  margin-bottom: 0.5rem;
}
.partenaire-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.partenaire-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.partenaire-logos {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.plogo {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--green-pale);
  color: #28A83B;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}
.partenaire-join {
  background: #28A83B;
  border-color: transparent;
  justify-content: center;
  text-align: center;
}
.partenaire-join-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.partenaire-join h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.partenaire-join p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* =====================================================
   styles-temoignages.css — FRESH'O VITROPLANTS
   Page Témoignages
   ===================================================== */

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

:root {
  --green-deep: #1f2937;
  --green-dark: #1b5e20;
  --green-mid: #2e7d32;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --yellow: #ffd600;
  --yellow-pale: #fffde7;
  --white: #ffffff;
  --off-white: #fafafa;
  --beige: #f5f0e8;
  --text: #0f1a10;
  --text-muted: #6b7280;
  --border: #e5e7eb;

  --font: "Poppins", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--font); */
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ================================================
   3. UTILITAIRES
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--beige);
}
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}

/* Navbar styles are centralized in components/navbar.css */

/* ================================================
   5. HERO
   ================================================ */
.hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0a3d0f 0%, #1b5e20 50%, #2e7d32 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   6. TITRES DE SECTION
   ================================================ */
h2.text-center {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2.text-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
}

h2.mb-3 {
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #28A83B;
  margin: 1.25rem 0 0.5rem;
}

h3:first-child {
  margin-top: 0;
}

/* ================================================
   7. GRILLES
   ================================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ================================================
   8. CARTES
   ================================================ */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.card:hover::after {
  transform: scaleX(1);
}

/* Titre de carte */
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

/* Contenu de carte */
.card-content {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.card-content p {
  margin-bottom: 0.6rem;
}
.card-content p:last-child {
  margin-bottom: 0;
}

.card-content ul {
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-content ul li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.88rem;
  line-height: 1.6;
}

.card-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

.card-content strong {
  color: var(--text);
  font-weight: 600;
}

/* ================================================
   9. CITATION / BLOCKQUOTE
   ================================================ */
blockquote {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  border-left: 3px solid var(--green-light);
  padding-left: 1rem;
  margin: 0.75rem 0 1rem;
  position: relative;
}

blockquote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--green-pale);
  position: absolute;
  top: -0.75rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

/* ================================================
   10. IMAGE PLACEHOLDER
   ================================================ */
.image-placeholder {
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  border-radius: var(--radius-md);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1rem;
  border: 1.5px dashed rgba(27, 94, 32, 0.2);
  transition: var(--transition);
}

.image-placeholder:hover {
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}

/* ================================================
   11. BADGES
   ================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid rgba(27, 94, 32, 0.15);
  margin-right: 0.4rem;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}

.badge-yellow {
  background: var(--yellow-pale);
  color: #7b5a00;
  border-color: rgba(255, 214, 0, 0.3);
}

/* ================================================
   12. STATS DE SATISFACTION
   ================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.stat-item:hover::before {
  transform: scaleX(1);
}
.stat-item:hover {
  background: var(--green-pale);
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1.4;
}

/* ================================================
   13. FORMULAIRE TÉMOIGNAGE
   ================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

/* Checkbox */
.form-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-dark);
  cursor: pointer;
  flex-shrink: 0;
}

/* ================================================
   14. BOUTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

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

/* ================================================
   15. FOOTER
   ================================================ */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

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

/* ================================================
   16. RESPONSIVE — TABLETTE
   ================================================ */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ================================================
   17. RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 768px) {
  /* Sections */
  .section {
    padding: 3rem 0;
  }

  /* Hero */
  .hero {
    min-height: 40vh;
    padding: 100px 0 3rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }

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

  /* Stats → 2 colonnes */
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 1.75rem 1rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }

  /* Cartes */
  .card {
    padding: 1.5rem;
  }

  /* Boutons */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ================================================
   18. RESPONSIVE — TRÈS PETIT
   ================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .card {
    padding: 1.25rem;
  }
  h2.text-center {
    font-size: 1.4rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none !important;
    border-top: 1px solid var(--border);
  }
  .stat-item:first-child {
    border-top: none;
  }
}
/* ================================================
   31. OPPORTUNITÉS
   ================================================ */
.section-opportunites {
  background: var(--white);
}
.opportunites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.opportunite-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.opportunite-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.opp-featured {
  border-color: var(--green-dark);
  transform: translateY(-8px);
}
.opp-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.opp-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.opp-tech {
  background: #e8f5e9;
}
.opp-comm {
  background: #fff8e1;
}
.opp-fin {
  background: #fce4ec;
}
.opportunite-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.opportunite-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.opp-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.opp-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.opp-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 0.75rem;
  top: 0.1rem;
}
.opp-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: auto;
  transition: var(--transition);
}
.opp-link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ================================================
   27. RESSOURCES — PAGE COMPLÈTE
   ================================================ */

/* --- Header Ressources --- */
.ressources-header {
  min-height: 80vh;
  background:
    linear-gradient(140deg, #383705 5%, #0b8f0dbb 75%, rgb(10, 80, 10) 100%),
    url("images/img11.avif");
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.ressources-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rh-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.rh-c1 {
  width: 700px;
  height: 700px;
  right: -200px;
  top: -250px;
}
.rh-c2 {
  width: 400px;
  height: 400px;
  left: -120px;
  bottom: -180px;
}
.rh-icon {
  position: absolute;
  opacity: 0.07;
  font-size: 5rem;
}
.rh-i1 {
  top: 12%;
  left: 5%;
  transform: rotate(-10deg);
}
.rh-i2 {
  bottom: 20%;
  right: 8%;
  font-size: 7rem;
}
.rh-i3 {
  top: 55%;
  left: 42%;
  font-size: 3.5rem;
}
.ressources-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.ressources-header-left {
  display: flex;
  flex-direction: column;
}
.ressources-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ressources-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.ressources-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: var(--yellow);
}
.ressources-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.ressources-header-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.ressources-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.reskpi {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.reskpi:hover {
  background: rgba(255, 255, 255, 0.14);
}
.reskpi-accent {
  background: rgba(255, 214, 0, 0.15);
  border-color: rgba(255, 214, 0, 0.3);
}
.reskpi-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.reskpi-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.reskpi-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
  line-height: 1.4;
}
.reskpi-accent .reskpi-val {
  color: var(--yellow);
}
.reskpi-accent .reskpi-label {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Ribbon Ressources --- */
.ressources-ribbon {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow-x: auto;
}
.ressources-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: max-content;
  padding: 0 1.5rem;
}

/* --- Documents principaux --- */
.section-ressources-docs {
  background: var(--white);
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.doc-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.doc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.doc-featured {
  border-color: var(--green-dark);
  transform: translateY(-8px);
}
.doc-featured:hover {
  transform: translateY(-13px);
}
.doc-header {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.dh-blue {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
}
.dh-green {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
}
.dh-yellow {
  background: linear-gradient(135deg, #f57f17, #ffc107);
}
.doc-icon-wrap {
  font-size: 2.5rem;
}
.doc-badge-top {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--yellow);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  align-self: flex-start;
}
.doc-body {
  padding: 1.5rem;
}
.doc-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.doc-type,
.doc-lang,
.doc-pages {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.doc-type {
  background: #e3f2fd;
  color: #1565c0;
}
.doc-lang {
  background: var(--green-pale);
  color: var(--green-dark);
}
.doc-pages {
  background: var(--beige);
  color: var(--text-muted);
}
.doc-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.doc-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.doc-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.doc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.doc-update {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.doc-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.75rem;
}

/* --- Documents spécialisés --- */
.section-docs-spec {
  background: var(--beige);
}
.docs-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.doc-spec-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.doc-spec-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: translateX(4px);
}
.dsc-left {
  flex-shrink: 0;
}
.dsc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.dsc-green {
  background: #e8f5e9;
}
.dsc-blue {
  background: #e3f2fd;
}
.dsc-yellow {
  background: #fffde7;
}
.dsc-purple {
  background: #f3e5f5;
}
.dsc-body {
  flex: 1;
}
.dsc-meta {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.dsc-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.dsc-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.dsc-dl {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-mid);
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 2px solid var(--green-pale);
  transition: var(--transition);
}
.dsc-dl:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* --- Galerie --- */
.section-galerie {
  background: var(--off-white);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.galerie-large {
  grid-column: span 2;
}
.galerie-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.galerie-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.galerie-placeholder {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.galerie-large .galerie-placeholder {
  height: 280px;
}
.gp-labo {
  background: linear-gradient(135deg, #1a237e, #3949ab);
}
.gp-serres {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
}
.gp-pepinieres {
  background: linear-gradient(135deg, #2e7d32, #81c784);
}
.gp-solaire {
  background: linear-gradient(135deg, #e65100, #ffb300);
}
.gp-demo {
  background: linear-gradient(135deg, #4a148c, #9c27b0);
}
.gp-formation {
  background: linear-gradient(135deg, #006064, #00acc1);
}
.gp-bg-text {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  position: absolute;
  bottom: -10px;
  right: 10px;
  pointer-events: none;
  user-select: none;
}
.galerie-large .gp-bg-text {
  font-size: 5.5rem;
}
.gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}
.galerie-card:hover .gp-overlay {
  opacity: 1;
}
.gp-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.25rem 0;
}
.gp-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.gp-icon {
  font-size: 1.4rem;
}
.galerie-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--white);
}
.gc-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-mid);
}
.gc-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}
.gc-count:hover {
  color: var(--green-dark);
}
.galerie-cta {
  text-align: center;
}

/* --- Actualités --- */
.section-actualites {
  background: var(--white);
}
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.actu-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: var(--transition);
}
.actu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.actu-featured {
  background: var(--green-dark);
  border-color: transparent;
}
.actu-featured h3,
.actu-featured p,
.actu-featured .actu-category {
  color: rgba(255, 255, 255, 0.9);
}
.actu-featured .actu-date-badge {
  background: var(--yellow);
  color: var(--text);
}
.actu-featured .actu-tags span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}
.actu-featured .actu-link {
  color: var(--yellow);
}
.actu-more {
  background: linear-gradient(135deg, #f0faf0, #e8f5e9);
  justify-content: center;
  align-items: center;
  text-align: center;
  border-style: dashed;
}
.actu-more h3 {
  font-size: 1.1rem;
}
.actu-more p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.actu-more-icon {
  font-size: 2.5rem;
}
.actu-date-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.actu-icon {
  font-size: 1.8rem;
}
.actu-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
}
.actu-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.actu-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.actu-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.actu-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.actu-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-top: 0.25rem;
}
.actu-link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* --- Vidéos --- */
.section-videos {
  background: var(--beige);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.video-main {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
.video-main .video-thumb {
  height: 260px;
}
.video-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-pres {
  background: linear-gradient(135deg, #1b5e20, #388e3c);
}
.vt-temoignage {
  background: linear-gradient(135deg, #e65100, #f57c00);
}
.vt-labo {
  background: linear-gradient(135deg, #1565c0, #1976d2);
}
.vt-impact {
  background: linear-gradient(135deg, #4a148c, #7b1fa2);
}
.vt-bg-text {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.1em;
  user-select: none;
}
.vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-card:hover .vt-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-dark);
  transition: var(--transition);
  padding-left: 4px;
}
.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--white);
}
.vt-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.video-info {
  padding: 1.25rem 1.5rem;
}
.video-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.video-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.35rem 0 0.4rem;
  line-height: 1.35;
}
.video-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Newsletter Ressources --- */
.section-newsletter {
  background: linear-gradient(135deg, #f3e5f5, #ede7f6);
  padding: 4rem 0;
  border-top: 1px solid rgba(123, 31, 162, 0.1);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.newsletter-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.newsletter-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.newsletter-left h2 em {
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: #7b1fa2;
}
.newsletter-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 360px;
}
.newsletter-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
}
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.9rem;
  min-width: 260px;
  background: transparent;
}
.newsletter-form .btn {
  border-radius: 100px;
  margin: 4px;
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
}
.newsletter-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ================================================
   RESPONSIVE GLOBAL (toutes pages)
   ================================================ */
@media (max-width: 1024px) {
  .pillar-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pourquoi-grid,
  .vp-science-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .varietes-grid,
  .cible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ferme-header-grid,
  .vp-header-grid,
  .impact-header-grid,
  .ressources-header-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .impact-triple,
  .ressources-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-tabs-grid {
    grid-template-columns: 1fr;
  }
  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opportunites-grid {
    grid-template-columns: 1fr;
  }
  .docs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .doc-featured {
    transform: none;
  }
  .video-main {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .video-main .video-thumb {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .navbar-nav,
  .btn-cta-nav {
    display: none;
  }
  .section {
    padding: 3.5rem 0;
  }
  .pillar-grid,
  .team-grid,
  .cible-grid,
  .varietes-grid,
  .vp-science-grid,
  .pourquoi-grid,
  .docs-spec-grid,
  .docs-grid,
  .actu-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .galerie-grid {
    grid-template-columns: 1fr;
  }
  .galerie-large {
    grid-column: span 1;
  }
  .atouts-layout,
  .valeurs-layout,
  .carte-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
  }
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  .process-steps::before {
    display: none;
  }
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
  .stat-sep {
    width: 40px;
    height: 1px;
  }
  .newsletter-inner {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .newsletter-input {
    min-width: 0;
    border-radius: var(--radius-md);
  }
  .newsletter-form .btn {
    border-radius: var(--radius-md);
    margin: 0;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .about-stats-label {
    grid-column: span 2;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }
  .ferme-metrics .fmetric-row {
    grid-template-columns: 1fr;
  }
  .vp-kpi-row {
    grid-template-columns: 1fr;
  }
  .doc-spec-card {
    flex-direction: column;
  }
  .dsc-dl {
    align-self: flex-start;
  }
  .partenaires-grid {
    grid-template-columns: 1fr;
  }
  .impact-temoignages-grid {
    grid-template-columns: 1fr;
  }
  .impact-tabs-grid {
    grid-template-columns: 1fr;
  }
  .opportunites-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Ribbon Ressources --- */
.ressources-ribbon {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow-x: auto;
}
.ressources-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: max-content;
  padding: 0 1.5rem;
}

/* --- Documents principaux --- */
.section-ressources-docs {
  background: var(--white);
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.doc-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.doc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.doc-featured {
  border-color: var(--green-dark);
  transform: translateY(-8px);
}
.doc-featured:hover {
  transform: translateY(-13px);
}
.doc-header {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.dh-blue {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
}
.dh-green {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
}
.dh-yellow {
  background: linear-gradient(135deg, #f57f17, #ffc107);
}
.doc-icon-wrap {
  font-size: 2.5rem;
}
.doc-badge-top {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--yellow);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  align-self: flex-start;
}
.doc-body {
  padding: 1.5rem;
}
.doc-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.doc-type,
.doc-lang,
.doc-pages {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.doc-type {
  background: #e3f2fd;
  color: #1565c0;
}
.doc-lang {
  background: var(--green-pale);
  color: var(--green-dark);
}
.doc-pages {
  background: var(--beige);
  color: var(--text-muted);
}
.doc-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.doc-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.doc-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.doc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.doc-update {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.doc-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.75rem;
}

/* --- Documents spécialisés --- */
.section-docs-spec {
  background: var(--beige);
}
.docs-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.doc-spec-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.doc-spec-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: translateX(4px);
}
.dsc-left {
  flex-shrink: 0;
}
.dsc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.dsc-green {
  background: #e8f5e9;
}
.dsc-blue {
  background: #e3f2fd;
}
.dsc-yellow {
  background: #fffde7;
}
.dsc-purple {
  background: #f3e5f5;
}
.dsc-body {
  flex: 1;
}
.dsc-meta {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.dsc-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.dsc-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.dsc-dl {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-mid);
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 2px solid var(--green-pale);
  transition: var(--transition);
}
.dsc-dl:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* --- Galerie --- */
.section-galerie {
  background: var(--off-white);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.galerie-large {
  grid-column: span 2;
}
.galerie-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.galerie-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.galerie-placeholder {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.galerie-large .galerie-placeholder {
  height: 280px;
}
.gp-labo {
  background: linear-gradient(135deg, #1a237e, #3949ab);
}
.gp-serres {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
}
.gp-pepinieres {
  background: linear-gradient(135deg, #2e7d32, #81c784);
}
.gp-solaire {
  background: linear-gradient(135deg, #e65100, #ffb300);
}
.gp-demo {
  background: linear-gradient(135deg, #4a148c, #9c27b0);
}
.gp-formation {
  background: linear-gradient(135deg, #006064, #00acc1);
}
.gp-bg-text {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  position: absolute;
  bottom: -10px;
  right: 10px;
  pointer-events: none;
  user-select: none;
}
.galerie-large .gp-bg-text {
  font-size: 5.5rem;
}
.gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}
.galerie-card:hover .gp-overlay {
  opacity: 1;
}
.gp-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.25rem 0;
}
.gp-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.gp-icon {
  font-size: 1.4rem;
}
.galerie-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--white);
}
.gc-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-mid);
}
.gc-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}
.gc-count:hover {
  color: var(--green-dark);
}
.galerie-cta {
  text-align: center;
}

/* --- Actualités --- */
.section-actualites {
  background: var(--white);
}
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.actu-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: var(--transition);
}
.actu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.actu-featured {
  background: var(--green-dark);
  border-color: transparent;
}
.actu-featured h3,
.actu-featured p,
.actu-featured .actu-category {
  color: rgba(255, 255, 255, 0.9);
}
.actu-featured .actu-date-badge {
  background: var(--yellow);
  color: var(--text);
}
.actu-featured .actu-tags span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}
.actu-featured .actu-link {
  color: var(--yellow);
}
.actu-more {
  background: linear-gradient(135deg, #f0faf0, #e8f5e9);
  justify-content: center;
  align-items: center;
  text-align: center;
  border-style: dashed;
}
.actu-more h3 {
  font-size: 1.1rem;
}
.actu-more p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.actu-more-icon {
  font-size: 2.5rem;
}
.actu-date-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.actu-icon {
  font-size: 1.8rem;
}
.actu-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
}
.actu-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.actu-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.actu-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.actu-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.actu-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-top: 0.25rem;
}
.actu-link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* --- Vidéos --- */
.section-videos {
  background: var(--beige);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.video-main {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
.video-main .video-thumb {
  height: 260px;
}
.video-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-pres {
  background: linear-gradient(135deg, #1b5e20, #388e3c);
}
.vt-temoignage {
  background: linear-gradient(135deg, #e65100, #f57c00);
}
.vt-labo {
  background: linear-gradient(135deg, #1565c0, #1976d2);
}
.vt-impact {
  background: linear-gradient(135deg, #4a148c, #7b1fa2);
}
.vt-bg-text {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.1em;
  user-select: none;
}
.vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-card:hover .vt-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-dark);
  transition: var(--transition);
  padding-left: 4px;
}
.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--white);
}
.vt-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.video-info {
  padding: 1.25rem 1.5rem;
}
.video-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.video-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.35rem 0 0.4rem;
  line-height: 1.35;
}
.video-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Newsletter Ressources --- */
.section-newsletter {
  background: rgb(18, 57, 11);
  padding: 4rem 0;
  border-top: 1px solid rgba(123, 31, 162, 0.1);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.newsletter-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.newsletter-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.newsletter-left h2 em {
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: #7b1fa2;
}
.newsletter-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 360px;
}
.newsletter-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
}
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.9rem;
  min-width: 260px;
  background: transparent;
}
.newsletter-form .btn {
  border-radius: 100px;
  margin: 4px;
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
}
.newsletter-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ================================================
   RESPONSIVE GLOBAL (toutes pages)
   ================================================ */
@media (max-width: 1024px) {
  .pillar-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pourquoi-grid,
  .vp-science-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .varietes-grid,
  .cible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ferme-header-grid,
  .vp-header-grid,
  .impact-header-grid,
  .ressources-header-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .impact-triple,
  .ressources-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-tabs-grid {
    grid-template-columns: 1fr;
  }
  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opportunites-grid {
    grid-template-columns: 1fr;
  }
  .docs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .doc-featured {
    transform: none;
  }
  .video-main {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .video-main .video-thumb {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .navbar-nav,
  .btn-cta-nav {
    display: none;
  }
  .section {
    padding: 3.5rem 0;
  }
  .pillar-grid,
  .team-grid,
  .cible-grid,
  .varietes-grid,
  .vp-science-grid,
  .pourquoi-grid,
  .docs-spec-grid,
  .docs-grid,
  .actu-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .galerie-grid {
    grid-template-columns: 1fr;
  }
  .galerie-large {
    grid-column: span 1;
  }
  .atouts-layout,
  .valeurs-layout,
  .carte-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
  }
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  .process-steps::before {
    display: none;
  }
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
  .stat-sep {
    width: 40px;
    height: 1px;
  }
  .newsletter-inner {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .newsletter-input {
    min-width: 0;
    border-radius: var(--radius-md);
  }
  .newsletter-form .btn {
    border-radius: var(--radius-md);
    margin: 0;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .about-stats-label {
    grid-column: span 2;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }
  .ferme-metrics .fmetric-row {
    grid-template-columns: 1fr;
  }
  .vp-kpi-row {
    grid-template-columns: 1fr;
  }
  .doc-spec-card {
    flex-direction: column;
  }
  .dsc-dl {
    align-self: flex-start;
  }
  .partenaires-grid {
    grid-template-columns: 1fr;
  }
  .impact-temoignages-grid {
    grid-template-columns: 1fr;
  }
  .impact-tabs-grid {
    grid-template-columns: 1fr;
  }
  .opportunites-grid {
    grid-template-columns: 1fr;
  }

  /* VITROPLANTS - Science cards mobile optimisation */
  .vp-science-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-science-card {
    padding: 1.5rem 1rem;
    text-align: center;
    min-height: 180px;
  }
  .vp-science-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .vp-science-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .vsc-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .vsc-stat {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
}

/* ================================================
   27. VITROPLANTS — SCIENCE CARDS
   ================================================ */
.section-vp-science {
  background: var(--white);
}
.vp-science-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.vp-science-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vp-science-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.vsc-1::after {
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}
.vsc-2::after {
  background: linear-gradient(90deg, #1565c0, #42a5f5);
}
.vsc-3::after {
  background: linear-gradient(90deg, #e65100, #ffa726);
}
.vsc-4::after {
  background: linear-gradient(90deg, #6a1b9a, #ce93d8);
}
.vp-science-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.vsc-icon {
  font-size: 2rem;
}
.vp-science-card h3 {
  font-size: 1rem;
  font-weight: 700;
}
.vp-science-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.vsc-stat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: auto;
}

/* ================================================
   28. VITROPLANTS — VARIÉTÉS (CORRIGÉ AVEC IMAGES)
   ================================================ */
.section-varietes {
  background: var(--beige, #f9f9f9);
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  background: #66bb6a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  color: #1b5e20;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}
.section-title em {
  color: #ffd600;
  font-style: normal;
}
.section-desc {
  color: #212121;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.varietes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.variete-card {
  background: var(--white, #ffffff);
  border: 2px solid var(--border, #e0e0e0);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.variete-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: transparent;
}

.variete-featured {
  border-color: var(--green-dark, #1b5e20);
  transform: translateY(-8px);
}
.variete-featured:hover {
  transform: translateY(-12px);
}

/* CONTENEUR DE L'IMAGE */
.variete-header {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* VOS DÉGRADÉS (Arrière-plan de chargement) */
.vh-green {
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}
.vh-dark {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}
.vh-yellow {
  background: linear-gradient(135deg, #fff176, #ffee58);
}
.vh-bio {
  background: linear-gradient(135deg, #dcedc8, #c5e1a5);
}

/* L'IMAGE */
.variete-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* LE BADGE SUR L'IMAGE */
.variete-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text, #212121);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-white {
  background: #ffffff;
  color: var(--green-dark, #1b5e20);
}
.badge-dark {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}
.badge-bio {
  background: var(--green-pale, #c8e6c9);
  color: var(--green-dark, #1b5e20);
}

/* LE TEXTE EN DESSOUS */
.variete-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.variete-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: var(--green-dark, #1b5e20);
}
.variete-body p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted, #555);
}

/* LES PETITS TAGS */
.variete-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.variete-tags span {
  font-size: 0.75rem;
  background: var(--beige, #f5f5f5);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border, #eee);
  font-weight: 500;
}
.variete-header picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.variete-header picture .variete-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* =====================================================
   styles-contact.css — FRESH'O VITROPLANTS
   Page Contact & Partenaires
   ===================================================== */

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

:root {
  --green-deep: #1f2937;
  --green-dark: #1b5e20;
  --green-mid: #2e7d32;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --yellow: #ffd600;
  --yellow-pale: #fffde7;
  --blue-mid: #1565c0;
  --blue-pale: #e3f2fd;
  --white: #ffffff;
  --off-white: #fafafa;
  --beige: #f5f0e8;
  --text: #0f1a10;
  --text-muted: #6b7280;
  --border: #e5e7eb;

  --font: "Poppins", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--font); */
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}

/* ================================================
   3. LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  background: var(--white);
}
.section-contact-form {
  background: var(--off-white);
}
.section-profils {
  background: var(--white);
}
.section-faq-contact {
  background: var(--beige);
}
.section-localisation {
  background: var(--off-white);
}

/* ================================================
   4. TYPOGRAPHIE COMMUNE
   ================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #28A83B;
  background: var(--green-pale);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section-title em {
  color: var(--green-mid);
  font-style: italic;
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin: 0.5rem auto 0;
}

/* ================================================
   5. NAVBAR
   ================================================ */
/* ================================================
   6. SECTION FORMULAIRE + SIDEBAR
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  justify-items: center;
  padding-top: 5rem; /* compense la navbar fixe */
}

/* --- Colonne formulaire --- */
.contact-form-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 800px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* Sélecteur de profil */
.form-type-selector {
  margin-bottom: 0.25rem;
}

.form-type-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.form-type-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.form-type-btn {
  position: relative;
  cursor: pointer;
}

.form-type-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-type-btn span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}

.form-type-btn input:checked + span {
  background: var(--green-pale);
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.form-type-btn span:hover {
  border-color: var(--green-light);
  color: var(--green-dark);
}

/* Grille 2 colonnes dans le formulaire */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-required {
  color: #e53935;
}

.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-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 1rem center;
  padding-right: 2.5rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-consent {
  margin-top: 0.25rem;
}

/* Messages d'erreur et validation */
.form-error {
  color: #e53935;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
}

.form-control.error,
.form-select.error {
  border-color: #e53935;
  background-color: #fef2f2;
}

.form-control.error:focus,
.form-select.error:focus {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Actions du formulaire */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  color: var(--green-dark);
  font-weight: 600;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-light);
  border-top: 2px solid var(--green-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
}

.sidebar-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.sidebar-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
}

.sidebar-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.sidebar-content {
  padding: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
}

.contact-value:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Horaires */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.hours-day {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.hours-time {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* Sidebar CTA */
.sidebar-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.sidebar-cta h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.sidebar-cta p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-sidebar {
    order: -1;
  }
  
  .sidebar-header {
    padding: 1rem;
  }
  
  .sidebar-content {
    padding: 1rem;
  }
  
  .contact-item {
    padding: 0.5rem 0;
  }
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-dark);
  cursor: pointer;
}

.form-check span {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-submit {
  align-self: flex-start;
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

/* ================================================
   7. SIDEBAR CONTACT
   ================================================ */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-featured {
  border-color: var(--green-dark);
  border-width: 2px;
}

.cic-badge-top {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cic-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.cic-green {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.cic-dark {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}
.cic-dark h3 {
  color: var(--white);
}

.cic-icon {
  font-size: 1.6rem;
}

.cic-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.cic-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cic-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cic-detail {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cic-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
}

.cic-detail span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cic-detail a {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
  transition: var(--transition);
}

.cic-detail a:hover {
  text-decoration: underline;
}

/* Départements */
.contact-depts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-depts-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.dept-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dept-item:last-child {
  margin-bottom: 0;
}

.dept-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dept-commercial {
  background: #e3f2fd;
}
.dept-technique {
  background: #e8f5e9;
}
.dept-presse {
  background: #fff3e0;
}

.dept-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dept-body strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.dept-body span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.dept-body a {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  transition: var(--transition);
}

.dept-body a:hover {
  text-decoration: underline;
}

/* ================================================
   8. PROFILS COLLABORATION
   ================================================ */
.profils-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.profil-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.profil-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.profil-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.profil-green::before {
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
}
.profil-blue::before {
  background: linear-gradient(90deg, #1565c0, #42a5f5);
}
.profil-orange::before {
  background: linear-gradient(90deg, #e65100, #ffa726);
}
.profil-purple::before {
  background: linear-gradient(90deg, #4a148c, #9c27b0);
}

.profil-icon-wrap {
  font-size: 2rem;
}

.profil-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  pointer-events: none;
}

.profil-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.25rem;
  color: var(--text);
}

.profil-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.profil-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.profil-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

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

/* ================================================
   9. FAQ CONTACT
   ================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: translateY(-3px);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.faq-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-q h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.faq-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-table {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.6rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  border: 1px solid var(--border);
}

.faq-row span {
  color: var(--text-muted);
}
.faq-row strong {
  color: var(--green-dark);
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.faq-list span {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.faq-list span::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 0.75rem;
}

/* ================================================
   10. LOCALISATION
   ================================================ */
.localisation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.localisation-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-visual {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.map-bg-label {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.map-dakar {
  top: 45%;
  left: 20%;
}
.map-thies {
  top: 35%;
  left: 40%;
}
.map-mali {
  top: 15%;
  left: 60%;
}

.map-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
  animation: pulseDot 2.5s infinite;
}

.map-pin-green {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 214, 0, 0.2);
}
.map-pin-yellow {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.map-pin-label {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
  text-align: center;
}

.map-pin-label strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.map-pin-label span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Infos localisation */
.localisation-infos {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.loc-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.loc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  animation: pulseDot 2.5s infinite;
}

.dot-green {
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.2);
}
.dot-yellow {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.2);
}
.dot-blue {
  background: #42a5f5;
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.2);
}

.loc-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.loc-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.loc-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.infra-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--green-pale);
  color: var(--green-dark);
}

.infra-tag-yellow {
  background: var(--yellow-pale);
  color: #7b5a00;
}
.infra-tag-blue {
  background: var(--blue-pale);
  color: var(--blue-mid);
}

/* ================================================
   11. CTA FINAL
   ================================================ */

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================
   12. BOUTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-icon {
  transition: transform var(--transition);
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ================================================
   13. FOOTER
   ================================================ */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   14. RESPONSIVE — TABLETTE (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .contact-depts {
    grid-column: span 2;
  }

  .profils-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .localisation-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ================================================
   15. RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-liens,
  .btn-nav {
    display: none;
  }

  /* Logo plus petit sur mobile pour ne pas être caché par le menu burger */
  .marque-logo {
    height: 48px !important;
    width: auto !important;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  /* Contact layout */
  .contact-layout {
    padding-top: 4rem;
  }

  .contact-form-col {
    padding: 1.5rem;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-depts {
    grid-column: span 1;
  }

  /* Formulaire */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Profils */
  .profils-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ================================================
   16. RESPONSIVE — TRÈS PETIT (≤480px)
   ================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .form-type-btns {
    gap: 0.4rem;
  }
  .form-type-btn span {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .btn {
    width: 100%;
  }
  .cta-actions .btn {
    max-width: 320px;
  }

  .faq-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

/* =====================================================
   styles1.css — FRESH'O VITROPLANTS
   FAQ Page
   ===================================================== */

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

:root {
  --green-deep: #1f2937;
  --green-dark: #1b5e20;
  --green-mid: #2e7d32;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --yellow: #ffd600;
  --white: #ffffff;
  --off-white: #fafafa;
  --beige: #f5f0e8;
  --text: #0f1a10;
  --text-muted: #6b7280;
  --border: #e5e7eb;

  --font: "Poppins", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--font); */
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ================================================
   3. UTILITAIRES
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--beige);
}
.text-center {
  text-align: center;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-3 {
  margin-top: 1.5rem;
}

/* ================================================
   4. NAVBAR
   ================================================ */
.navbar-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  list-style: none;
}

.navbar-nav li a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}

.navbar-nav li a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.navbar-cta {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.navbar-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ================================================
   5. HERO
   ================================================ */
.hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0a3d0f 0%, #1b5e20 50%, #2e7d32 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   6. TITRES DE SECTION
   ================================================ */
h2.text-center {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2.text-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
}

/* ================================================
   7. GRILLE FAQ
   ================================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ================================================
   8. CARTES FAQ
   ================================================ */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.card-title::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-content {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.card-content p {
  margin-bottom: 0.75rem;
}

.card-content p:last-child {
  margin-bottom: 0;
}

.card-content ul,
.card-content ol {
  padding-left: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-content ul li,
.card-content ol li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.88rem;
  line-height: 1.6;
}

.card-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.8rem;
}

.card-content ol {
  counter-reset: faq-counter;
}

.card-content ol li {
  counter-increment: faq-counter;
}

.card-content ol li::before {
  content: counter(faq-counter) ".";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.8rem;
}

.card-content strong {
  color: var(--text);
  font-weight: 600;
}

/* ================================================
   9. SECTION CONTACT FINAL
   ================================================ */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

/* ================================================
   10. FOOTER
   ================================================ */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-section p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer-section ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-section ul a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   11. RESPONSIVE
   ================================================ */

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile */
/* Hero */
  .hero {
    min-height: 40vh;
    padding: 100px 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  /* Grille FAQ : 1 colonne sur mobile */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* Cartes */
  .card {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 0.95rem;
  }

  /* Boutons contact */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Très petit écran */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .card {
    padding: 1.25rem;
  }

  h2.text-center {
    font-size: 1.4rem;
  }
}

/* ================================================
   VITROPLANTS SECTIONS
   ================================================ */

/* Processus */
.section-vp-process {
  background: var(--white);
  padding: 6rem 0;
}

.vp-process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.vp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
}

.vp-step-visual {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.vp-step-visual:hover {
  transform: translateY(-5px);
}

.vs-1 {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}
.vs-2 {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}
.vs-3 {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}
.vs-4 {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}
.vs-5 {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.vs-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.vs-num {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--encre);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.vp-step-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.75rem;
}

.vp-step-body p {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.6;
  max-width: 180px;
}

.vp-step-arrow {
  font-size: 2rem;
  color: var(--vert-clair);
  font-weight: 700;
  flex-shrink: 0;
}

/* Qualité */
.section-vp-qualite {
  background: #F4FFF2;
  padding: 6rem 0;
}

.qualite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.qualite-card {
  background: var(--white);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  border: 1.5px solid var(--gris-clair);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.qualite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-md);
}

.qualite-featured {
  background: var(--vert-foret);
  color: var(--white);
  border-color: var(--vert-foret);
  grid-column: span 2;
}

.qualite-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.qc-green {
  background: var(--vert-pale);
}
.qc-blue {
  background: #dbeafe;
}
.qc-yellow {
  background: var(--banane-pale);
}
.qc-dark {
  background: rgba(255, 255, 255, 0.1);
}

.qualite-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 1.5rem;
}

.qualite-featured h3 {
  color: var(--white);
}

.qualite-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qualite-list li {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.qualite-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vert-feuille);
  font-weight: 700;
}

.qualite-featured .qualite-list li {
  color: rgba(255, 255, 255, 0.8);
}

.qualite-featured .qualite-list li::before {
  color: var(--banane);
}

.qualite-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--banane);
  color: var(--encre);
  padding: 0.5rem 1rem;
  border-radius: var(--rayon-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Témoignages */
.section-vp-temoignages {
  background: var(--white);
  padding: 6rem 0;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.temoignage-card {
  background: var(--white);
  border: 1.5px solid var(--gris-clair);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-md);
}

.temoignage-featured {
  background: var(--vert-foret);
  color: var(--white);
  border-color: var(--vert-foret);
  transform: translateY(-8px);
}

.temoignage-quote {
  font-size: 4rem;
  color: var(--vert-clair);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--fonte-titre);
}

.temoignage-featured .temoignage-quote {
  color: var(--banane);
}

.temoignage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gris-chaud);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.temoignage-featured p {
  color: rgba(255, 255, 255, 0.8);
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.temoignage-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.temoignage-featured .temoignage-avatar {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.temoignage-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.25rem;
}

.temoignage-featured h5 {
  color: var(--white);
}

.temoignage-info span {
  font-size: 0.8rem;
  color: var(--gris-moyen);
}

.temoignage-featured span {
  color: rgba(255, 255, 255, 0.6);
}

/* ================================================
   VARIÉTÉS - CATALOGUE
   ================================================ */
.section-varietes {
  background: var(--white);
  padding: 6rem 0;
}

.varietes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  
}

.variete-card {
  background: var(--white);
  border: 1.5px solid var(--gris-clair);
  border-radius: var(--rayon-lg);
  border : 1px solid #28A83B ;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.variete-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-md);
}

.variete-featured {
  border-color: var(--vert-feuille);
  transform: translateY(-8px);
  box-shadow: var(--ombre-lg);
}

.variete-top-label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--banane);
  color: var(--encre);
  padding: 0.4rem 0.8rem;
  border-radius: var(--rayon-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.variete-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vh-green {
  background: var(--vert-pale);
}
.vh-dark {
  background: var(--vert-foret);
  color: var(--white);
}
.vh-yellow {
  background: var(--banane-pale);
}
.vh-bio {
  background: #dcfce7;
}

.variete-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.variete-image {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.variete-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.variete-img:hover {
  transform: scale(1.1);
}

.variete-fallback {
  display: none;
  font-size: 2rem;
  color: var(--encre);
}

.vh-dark .variete-fallback {
  color: var(--white);
}

.variete-type-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border-radius: var(--rayon-sm);
  background: rgba(13, 61, 31, 0.1);
  color: var(--vert-foret);
}

.badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.badge-dark {
  background: rgba(13, 61, 31, 0.8);
  color: var(--white);
}

.badge-bio {
  background: rgba(46, 139, 74, 0.2);
  color: var(--vert-foret);
}

.variete-body {
  padding: 1.5rem;
  padding-top: 0;
  
}

.variete-body h3 {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 700;
  color: #;
  margin-bottom: 1rem;
}

.variete-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vspec {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.vspec-key {
  font-size: 0.75rem;
  color: var(--gris-moyen);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.vspec-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--encre);
}

.variete-body p {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.variete-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variete-tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  background: #63AB45;
  border-radius: var(--rayon-sm);
  color: #ffff;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .varietes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .varietes-grid {
    grid-template-columns: 1fr;
  }

  .variete-specs {
    gap: 0.5rem;
  }

  .vspec {
    min-width: 80px;
  }
}
@media (max-width: 1024px) {
  .vp-process-steps {
    flex-direction: column;
    gap: 3rem;
  }

  .vp-step-arrow {
    transform: rotate(90deg);
  }

  .qualite-grid {
    grid-template-columns: 1fr;
  }

  .qualite-featured {
    grid-column: span 1;
  }

  .temoignages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .temoignages-grid {
    grid-template-columns: 1fr;
  }

  .vp-step {
    min-width: 160px;
  }

  .vp-step-visual {
    width: 100px;
    height: 100px;
  }


/* ================================================
   VARIÉTÉS - CATALOGUE (SCOPED OVERRIDE)
   ================================================ */
.section-varietes.catalog-varietes {
  background: linear-gradient(180deg, #f6fbf6 0%, #ffffff 100%);
  padding: 5.5rem 0;
}

.section-varietes.catalog-varietes .catalog-header {
  margin-bottom: 3.25rem;
}

.section-varietes.catalog-varietes .catalog-varietes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.section-varietes.catalog-varietes .catalog-variete-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(12, 36, 18, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.section-varietes.catalog-varietes .catalog-variete-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(12, 36, 18, 0.14);
}

.section-varietes.catalog-varietes .variete-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  height: auto;
  overflow: hidden;
}

.section-varietes.catalog-varietes .variete-header picture {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 235px;
  display: block;
  z-index: 0;
}

.section-varietes.catalog-varietes .variete-image {
  display: block;
  width: 100%;
  height: 235px;
  overflow: hidden;
}

.section-varietes.catalog-varietes .variete-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.3s ease;
}

.section-varietes.catalog-varietes .variete-img:hover {
  transform: scale(1.03);
}

.section-varietes.catalog-varietes .variete-type-badge {
  align-self: flex-start;
  margin: -1.05rem 1rem 0;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #1b5e20;
  border: 1px solid rgba(27, 94, 32, 0.08);
  box-shadow: 0 10px 24px rgba(15, 26, 16, 0.08);
}

.section-varietes.catalog-varietes .badge-dark {
  color: #0f1a10;
}

.section-varietes.catalog-varietes .badge-white {
  color: #1b5e20;
}

.section-varietes.catalog-varietes .catalog-variete-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.section-varietes.catalog-varietes .variete-headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.section-varietes.catalog-varietes .variete-headline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #16301f;
}

.section-varietes.catalog-varietes .variete-kpi {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e7d32;
  white-space: nowrap;
}

.section-varietes.catalog-varietes .catalog-variete-body > p {
  margin-bottom: 1rem;
  color: #4d5a50;
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-varietes.catalog-varietes .variete-tags {
  gap: 0.5rem;
}

.section-varietes.catalog-varietes .variete-tags span {
  background: #1f5c31;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

@media (max-width: 1024px) {
  .section-varietes.catalog-varietes .catalog-varietes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section-varietes.catalog-varietes .catalog-varietes-grid {
    grid-template-columns: 1fr;
  }

  .section-varietes.catalog-varietes .variete-image {
    height: 220px;
  }

  .section-varietes.catalog-varietes .variete-headline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}
  .vs-emoji {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3.5rem 0 1.5rem;
  }
  .footer-container {
    padding: 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    gap: 1rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =====================================================
   STYLES SPÉCIFIQUES FERME ZÉRO CARBONE
   ===================================================== */

/* ===== FERME HERO ===== */
.ferme-hero {
  min-height: 100vh;
  background: linear-gradient(
    150deg,
    #071a0a 0%,
    #0d2e11 25%,
    #1a5e1f 60%,
    #0f3d14 100%
  );
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.fh-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.fh-o1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(102, 187, 106, 0.1) 0%,
    transparent 70%
  );
  animation: orbFloat 14s ease-in-out infinite;
}
.fh-o2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.07) 0%,
    transparent 70%
  );
  animation: orbFloat 11s ease-in-out infinite 5s;
}
.fh-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  position: relative;
}
.bc-light a {
  color: rgba(255, 255, 255, 0.5);
}
.bc-light a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.bc-light svg {
  color: rgba(255, 255, 255, 0.3);
}
.bc-light span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.fh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}
.fh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.fh-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.fh-title em {
  color: var(--yellow);
  font-family: var(--font-serif);
  font-style: italic;
}
.fh-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.fh-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Metrics panel */
.fh-metrics {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fm-main {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.fm-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.fm-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.fm-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.fm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fm-sm {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.fm-icon-sm {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.fm-val-sm {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.fm-label-sm {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fm-zero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(102, 187, 106, 0.15),
    rgba(102, 187, 106, 0.05)
  );
  border-radius: var(--radius-md);
  border: 1px solid rgba(102, 187, 106, 0.2);
}
.fm-zero-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-light);
}
.fm-zero-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--green-dark);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-dark {
  background: #0a1a0b;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.ticker-track span {
  flex-shrink: 0;
}
.tick-dot {
  color: var(--yellow);
  font-size: 0.6rem;
  opacity: 0.6;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== 4 PILIERS SECTION ===== */
.section-piliers {
  background: var(--white);
}
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pilier-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.pilier-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: relative;
}
.pc-solar {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}
.pc-water {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
}
.pc-waste {
  background: linear-gradient(135deg, #e65100, #bf360c);
}
.pc-monitor {
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
}
.pc-icon-wrap {
  font-size: 2rem;
}
.pc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}
.pc-body {
  padding: 2rem;
}
.pc-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pc-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pc-list {
  margin-bottom: 1.5rem;
}
.pc-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pc-list li::before {
  content: "✓";
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.pc-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pcs-bar {
  height: 6px;
  flex: 1;
  background: var(--border);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.pcs-bar::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 0;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.pcs-bar.animated::after {
  width: var(--w);
}
.pcs-blue::after {
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
}
.pcs-yellow::after {
  background: linear-gradient(90deg, var(--yellow-warm), var(--yellow));
}
.pc-stat span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== CARTE ===== */
.section-carte {
  background: var(--sand);
}
.carte-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.map-area {
  position: relative;
  background: linear-gradient(135deg, #1a3d1f, #2d5c32);
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-height: 360px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(102, 187, 106, 0.1) 0%,
    transparent 70%
  );
}
.map-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}
.map-zone {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  min-width: 90px;
}
.map-zone:hover,
.map-zone.active {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--yellow);
  transform: scale(1.05);
}
.map-zone span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.25rem;
}
.map-zone small {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carte-infra {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.infra-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.infra-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-light);
}
.ii-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  animation: pulse 2s infinite;
}
.id-green {
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.2);
}
.id-yellow {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.2);
}
.id-blue {
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.2);
}
.ii-body h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.ii-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.ii-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--green-pale);
  color: var(--green-dark);
}
.it-yellow {
  background: var(--yellow-pale);
  color: #5d4000;
}
.it-blue {
  background: var(--blue-pale);
  color: var(--blue-mid);
}

/* ===== POURQUOI ===== */
.section-pourquoi {
  background: var(--white);
}
.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pq-card {
  padding: 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pq-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pq-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.pq-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pq-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pq-kpi {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-mid);
  padding: 0.4rem 0.8rem;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  display: inline-block;
}
.pq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.pq-card:nth-child(1)::before {
  background: linear-gradient(90deg, #ffd600, #ffc107);
}
.pq-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
}
.pq-card:nth-child(3)::before {
  background: linear-gradient(90deg, #0d47a1, #42a5f5);
}
.pq-card:nth-child(4)::before {
  background: linear-gradient(90deg, #e65100, #ffa726);
}

/* ===== CTA FINAL ===== */
.section-cta-final {
  background: var(--green-deep);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.co-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(102, 187, 106, 0.1) 0%,
    transparent 70%
  );
  animation: orbFloat 15s ease-in-out infinite;
}
.co-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.08) 0%,
    transparent 70%
  );
  animation: orbFloat 12s ease-in-out infinite 4s;
}
.cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.cta-title em {
  color: var(--yellow);
}
.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   CSS EXTRAITS DES FICHIERS HTML
   ===================================================== */

/* ============================================
   STYLES DE INDEX.HTML
============================================ */

/* Variables spécifiques index.html */
:root {
  --vert-foret: #0d3d1f;
  --vert-jungle: #1a5c32;
  --vert-feuille: #2e8b4a;
  --vert-clair: #52b86a;
  --vert-mint: #a8d8b0;
  --vert-pale: #e8f5ec;
  --banane: #f2c12e;
  --banane-fonce: #c9960a;
  --banane-pale: #fef5d4;
  --terre: #8b4513;
  --ocre: #c4841a;
  --sable: #f0ddb0;
  --creme: #fbf6ec;
  --encre: #0a1e0d;
  --gris-chaud: #4a5240;
  --gris-moyen: #7a8572;
  --gris-clair: #c8d0c0;
  --blanc: #ffffff;
  --fonte-titre: "Fraunces", Georgia, serif;
  --fonte-corps: "Plus Jakarta Sans", sans-serif;
  --ombre-sm: 0 2px 12px rgba(10, 30, 13, 0.08);
  --ombre-md: 0 8px 40px rgba(10, 30, 13, 0.12);
  --ombre-lg: 0 20px 80px rgba(10, 30, 13, 0.18);
  --ombre-xl: 0 40px 120px rgba(10, 30, 13, 0.25);
  --rayon-sm: 6px;
  --rayon-md: 14px;
  --rayon-lg: 24px;
  --rayon-xl: 40px;
  --rayon-full: 9999px;
  --tr: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Typographie index.html */
.etiquette {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fonte-corps);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #28A83B;
  padding: 0.35rem 1rem;
  background: var(--vert-pale);
  border-radius: var(--rayon-full);
  border: 1.5px solid rgba(46, 139, 74, 0.2);
}
.etiquette::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--vert-feuille);
  border-radius: 50%;
  display: inline-block;
}
.etiquette.jaune {
  color: var(--terre);
  background: var(--banane-pale);
  border-color: rgba(194, 150, 10, 0.25);
}
.etiquette.jaune::before {
  background: var(--banane);
}
.etiquette.blanc {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.etiquette.blanc::before {
  background: var(--banane);
}

.titre-section {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--encre);
  margin-top: 0.75rem;
}
.titre-section em {
  font-style: italic;
  font-weight: 300;
  color: var(--vert-jungle);
}
.titre-section .accent {
  color: var(--banane-fonce);
}
.desc-section {
  font-size: 1.05rem;
  color: #ffff;
  line-height: 1.75;
  margin-top: 0.9rem;
  max-width: 560px;
}
.entete-section {
  margin-bottom: 4rem;
}
.entete-section.centre .desc-section {
  margin-left: auto;
  margin-right: auto;
}

/* Boutons index.html */
.btn-primaire {
  background: var(--vert-foret);
  color: var(--blanc);
  box-shadow: 0 4px 20px rgba(13, 61, 31, 0.35);
}
.btn-primaire:hover {
  background: var(--vert-jungle);
  box-shadow: 0 8px 32px rgba(13, 61, 31, 0.45);
}
.btn-banane {
  background: var(--banane);
  color: var(--encre);
  box-shadow: 0 4px 20px rgba(242, 193, 46, 0.45);
  border: 2px solid var(--banane);
}
.btn-banane:hover {
  background: var(--banane-fonce);
  color: var(--blanc);
  box-shadow: 0 8px 32px rgba(201, 150, 10, 0.5);
  border: none;
}
.btn-contour {
  background: transparent;
  color: var(--vert-foret);
  border-color: var(--vert-feuille);
}
.btn-contour:hover {
  background: var(--vert-pale);
  border-color: var(--vert-jungle);
}
.btn-fantome {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-fantome:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-blanc {
  background: var(--blanc);
  color: var(--vert-foret);
  box-shadow: var(--ombre-sm);
}
.btn-blanc:hover {
  background: var(--creme);
  box-shadow: var(--ombre-md);
}

/* Navbar index.html */
.navbar-index {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(46, 139, 74, 0.1);
}
.marque {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.marque-logo {
  height: 64px !important;
  max-height: none !important;
  max-width: none !important;
  width: auto;
}

/* Logo plus petit sur mobile pour ne pas être caché par le menu burger */
@media (max-width: 768px) {
  .marque-logo {
    height: 48px !important;
    width: auto !important;
  }
}
.marque-texte {
  font-family: var(--fonte-corps);
  font-size: 1rem;
  font-weight: 800;
  color: var(--vert-foret);
  letter-spacing: -0.02em;
}
.marque-texte span {
  color: var(--vert-feuille);
}
/* Hero index.html */
.hero {
  background-color: var(--green-deep);
  background-image: url("images/img1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero-index {
  min-height: 100vh;
  background: var(--vert-foret);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-forme-1 {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
  background: radial-gradient(
    circle at 40% 50%,
    var(--vert-jungle) 0%,
    transparent 70%
  );
  opacity: 0.7;
}
.hero-forme-2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 400px;
  border-radius: 50% 70% 40% 60% / 60% 40% 70% 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(242, 193, 46, 0.18) 0%,
    transparent 65%
  );
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-diagonal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    160deg,
    transparent 0%,
    rgba(255, 255, 255, 0.022) 100%
  );
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-grille {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-contenu {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(242, 193, 46, 0.15);
  border: 1.5px solid rgba(242, 193, 46, 0.4);
  color: var(--banane);
  padding: 0.4rem 1.1rem;
  border-radius: var(--rayon-full);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: glisser-bas 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-badge-point {
  width: 7px;
  height: 7px;
  background: var(--banane);
  border-radius: 50%;
  animation: pulse-v 2.2s infinite;
}
@keyframes pulse-v {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-titre {
  font-family: var(--fonte-titre);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blanc);
  margin-bottom: 1.6rem;
  animation: glisser-haut 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-titre em {
  font-style: italic;
  font-weight: 300;
  color: var(--banane);
  display: block;
}
.hero-titre .ligne-verte {
  display: block;
  color: var(--vert-mint);
}

.hero-sous-titre {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: glisser-haut 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: glisser-haut 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.hero-chiffres {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: glisser-haut 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}
.chiffre-val {
  font-family: var(--fonte-titre);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.04em;
}
.chiffre-val span {
  color: var(--banane);
  font-size: 1.6rem;
}
.chiffre-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Carte visuelle hero */
.hero-visuel {
  position: relative;
  animation: glisser-gauche 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.carte-principale {
  border-radius: var(--rayon-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  box-shadow:
    var(--ombre-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.carte-fond-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
}
.carte-fond-svg svg {
  width: 260px;
  height: 260px;
}
.carte-statut {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(82, 184, 106, 0.2);
  border: 1px solid rgba(82, 184, 106, 0.4);
  color: var(--vert-mint);
  padding: 0.3rem 0.9rem;
  border-radius: var(--rayon-full);
  font-size: 0.73rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}
.carte-statut::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--vert-clair);
  border-radius: 50%;
  animation: pulse-v 2s infinite;
}
.carte-libelle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}
.carte-titre {
  font-family: var(--fonte-titre);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.25;
}

.carte-flottante {
  position: absolute;
  background: var(--blanc);
  border-radius: var(--rayon-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--ombre-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 160px;
  z-index: 3;
}
.carte-flottante.haut-droite {
  top: -1.2rem;
  right: -1.8rem;
  animation: flotter 4s ease-in-out infinite;
}
.carte-flottante.bas-gauche {
  bottom: -1.2rem;
  left: -1.8rem;
  animation: flotter 4s ease-in-out 2s infinite;
}
@keyframes flotter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.flottante-icone {
  width: 38px;
  height: 38px;
  border-radius: var(--rayon-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.flottante-icone.verte {
  background: var(--vert-pale);
}
.flottante-icone.jaune {
  background: var(--banane-pale);
}
.flottante-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--encre);
  line-height: 1;
}
.flottante-lab {
  font-size: 0.7rem;
  color: var(--gris-moyen);
  margin-top: 0.2rem;
}

.scroll-indicateur {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: apparition 1s ease 1.5s both;
}
.scroll-trait {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: descend 1.8s ease-in-out infinite;
}
@keyframes descend {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}
@keyframes glisser-haut {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes glisser-bas {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes glisser-gauche {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes apparition {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Sections index.html */
.ruban-chiffres {
  background: var(--banane);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.ruban-chiffres::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
}
.ruban-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.ruban-col {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(13, 61, 31, 0.15);
}
.ruban-col:last-child {
  border-right: none;
}
.ruban-nombre {
  font-family: var(--fonte-titre);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--vert-foret);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ruban-nombre sup {
  font-size: 60%;
  vertical-align: super;
}
.ruban-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(13, 61, 31, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.section-piliers-index {
  background: var(--creme);
  position: relative;
}
.section-piliers-index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vert-foret),
    var(--banane),
    var(--vert-feuille)
  );
}

.grille-piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.carte-pilier {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--gris-clair);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.carte-pilier::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.pilier-1::after {
  background: var(--vert-jungle);
}
.pilier-2::after {
  background: var(--banane);
}
.pilier-3::after {
  background: var(--ocre);
}
.carte-pilier:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-md);
  border-color: transparent;
}
.carte-pilier:hover::after {
  transform: scaleX(1);
}

.pilier-num {
  font-family: var(--fonte-titre);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.07;
  color: var(--vert-foret);
  margin-bottom: 0.5rem;
}
.pilier-icone {
  width: 52px;
  height: 52px;
  border-radius: var(--rayon-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.pilier-1 .pilier-icone {
  background: var(--vert-pale);
}
.pilier-2 .pilier-icone {
  background: var(--banane-pale);
}
.pilier-3 .pilier-icone {
  background: var(--sable);
}
.pilier-titre {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.75rem;
}
.pilier-desc {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.7;
}
.pilier-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vert-jungle);
  transition: gap var(--tr);
}
.pilier-lien:hover {
  gap: 0.7rem;
}

.section-atouts {
  background: var(--blanc);
}
.atouts-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: center;
}
.atouts-gauche .desc-section {
  margin-top: 0.75rem;
}
.atouts-gauche .btn {
  margin-top: 2.5rem;
}

.liste-atouts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.item-atout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--creme);
  border-radius: var(--rayon-md);
  border: 1.5px solid transparent;
  transition:
    border-color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
}
.item-atout:hover {
  border-color: var(--vert-mint);
  transform: translateX(6px);
  box-shadow: var(--ombre-sm);
}
.atout-num {
  font-family: var(--fonte-titre);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
  flex-shrink: 0;
  width: 50px;
  letter-spacing: -0.04em;
  color: var(--vert-foret);
}
.item-atout:nth-child(2) .atout-num {
  color: var(--banane-fonce);
}
.item-atout:nth-child(4) .atout-num {
  color: var(--ocre);
}
.atout-corps h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.atout-corps p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.65;
}

.section-cibles {
  background: var(--vert-foret);
  position: relative;
  overflow: hidden;
}
.cibles-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 85% 15%,
      rgba(242, 193, 46, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 85%,
      rgba(82, 184, 106, 0.07) 0%,
      transparent 50%
    );
}
.cibles-motif {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.section-cibles .entete-section {
  position: relative;
  z-index: 1;
}
.section-cibles .titre-section {
  color: var(--blanc);
}
.section-cibles .titre-section em {
  color: var(--banane);
}
.section-cibles .desc-section {
  color: rgba(255, 255, 255, 0.55);
}

.grille-cibles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.carte-cible {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition:
    transform var(--tr),
    background var(--tr),
    border-color var(--tr);
}
.carte-cible:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}
.carte-cible.vedette {
  border-color: rgba(242, 193, 46, 0.5);
  background: rgba(242, 193, 46, 0.07);
}
.badge-vedette {
  background: var(--banane);
  color: var(--encre);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.4rem;
}
.cible-entete {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cible-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.cible-nom {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.2;
}
.cible-corps {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}
.liste-cible {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.liste-cible li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.liste-cible li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--vert-clair);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}
.cta-cible {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--banane);
  transition: gap var(--tr);
}
.cta-cible:hover {
  gap: 0.7rem;
}

.section-processus {
  background: var(--creme);
}
.grille-processus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 1rem;
}
.grille-processus::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--vert-feuille), var(--banane));
  z-index: 0;
  opacity: 0.35;
  border-radius: 2px;
}
.etape-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.etape-bulle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blanc);
  border: 2px solid var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  box-shadow: var(--ombre-sm);
  transition:
    border-color var(--tr),
    background var(--tr),
    transform var(--tr);
}
.etape-item:hover .etape-bulle {
  border-color: var(--vert-jungle);
  background: var(--vert-pale);
  transform: scale(1.08);
}
.etape-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gris-moyen);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.etape-titre {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.4rem;
}
.etape-desc {
  font-size: 0.8rem;
  color: var(--gris-chaud);
  line-height: 1.55;
}

.section-impact {
  background: linear-gradient(165deg, var(--vert-foret) 0%, #061b0a 100%);
  position: relative;
  overflow: hidden;
}
.impact-fond {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(82, 184, 106, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 75%,
      rgba(242, 193, 46, 0.07) 0%,
      transparent 55%
    );
}
.section-impact .entete-section {
  position: relative;
  z-index: 1;
}
.section-impact .titre-section {
  color: var(--blanc);
}
.section-impact .titre-section em {
  color: var(--banane);
}
.section-impact .desc-section {
  color: rgba(255, 255, 255, 0.5);
}

.grille-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.carte-impact {
  border-radius: var(--rayon-lg);
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    background var(--tr);
}
.carte-impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.impact-eco::before {
  background: linear-gradient(90deg, var(--banane), var(--ocre));
}
.impact-social::before {
  background: linear-gradient(90deg, var(--vert-feuille), var(--vert-mint));
}
.impact-env::before {
  background: linear-gradient(90deg, var(--vert-jungle), var(--vert-clair));
}
.carte-impact:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.09);
}
.impact-emoji {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.impact-nombre {
  font-family: var(--fonte-titre);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.impact-nombre span {
  color: var(--banane);
  font-size: 2rem;
}
.impact-titre {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}
.impact-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.centre-impact {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-temoignages {
  background: var(--blanc);
}
.temos-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.temos-intro .desc-section {
  margin-top: 0.75rem;
}
.temos-intro .btn {
  margin-top: 2rem;
}

.grille-temos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.carte-temo {
  background: var(--creme);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  border: 1.5px solid var(--gris-clair);
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.carte-temo:first-child {
  grid-column: 1 / -1;
}
.carte-temo:hover {
  box-shadow: var(--ombre-md);
  transform: translateY(-4px);
}
.guillemetq {
  font-family: var(--fonte-titre);
  font-size: 5rem;
  color: var(--vert-pale);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}
.temo-texte {
  font-family: var(--fonte-titre);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--encre);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.temo-auteur {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--gris-clair);
  padding-top: 1.2rem;
}
.auteur-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-clair), var(--vert-foret));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blanc);
  flex-shrink: 0;
}
.auteur-nom {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--encre);
}
.auteur-role {
  font-size: 0.77rem;
  color: var(--gris-moyen);
  margin-top: 0.1rem;
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(13, 61, 31, 0.04) 0px,
    rgba(13, 61, 31, 0.04) 2px,
    transparent 2px,
    transparent 44px
  );
}
.section-cta::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 61, 31, 0.1) 0%,
    transparent 65%
  );
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-texte h2 {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--vert-foret);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-texte h2 em {
  font-style: italic;
  font-weight: 300;
}
.cta-texte p {
  font-size: 1rem;
  color: rgba(13, 61, 31, 0.65);
  max-width: 400px;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-index {
  background: var(--encre);
  color: rgba(255, 255, 255, 0.6);
  padding: 4.5rem 0 2rem;
}
.footer-grille {
  display: grid;
  grid-template-columns: 1.4fr 1f 1f 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-marque-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-marque-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer-marque-nom {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blanc);
}
.footer-marque-nom span {
  color: var(--vert-clair);
}
.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  max-width: 240px;
}
.footer-reseaux {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.reseau-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--rayon-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
}
.reseau-btn:hover {
  background: var(--vert-jungle);
  color: var(--blanc);
  border-color: var(--vert-jungle);
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--tr);
}
.footer-col a:hover {
  color: var(--vert-clair);
}
.footer-contact-info p {
  font-size: 0.87rem;
  margin-bottom: 0.45rem;
  line-height: 1.6;
}
.footer-contact-info a {
  color: var(--vert-mint);
}
.footer-contact-info a:hover {
  color: var(--vert-clair);
}
.footer-bas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--tr);
}
.footer-legal a:hover {
  color: var(--vert-mint);
}

/* Responsive index.html */
@media (max-width: 1024px) {
  .hero-grille {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
  }
  .hero-titre {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }
  .hero-visuel {
    max-width: 480px;
    margin: 0 auto;
  }
  .carte-flottante {
    display: none;
  }
  .atouts-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .temos-layout {
    grid-template-columns: 1fr;
  }
  .grille-temos {
    grid-template-columns: 1fr;
  }
  .carte-temo:first-child {
    grid-column: 1;
  }
  .cta-inner {
    flex-direction: column;
  }
  .footer-grille {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-liens,
  .btn-nav {
    display: none;
  }
  .ruban-grille {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruban-col {
    border-right: none;
    border-bottom: 1px solid rgba(13, 61, 31, 0.1);
    padding: 1.5rem 1rem;
  }
  .ruban-col:last-child {
    border-bottom: none;
  }
  .grille-piliers {
    grid-template-columns: 1fr;
  }
  .grille-cibles {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .grille-processus {
    grid-template-columns: repeat(2, 1fr);
  }
  .grille-processus::before {
    display: none;
  }
  .grille-impact {
    grid-template-columns: 1fr;
  }
  .footer-grille {
    grid-template-columns: 1fr;
  }
  .footer-bas {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-chiffres {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .section {
    padding: 4rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }
  .hero-grille {
    padding: 3rem 1.25rem;
  }
}

/* =====================================================
   styles-apropos-responsive.css — FRESH'O VITROPLANTS
   Page À Propos — Responsive complet
   ===================================================== */

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

:root {
  --vert-foret: #0d3d1f;
  --vert-jungle: #1a5c32;
  --vert-feuille: #2e8b4a;
  --vert-clair: #52b86a;
  --vert-mint: #a8d8b0;
  --vert-pale: #e8f5ec;
  --banane: #f2c12e;
  --banane-fonce: #c9960a;
  --banane-pale: #fef5d4;
  --terre: #8b4513;
  --ocre: #c4841a;
  --sable: #f0ddb0;
  --creme: #fbf6ec;
  --encre: #0a1e0d;
  --gris-chaud: #4a5240;
  --gris-moyen: #7a8572;
  --gris-clair: #c8d0c0;
  --blanc: #ffffff;

  --fonte-titre: "Fraunces", Georgia, serif;
  --fonte-corps: "DM Sans", sans-serif;

  --ombre-sm: 0 2px 12px rgba(10, 30, 13, 0.08);
  --ombre-md: 0 8px 40px rgba(10, 30, 13, 0.12);
  --ombre-lg: 0 20px 80px rgba(10, 30, 13, 0.18);
  --ombre-xl: 0 40px 120px rgba(10, 30, 13, 0.25);

  --rayon-sm: 6px;
  --rayon-md: 14px;
  --rayon-lg: 24px;
  --rayon-xl: 40px;
  --rayon-full: 9999px;

  --tr: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--fonte-corps); */
  color: var(--encre);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}

/* ================================================
   3. LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  background: #F4FFF2;
}

/* ================================================
   4. BOUTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--rayon-full);
  font-family: var(--fonte-corps);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.fleche {
  transition: transform var(--tr);
}
.btn:hover .fleche {
  transform: translateX(4px);
}

.btn-banane {
  background: var(--banane);
  color: var(--encre);
  border-color: var(--banane);
  box-shadow: 0 4px 20px rgba(242, 193, 46, 0.45);
}
.btn-banane:hover {
  background: var(--banane-fonce);
  color: var(--blanc);
  box-shadow: 0 8px 32px rgba(201, 150, 10, 0.5);
}

.btn-fantome {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-fantome:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-primaire {
  background: var(--vert-foret);
  color: var(--blanc);
  box-shadow: 0 4px 20px rgba(13, 61, 31, 0.35);
}
.btn-primaire:hover {
  background: var(--vert-jungle);
  box-shadow: 0 8px 32px rgba(13, 61, 31, 0.45);
  transform: translateY(-2px);
}

.btn-primary {
  background: #28A83B;
  color: var(--blanc);
}
.btn-primary:hover {
  background: var(--vert-jungle);
}

/* ================================================
   5. TYPOGRAPHIE COMMUNE
   ================================================ */
.etiquette {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert-jungle);
  padding: 0.35rem 1rem;
  background: var(--vert-pale);
  border-radius: var(--rayon-full);
  border: 1.5px solid rgba(46, 139, 74, 0.2);
}
.etiquette::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--vert-feuille);
  border-radius: 50%;
  display: inline-block;
}
.etiquette.blanc {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.etiquette.blanc::before {
  background: var(--banane);
}

.titre-section {
  font-family: var(--fonte-titre);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--encre);
  margin-top: 0.75rem;
}
.titre-section em {
  font-style: italic;
  font-weight: 300;
  color: var(--vert-jungle);
}


.entete-section {
  margin-bottom: 3.5rem;
}
.entete-section.centre {
  text-align: center;
}
.entete-section.centre .desc-section {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   6. NAVBAR
   ================================================ */
.marque {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marque-logo {
  height: 64px !important;
  max-height: none !important;
  max-width: none !important;
  width: auto;
}

/* Logo plus petit sur mobile pour ne pas être caché par le menu burger */
@media (max-width: 768px) {
  .marque-logo {
    height: 48px !important;
    width: auto !important;
  }
}

/* Burger */
/* ================================================
   7. PAGE HEADER
   ================================================ */
.page-header {
  position: relative;
  overflow: hidden;
}

.page-contact .page-header {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  background: linear-gradient(
    140deg,
    #1a5c32 0%,
    #28A83B 52%,
    #52b86a 100%
  );
}

.page-contact .page-header::after {
  background: rgba(26, 92, 50, 0.16);
  z-index: 1;
}

.page-contact .ph-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-contact .ph-forme-1 {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 700px;
  height: 700px;
  border-radius: 56% 44% 62% 38% / 48% 52% 46% 54%;
  background: radial-gradient(
    circle at 35% 40%,
    rgba(82, 184, 106, 0.32),
    transparent 68%
  );
}

.page-contact .ph-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
}

.page-contact .page-header-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 4rem;
}

.page-contact .section-contact-form {
  position: relative;
  z-index: 2;
}

.page-contact .contact-layout {
  padding-top: 0;
}

.page-header-apropos {
  background-color: #061b0a;
  background-image: url("images/img13.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.page-header-ferme {
  background-color: #061b0a;
  background-image: url("images/img13.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-header-vitroplant {
  background-color: #061b0a;
  background-image: url("images/img9.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.page-header-apropos {
  background-color: #061b0a;
  background-image: url("images/img13.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-header-ferme {
  background-color: #061b0a;
  background-image: url("images/img12.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-header-impact {
  background-color: #061b0a;
  background-image: url("images/img17.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Overlay sombre */
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #28A83B ;
  opacity: 0.2;
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 5rem;
  width: 100%;
}

.ph-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ph-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.ph-titre {
  font-family: var(--fonte-titre);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--blanc);
  margin: 1rem 0 1.5rem;
}
.ph-titre em {
  font-style: italic;
  font-weight: 300;
  color: var(--banane);
  display: block;
}

.ph-intro {
  font-size: 1.05rem;
  color: #ffff;
  line-height: 1.8;
  max-width: 480px;
}

.ph-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 10px;
}

.ph-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rayon-lg);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  transition:
    background var(--tr),
    transform var(--tr);
}
.ph-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.ph-stat-num {
  font-family: var(--fonte-titre);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ph-stat-num svg {
  width: 40px;
  height: 40px;
}
.ph-stat-num span {
  color: var(--banane);
}

.ph-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* ================================================
   8. SECTION VM (Vision & Mission)
   ================================================ */
.section-vm {
  background:#F4FFF2 ;
  position: relative;
}
.section-vm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vert-foret),
    var(--banane),
    var(--vert-feuille)
  );
}

.vm-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-carte {
  border-radius: var(--rayon-lg);
  padding: 3rem;
  border: 1.5px solid transparent;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.vm-carte:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-md);
}

.vm-vision {
  background: #28A83B;
}
.vm-mission {
  background: var(--blanc);
  border-color: var(--gris-clair);
}

.vm-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.vm-vision .vm-label {
  color: var(--banane);
}
.vm-mission .vm-label {
  color: var(--vert-jungle);
}

.vm-citation {
  font-family: var(--fonte-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--blanc);
  margin-bottom: 1.5rem;
  position: relative;
  border: none;
  padding: 0;
  quotes: none;
}
.vm-citation::before {
  content: "\201C";
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--fonte-titre);
  line-height: 1;
}

.vm-texte {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.mission-liste {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mission-icone {
  width: 42px;
  height: 42px;
  border-radius: var(--rayon-md);
  background: #EFFFF1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.mission-icone svg {
  width: 28px;
  height: 28px;
}

.mission-corps strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--encre);
  display: block;
  margin-bottom: 0.2rem;
}
.mission-corps p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.6;
}

/* ================================================
   9. TIMELINE
   ================================================ */
.section-timeline {
  background: var(--blanc);
}

.timeline {
  position: relative;
  padding-left: 3rem;
  max-width: 800px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--vert-foret),
    var(--banane),
    var(--gris-clair)
  );
}

.tl-item {
  position: relative;
  padding: 0 0 3.5rem 3rem;
}
.tl-item:last-child {
  padding-bottom: 0;
}

.tl-annee {
  position: absolute;
  left: -3rem;
  top: 0.15rem;
  font-family: var(--fonte-titre);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--gris-moyen);
  width: 2.5rem;
  text-align: right;
}

.tl-point {
  position: absolute;
  left: -0.42rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blanc);
  border: 2.5px solid var(--gris-clair);
  z-index: 1;
}
.tl-point.actif {
  background: var(--vert-foret);
  border-color: var(--vert-foret);
  box-shadow: 0 0 0 5px var(--vert-pale);
}
.tl-point.futur {
  background: var(--banane-pale);
  border-color: var(--banane);
}

.tl-contenu {
  background: #EFFFF1;
  border-radius: var(--rayon-lg);
  padding: 2rem 2.5rem;
  border: 1.5px solid var(--gris-clair);
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.tl-contenu:hover {
  box-shadow: var(--ombre-sm);
  transform: translateX(4px);
}
.tl-contenu.futur {
  border-color: #EFFFF1;
  background: #EFFFF1;
  opacity: 0.85;
}

.tl-contenu h3 {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.6rem;
}
.tl-contenu p {
  font-size: 0.92rem;
  color: var(--gris-chaud);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--vert-pale);
  color: var(--vert-jungle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--rayon-full);
  border: 1px solid rgba(46, 139, 74, 0.2);
}
.tl-badge.futur {
  background: rgba(242, 193, 46, 0.2);
  color: var(--terre);
  border-color: rgba(242, 193, 46, 0.4);
}

/* ================================================
   10. VALEURS
   ================================================ */
.section-valeurs {
  background: #28A83B;
}

.valeurs-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.valeurs-citation {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--banane);
}
.valeurs-citation p {
  font-family: var(--fonte-titre);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: #ffff;
  line-height: 1.75;
}
.valeurs-citation cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #F2C12E;
  font-style: normal;
  font-weight: 600;
}

.valeurs-grille {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.valeur-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background:#EFFFF1 ;
  /* border-radius: var(--rayon-md); */
  border: 1.5px solid var(--gris-clair);
  transition:
    border-color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
}
.valeur-item:hover {
  border-color: var(--vert-mint);
  transform: translateY(-3px);
  box-shadow: var(--ombre-sm);
}

.valeur-icone {
  width: 44px;
  height: 44px;
  border-radius: var(--rayon-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.v-vert {
  background: var(--vert-pale);
}
.v-bleu {
  background: #e3f2fd;
}
.v-jaune {
  background: var(--banane-pale);
}
.v-orange {
  background: var(--sable);
}
.v-rouge {
  background: #ffebee;
}
.v-violet {
  background: #f3e5f5;
}

.valeur-corps h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.valeur-corps p {
  font-size: 0.83rem;
  color: var(--gris-chaud);
  line-height: 1.6;
}

/* ================================================
   11. ÉQUIPE
   ================================================ */
.section-equipe {
  background: var(--blanc);
}

.grille-equipe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.carte-equipe {
  background: var(--creme);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  border: 1.5px solid var(--gris-clair);
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
  display: flex;
  flex-direction: column;
}
.carte-equipe:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-md);
  border-color: var(--vert-mint);
}

.carte-equipe.vedette {
  background: var(--vert-foret);
  border-color: var(--vert-foret);
}
.carte-equipe.rejoindre {
  background: var(--banane-pale);
  border-color: rgba(242, 193, 46, 0.4);
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* Photo avatar */
.equipe-avatar-img {
  width: 70px;
  height: 70px;
  border-radius: var(--rayon-md);
  object-fit: cover;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.vedette .equipe-avatar-img {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.equipe-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert-jungle);
  margin-bottom: 0.35rem;
}
.vedette .equipe-role {
  color: var(--banane);
}

.equipe-nom {
  font-family: var(--fonte-titre);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.6rem;
}
.vedette .equipe-nom {
  color: var(--blanc);
}

.equipe-desc {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.65;
  flex: 1;
}
.vedette .equipe-desc {
  color: rgba(255, 255, 255, 0.65);
}

.equipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.equipe-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--rayon-full);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.normal .equipe-tag {
  background: var(--vert-pale);
  color: var(--vert-jungle);
  border-color: rgba(46, 139, 74, 0.2);
}

.rejoindre-icone {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.rejoindre-icone svg {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.rejoindre h3 {
  font-family: var(--fonte-titre);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.6rem;
}
.rejoindre p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ================================================
   12. STATS ABOUT
   ================================================ */
.section-stats-about {
  background: var(--banane);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-stats-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
}

.stats-about-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stats-about-label {
  padding-right: 3rem;
  border-right: 1px solid rgba(13, 61, 31, 0.15);
}
.stats-about-label h3 {
  font-family: var(--fonte-titre);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--vert-foret);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stats-about-label p {
  font-size: 0.88rem;
  color: rgba(13, 61, 31, 0.6);
  margin-top: 0.5rem;
}

.stat-about-col {
  text-align: center;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(13, 61, 31, 0.15);
}

.stat-about-num {
  font-family: var(--fonte-titre);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--vert-foret);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-about-num span {
  font-size: 70%;
}

.stat-about-lab {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(13, 61, 31, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* ================================================
   13. CTA FINAL
   ================================================ */
.section-cta {
  background: linear-gradient(
    135deg,
    var(--vert-foret) 0%,
    var(--vert-jungle) 100%
  );
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(242, 193, 46, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(82, 184, 106, 0.07) 0%,
      transparent 50%
    );
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-texte h2 {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-texte h2 em {
  font-style: italic;
  font-weight: 300;
}
.cta-texte p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================
   14. FOOTER
   ================================================ */
.footer {
  background: var(--encre);
  color: rgba(255, 255, 255, 0.6);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-col p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--rayon-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background var(--tr),
    color var(--tr);
}
.social-btn:hover {
  background: var(--vert-jungle);
  color: var(--blanc);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li {
  list-style: none;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--tr);
}
.footer-col a:hover {
  color: var(--vert-clair);
}

.footer-col p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--tr);
}
.footer-legal a:hover {
  color: var(--vert-mint);
}

/* ================================================
   15. ANIMATIONS
   ================================================ */
@keyframes pulse-v {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
@keyframes flotter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes descend {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ================================================
   16. RESPONSIVE — TABLETTE (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  /* Header */
  .ph-grille {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ph-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ph-titre {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  /* VM */
  .vm-grille {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Timeline */
  .timeline {
    max-width: 100%;
  }

  /* Valeurs */
  .valeurs-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Équipe */
  .grille-equipe {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats */
  .stats-about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stats-about-label {
    grid-column: span 2;
    border-right: none;
    border-bottom: 1px solid rgba(13, 61, 31, 0.15);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .stat-about-col {
    border-left: none;
    border-top: 1px solid rgba(13, 61, 31, 0.1);
    padding: 1rem 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ================================================
   17. RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  /* ---- Navbar ---- */
  .nav-liens {
    display: none;
  }
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .navbar-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .nav-liens.open {
    display: flex !important;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 3px solid var(--vert-pale);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    list-style: none;
  }

  .nav-liens.open li {
    width: 100%;
  }
  .nav-liens.open .nav-lien {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--encre);
    border-bottom: 1px solid var(--vert-pale);
  }
  .nav-liens.open li:last-child .nav-lien {
    border-bottom: none;
  }
  .nav-liens.open .nav-lien:hover,
  .nav-liens.open .nav-lien.actif {
    background: var(--vert-pale);
    color: var(--vert-jungle);
    border-radius: var(--rayon-sm);
  }

  /* ---- Sections ---- */
  .section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }

  /* ---- Header ---- */
  .page-header {
    min-height: auto;
  }
  .page-contact .page-header {
    min-height: 64vh;
    padding-top: 95px;
  }
  .page-header-inner {
    padding: 1.5rem 1.25rem 4rem;
  }
  .ph-grille {
    gap: 2.5rem;
  }
  .ph-titre {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .ph-intro {
    font-size: 0.95rem;
  }
  .ph-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .ph-stat {
    padding: 1.25rem 1rem;
  }
  .ph-stat-num {
    font-size: 1.8rem;
  }

  /* ---- VM ---- */
  .vm-carte {
    padding: 2rem 1.5rem;
  }
  .vm-citation {
    font-size: 1.15rem;
  }

  /* ---- Timeline ---- */
  .timeline {
    padding-left: 2.5rem;
  }
  .tl-annee {
    left: -2.5rem;
    font-size: 0.75rem;
    width: 2rem;
  }
  .tl-contenu {
    padding: 1.5rem;
  }
  .tl-contenu h3 {
    font-size: 1.1rem;
  }
  .tl-item {
    padding: 0 0 2.5rem 2rem;
  }

  /* ---- Valeurs ---- */
  .valeurs-grille {
    grid-template-columns: 1fr;
  }
  .valeur-item {
    padding: 1.25rem;
  }

  /* ---- Équipe ---- */
  .grille-equipe {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ---- Stats ---- */
  .stats-about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stats-about-label {
    grid-column: span 2;
  }
  .stat-about-col {
    padding: 0.75rem 0;
  }
  .stat-about-num {
    font-size: 2rem;
  }

  /* ---- CTA ---- */
  .section-cta {
    padding: 4rem 0;
  }
  .cta-inner {
    flex-direction: column;
  }
  .cta-texte h2 {
    font-size: 1.8rem;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Footer ---- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ================================================
   STYLES SUPPLEMENTAIRES - FERME ZERO CARBONE
   ================================================ */

/* Hero Ferme */
.ferme-hero {
  min-height: 100vh;
  background: linear-gradient(
    150deg,
    #071a0a 0%,
    #0d2e11 25%,
    #1a5e1f 60%,
    #0f3d14 100%
  );
  background-image: url("images/img7.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.ferme-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(7, 26, 10, 0.9) 0%,
    rgba(13, 46, 17, 0.8) 25%,
    rgba(26, 94, 31, 0.7) 60%,
    rgba(15, 61, 20, 0.75) 100%
  );
  z-index: 1;
}

.fh-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.fh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.fh-o1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(102, 187, 106, 0.1) 0%,
    transparent 70%
  );
  animation: orbFloat 14s ease-in-out infinite;
}
.fh-o2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.07) 0%,
    transparent 70%
  );
  animation: orbFloat 11s ease-in-out infinite 5s;
}

.fh-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.ferme-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem;
}

.fh-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.fh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1.1rem;
  border-radius: var(--rayon-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--vert-clair);
  border-radius: 50%;
  animation: pulse-v 2.2s infinite;
  flex-shrink: 0;
}
.bp-yellow {
  background: var(--banane);
}

.fh-title {
  display: flex;
  flex-direction: column;
  font-family: var(--fonte-titre);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.fh-title em {
  color: var(--banane);
  font-style: italic;
}

.fh-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.fh-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fh-metrics {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rayon-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fm-main {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--rayon-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.fm-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.fm-val {
  font-family: var(--fonte-titre);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--banane);
  line-height: 1;
}
.fm-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

.fm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fm-sm {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--rayon-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.fm-icon-sm {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.fm-val-sm {
  font-family: var(--fonte-titre);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blanc);
}
.fm-label-sm {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fm-zero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(102, 187, 106, 0.15),
    rgba(102, 187, 106, 0.05)
  );
  border-radius: var(--rayon-md);
  border: 1px solid rgba(102, 187, 106, 0.2);
}
.fm-zero-num {
  font-family: var(--fonte-titre);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vert-clair);
}
.fm-zero-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-dark {
  background: #0a1a0b;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  padding: 0.85rem 0;
  font-family: var(--fonte-corps);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.ticker-track span {
  flex-shrink: 0;
}
.tick-dot {
  color: var(--banane);
  font-size: 0.6rem;
  opacity: 0.6;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

/* Section Piliers */
.section-piliers {
  background: var(--off-white);
}

.piliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pilier-card {
  border: 1.5px solid var(--gris-clair);
  border-radius: var(--rayon-xl);
  overflow: hidden;
  transition:
    box-shadow var(--tr),
    border-color var(--tr),
    transform var(--tr);
  background: var(--blanc);
}
.pilier-card:hover {
  box-shadow: var(--ombre-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: relative;
}
.pc-solar {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}
.pc-water {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
}
.pc-waste {
  background: linear-gradient(135deg, #e65100, #bf360c);
}
.pc-monitor {
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
}

.pc-icon-wrap {
  font-size: 2rem;
}
.pc-num {
  font-family: var(--fonte-titre);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}

.pc-body {
  padding: 2rem;
}
.pc-body h3 {
  font-family: var(--fonte-titre);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.75rem;
}
.pc-body > p {
  font-size: 0.92rem;
  color: var(--gris-chaud);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pc-list {
  margin-bottom: 1.5rem;
}
.pc-list li {
  font-size: 0.88rem;
  color: var(--gris-chaud);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gris-clair);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pc-list li::before {
  content: "✓";
  color: var(--vert-jungle);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pc-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pcs-bar {
  height: 6px;
  flex: 1;
  background: var(--gris-clair);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.pcs-bar::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 0;
  background: linear-gradient(90deg, var(--vert-jungle), var(--vert-clair));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.pcs-bar.animated::after {
  width: var(--w);
}
.pcs-blue::after {
  background: linear-gradient(90deg, var(--blue-mid), #42a5f5);
}
.pcs-yellow::after {
  background: linear-gradient(90deg, var(--banane-fonce), var(--banane));
}
.pc-stat span {
  font-family: var(--fonte-corps);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gris-chaud);
  white-space: nowrap;
}

/* Section Carte */
.section-carte {
  background: #F4FFF2;
}

.carte-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.map-area {
  position: relative;
  background: linear-gradient(135deg, #1a3d1f, #2d5c32);
  border-radius: var(--rayon-xl);
  padding: 2rem;
  min-height: 360px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(102, 187, 106, 0.1) 0%,
    transparent 70%
  );
}

.map-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fonte-corps);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.map-zone {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--rayon-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  z-index: 1;
  min-width: 90px;
}
.map-zone:hover,
.map-zone.active {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--banane);
  transform: scale(1.05);
}
.map-zone span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.25rem;
}
.map-zone small {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carte-infra {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.infra-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--blanc);
  border-radius: var(--rayon-md);
  border: 1.5px solid var(--gris-clair);
  transition:
    box-shadow var(--tr),
    border-color var(--tr);
}
.infra-item:hover {
  box-shadow: var(--ombre-sm);
  border-color: var(--vert-clair);
}
.ii-active {
  border-color: rgba(46, 139, 74, 0.3);
}

.ii-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  animation: pulse-v 2s infinite;
}
.id-green {
  background: var(--vert-clair);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.2);
}
.id-yellow {
  background: var(--banane);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.2);
}
.id-blue {
  background: #42a5f5;
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.2);
}

.ii-body h4 {
  font-family: var(--fonte-corps);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.ii-body p {
  font-size: 0.82rem;
  color: var(--gris-chaud);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ii-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--rayon-full);
  background: var(--vert-pale);
  color: var(--vert-jungle);
}
.it-yellow {
  background: var(--banane-pale);
  color: var(--terre);
}
.it-blue {
  background: var(--blue-pale);
  color: var(--blue-mid);
}

/* Section Pourquoi */
.section-pourquoi {
  background: var(--blanc);
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pq-card {
  padding: 2rem;
  border: 1.5px solid var(--gris-clair);
  border-radius: var(--rayon-lg);
  background: var(--blanc);
  transition:
    box-shadow var(--tr),
    border-color var(--tr),
    transform var(--tr);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pq-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-lg);
  border-color: transparent;
}
.pq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.pq-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--banane-fonce), var(--banane));
}
.pq-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--vert-jungle), var(--vert-clair));
}
.pq-card:nth-child(3)::before {
  background: linear-gradient(90deg, #0d47a1, #42a5f5);
}
.pq-card:nth-child(4)::before {
  background: linear-gradient(90deg, #e65100, #ffa726);
}

.pq-icon {
  font-size: 2rem;
}
.pq-card h3 {
  font-family: var(--fonte-titre);
  font-size: 1.05rem;
  font-weight: 700;
}
.pq-card p {
  font-size: 0.88rem;
  color: var(--gris-chaud);
  line-height: 1.7;
  flex: 1;
}
.pq-kpi {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vert-jungle);
  padding: 0.4rem 0.8rem;
  background: var(--vert-pale);
  border-radius: var(--rayon-full);
  display: inline-block;
  align-self: flex-start;
}

/* CTA Final */
.section-cta-final {
  background: var(--encre);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.co-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(102, 187, 106, 0.1) 0%,
    transparent 70%
  );
  animation: orbFloat 15s ease-in-out infinite;
}
.co-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.08) 0%,
    transparent 70%
  );
  animation: orbFloat 12s ease-in-out infinite 4s;
}

.cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.35rem 1rem;
  border-radius: var(--rayon-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-title {
  font-family: var(--fonte-titre);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--blanc);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.cta-title em {
  color: var(--banane);
  font-style: italic;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

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

/* ================================================
   STYLES SUPPLEMENTAIRES - PAGE INDEX
   ================================================ */

/* Hero Index */
.hero {
  min-height: 100vh;
  background-color: var(--vert-foret);
  background-image: url("images/img1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 13, 0.82) 0%,
    rgba(13, 61, 31, 0.7) 50%,
    rgba(10, 30, 13, 0.55) 100%
  );
  z-index: 1;
}

.hero-fond,
.hero-grille,
.scroll-indicateur {
  position: relative;
  z-index: 2;
}

.hero-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-forme-1 {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
  background: radial-gradient(
    circle at 40% 50%,
    var(--vert-jungle) 0%,
    transparent 70%
  );
  opacity: 0.7;
}
.hero-forme-2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 400px;
  border-radius: 50% 70% 40% 60% / 60% 40% 70% 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(242, 193, 46, 0.18) 0%,
    transparent 65%
  );
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-diagonal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    160deg,
    transparent 0%,
    rgba(255, 255, 255, 0.022) 100%
  );
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-grille {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-contenu {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(242, 193, 46, 0.15);
  border: 1.5px solid rgba(242, 193, 46, 0.4);
  color: var(--banane);
  padding: 0.4rem 1.1rem;
  border-radius: var(--rayon-full);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-badge-point {
  width: 7px;
  height: 7px;
  background: var(--banane);
  border-radius: 50%;
  animation: pulse-v 2.2s infinite;
}

.hero-titre {
  font-family: var(--fonte-titre);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blanc);
  margin-bottom: 1.6rem;
}
.hero-titre em {
  font-style: italic;
  font-weight: 300;
  color: var(--banane);
  display: block;
}
.ligne-verte {
  display: block;
  color: var(--vert-mint);
}

.hero-sous-titre {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-chiffres {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.chiffre-val {
  font-family: var(--fonte-titre);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.04em;
}
.chiffre-val span {
  color: var(--banane);
  font-size: 1.6rem;
}
.chiffre-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Carte visuelle hero */
.hero-visuel {
  position: relative;
}

.carte-principale {
  border-radius: var(--rayon-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  box-shadow:
    var(--ombre-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.carte-fond-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
}
.carte-fond-svg svg {
  width: 260px;
  height: 260px;
}

.carte-statut {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(82, 184, 106, 0.2);
  border: 1px solid rgba(82, 184, 106, 0.4);
  color: var(--vert-mint);
  padding: 0.3rem 0.9rem;
  border-radius: var(--rayon-full);
  font-size: 0.73rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}
.carte-statut::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--vert-clair);
  border-radius: 50%;
  animation: pulse-v 2s infinite;
}

.carte-libelle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}
.carte-titre {
  font-family: var(--fonte-titre);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.25;
}

.carte-flottante {
  position: absolute;
  background: var(--blanc);
  border-radius: var(--rayon-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--ombre-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 160px;
  z-index: 3;
}
.carte-flottante.haut-droite {
  top: -1.2rem;
  right: -1.8rem;
  animation: flotter 4s ease-in-out infinite;
}
.carte-flottante.bas-gauche {
  bottom: -1.2rem;
  left: -1.8rem;
  animation: flotter 4s ease-in-out 2s infinite;
}

.flottante-icone {
  width: 38px;
  height: 38px;
  border-radius: var(--rayon-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.flottante-icone.verte {
  background: var(--vert-pale);
}
.flottante-icone.jaune {
  background: var(--banane-pale);
}
.flottante-icone svg {
  width: 24px;
  height: 24px;
}

.flottante-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--encre);
  line-height: 1;
}
.flottante-lab {
  font-size: 0.7rem;
  color: var(--gris-moyen);
  margin-top: 0.2rem;
}

/* Scroll indicateur */
.scroll-indicateur {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-trait {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: descend 1.8s ease-in-out infinite;
}

@keyframes descend {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

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

/* Ruban chiffres */
.ruban-chiffres {
  background: var(--banane);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.ruban-chiffres::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
}

.ruban-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.ruban-col {
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(13, 61, 31, 0.15);
}
.ruban-col:last-child {
  border-right: none;
}

.ruban-nombre {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--vert-foret);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ruban-nombre sup {
  font-size: 60%;
  vertical-align: super;
}

.ruban-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(13, 61, 31, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* Section Piliers Index */
.section-piliers {
  background: var(--creme);
  position: relative;
}
.section-piliers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vert-foret),
    var(--banane),
    var(--vert-feuille)
  );
}

.grille-piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.carte-pilier {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--gris-clair);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.carte-pilier::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.pilier-1::after {
  background: var(--vert-jungle);
}
.pilier-2::after {
  background: var(--banane);
}
.pilier-3::after {
  background: var(--ocre);
}
.carte-pilier:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-md);
  border-color: transparent;
}
.carte-pilier:hover::after {
  transform: scaleX(1);
}

.pilier-num {
  font-family: var(--fonte-titre);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.07;
  color: var(--vert-foret);
  margin-bottom: 0.5rem;
}

.pilier-icone {
  width: 52px;
  height: 52px;
  border-radius: var(--rayon-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.pilier-icone svg {
  width: 36px;
  height: 36px;
}
.pilier-1 .pilier-icone {
  background: var(--vert-pale);
}
.pilier-2 .pilier-icone {
  background: var(--banane-pale);
}
.pilier-3 .pilier-icone {
  background: var(--sable);
}

.pilier-titre {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.75rem;
}
.pilier-desc {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pilier-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vert-jungle);
  transition: gap var(--tr);
}
.pilier-lien:hover {
  gap: 0.7rem;
}

/* Section Atouts */
.section-atouts {
  background: var(--blanc);
}

.atouts-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: center;
}

.liste-atouts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item-atout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--creme);
  border-radius: var(--rayon-md);
  border: 1.5px solid transparent;
  transition:
    border-color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
}
.item-atout:hover {
  border-color: var(--vert-mint);
  transform: translateX(6px);
  box-shadow: var(--ombre-sm);
}

.atout-num {
  font-family: var(--fonte-titre);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
  flex-shrink: 0;
  width: 50px;
  letter-spacing: -0.04em;
  color: var(--vert-foret);
}
.item-atout:nth-child(2) .atout-num {
  color: var(--banane-fonce);
}
.item-atout:nth-child(4) .atout-num {
  color: var(--ocre);
}

.atout-corps h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.atout-corps p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.65;
}

/* Section Cibles */
.section-cibles {
  background: var(--vert-foret);
  position: relative;
  overflow: hidden;
}

.cibles-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 85% 15%,
      rgba(242, 193, 46, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 85%,
      rgba(82, 184, 106, 0.07) 0%,
      transparent 50%
    );
}
.cibles-motif {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.section-cibles .entete-section {
  position: relative;
  z-index: 1;
}
.section-cibles .titre-section {
  color: var(--blanc);
}
.section-cibles .titre-section em {
  color: var(--banane);
}
.section-cibles .desc-section {
  color: rgba(255, 255, 255, 0.55);
}

.grille-cibles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.carte-cible {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition:
    transform var(--tr),
    background var(--tr),
    border-color var(--tr);
}
.carte-cible:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}
.carte-cible.vedette {
  border-color: rgba(242, 193, 46, 0.5);
  background: rgba(242, 193, 46, 0.07);
}

.badge-vedette {
  background: var(--banane);
  color: var(--encre);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.4rem;
}

.cible-entete {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cible-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.cible-emoji svg {
  width: 56px;
  height: 56px;
}
.cible-nom {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.2;
}

.cible-corps {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}

.liste-cible {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.liste-cible li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.liste-cible li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--vert-clair);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

.cta-cible {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--banane);
  transition: gap var(--tr);
}
.cta-cible:hover {
  gap: 0.7rem;
}

/* Section Processus */
.section-processus {
  background: var(--creme);
}

.grille-processus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 1rem;
}
.grille-processus::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--vert-feuille), var(--banane));
  z-index: 0;
  opacity: 0.35;
  border-radius: 2px;
}

.etape-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.etape-bulle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blanc);
  border: 2px solid var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  box-shadow: var(--ombre-sm);
  transition:
    border-color var(--tr),
    background var(--tr),
    transform var(--tr);
}
.etape-item:hover .etape-bulle {
  border-color: var(--vert-jungle);
  background: var(--vert-pale);
  transform: scale(1.08);
}

.etape-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gris-moyen);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.etape-titre {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.4rem;
}
.etape-desc {
  font-size: 0.8rem;
  color: var(--gris-chaud);
  line-height: 1.55;
}

/* Section Impact */
.section-impact {
  background: linear-gradient(165deg, var(--vert-foret) 0%, #061b0a 100%);
  position: relative;
  overflow: hidden;
}

.impact-fond {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(82, 184, 106, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 75%,
      rgba(242, 193, 46, 0.07) 0%,
      transparent 55%
    );
}

.section-impact .entete-section {
  position: relative;
  z-index: 1;
}
.section-impact .titre-section {
  color: var(--blanc);
}
.section-impact .titre-section em {
  color: var(--banane);
}
.section-impact .desc-section {
  color: rgba(255, 255, 255, 0.5);
}

.grille-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.carte-impact {
  border-radius: var(--rayon-lg);
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    background var(--tr);
}
.carte-impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.impact-eco::before {
  background: linear-gradient(90deg, var(--banane), var(--ocre));
}
.impact-social::before {
  background: linear-gradient(90deg, var(--vert-feuille), var(--vert-mint));
}
.impact-env::before {
  background: linear-gradient(90deg, var(--vert-jungle), var(--vert-clair));
}
.carte-impact:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.09);
}

.impact-emoji {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.impact-emoji svg {
  width: 52px;
  height: 52px;
}

.impact-nombre {
  font-family: var(--fonte-titre);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.impact-nombre span {
  color: var(--banane);
  font-size: 2rem;
}

.impact-titre {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}
.impact-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.centre-impact {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Section Témoignages */
.section-temoignages {
  background: var(--blanc);
}

.temos-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.temos-intro .desc-section {
  margin-top: 0.75rem;
}
.temos-intro .btn {
  margin-top: 2rem;
}

.grille-temos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.carte-temo {
  background: var(--creme);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  border: 1.5px solid var(--gris-clair);
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.carte-temo:first-child {
  grid-column: 1 / -1;
}
.carte-temo:hover {
  box-shadow: var(--ombre-md);
  transform: translateY(-4px);
}

.guillemetq {
  font-family: var(--fonte-titre);
  font-size: 5rem;
  color: var(--vert-pale);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}
.temo-texte {
  font-family: var(--fonte-titre);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--encre);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.temo-auteur {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--gris-clair);
  padding-top: 1.2rem;
}
.auteur-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-clair), var(--vert-foret));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blanc);
  flex-shrink: 0;
}
.auteur-nom {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--encre);
}
.auteur-role {
  font-size: 0.77rem;
  color: var(--gris-moyen);
  margin-top: 0.1rem;
}

/* CTA Final Index */
.section-cta {
  background: var(--banane);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  margin-top: 3rem;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(13, 61, 31, 0.04) 0px,
    rgba(13, 61, 31, 0.04) 2px,
    transparent 2px,
    transparent 44px
  );
}
.section-cta::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 61, 31, 0.1) 0%,
    transparent 65%
  );
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE SUPPLEMENTAIRE
   ================================================ */
@media (max-width: 1024px) {
  .fh-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fh-right {
    max-width: 500px;
    margin: 0 auto;
  }
  .fh-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }

  .piliers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .carte-layout {
    grid-template-columns: 1fr;
  }
  .map-area {
    min-height: 280px;
  }
  .pourquoi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grille {
    grid-template-columns: 1fr;
  }
  .hero-visuel {
    display: none;
  }
  .hero-titre {
    font-size: 2.8rem;
  }

  .grille-piliers {
    grid-template-columns: repeat(2, 1fr);
  }
  .atouts-layout {
    grid-template-columns: 1fr;
  }
  .grille-cibles {
    grid-template-columns: repeat(2, 1fr);
  }
  .grille-impact {
    grid-template-columns: repeat(2, 1fr);
  }
  .grille-temos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-liens {
    display: none;
  }
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .nav-liens.open {
    display: flex !important;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 3px solid var(--vert-pale);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    list-style: none;
  }
  .nav-liens.open li {
    width: 100%;
  }
  .nav-liens.open .nav-lien {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--encre);
    border-bottom: 1px solid var(--vert-pale);
  }
  .nav-liens.open li:last-child .nav-lien {
    border-bottom: none;
  }
  .nav-liens.open .nav-lien:hover,
  .nav-liens.open .nav-lien.actif {
    background: var(--vert-pale);
    color: var(--vert-jungle);
    border-radius: var(--rayon-sm);
  }

  .section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }

  .ferme-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .ferme-hero .container {
    padding: 3rem 1.25rem;
  }
  .fh-grid {
    padding: 0;
    gap: 2.5rem;
  }
  .fh-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .fh-subtitle {
    font-size: 0.95rem;
  }
  .fh-actions {
    flex-direction: column;
  }
  .fh-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .fh-right {
    display: none;
  }

  .piliers-grid {
    grid-template-columns: 1fr;
  }
  .pc-body {
    padding: 1.5rem;
  }
  .pc-header {
    padding: 1.25rem 1.5rem;
  }

  .carte-layout {
    grid-template-columns: 1fr;
  }
  .map-area {
    min-height: 240px;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
  }
  .map-zone {
    min-width: 75px;
    padding: 0.75rem 0.5rem;
  }
  .map-zone span {
    font-size: 1.1rem;
  }
  .map-zone small {
    font-size: 0.55rem;
  }
  .infra-item {
    padding: 1rem;
  }

  .pourquoi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pq-card {
    padding: 1.5rem;
  }

  .section-cta-final {
    padding: 5rem 0;
  }
  .cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .cta-sub {
    font-size: 0.95rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn-yellow-lg,
  .cta-btns .btn-glass-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 3rem;
  }
  .hero-titre {
    font-size: 2rem;
  }
  .hero-sous-titre {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
  }

  .grille-piliers {
    grid-template-columns: 1fr;
  }
  .atouts-layout {
    grid-template-columns: 1fr;
  }
  .grille-cibles {
    grid-template-columns: 1fr;
  }
  .grille-impact {
    grid-template-columns: 1fr;
  }
  .temos-layout {
    grid-template-columns: 1fr;
  }
  .temos-intro {
    order: -1;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .fh-title {
    font-size: 1.9rem;
  }
  .fh-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .piliers-grid {
    gap: 1rem;
  }
  .pc-body h3 {
    font-size: 1rem;
  }

  .pourquoi-grid {
    gap: 0.75rem;
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .ticker-track {
    font-size: 0.65rem;
    gap: 1rem;
  }

  .btn-yellow-lg,
  .btn-glass-lg {
    font-size: 0.88rem;
    padding: 0.85rem 1.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .hero-titre {
    font-size: 2.2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .atout-card {
    padding: 1.5rem;
    padding-left: 1.5rem;
  }
  .atout-icone {
    display: none;
  }
}

/* ================================================
   18. RESPONSIVE — TRÈS PETIT (≤480px)
   ================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .ph-titre {
    font-size: 1.9rem;
  }
  .ph-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .ph-stat-num {
    font-size: 1.5rem;
  }

  .titre-section {
    font-size: 1.7rem;
  }

  .vm-citation {
    font-size: 1rem;
  }

  .stats-about-inner {
    grid-template-columns: 1fr;
  }
  .stats-about-label {
    grid-column: span 1;
  }
  .stat-about-col {
    border-top: 1px solid rgba(13, 61, 31, 0.1);
    border-left: none;
  }

  .grille-equipe {
    max-width: 100%;
  }

  .btn {
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
  }
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* =====================================================
   styles-index-responsive.css — FRESH'O VITROPLANTS
   Page d'accueil — Responsive complet
   ===================================================== */

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

:root {
  /* Couleurs brand */
  --vert-foret: #0d3d1f;
  --vert-jungle: #1a5c32;
  --vert-feuille: #2e8b4a;
  --vert-clair: #52b86a;
  --vert-mint: #a8d8b0;
  --vert-pale: #e8f5ec;
  --banane: #f2c12e;
  --banane-fonce: #c9960a;
  --banane-pale: #fef5d4;
  --terre: #8b4513;
  --ocre: #c4841a;
  --sable: #f0ddb0;
  --creme: #fbf6ec;
  --encre: #0a1e0d;
  --gris-chaud: #4a5240;
  --gris-moyen: #7a8572;
  --gris-clair: #c8d0c0;
  --blanc: #ffffff;

  /* Typographie */
  --fonte-titre: "Fraunces", Georgia, serif;
  --fonte-corps: "DM Sans", sans-serif;

  /* Ombres */
  --ombre-sm: 0 2px 12px rgba(10, 30, 13, 0.08);
  --ombre-md: 0 8px 40px rgba(10, 30, 13, 0.12);
  --ombre-lg: 0 20px 80px rgba(10, 30, 13, 0.18);
  --ombre-xl: 0 40px 120px rgba(10, 30, 13, 0.25);

  /* Rayons */
  --rayon-sm: 6px;
  --rayon-md: 14px;
  --rayon-lg: 24px;
  --rayon-xl: 40px;
  --rayon-full: 9999px;

  --tr: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================
   2. BASE
   ================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corps);
  color: var(--encre);
  background: var(--vert-foret);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}

/* ================================================
   3. LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-visites {
  padding: 5rem 0;
  background : #F4FFF2;
}

/* ================================================
   4. BOUTONS (communs)
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: solid 2px #28A83B;
  font-family: var(--fonte-corps);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.fleche {
  transition: transform var(--tr);
}
.btn:hover .fleche {
  transform: translateX(4px);
}

.btn-banane {
  background: var(--banane);
  color: var(--encre);
  border-color: var(--banane);
  box-shadow: 0 4px 20px rgba(242, 193, 46, 0.45);
}
.btn-banane:hover {
  background: var(--banane-fonce);
  color: var(--blanc);
  box-shadow: 0 8px 32px rgba(201, 150, 10, 0.5);
}

.btn-fantome {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-fantome:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-primaire {
  background: var(--vert-foret);
  color: var(--blanc);
  box-shadow: 0 4px 20px rgba(13, 61, 31, 0.35);
}
.btn-primaire:hover {
  background: var(--vert-jungle);
  box-shadow: 0 8px 32px rgba(13, 61, 31, 0.45);
  transform: translateY(-2px);
}

.btn-contour {
  background: transparent;
  color: var(--vert-foret);
  border-color: var(--vert-feuille);
}
.btn-contour:hover {
  background: var(--vert-pale);
  border-color: var(--vert-jungle);
}

.btn-blanc {
  background: var(--blanc);
  color: var(--vert-foret);
  box-shadow: var(--ombre-sm);
}
.btn-blanc:hover {
  background: var(--creme);
  box-shadow: var(--ombre-md);
  transform: translateY(-2px);
}

/* ================================================
   5. TYPOGRAPHIE COMMUNE
   ================================================ */
.etiquette {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fonte-corps);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2e8b4a;
  padding: 0.35rem 1rem;
  background: var(--vert-pale);
  border-radius: var(--rayon-full);
  border: 1.5px solid rgba(46, 139, 74, 0.2);
}
.etiquette::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--vert-feuille);
  border-radius: 50%;
  display: inline-block;
}
.etiquette.blanc {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.etiquette.blanc::before {
  background: var(--banane);
}

.titre-section {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--encre);
  margin-top: 0.75rem;
}
.titre-section em {
  font-style: italic;
  font-weight: 300;
  color: var(--vert-jungle);
}

.desc-section {
  font-size: 1.05rem;
  color: black;
  line-height: 1.75;
  margin-top: 0.9rem;
  max-width: 560px;
}

.entete-section {
  margin-bottom: 3.5rem;
}
.entete-section.centre {
  text-align: center;
}
.entete-section.centre .desc-section {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   6. NAVBAR
   ================================================ */
.marque {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marque-logo {
  height: 64px !important;
  max-height: none !important;
  max-width: none !important;
  width: auto;
}

/* Logo plus petit sur mobile pour ne pas être caché par le menu burger */
@media (max-width: 768px) {
  .marque-logo {
    height: 48px !important;
    width: auto !important;
  }
}

/* Hamburger (caché par défaut sur desktop) */
/* ================================================
   7. HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background-color: var(--vert-foret);
  background-image: url("images/img1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

/* Overlay sombre pour lisibilité du texte sur l'image */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 13, 0.82) 0%,
    rgba(13, 61, 31, 0.7) 50%,
    rgba(10, 30, 13, 0.55) 100%
  );
  z-index: 1;
}

.hero-fond,
.hero-grille,
.scroll-indicateur {
  position: relative;
  z-index: 2;
}

.hero-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-forme-1 {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
  background: radial-gradient(
    circle at 40% 50%,
    var(--vert-jungle) 0%,
    transparent 70%
  );
  opacity: 0.7;
}
.hero-forme-2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 400px;
  border-radius: 50% 70% 40% 60% / 60% 40% 70% 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(242, 193, 46, 0.18) 0%,
    transparent 65%
  );
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-diagonal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    160deg,
    transparent 0%,
    rgba(255, 255, 255, 0.022) 100%
  );
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-grille {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Le hero n'a pas de .container — on aligne via hero-grille */
.hero {
  justify-content: stretch;
}

.hero-contenu {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(242, 193, 46, 0.15);
  border: 1.5px solid rgba(242, 193, 46, 0.4);
  color: var(--banane);
  padding: 0.4rem 1.1rem;
  border-radius: var(--rayon-full);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-badge-point {
  width: 7px;
  height: 7px;
  background: var(--banane);
  border-radius: 50%;
  animation: pulse-v 2.2s infinite;
}

.hero-titre {
  font-family: var(--fonte-titre);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blanc);
  margin-bottom: 1.6rem;
}
.hero-titre em {
  font-style: italic;
  font-weight: 300;
  color: var(--banane);
  display: block;
}
.ligne-verte {
  display: block;
  color: var(--vert-mint);
}

.hero-sous-titre {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-chiffres {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.chiffre-val {
  font-family: var(--fonte-titre);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.04em;
}
.chiffre-val span {
  color: var(--banane);
  font-size: 1.6rem;
}
.chiffre-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Carte visuelle hero */
.hero-visuel {
  position: relative;
}

.carte-principale {
  border-radius: var(--rayon-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  box-shadow:
    var(--ombre-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.carte-fond-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
}
.carte-fond-svg svg {
  width: 260px;
  height: 260px;
}

.carte-statut {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(82, 184, 106, 0.2);
  border: 1px solid rgba(82, 184, 106, 0.4);
  color: var(--vert-mint);
  padding: 0.3rem 0.9rem;
  border-radius: var(--rayon-full);
  font-size: 0.73rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}
.carte-statut::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--vert-clair);
  border-radius: 50%;
  animation: pulse-v 2s infinite;
}

.carte-libelle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}
.carte-titre {
  font-family: var(--fonte-titre);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.25;
}

.carte-flottante {
  position: absolute;
  background: var(--blanc);
  border-radius: var(--rayon-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--ombre-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 160px;
  z-index: 3;
}
.carte-flottante.haut-droite {
  top: -1.2rem;
  right: -1.8rem;
  animation: flotter 4s ease-in-out infinite;
}
.carte-flottante.bas-gauche {
  bottom: -1.2rem;
  left: -1.8rem;
  animation: flotter 4s ease-in-out 2s infinite;
}

.flottante-icone {
  width: 38px;
  height: 38px;
  border-radius: var(--rayon-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.flottante-icone.verte {
  background: var(--vert-pale);
}
.flottante-icone.jaune {
  background: var(--banane-pale);
}
.flottante-icone svg {
  width: 24px;
  height: 24px;
}

.flottante-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--encre);
  line-height: 1;
}
.flottante-lab {
  font-size: 0.7rem;
  color: var(--gris-moyen);
  margin-top: 0.2rem;
}

/* Scroll indicateur */
.scroll-indicateur {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-trait {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: descend 1.8s ease-in-out infinite;
}

/* ================================================
   8. RUBAN CHIFFRES
   ================================================ */
.ruban-chiffres {
  background: var(--banane);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.ruban-chiffres::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
}

.ruban-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.ruban-col {
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(13, 61, 31, 0.15);
}
.ruban-col:last-child {
  border-right: none;
}

.ruban-nombre {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--vert-foret);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ruban-nombre sup {
  font-size: 60%;
  vertical-align: super;
}

.ruban-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(13, 61, 31, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* ================================================
   9. SECTION PILIERS
   ================================================ */
.section-piliers {
  background: var(--creme);
  position: relative;
}
.section-piliers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vert-foret),
    var(--banane),
    var(--vert-feuille)
  );
}

.grille-piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.carte-pilier {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--gris-clair);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.carte-pilier::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.pilier-1::after {
  background: var(--vert-jungle);
}
.pilier-2::after {
  background: var(--banane);
}
.pilier-3::after {
  background: var(--ocre);
}
.carte-pilier:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-md);
  border-color: transparent;
}
.carte-pilier:hover::after {
  transform: scaleX(1);
}

.pilier-num {
  font-family: var(--fonte-titre);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.07;
  color: var(--vert-foret);
  margin-bottom: 0.5rem;
}

.pilier-icone {
  width: 52px;
  height: 52px;
  border-radius: var(--rayon-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.pilier-icone svg {
  width: 36px;
  height: 36px;
}
.pilier-1 .pilier-icone {
  background: var(--vert-pale);
}
.pilier-2 .pilier-icone {
  background: var(--banane-pale);
}
.pilier-3 .pilier-icone {
  background: var(--sable);
}

.pilier-titre {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.75rem;
}
.pilier-desc {
  font-size: 0.9rem;
  color: var(--gris-chaud);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pilier-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vert-jungle);
  transition: gap var(--tr);
}
.pilier-lien:hover {
  gap: 0.7rem;
}

/* ================================================
   10. SECTION ATOUTS
   ================================================ */
.section-atouts {
  background: var(--blanc);
}

.atouts-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: center;
}

.liste-atouts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item-atout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--creme);
  border-radius: var(--rayon-md);
  border: 1.5px solid transparent;
  transition:
    border-color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
}
.item-atout:hover {
  border-color: var(--vert-mint);
  transform: translateX(6px);
  box-shadow: var(--ombre-sm);
}

.atout-num {
  font-family: var(--fonte-titre);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
  flex-shrink: 0;
  width: 50px;
  letter-spacing: -0.04em;
  color: var(--vert-foret);
}
.item-atout:nth-child(2) .atout-num {
  color: var(--banane-fonce);
}
.item-atout:nth-child(4) .atout-num {
  color: var(--ocre);
}

.atout-corps h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.3rem;
}
.atout-corps p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  line-height: 1.65;
}

/* ================================================
   11. SECTION CIBLES
   ================================================ */
.section-cibles {
  background: var(--vert-foret);
  position: relative;
  overflow: hidden;
}

.cibles-fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 85% 15%,
      rgba(242, 193, 46, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 85%,
      rgba(82, 184, 106, 0.07) 0%,
      transparent 50%
    );
}
.cibles-motif {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.section-cibles .entete-section {
  position: relative;
  z-index: 1;
}
.section-cibles .titre-section {
  color: var(--blanc);
}
.section-cibles .titre-section em {
  color: var(--banane);
}
.section-cibles .desc-section {
  color: rgba(255, 255, 255, 0.55);
}

.grille-cibles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.carte-cible {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition:
    transform var(--tr),
    background var(--tr),
    border-color var(--tr);
}
.carte-cible:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}
.carte-cible.vedette {
  border-color: rgba(242, 193, 46, 0.5);
  background: rgba(242, 193, 46, 0.07);
}

.badge-vedette {
  background: var(--banane);
  color: var(--encre);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.4rem;
}

.cible-entete {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cible-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.cible-emoji svg {
  width: 56px;
  height: 56px;
}
.cible-nom {
  font-family: var(--fonte-titre);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.2;
}

.cible-corps {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}

.liste-cible {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.liste-cible li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.liste-cible li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--vert-clair);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

.cta-cible {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--banane);
  transition: gap var(--tr);
}
.cta-cible:hover {
  gap: 0.7rem;
}

/* ================================================
   12. SECTION PROCESSUS
   ================================================ */
.section-processus {
  background: var(--creme);
}

.grille-processus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 1rem;
}
.grille-processus::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--vert-feuille), var(--banane));
  z-index: 0;
  opacity: 0.35;
  border-radius: 2px;
}

.etape-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.etape-bulle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blanc);
  border: 2px solid var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  box-shadow: var(--ombre-sm);
  transition:
    border-color var(--tr),
    background var(--tr),
    transform var(--tr);
}
.etape-item:hover .etape-bulle {
  border-color: var(--vert-jungle);
  background: var(--vert-pale);
  transform: scale(1.08);
}

.etape-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gris-moyen);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.etape-titre {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--encre);
  margin-bottom: 0.4rem;
}
.etape-desc {
  font-size: 0.8rem;
  color: var(--gris-chaud);
  line-height: 1.55;
}

/* ================================================
   13. SECTION IMPACT
   ================================================ */
.section-impact {
  background: linear-gradient(165deg, var(--vert-foret) 0%, #061b0a 100%);
  position: relative;
  overflow: hidden;
}

.impact-fond {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(82, 184, 106, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 75%,
      rgba(242, 193, 46, 0.07) 0%,
      transparent 55%
    );
}

.section-impact .entete-section {
  position: relative;
  z-index: 1;
}
.section-impact .titre-section {
  color: var(--blanc);
}
.section-impact .titre-section em {
  color: var(--banane);
}
.section-impact .desc-section {
  color: rgba(255, 255, 255, 0.5);
}

.grille-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.carte-impact {
  border-radius: var(--rayon-lg);
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    background var(--tr);
}
.carte-impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.impact-eco::before {
  background: linear-gradient(90deg, var(--banane), var(--ocre));
}
.impact-social::before {
  background: linear-gradient(90deg, var(--vert-feuille), var(--vert-mint));
}
.impact-env::before {
  background: linear-gradient(90deg, var(--vert-jungle), var(--vert-clair));
}
.carte-impact:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.09);
}

.impact-emoji {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.impact-emoji svg {
  width: 52px;
  height: 52px;
}

.impact-nombre {
  font-family: var(--fonte-titre);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blanc);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.impact-nombre span {
  color: var(--banane);
  font-size: 2rem;
}

.impact-titre {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}
.impact-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.centre-impact {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ================================================
   14. SECTION TÉMOIGNAGES
   ================================================ */
.section-temoignages {
  background: var(--blanc);
}

.temos-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.temos-intro .desc-section {
  margin-top: 0.75rem;
}
.temos-intro .btn {
  margin-top: 2rem;
}

.grille-temos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.carte-temo {
  background: var(--creme);
  border-radius: var(--rayon-lg);
  padding: 2rem;
  border: 1.5px solid var(--gris-clair);
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.carte-temo:first-child {
  grid-column: 1 / -1;
}
.carte-temo:hover {
  box-shadow: var(--ombre-md);
  transform: translateY(-4px);
}

.guillemetq {
  font-family: var(--fonte-titre);
  font-size: 5rem;
  color: var(--vert-pale);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}
.temo-texte {
  font-family: var(--fonte-titre);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--encre);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.temo-auteur {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--gris-clair);
  padding-top: 1.2rem;
}
.auteur-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-clair), var(--vert-foret));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blanc);
  flex-shrink: 0;
}
.auteur-nom {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--encre);
}
.auteur-role {
  font-size: 0.77rem;
  color: var(--gris-moyen);
  margin-top: 0.1rem;
}

/* ================================================
   15. CTA FINAL
   ================================================ */
*
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(13, 61, 31, 0.04) 0px,
    rgba(13, 61, 31, 0.04) 2px,
    transparent 2px,
    transparent 44px
  );
}
.section-cta::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 61, 31, 0.1) 0%,
    transparent 65%
  );
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-texte h2 {
  font-family: var(--fonte-titre);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--vert-foret);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-texte h2 em {
  font-style: italic;
  font-weight: 300;
}
.cta-texte p {
  font-size: 1rem;
  color: rgba(13, 61, 31, 0.65);
  max-width: 400px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================
   16. FOOTER
   ================================================ */
.footer {
  background: var(--encre);
  color: rgba(255, 255, 255, 0.6);
  padding: 4.5rem 0 2rem;
}

.footer-grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  max-width: 240px;
}

.footer-reseaux {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.reseau-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--rayon-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
}
.reseau-btn:hover {
  background: var(--vert-jungle);
  color: var(--blanc);
  border-color: var(--vert-jungle);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--tr);
}
.footer-col a:hover {
  color: var(--vert-clair);
  transform: translateX(4px);
}

.footer-contact-info p {
  font-size: 0.87rem;
  margin-bottom: 0.45rem;
  line-height: 1.6;
}
.footer-contact-info a {
  color: var(--vert-mint);
}
.footer-contact-info a:hover {
  color: var(--vert-clair);
}

.footer-bas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--tr);
}
.footer-legal a:hover {
  color: var(--vert-mint);
}

/* ================================================
   17. ANIMATIONS
   ================================================ */
@keyframes pulse-v {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
@keyframes flotter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes descend {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ================================================
   18. RESPONSIVE — TABLETTE (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  /* Hero */
  .hero-grille {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  .hero-titre {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }
  .hero-visuel {
    max-width: 480px;
    margin: 0 auto;
  }
  .carte-flottante {
    display: none;
  }

  /* Ruban */
  .ruban-grille {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruban-col:nth-child(2) {
    border-right: none;
  }
  .ruban-col:nth-child(3) {
    border-top: 1px solid rgba(13, 61, 31, 0.1);
  }
  .ruban-col:nth-child(4) {
    border-top: 1px solid rgba(13, 61, 31, 0.1);
    border-right: none;
  }

  /* Piliers */
  .grille-piliers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Atouts */
  .atouts-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Cibles */
  .grille-cibles {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Processus */
  .grille-processus {
    grid-template-columns: repeat(3, 1fr);
  }
  .grille-processus::before {
    display: none;
  }

  /* Impact */
  .grille-impact {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Temoignages */
  .temos-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .grille-temos {
    grid-template-columns: 1fr;
  }
  .carte-temo:first-child {
    grid-column: 1;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
  }

  /* Footer */
  .footer-grille {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ================================================
   21. VISITES CTA (Ferme zéro carbone)
   ================================================ */
.section-visites-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-visites-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(102, 187, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 214, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.visites-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.visites-cta-contenu {
  max-width: 500px;
}
.visites-cta-contenu .etiquette {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.visites-cta-contenu .titre-section {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.visites-cta-contenu .titre-section em {
  color: var(--yellow);
}
.visites-cta-contenu .desc-section {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.visites-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.visites-cta-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}
.visites-cta-actions .btn-primary {
  background: var(--yellow);
  color: var(--text);
  border: none;
}
.visites-cta-actions .btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}
.visites-cta-actions .btn-primary svg {
  transition: transform var(--transition);
}
.visites-cta-actions .btn-primary:hover svg {
  transform: translateX(3px);
}
.visites-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.visites-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.visites-cta-visuel {
  position: relative;
}
.visites-cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}
.visites-cta-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.visites-cta-infos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.visite-cta-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.visite-cta-info:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.visite-icone {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.visite-texte strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.visite-texte p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* ================================================
   22. RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  /* ---- Navbar mobile ---- */
  .nav-liens {
    display: none;
  }
  .btn-nav {
    display: none;
  }

  /* Burger toujours visible sur mobile */
  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .navbar-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  /* Menu déroulant quand ouvert */
  .nav-liens.open {
    display: flex !important;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 3px solid var(--vert-pale);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    list-style: none;
  }

  .nav-liens.open li {
    width: 100%;
  }

  .nav-liens.open .nav-lien {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--encre);
    border-bottom: 1px solid var(--vert-pale);
    border-radius: 0;
  }
  .nav-liens.open li:last-child .nav-lien {
    border-bottom: none;
  }

  .nav-liens.open .nav-lien:hover,
  .nav-liens.open .nav-lien.actif {
    background: var(--vert-pale);
    color: var(--vert-jungle);
    border-radius: var(--rayon-sm);
  }

  /* ---- Sections ---- */
  .section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-grille {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 4rem;
    gap: 2rem;
  }
  .hero-titre {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-sous-titre {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-chiffres {
    gap: 1.5rem;
  }
  .chiffre-val {
    font-size: 1.8rem;
  }
  .hero-visuel {
    display: none;
  }
  .scroll-indicateur {
    display: none;
  }

  /* ---- Ruban ---- */
  .ruban-grille {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruban-col {
    border-right: none;
    border-bottom: 1px solid rgba(13, 61, 31, 0.1);
    padding: 1.25rem 1rem;
  }
  .ruban-col:nth-child(3),
  .ruban-col:nth-child(4) {
    border-top: none;
  }
  .ruban-col:last-child {
    border-bottom: none;
  }
  .ruban-nombre {
    font-size: 2.2rem;
  }

  /* ---- Piliers ---- */
  .grille-piliers {
    grid-template-columns: 1fr;
  }
  .carte-pilier {
    padding: 2rem 1.5rem;
  }

  /* ---- Atouts ---- */
  .atouts-layout {
    gap: 2rem;
  }
  .item-atout {
    padding: 1.2rem 1.25rem;
    gap: 1rem;
  }
  .atout-num {
    font-size: 1.8rem;
    width: 40px;
  }

  /* ---- Cibles ---- */
  .grille-cibles {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .cible-entete {
    padding: 1.5rem;
  }
  .cible-corps {
    padding: 1.25rem 1.5rem 1.75rem;
  }

  /* ---- Processus ---- */
  .grille-processus {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* ---- Impact ---- */
  .grille-impact {
    grid-template-columns: 1fr;
  }
  .carte-impact {
    padding: 1.75rem;
  }
  .impact-nombre {
    font-size: 2.5rem;
  }

  /* ---- Temoignages ---- */
  .temos-layout {
    gap: 2.5rem;
  }
  .grille-temos {
    gap: 1.25rem;
  }
  .carte-temo {
    padding: 1.5rem;
  }
  .temo-texte {
    font-size: 0.93rem;
  }
  .guillemetq {
    font-size: 3.5rem;
  }

  /* ---- CTA ---- */
  .section-cta {
    padding: 4rem 0;
  }
  .cta-inner {
    gap: 2rem;
  }
  .cta-texte h2 {
    font-size: 1.8rem;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Footer ---- */
  .footer-grille {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* ---- Visites ouvertes ---- */
  .visites-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .visites-contenu {
    max-width: 100%;
    text-align: center;
  }
  .visites-actions {
    justify-content: center;
  }
  .visites-image img {
    height: 250px;
  }
  .visite-info {
    padding: 1.25rem;
  }
  .visite-icone {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  /* ---- Visites CTA ---- */
  .visites-cta-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .visites-cta-contenu {
    max-width: 100%;
    text-align: center;
  }
  .visites-cta-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .visites-cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .visites-cta-image img {
    height: 250px;
  }
  .visite-cta-info {
    padding: 1rem;
  }
  .visite-icone {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ================================================
   20. RESPONSIVE — TRÈS PETIT (≤480px)
   ================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  /* Hero */
  .hero-titre {
    font-size: 2rem;
  }
  .hero-sous-titre {
    font-size: 0.95rem;
  }
  .hero-chiffres {
    flex-direction: column;
    gap: 1rem;
    border-top: none;
    padding-top: 1.5rem;
  }

  /* Ruban */
  .ruban-grille {
    grid-template-columns: 1fr;
  }
  .ruban-col {
    border-right: none;
  }

  /* Processus */
  .grille-processus {
    grid-template-columns: 1fr;
  }
  .etape-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .etape-bulle {
    margin: 0;
    flex-shrink: 0;
  }

  /* Temoignages */
  .grille-temos {
    grid-template-columns: 1fr;
  }

  /* Boutons */
  .btn {
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
  }
  .btn-nav {
    display: none;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  /* ================================================
   BURGER MENU — navbar-nav (impact, faq, temoignages)
   ================================================ */
  @media (max-width: 768px) {
    .navbar-nav.open {
      display: flex !important;
      position: fixed;
      top: 62px;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.99);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 1rem 1.5rem 1.5rem;
      gap: 0;
      border-bottom: 3px solid var(--green-pale);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      z-index: 9999;
      list-style: none;
    }

    .navbar-nav.open li {
      width: 100%;
    }

    .navbar-nav.open .nav-link {
      display: block;
      padding: 0.9rem 1rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      border-bottom: 1px solid var(--green-pale);
    }

    .navbar-nav.open li:last-child .nav-link {
      border-bottom: none;
    }

    .navbar-nav.open .nav-link:hover,
    .navbar-nav.open .nav-link.active {
      background: var(--green-pale);
      color: var(--green-dark);
      border-radius: var(--radius-sm);
    }
  }
}

/* ================================================
   NOS CLIENTS SECTION
   ================================================ */
.section-clients {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--white) 100%);
}

.clients-header {
  text-align: center;
  margin-bottom: 4rem;
}

.clients-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.clients-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 94, 32, 0.15);
}

.clients-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.clients-image:hover .clients-img {
  transform: scale(1.05);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.client-type {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(27, 94, 32, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--green-pale);
}

.client-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(27, 94, 32, 0.15);
  border-color: var(--green-light);
}

.client-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.client-type:hover .client-icon {
  background: var(--green-light);
  transform: scale(1.1);
}

.client-type h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.client-type p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
  .clients-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-clients {
    padding: 3rem 0;
  }
  
  .clients-header {
    margin-bottom: 2.5rem;
  }
  
  .clients-content {
    gap: 2rem;
  }
  
  .client-type {
    padding: 1rem;
  }
  
  .client-icon {
    width: 48px;
    height: 48px;
  }
  
  .client-type h4 {
    font-size: 1rem;
  }
  
  .client-type p {
    font-size: 0.85rem;
  }
  }
}

