
.impact {
  overflow: hidden;
}

.impact .container {
  overflow-x: auto;
}

.impact-table {
  width: 100%;
  min-width: 500px;
}

/* ── FIX GLOBAL SCROLL HORIZONTAL ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.hero {
  background: var(--blanc-creme);
}
/* ── TABLETTE ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-right { display: none; }

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

  .prestations-inner {
    grid-template-columns: 1fr;
  }

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

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

  .ecoconcu-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact { text-align: left; }

  .impact-stats {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .services-icons {
    grid-template-columns: 1fr;
  }
}

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

  /* Fix filigrane oiseau (coupable principal !) */
  .hero .watermark-bird {
    width: 100vw;
    left: 0;
    bottom: 0;
    top:10px;
  }

  .watermark-bird-2 {
    display : none;
  }

  /* Header & Nav */
  .header {
    overflow: visible;
  }

  .header .container.nav,
  .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Menu déroulant */
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--blanc-creme);
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .menu.menu-open { display: flex; }

  /* Hero container */
  .hero .container {
    padding: 0 20px;
  }

  /* Icônes services */
  .service-icon-item .icon-circle {
    width: 120px;
    height: 120px;
  }
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 100;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger-open span:nth-child(2) { opacity: 0; }
.burger-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  .burger { display: flex; }
}

/* ── PETIT MOBILE ── */
@media (max-width: 600px) {
  h1 { font-size: 38px; }
  h2 { font-size: 26px; }

  .container { padding: 0 20px; }

  .menu { display: none; }

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

  .triangle { display: none; }

  .hero-tagline h2 { font-size: 22px; }
}
/* ── TABLEAU IMPACT ── */

.impact-table {
  
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  font-size: 11px;
}