/* ============================================
   LES GLOUTONS — Design System & Styles
   Site professionnel de valorisation de biodéchets
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Couleurs principales */
  --color-primary: #1B4332;
  --color-primary-light: #2D6A4F;
  --color-primary-dark: #0D2818;
  --color-accent: #E85D3A;
  --color-accent-hover: #D44A28;
  --color-green-light: #52B788;
  --color-green-pale: #D8F3DC;

  /* Neutres */
  --color-bg: #FAF9F6;
  --color-bg-alt: #FAF9F6;
  --color-bg-dark: #1A1A1A;
  --color-text: #1A1A1A;
  --color-text-light: #555;
  --color-text-on-dark: #F0F0F0;
  --color-white: #FFFFFF;
  --color-border: #E0DFD8;

  /* Typographie */
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-size-base: 0.9375rem;
  --line-height-base: 1.7;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Conteneur */
  --container-max: 1200px;
  --container-narrow: 900px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
}


/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* --- Typographie responsive --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.text-accent { color: var(--color-accent); }
.text-green { color: var(--color-green-light); }
.text-light { color: var(--color-text-light); }


/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-xl) 0;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background-color: var(--color-primary-dark);
  color: var(--color-text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--green {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
}

.section--green h2,
.section--green h3 {
  color: var(--color-white);
}

/* --- Hero header (pages internes) --- */
.hero-header {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 40, 24, 0.92) 0%, rgba(27, 67, 50, 0.6) 50%, rgba(27, 67, 50, 0.3) 100%);
}
.hero-header__content {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

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

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  transition: height var(--transition-base);
}

.nav.scrolled .nav__inner {
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
}

.nav__logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition-base);
}

.nav.scrolled .nav__logo img {
  height: 44px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 0.5rem;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav__dropdown-item:hover {
  background-color: #f5f5f5;
}

.nav__dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__dropdown-icon svg,
.nav__dropdown-icon img {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

.nav__dropdown-icon img {
  width: 34px;
  height: 34px;
}

.nav__dropdown-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.nav__dropdown-text span {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--color-text-light);
}

/* Language switcher */
.nav__lang {
  margin-left: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__lang:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* CTA nav */
.nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  color: var(--color-primary);
  opacity: 0.6;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav__social:hover {
  opacity: 1;
  color: #0A66C2;
}

.nav__cta {
  margin-left: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 93, 58, 0.3);
}

/* Mobile menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 58, 0.3);
}

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

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: var(--radius-full);
}


/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  animation: heroScrollBounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.05);
}
.hero__scroll:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.1);
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.85) 0%, rgba(27,67,50,0.7) 50%, rgba(27,67,50,0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--space-xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-green-pale);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(4px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.hero h1 span {
  color: var(--color-green-light);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-lg);
  max-width: 750px;
  line-height: 1.75;
  margin-left: 0;
  margin-right: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-left: 3px solid var(--color-green-light);
  padding-left: 1.2rem;
}
.hero__subtitle strong {
  color: #fff;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.hero__phone a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero__phone a:hover {
  color: var(--color-green-light);
}


/* --- Stats bar --- */
.stats {
  position: relative;
  z-index: 3;
  margin-top: 0;
  background: #fff;
  padding: 0 0 2.5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.stats__item {
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stats__item:last-child {
  border-right: none;
}

.stats__number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
}


/* --- Section headers --- */
.section-header {
  margin-bottom: var(--space-lg);
}

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

.section-header--center p {
  margin: 0 auto;
}

.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-header .overline::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.section--dark .section-header .overline {
  color: rgba(255,255,255,0.85);
}

.section--dark .section-header .overline::before {
  background: rgba(255,255,255,0.6);
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.7);
}


/* --- Cards activités --- */
.activity-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

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

.activity-card__img {
  height: 220px;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  position: relative;
}

.activity-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13,40,24,0.7), transparent);
}

.activity-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.activity-card__location {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
}

.activity-card__location svg {
  width: 16px;
  height: 16px;
}

.activity-card__body {
  padding: 1.5rem;
}

.activity-card__body h3 {
  margin-bottom: 0.75rem;
}

.activity-card__body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.activity-card__matiere {
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}

.activity-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.activity-card__link:hover {
  gap: 0.8rem;
  color: var(--color-accent);
}

.activity-card__link svg {
  width: 16px;
  height: 16px;
}


/* --- Value chain / Process --- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--color-green-pale);
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.process__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: all var(--transition-base);
}

.process__step:hover .process__icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.process__icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.process__step:hover .process__icon svg {
  color: var(--color-white);
}

.process__step h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.process__step p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0 auto;
}


/* --- Certifications / badges --- */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.cert-badge:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

.cert-badge__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.cert-badge__text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

.cert-badge__text span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}


/* --- Site detail page --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.9) 0%, rgba(13,40,24,0.3) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-lg);
}

.page-hero__content .overline {
  color: var(--color-green-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.page-hero__content h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-hero__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
}

.page-hero__meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.page-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.page-hero__meta-item svg {
  width: 18px;
  height: 18px;
}

.page-hero__title {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-hero__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.page-hero__location svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Feature list (inside cards) --- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green-light);
}


/* --- Feature list (site detail) --- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

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

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

.feature__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.feature h4 {
  margin-bottom: 0.3rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}


/* --- Feature cards (grid) --- */
.feature-card {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

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

.feature-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}


/* --- Waste items (grid) --- */
.waste-item {
  padding: 1.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
}

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

.waste-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--color-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.waste-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.waste-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--color-primary-dark);
}

.waste-item p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.45;
}


/* --- Flow diagram --- */
.flow-diagram {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  justify-content: center;
}

.flow-item {
  flex: 1;
  max-width: 400px;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.flow-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-item__icon svg {
  width: 28px;
  height: 28px;
}

.flow-item--organic .flow-item__icon {
  background: var(--color-green-pale);
  color: var(--color-primary);
}

.flow-item--waste .flow-item__icon {
  background: rgba(232,93,58,0.1);
  color: var(--color-accent);
}

.flow-item--organic .flow-item__icon svg { color: var(--color-primary); }
.flow-item--waste .flow-item__icon svg { color: var(--color-accent); }

.flow-item h3 {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.flow-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.flow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-divider svg {
  width: 28px;
  height: 28px;
  color: var(--color-text-light);
}


/* --- Two-column content --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.split__img--placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  padding: var(--space-md);
}

.split__content h2 {
  margin-bottom: var(--space-sm);
}

.split__content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.split__content ul {
  margin-bottom: var(--space-md);
}

.split__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.split__content ul li svg {
  width: 20px;
  height: 20px;
  color: var(--color-green-light);
  flex-shrink: 0;
  margin-top: 2px;
}


/* --- Trust Logos (bandeau défilant) --- */
.trust-band {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

.trust-band::before,
.trust-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.trust-band::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.trust-band::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}

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

.trust-logo {
  height: 65px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(40%);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

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


/* --- Client cards (section Nos clients) --- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.client-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}

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

.client-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(82,183,136,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.client-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-green-light);
}

.client-card h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.client-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* --- Process steps hover --- */
.process-step-card {
  transition: all 0.3s ease;
}
.process-step-card:hover {
  background: #f8f8f8;
  transform: translateY(-4px);
}
/* --- Section overline (étiquette uppercase accent) --- */
.section-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-overline--sm {
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

/* --- Info cards with green left border --- */
.info-card {
  background: rgba(82, 183, 136, 0.06);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--color-primary-light);
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.1);
}
.info-card--white {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.06);
}
.info-card--cert {
  flex: 1;
  min-width: 150px;
  border-radius: 12px;
}

.process-step-card:hover .step-num-box {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(27,67,50,0.25);
}
.step-num-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(27,67,50,0.2);
  transition: all 0.3s ease;
}
.step-num-box--accent {
  background: var(--color-accent);
  box-shadow: 0 4px 12px rgba(232,93,58,0.2);
}

/* --- Overline dash (trait décoratif) --- */
.overline-dash {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.6);
}
.overline-dash--accent {
  background: var(--color-accent);
}

/* --- Service cards (Apport / Achat) --- */
.service-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27,67,50,0.15);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  transition: gap 0.3s ease;
}
.service-card:hover .service-link {
  gap: 0.9rem;
}


/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.08);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0 auto var(--space-md);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.cta-section__phone {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.cta-section__phone a {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.2rem;
}


/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-form form .form-group:last-of-type {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form form .form-group:last-of-type textarea {
  flex: 1;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary-light);
}

.contact-card h4 {
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact-card a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--color-accent);
}

/* Map container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* --- Process Step Cards --- */
.process-step {
  text-decoration: none;
  padding: 1.8rem 1.2rem;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.process-step:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.18);
  transform: translateY(-2px);
}
.process-step .step-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.process-step:hover .step-num {
  color: rgba(255, 255, 255, 0.85);
}
.process-step .step-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}
.process-step:hover .step-title {
  color: #fff;
}
.process-step .step-desc {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.process-step:hover .step-desc {
  color: rgba(255, 255, 255, 0.7);
}


/* --- Footer --- */
.footer {
  background: #fff;
  color: var(--color-text);
  padding: 2rem 0 1.2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

.footer__logo img {
  height: 64px;
  margin-bottom: 0.6rem;
}

.footer__tagline {
  color: var(--color-primary);
  font-size: 0.85rem;
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
}

.footer__nav a {
  color: var(--color-text-light);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__sep {
  color: var(--color-border);
  font-size: 0.85rem;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.footer__sep-bottom {
  color: var(--color-border);
}

.footer__bottom a {
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--color-accent);
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }


/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { gap: var(--space-md); }
  .features { grid-template-columns: 1fr; }

  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  .process::before { display: none; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 1.2rem 1.2rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    z-index: 1000;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__burger { display: flex; }

  .nav__link {
    align-self: flex-start;
  }
  .nav__dropdown-trigger {
    align-self: flex-start;
  }

  .nav__dropdown {
    width: 100%;
  }
  .nav__dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--color-bg-alt);
    border-radius: 8px;
    opacity: 1 !important;
    visibility: visible !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: auto !important;
    margin-top: 0.5rem;
    padding: 0.3rem 0;
    display: none;
    overflow: hidden;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }
  .nav__dropdown-icon {
    display: none !important;
  }
  .nav__dropdown-item {
    padding: 0.5rem 0.8rem;
    gap: 0 !important;
    max-width: 100%;
    overflow: hidden;
  }
  .nav__dropdown-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav__dropdown-text strong {
    font-size: 0.85rem;
  }
  .nav__dropdown-text span {
    font-size: 0.75rem;
  }

  .nav__cta { margin-left: 0; margin-top: var(--space-sm); }
  .nav__lang { margin-left: 0; }

  .hero { height: 100vh; height: 100dvh; }
  .hero__content { padding: var(--space-lg) 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn--lg { padding: 0.6rem 1.5rem; font-size: 0.9rem; text-align: center; min-width: 240px; }
  .hero__phone { display: none; }

  .section { padding: 2rem 0; }
  .section--lg { padding: 2.5rem 0; }
  .stats { padding: 0 0 1.5rem; }

  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }

  /* --- Vertical value chain (mobile) --- */
  body {
    font-size: 0.8125rem;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-header h2 {
    margin-bottom: 0.5rem;
  }
  .section-header p {
    margin-bottom: 0.8rem;
  }
  .section-header .overline {
    margin-bottom: 0.4rem;
  }
  .hero__bg img {
    object-position: 30% 70% !important;
  }
  .hero-header {
    min-height: 200px;
  }
  .hero-header__content > div:first-child {
    font-size: 0.65rem !important;
  }
  .hero-header__content p {
    font-size: 0.78rem !important;
  }
  .hero-header__bg {
    object-position: 70% center !important;
  }
  .page-hero__bg img {
    object-position: 70% center !important;
  }
  .intro-cards {
    display: none !important;
  }
  .key-figures {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 1rem !important;
  }
  .key-figures__item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left !important;
    padding: 0.8rem 1rem !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--color-border);
  }
  .key-figures__item:last-child {
    border-bottom: none;
  }
  .key-figures__item div:first-child {
    font-size: 1.8rem !important;
    min-width: 55px;
    flex-shrink: 0;
    text-align: left !important;
    white-space: nowrap;
  }
  .key-figures__number .desktop-only {
    display: none !important;
  }
  .key-figures__number::after {
    content: 'M';
    font-size: 1rem;
  }
  .key-figures__number--pct::after {
    content: '%';
    font-size: 1rem;
  }
  .key-figures__item p {
    margin: 0 !important;
    font-size: 0.82rem !important;
  }
  .circulaire-card-container {
    gap: 0.6rem !important;
  }
  .circulaire-card {
    padding: 1rem 0.6rem !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }
  .circulaire-card__icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 0.6rem !important;
  }
  .circulaire-card h4 {
    font-size: 0.82rem !important;
    margin-bottom: 0 !important;
  }
  .circulaire-card p {
    display: none !important;
  }
  .benefices-box {
    padding: 1rem 1rem !important;
    margin-top: 1.5rem !important;
  }
  .benefices-grid {
    flex-direction: column !important;
    gap: 0.4rem !important;
  }
  .benefices-grid > div > p:first-child {
    font-size: 0.82rem !important;
  }
  .benefices-desc {
    display: none !important;
  }
  .miimosa-badges {
    flex-direction: row !important;
    gap: 0.4rem !important;
    left: 0.8rem !important;
    right: 0.8rem !important;
    top: 0.8rem !important;
  }
  .miimosa-badge {
    flex: 1 1 0 !important;
    justify-content: center !important;
    text-align: center !important;
    height: 2.2rem !important;
    padding: 0 0.6rem !important;
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }
  .transport-desc {
    display: none !important;
  }
  .transport-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .transport-grid ul {
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 0.4rem !important;
  }
  .transport-grid ul li {
    flex: 0 0 calc(50% - 0.2rem) !important;
  }
  .transport-grid ul li span {
    font-size: 0.84rem;
  }
  .split__content { text-align: left; }
  .split__content p,
  .split__content ul,
  .split__content ul li { font-size: 0.84rem !important; }
  .split__content ul { text-align: left; display: inline-block; }
  .trust-track {
    gap: 2rem;
    animation-duration: 15s;
  }
  .trust-logo {
    height: 40px;
  }
  .client-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .client-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
    padding: 0.7rem 1rem;
  }
  .client-card__icon {
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
  }
  .client-card__icon svg,
  .client-card__icon img {
    width: 20px !important;
    height: 20px !important;
  }
  .client-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
  }
  .client-card p {
    display: none !important;
  }
  .info-card {
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .info-card--white {
    padding: 0.7rem 1rem !important;
    border-radius: 12px !important;
    border-left: 3px solid var(--color-primary-light) !important;
    background: rgba(82, 183, 136, 0.04) !important;
    box-shadow: none !important;
  }
  .info-card--white > p {
    display: none !important;
  }
  .info-card--white > div:first-child {
    margin-bottom: 0 !important;
    gap: 0.6rem !important;
  }
  .info-card--white img,
  .info-card--white svg {
    width: 22px !important;
    height: 22px !important;
    filter: brightness(0) saturate(100%) invert(36%) sepia(15%) saturate(1200%) hue-rotate(110deg) brightness(92%) !important;
  }
  .info-card--white strong {
    font-size: 0.84rem !important;
    color: var(--color-primary-dark) !important;
  }
  .cta-section__inner > p {
    display: none !important;
  }
  .compost-duo {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 1rem !important;
  }
  .compost-photo-section {
    margin-top: 1rem !important;
    gap: 1.5rem !important;
  }
  .compost-bring-buy {
    padding-bottom: 0.5rem !important;
  }
  .compost-duo .service-card {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
  }
  .compost-duo .service-card > span:first-child {
    display: none !important;
  }
  .compost-duo .service-card > div:first-of-type {
    margin-bottom: 0 !important;
    margin-right: 0.8rem;
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0;
  }
  .compost-duo .service-card > h3 {
    flex: 1;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1.2rem !important;
    line-height: 1.2;
  }
  .compost-duo .service-card > p,
  .compost-duo .service-card > div:not(:first-of-type),
  .compost-duo .service-card > a {
    flex: 0 0 100%;
    margin-top: 0.8rem;
  }
  .compost-process-intro {
    margin-top: 1.5rem !important;
  }
  .compost-badges {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
  }
  .compost-badges .info-card {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.2rem 0 !important;
    max-width: 100% !important;
  }
  .compost-badges .info-card p {
    display: none !important;
  }
  .compost-badges .info-card div:first-child {
    margin-bottom: 0 !important;
  }
  .cert-wrapper {
    padding: 1.2rem 1rem !important;
    gap: 1rem !important;
  }
  .cert-badges {
    min-width: 0 !important;
    flex: 1 1 100% !important;
    gap: 0.5rem !important;
    flex-direction: column !important;
  }
  .info-card--cert {
    min-width: 0 !important;
    flex: 1 1 auto;
    padding: 0.6rem 0.8rem !important;
  }
  .info-card--cert p {
    display: none !important;
  }
  .info-card--cert div:first-child {
    margin-bottom: 0 !important;
  }
  .info-card--cert strong {
    font-size: 0.82rem !important;
  }
  .chain-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
  }
  .chain-vertical__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .chain-vertical__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .chain-vertical__icon img,
  .chain-vertical__icon svg {
    width: 22px;
    height: 22px;
  }
  .chain-vertical__label {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-top: 0.3rem;
  }
  .chain-vertical__sub {
    display: none;
  }
  .chain-vertical__label {
    margin-top: 0.15rem;
  }
  .chain-vertical__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0.2rem auto;
  }
  .chain-vertical__connector .line {
    width: 2px;
    height: 16px;
    background: repeating-linear-gradient(to bottom, #52B788 0, #52B788 5px, transparent 5px, transparent 9px);
  }
  .chain-vertical__connector .arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-green-light);
  }
  .chain-vertical__fork-connector {
    width: 100%;
    margin: 0 auto;
  }
  .chain-vertical__fork-connector svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .chain-vertical__fork {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    margin-top: 0;
  }
  .chain-vertical__fork::before {
    content: none;
  }
  .chain-vertical__fork > a {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .chain-vertical__fork-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--color-border); padding: 1.2rem 0.5rem; }
  .stats__item:nth-child(odd) { border-right: 1px solid var(--color-border); }
  .stats__item:nth-child(even) { border-right: none; }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .stats__number { font-size: 1.5rem; }
  .stats__label { font-size: 0.75rem; }

  .process-steps {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    align-items: stretch;
    margin-top: -1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .process-steps__line {
    display: none !important;
  }
  .process-step-card {
    flex: 0 0 calc(50% - 0.25rem) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: 0.5rem 0.4rem !important;
    gap: 0.6rem;
  }
  .process-step-card .step-num-box {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    margin: 0 !important;
  }
  .process-step-card h4 {
    font-size: 0.82rem !important;
    margin: 0 !important;
  }
  .process-step-card p {
    display: none !important;
  }

  .bio-row span {
    display: none !important;
  }
  .compost-clients {
    gap: 0 0.3rem !important;
  }
  .client-row span {
    display: none !important;
  }
  .client-row {
    gap: 0.4rem !important;
    padding: 0.6rem 0.3rem !important;
    border-bottom: none !important;
  }
  .client-row strong {
    font-size: 0.78rem !important;
    white-space: nowrap;
  }
  .client-row-icon {
    width: 30px !important;
    height: 30px !important;
  }
  .client-row-icon img {
    width: 16px !important;
    height: 16px !important;
  }
  .bio-grid {
    gap: 0 0.6rem !important;
  }
  .bio-row strong {
    font-size: 0.82rem !important;
  }
  .bio-row-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }
  .bio-row-icon img {
    width: 20px !important;
    height: 20px !important;
  }
  .bio-row {
    padding: 0.5rem 0.3rem !important;
    gap: 0.6rem !important;
  }

  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .site-photos {
    grid-template-columns: 1fr !important;
    height: auto !important;
    gap: 0.6rem !important;
  }
  .site-photos > div {
    min-height: 180px;
  }

  .split { grid-template-columns: 1fr; gap: 1rem !important; }
  .split--reverse { direction: ltr; }
  .split__content { order: 1 !important; }
  .split__img { order: 2 !important; }

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

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

  .footer {
    padding: 1rem 0 0.8rem;
  }
  .footer__top {
    margin-bottom: 0.6rem;
  }
  .footer__logo img {
    height: 40px;
    margin-bottom: 0.3rem;
  }
  .footer__tagline {
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.5rem;
    padding-bottom: 0.4rem;
    margin-bottom: 0.3rem;
  }
  .footer__nav a:nth-child(1),
  .footer__nav .footer__sep:nth-child(2),
  .footer__nav a:nth-child(3),
  .footer__nav .footer__sep:nth-child(4) {
    display: none !important;
  }
  .footer__nav a {
    font-size: 0.75rem;
  }
  .footer__sep { font-size: 0.7rem; }
  .footer__top {
    margin-bottom: 0.3rem;
  }
  .footer__tagline {
    font-size: 0.68rem;
    margin-bottom: 0.2rem;
  }
  .footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.7rem;
  }
  .footer__bottom > span:first-child {
    display: none !important;
  }
  .footer__sep-bottom { display: none !important; }

  .cta-section {
    padding: 1.5rem 0;
  }
  .cta-section h2 {
    margin-bottom: 0.5rem;
  }
  .cta-section p {
    margin: 0 auto 1rem;
  }
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .cta-section__actions .btn {
    width: 240px;
    max-width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
    box-sizing: border-box;
  }

  .page-hero { height: 40vh; min-height: 300px; }
  .page-hero__meta { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .cert-grid { flex-direction: column; }
}


/* --- Utilities --- */
.mobile-only { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mt-md { margin-top: var(--space-md) !important; }
.mt-lg { margin-top: var(--space-lg) !important; }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-light); }
