:root {
  --green-dark: #176131;
  --green-light: #82bd41;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --dark-gray: #2a2a2a;
  --text-muted: #666666;
}

/* ========================= */
/* 🎬 INTRO VIDEO */
/* ========================= */
#intro {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#introVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bouton Skip */
#skipButton {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

#skipButton:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 1);
}

/* Fade out de l'intro */
#intro.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

/* Contenu principal caché initialement */
body.intro-playing {
  overflow: hidden;
}

/* ========================= */
/* STYLES PRINCIPAUX */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

.gray {
  color: var(--dark-gray);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 92, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  animation: slideIn 0.8s ease;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  animation: slideIn 0.8s ease;
  font-family: 'Poppins', sans-serif;
}

.logo .green { color: var(--green-dark); }

nav {
  display: flex;
  gap: 40px;
  animation: slideInRight 0.8s ease;
}

nav a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--green-dark);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover::after { width: 100%; }
nav a:hover { color: var(--green-dark); }

/* ========================= */
/* MENU MOBILE / BURGER (styles globaux) */
/* ========================= */

/* Cacher le menu mobile et le burger par défaut (desktop) */
.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ========================= */
/* 🎯 UNIFICATION ANIMATIONS TABS */
/* ========================= */

/* BASE ANIMATION IDENTIQUE pour TOUS les tabs */
.hero-value-tab,
.client-tab,
.approach-tab {
  transition: 
    background 0.4s ease,
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}

/* HOVER - identique partout */
.hero-value-tab:hover,
.client-tab:hover,
.approach-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ACTIVE (au clic) - identique partout */
.hero-value-tab.active,
.client-tab.active,
.approach-tab.active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(130, 189, 65, 0.2);
}

/* PRESS - micro feedback identique */
.hero-value-tab:active,
.client-tab:active,
.approach-tab:active {
  transform: scale(0.98);
}

/* ⚠️ CONTENU DÉTAILLÉ - AUCUNE ANIMATION */
.hero-value-detail,
.client-detail,
.approach-detail {
  display: none !important;
  animation: none !important;
  transition: none !important;
}

/* État ACTIF - INSTANTANÉ */
.hero-value-detail.active,
.client-detail.active,
.approach-detail.active {
  display: block !important;
  animation: none !important;
  transition: none !important;
}

/* Tuer TOUTES animations sur les enfants */
.hero-value-detail *,
.client-detail *,
.approach-detail * {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* HERO */
.hero {
  margin-top: 90px;
  padding: 80px 100px 10px 100px;
  background: #f8f8f8;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  max-width: 950px;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.15) 0%, rgba(26, 92, 58, 0.15) 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 92, 58, 0.2);
  animation: slideInRight 1s ease 0.4s both;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-separator {
  display: none;
}

.hero h1 {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--dark-gray);
  animation: fadeInUp 1s ease 0.2s both;
  font-family: 'Poppins', sans-serif;
}

.hero h1 .accent {
  color: var(--green-dark);
  font-weight: 800;
  display: inline-block;
  min-width: 500px;
  text-align: left;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
}

.hero p {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 60px;
  line-height: 1.8;
  max-width: 850px;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  animation: fadeInUp 1s ease 0.6s both;
  justify-content: center;
}

.cta-buttons .btn:only-child {
  min-width: 300px;
  text-align: center;
}

.btn {
  padding: 14px 45px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1.5px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

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

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(26, 92, 58, 0.4);
}

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

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-4px);
}

.hero-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  animation: fadeInUp 1s ease 0.8s both;
  margin-top: 0;
}

.hero-value-tab {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.hero-value-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero-value-tab.active {
  background: var(--dark-gray);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(130, 189, 65, 0.2);
}

.hero-value-tab:active {
  transform: scale(0.98);
}

.value-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.hero-value-tab.active .value-number {
  color: var(--green-light);
}

.hero-value-tab h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.hero-value-tab.active h3 {
  color: var(--white);
}

.hero-value-tab p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.hero-value-tab.active p {
  color: var(--green-light);
}

.hero-values-detail {
  background: #f8f8f8;
  padding: 60px;
  border-radius: 8px;
  margin-top: 40px;
}

.hero-value-detail {
  display: none !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  animation: none !important;
  transition: none !important;
}

.hero-value-detail.active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
  transition: none !important;
}

.hero-value-detail h3,
.hero-value-detail > p,
.hero-value-detail .detail-line {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.hero-value-detail .detail-line {
  width: 40px;
  height: 3px;
  background: var(--green-dark);
  margin-bottom: 25px;
  border-radius: 2px;
}

.hero-value-detail h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.hero-value-detail p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

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

/* MISSION */
.mission {
  padding: 80px 100px;
  background: var(--white);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-text h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark-gray);
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.mission-text h2 .accent {
  color: var(--green-dark);
}

.mission-text {
  display: flex;
  flex-direction: column;
}

.mission-text .btn {
  align-self: center;
}

.mission-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.mission-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--green-dark);
}

.mission-label .accent {
  color: var(--green-dark);
}

.mission-text h2 .accent {
  color: var(--green-dark);
  font-weight: 700;
}

.mission-text p {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
  font-weight: 300;
}

.mission-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.1) 0%, rgba(26, 92, 58, 0.1) 100%);
  border-radius: 8px;
  overflow: hidden;
  animation: slideInRight 1s ease;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-image-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  order: -1;
}

.mission-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(23, 97, 49, 0.2);
}


/* ========================= */
/* VALUES SECTION SÉPARÉE */
/* ========================= */
.values-section {
  background: var(--white);
  padding: 80px 100px;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* CLIENTS SECTION */
.clients-section {
  padding: 80px 100px;
  background: var(--white);
}

.clients-container {
  max-width: 1400px;
  margin: 0 auto;
}

.clients-section h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.clients-section h2 .accent {
  color: var(--green-dark);
}

.clients-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.client-tab {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.client-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* État ACTIF = NOIR comme les autres (+ animations) */
.client-tab.active {
  background: var(--dark-gray) !important;
  color: var(--white) !important;
  border-color: var(--green-dark);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(130, 189, 65, 0.2);
}

.client-tab:active {
  transform: scale(0.98);
}

.client-tab .tab-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.client-tab.active .tab-number {
  color: var(--green-light);
}

.client-tab h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.client-tab.active h3 {
  color: var(--white);
}

.client-tab p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.client-tab.active p {
  color: var(--green-light);
}

.clients-content {
  background: var(--light-gray);
  padding: 60px;
  border-radius: 8px;
}

.client-detail {
  display: none !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  animation: none !important;
  transition: none !important;
}

.client-detail.active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
  transition: none !important;
}

.client-detail h3,
.client-detail > p,
.client-detail .detail-line,
.client-detail .detail-list,
.client-detail .detail-list li {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.client-detail .detail-line {
  width: 40px;
  height: 3px;
  background: var(--green-dark);
  margin-bottom: 25px;
  border-radius: 2px;
}

.client-detail h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.client-detail > p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}

.client-detail .detail-list {
  list-style: none;
  padding: 0;
}

.client-detail .detail-list li {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}

.client-detail .detail-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 18px;
}

@media (max-width: 1024px) {
  header { padding: 0 50px; }
  nav { gap: 25px; }
  nav a { font-size: 11px; }
  .clients-tabs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header { padding: 0 30px; height: 70px; }
  .logo-img { height: 45px; }
  nav { gap: 20px; }
  nav a { font-size: 11px; letter-spacing: 0.5px; }
  
  .clients-section { padding: 100px 40px; }
  .clients-tabs { grid-template-columns: 1fr; }
  .clients-content { padding: 40px; }
  .client-detail h3 { font-size: 24px; }
}
.services-grid-section {
  padding: 0;
  background: var(--white);
  min-height: 600px;
  overflow: hidden;
}

.services-grid-title {
  text-align: center;
  margin-bottom: 60px;
  display: block;
  padding: 40px 100px 0;
}

.services-grid-title h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.services-grid-title h2 .accent {
  color: var(--green-dark);
}

.services-grid-title p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.services-grid {
  display: flex;
  width: 100%;
  height: 600px;
  position: relative;
}

.service-card-image {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-image.expanded {
  flex: 3;
  z-index: 10;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-image:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

/* Texte visible UNIQUEMENT au hover */
.service-card-image:hover .service-overlay {
  opacity: 1;
}

/* Aussi visible quand la carte est expanded */
.service-card-image.expanded .service-overlay {
  opacity: 1;
}

.service-overlay h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  margin: 0 auto 15px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.service-overlay p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
}

.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 40px 25px 25px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.7s ease;
}

.service-card-image:hover .service-card-label {
  opacity: 0;
}

@media (max-width: 1200px) {
  .services-grid { height: 500px; }
}

@media (max-width: 768px) {
  .services-grid-section { min-height: 400px; }
  .services-grid { height: 400px; }
  .service-card-label { font-size: 14px; }
}

.two-services-title {
  text-align: center;
  margin-bottom: 100px;
}

.two-services-title h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.two-services-title h2 .accent {
  color: var(--green-dark);
}

.two-services-title p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* APPROACH SECTION */
.approach-section {
  padding: 80px 100px;
  background: var(--white);
}

.approach-container {
  max-width: 1400px;
  margin: 0 auto;
}

.approach-section h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.approach-section h2 .accent {
  color: var(--green-dark);
}

.approach-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.approach-intro p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.approach-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.approach-tab {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.approach-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approach-tab.active {
  background: var(--dark-gray);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(130, 189, 65, 0.2);
}

.approach-tab:active {
  transform: scale(0.98);
}

.tab-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.approach-tab.active .tab-number {
  color: var(--green-light);
}

.approach-tab h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.approach-tab.active h3 {
  color: var(--white);
}

.approach-tab p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.approach-tab.active p {
  color: var(--green-light);
}

.approach-content {
  background: var(--light-gray);
  padding: 60px;
  border-radius: 8px;
  position: relative;
  min-height: 150px;
}

.approach-detail {
  display: none !important;
  animation: none !important;
  transition: none !important;
}

.approach-detail.active {
  display: block !important;
  animation: none !important;
  transition: none !important;
}

.approach-detail * {
  animation: none !important;
  transition: none !important;
}

.approach-detail.active * {
  animation: none !important;
  transition: none !important;
}

.approach-detail h3,
.approach-detail > p,
.approach-detail .detail-line,
.approach-detail .detail-list,
.approach-detail .detail-list li {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.detail-line {
  width: 40px;
  height: 3px;
  background: var(--green-dark);
  margin-bottom: 25px;
  border-radius: 2px;
}

.approach-detail h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.approach-detail > p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}

.detail-list {
  list-style: none;
  padding: 0;
}

.detail-list li {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}

.detail-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 18px;
}

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

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

@media (max-width: 768px) {
  .approach-section { padding: 100px 40px; }
  .approach-tabs { grid-template-columns: 1fr; }
  .approach-content { padding: 40px; }
  .approach-detail h3 { font-size: 24px; }
}

/* VISION REALITY SECTION */
.vision-reality-section {
  padding: 100px 100px;
  background: var(--white);
  overflow: hidden;
}

.vision-reality-container {
  max-width: 1400px;
  margin: 0 auto;
}

.vision-reality-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  min-height: 250px;
}

.vision-line,
.reality-line {
  flex: 1;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  width: 0;
  opacity: 0;
}

.vision-line.animate,
.reality-line.animate {
  animation: slideIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.vision-word,
.to-word,
.reality-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  opacity: 0;
}

.vision-word.animate {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.to-word.animate {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.reality-word.animate {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

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

@media (max-width: 768px) {
  .vision-reality-section { padding: 80px 40px; }
  .vision-reality-content { gap: 20px; }
  .vision-line, .reality-line { display: none; }
  .vision-word { font-size: 36px; }
  .reality-word { font-size: 36px; }
}

/* VISION SECTION */
.vision-section {
  padding: 60px 100px;
  background: var(--white);
  text-align: center;
  position: relative;
}

.vision-section h2 {
  font-size: 42px;
  font-weight: 300;
  color: var(--dark-gray);
  letter-spacing: -0.5px;
  margin: 0;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 0 50px;
  display: inline-block;
}

.vision-section h2 .accent {
  color: var(--green-dark);
  font-weight: 700;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-dark);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .vision-section { padding: 50px 30px; }
  .vision-section h2 { font-size: 28px; padding: 0 30px; }
}

/* ===== SECTION POURQUOI BAUVÉ ===== */
/* ===== STATS PREMIUM SECTION ===== */
.stats-premium {
  padding: 80px 20px;
  background: var(--white);
}

/* WRAPPER POUR TITRE + CONTAINER */
.stats-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* TITRE SECTION */
.stats-premium h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 55px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.stats-premium h2 span {
  color: var(--green-dark);
}

/* STRUCTURE PRINCIPALE - ASYMÉTRIQUE */
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* COLONNE GAUCHE - IMPACT AVEC SÉPARATION VERTE */
.stat-main {
  padding-right: 80px;
  border-right: 2px solid var(--green-dark);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* GROUPE CHIFFRE */
.number-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  justify-content: center;
}

/* GROS CHIFFRE */
.number {
  font-size: 140px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

/* PLUS */
.plus {
  font-size: 40px;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

/* TITRE GAUCHE */
.stat-main h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--dark-gray);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

/* SOUS-TITRE PREMIUM */
.stat-sub {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 350px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* COLONNE DROITE - CASES STRUCTURÉES */
.stat-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CASES/CARTES */
.stat-item {
  padding: 25px;
  background: var(--light-gray);
  border-radius: 14px;
  border: 1px solid rgba(23, 97, 49, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  background: #2a2a2a;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(23, 97, 49, 0.15);
  border-color: var(--green-light);
}

.stat-item:hover h3 {
  color: var(--green-light);
}

.stat-item:hover p {
  color: var(--white);
}

/* TITRE CASE */
.stat-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

/* TEXTE CASE */
.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

/* RESPONSIVE STATS PREMIUM */
@media (max-width: 1024px) {
  .stats-premium {
    padding: 100px 20px;
  }

  .stats-premium h2 {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .stats-container {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
  }

  .stat-main {
    padding-right: 60px;
  }

  .number {
    font-size: 110px;
  }

  .plus {
    font-size: 35px;
  }

  .stat-sub {
    max-width: 280px;
  }

  .stat-side {
    gap: 18px;
  }

  .stat-item {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .stats-premium {
    padding: 80px 20px;
  }

  .stats-premium h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .stat-main {
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid var(--green-dark);
    padding-bottom: 40px;
  }

  .number {
    font-size: 80px;
  }

  .plus {
    font-size: 28px;
  }

  .stat-main h3 {
    font-size: 16px;
  }

  .stat-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-item h3 {
    font-size: 16px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-side {
    gap: 16px;
  }
}

.carousel-section {
  padding: 80px 100px;
  background: var(--white);
}

.carousel-title {
  text-align: center;
  margin-bottom: 60px;
}

.carousel-title h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.carousel-title h2 .gray {
  color: var(--dark-gray);
  font-weight: 800;
}

.carousel-title h2 .accent {
  color: var(--green-dark);
  font-weight: 700;
}

.carousel-title p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--green-dark);
}

.project-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f8f8f8;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-info {
  padding: 40px 30px;
}

.project-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.project-type {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px !important;
  font-family: 'Poppins', sans-serif;
}

.project-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* PROJECT MODAL */
.project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.project-modal.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.project-modal-content {
  background: var(--white);
  margin: 50px auto;
  padding: 60px;
  border-radius: 12px;
  max-width: 1000px;
  position: relative;
}

.project-modal-close {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 40px;
  font-weight: bold;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.project-modal-close:hover {
  color: var(--dark-gray);
}

.project-modal-header {
  margin-bottom: 50px;
  text-align: center;
}

.project-modal-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.project-location {
  font-size: 16px;
  color: var(--green-dark);
  font-weight: 600;
  margin: 0;
}

.project-modal-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  scroll-behavior: smooth;
  position: relative;
  flex: 1;
  order: 2;
}

.project-modal-gallery::-webkit-scrollbar {
  height: 6px;
}

.project-modal-gallery::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.project-modal-gallery::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 10px;
}

.project-modal-gallery::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

.project-modal-gallery img {
  min-width: 400px;
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.project-modal-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* WRAPPER GALERIE AVEC FLÈCHES */
.project-modal-gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

/* FLÈCHES NAVIGATION PREMIUM */
.gallery-nav-button {
  position: relative;
  background: rgba(23, 97, 49, 0.85);
  border: 2px solid var(--green-light);
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}

.gallery-nav-button:hover {
  background: var(--green-dark);
  border-color: white;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(23, 97, 49, 0.4);
}

.gallery-nav-button:active {
  transform: scale(0.95);
}

.gallery-nav-left {
  order: -1;
}

.gallery-nav-right {
  order: 3;
}

@media (max-width: 1024px) {
  .gallery-nav-button {
    padding: 10px 14px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-nav-button {
    padding: 8px 12px;
    font-size: 18px;
  }
}

.project-modal-details {
  max-width: 900px;
}

.project-detail-section {
  margin-bottom: 50px;
}

.project-detail-section h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.project-detail-section p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.project-works {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-works li {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}

.project-works li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .carousel-section { padding: 80px 40px; }
  .project-modal-content { padding: 40px; }
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
  .carousel-section { padding: 60px 30px; }
  .project-modal-gallery { 
    gap: 15px;
    padding: 10px 0;
  }
  .project-modal-gallery img {
    min-width: 280px;
    width: 280px;
    height: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .project-modal-gallery img:hover {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* ===== LIGHTBOX STYLES ===== */
.project-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.project-lightbox.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightboxImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--green-light);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 40px;
  padding: 20px 25px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  z-index: 2001;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 30px;
    padding: 15px 18px;
  }

  .lightbox-close {
    font-size: 40px;
    top: 20px;
    right: 20px;
  }

  .lightbox-counter {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-item {
  min-width: 100%;
  padding: 0 40px;
}

.carousel-card {
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.05) 0%, rgba(26, 92, 58, 0.05) 100%);
  border: 1px solid rgba(26, 92, 58, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.carousel-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 30px 80px rgba(26, 92, 58, 0.25);
  transform: translateY(-12px);
}

.carousel-image {
  width: 100%;
  height: 400px;
  background: #e8e8e8;
  overflow: hidden;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.carousel-card:hover .carousel-image img {
  transform: scale(1.05);
}

.carousel-text {
  padding: 50px 40px;
}

.carousel-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--green-dark);
}

.carousel-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--green-dark);
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.1);
}

/* STATS */
.stats-section {
  padding: 120px 100px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f4c2a 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.stat-box {
  animation: fadeInUp 1s ease;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 300;
  opacity: 0.95;
}

/* TESTIMONIALS */
.testimonials {
  padding: 150px 100px;
  background: var(--white);
}

.testimonials-title {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-title h2 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8f8f8;
  padding: 50px;
  border-radius: 8px;
  border-left: 4px solid var(--green-dark);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(26, 92, 58, 0.2);
  border-left-color: var(--green-light);
  border-left-width: 6px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 300;
}

/* CONTACT CTA */
/* CONTACT CTA */
.contact-cta {
  padding: 80px 100px;
  background: #f2f2f2;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

.contact-cta h2 .accent {
  color: var(--green-dark);
}

.contact-cta > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 60px;
  line-height: 1.8;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--dark-gray);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(23, 97, 49, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  font-family: 'Poppins', sans-serif;
}

.contact-form .btn {
  margin-top: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-cta { padding: 100px 40px; }
  .contact-cta h2 { font-size: 36px; }
  .contact-cta > p { font-size: 16px; }
  
  .blog-section { padding: 60px 40px; }
  .blog-section-title { font-size: 32px; }
  .blog-section > p { font-size: 16px; margin-bottom: 40px; }
  .blog-card-black { padding: 30px 30px; gap: 18px; }
  .blog-card-black p { font-size: 16px; }
}

/* FOOTER */
/* ========================= */
/* 📚 BLOG PROMOTION SECTION */
/* ========================= */
.blog-section {
  padding: 80px 100px;
  background: var(--white);
  text-align: center;
}

.blog-section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}

.blog-section-title .accent {
  color: var(--green-dark);
}

.blog-section > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

.blog-card-black {
  background: var(--dark-gray);
  color: var(--white);
  padding: 35px 60px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blog-card-black p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 2;
  letter-spacing: 0.5px;
}

.blog-card-black span {
  color: var(--white);
}

.blog-card-black .btn-primary {
  background: var(--green-light);
  color: var(--dark-gray);
  padding: 16px 45px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 10px;
}

.blog-card-black .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(130, 189, 65, 0.3);
}

/* FOOTER SEPARATOR LINE */
.footer-separator-line {
  height: 2px;
  background: var(--green-dark);
  width: 100%;
}

footer {
  background: #000000;
  color: #ffffff;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* TOP SECTION WITH CONTACT INFO */
.footer-top-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 100px;
}

.footer-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 97, 49, 0.1);
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--green-dark);
  transition: all 0.3s ease;
}

.footer-info-card:hover .info-icon {
  background: var(--green-dark);
  color: var(--white);
}

.footer-info-card h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.footer-info-card a,
.footer-info-card p {
  color: #999;
  font-size: 14px;
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s;
}

.footer-info-card a:hover {
  color: var(--green-light);
}

/* MAIN FOOTER CONTENT */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 80px;
  padding: 80px 100px;
  align-items: flex-start;
  border-top: 1px solid #333;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 25px;
  height: 70px;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer-description {
  color: var(--white);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.footer-description .highlight {
  color: var(--green-light);
  font-weight: 800;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  text-align: center;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 35px;
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col ul li {
  margin-bottom: 22px;
}

.footer-col a {
  color: #999;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

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

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-right h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}

.footer-right p {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  margin-top: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  width: fit-content;
}

.footer-cta-btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.footer-cta-btn:hover .arrow {
  transform: translateX(4px);
}

/* BOTTOM SECTION */
.footer-bottom {
  text-align: center;
  padding: 40px 100px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #666;
}

@media (max-width: 1024px) {
  .footer-top-section { grid-template-columns: 1fr; gap: 30px; padding: 50px 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; padding: 50px 40px; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 30px 40px; }
}

@media (max-width: 768px) {
  .footer-top-section { padding: 40px 30px; }
  .footer-main { padding: 40px 30px; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 30px; }
}

/* SCROLLING TEXT SECTION */
.scrolling-text-section {
  padding: 150px 100px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d4422 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrolling-container {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scrolling-text {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.3;
  text-align: center;
  max-width: 1200px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  animation: scroll-text 7s infinite ease-in-out;
}

@keyframes scroll-text {
  0% { opacity: 1; transform: translateY(0); }
  20% { opacity: 1; transform: translateY(0); }
  30% { opacity: 0; transform: translateY(-80px); }
  35% { opacity: 0; transform: translateY(80px); }
  40% { opacity: 1; transform: translateY(0); }
  60% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(-80px); }
  75% { opacity: 0; transform: translateY(80px); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

.scrolling-word {
  font-weight: 800;
  color: var(--green-light);
}

@media (max-width: 768px) {
  header { padding: 0 40px; }
  .hero { padding: 80px 40px; }
  .hero h1 { font-size: 42px; }
  .hero-values { grid-template-columns: repeat(2, 1fr); }
  .mission { padding: 100px 40px; }
  .mission-content { grid-template-columns: 1fr; gap: 60px; }
  .two-services { padding: 100px 40px; }
  .services-duo { grid-template-columns: 1fr; }
  .carousel-section { padding: 100px 40px; }
  .carousel-item { padding: 0; }
  .stats-section { padding: 100px 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .testimonials { padding: 100px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .scrolling-text-section { padding: 100px 40px; }
  .scrolling-text { font-size: 42px; }
}

/* MOBILE PETIT (< 480px) */
@media (max-width: 480px) {
  header { padding: 0 20px; height: 70px; }
  .logo-img { height: 40px; }
  nav { gap: 15px; }
  nav a { font-size: 10px; letter-spacing: 0.5px; }
  
  .hero { padding: 40px 20px 10px 20px; margin-top: 70px; }
  .hero h1 { font-size: 36px; margin-bottom: 15px; }
  .hero p { font-size: 14px !important; margin-bottom: 30px; }
  .cta-buttons { flex-direction: column; gap: 15px; }
  .btn { padding: 14px 30px; font-size: 12px; }
  .hero-values { grid-template-columns: 1fr; gap: 25px; margin-top: 50px; padding-top: 50px; }
  
  .mission { padding: 50px 20px !important; }
  .mission-content { gap: 30px; }
  .mission-text h2 { font-size: 28px; margin-bottom: 20px; }
  .mission-text p { font-size: 14px !important; }
  
  .mission-label {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mission-label::before {
    width: 15px;
    height: 2px;
    flex-shrink: 0;
  }
  
  .two-services { padding: 80px 20px; }
  .two-services-title h2 { font-size: 32px; }
  .service-block { padding: 40px 25px; }
  .service-block h3 { font-size: 22px; margin-bottom: 20px; }
  .service-list li { font-size: 14px; }
  
  .carousel-section { padding: 80px 20px; }
  .carousel-title h2 { font-size: 36px; }
  .carousel-title p { font-size: 14px !important; }
  .approach-intro p { font-size: 14px !important; }
  .services-grid-section p { font-size: 14px !important; }
  .clients-content p { font-size: 14px !important; }
  
  .stats-section { padding: 80px 20px; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat-number { font-size: 48px; }
  
  .approach-section { padding: 80px 20px; }
  .approach-section h2 { font-size: 36px; }
  
  .contact-cta { padding: 80px 20px; }
  .contact-cta h2 { font-size: 36px; margin-bottom: 20px; }
  .contact-cta p { font-size: 14px !important; margin-bottom: 40px; }
  
  .blog-section { padding: 50px 20px; }
  .blog-section-title { font-size: 28px; }
  .blog-section > p { font-size: 14px; margin-bottom: 30px; }
  .blog-card-black { padding: 25px 20px; gap: 15px; }
  .blog-card-black p { font-size: 14px; line-height: 1.8; }
  
  .client-detail > p,
  .approach-detail > p,
  .hero-value-detail p {
    font-size: 14px !important;
  }
  
  /* SECTIONS PRINCIPALES - PADDING RÉDUIT */
  .mission,
  .clients-section,
  .services-grid-section,
  .approach-section,
  .carousel-section,
  .contact-cta,
  .values-section {
    padding: 20px 20px !important;
  }

  /* TEXTES JUSTIFIÉS - SECTIONS SPÉCIFIQUES */
  .mission-text p,
  .clients-content p,
  .contact-cta p,
  .hero-values-detail p,
  .hero-value-detail p,
  .services-grid-section p,
  .approach-intro p,
  .carousel-title p {
    text-align: justify;
    text-justify: auto;
  }

  footer { padding: 20px 20px; }
  .footer-top-section { padding: 40px 20px; }
  .footer-main { padding: 50px 20px; grid-template-columns: 1fr; gap: 40px; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 20px; }
}

/* ========================= */
/* 📱 VERSION MOBILE OPTIMISÉE */
/* ========================= */
@media (max-width: 768px) {
  /* GLOBAL */
  section,
  .hero,
  .mission,
  .clients-section,
  .carousel-section,
  .contact-cta,
  .services-grid-title {
    padding: 20px 20px !important;
  }
  body {
    overflow-x: hidden;
  }
  
  /* HEADER */
  header {
    padding: 0 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav {
    display: none;
  }

  /* Hamburger menu button */
  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark-gray);
    background: none;
    border: none;
    padding: 0;
  }

  /* Mobile menu déroulant */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu a {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .mobile-menu.active {
    display: flex;
  }
  
  /* HERO */
  .hero {
    margin-top: 70px;
  }
  .hero-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.3;
  }
  .hero h1 .accent {
    min-width: auto;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .hero-image {
    height: 250px;
  }
  
  /* CTA */
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* HERO VALUES */
  .hero-values {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .client-tab,
  .approach-tab {
    padding: 6px 12px !important;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
  }

  .client-tab h3,
  .approach-tab h3 {
    font-size: 15px !important;
    margin-bottom: 0px !important;
  }

  .client-tab p,
  .approach-tab p {
    font-size: 12px !important;
    margin: 0 !important;
  }

  .tab-number {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }

  .hero-value-tab h3 {
    font-size: 15px;
    margin-bottom: 0px;
  }

  .hero-value-tab p {
    font-size: 12px;
    margin: 0;
  }

  .value-number {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .hero-values-detail {
    margin-top: 2px !important;
    padding: 5px 8px 1px 8px !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
  }

  .hero-value-detail {
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-value-detail h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  .hero-value-detail p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
  }

  .detail-line {
    width: 30px !important;
    margin-bottom: 10px !important;
  }
  
  /* MISSION */
  .mission-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .mission-text h2 {
    font-size: 28px;
  }
  .mission-image-container {
    height: 300px;
  }
  
  /* SERVICES (GROS FIX 🔥) */
  .services-grid {
    flex-direction: column;
    height: auto;
  }
  .service-card-image {
    height: 200px;
    flex: none;
  }
  .service-overlay {
    opacity: 1 !important;
    background: rgba(0,0,0,0.5);
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .service-card-label {
    font-size: 16px;
    white-space: normal;
  }
  
  .values-section {
    padding: 40px 20px !important;
  }

  /* CLIENTS */
  .clients-tabs {
    grid-template-columns: 1fr;
  }
  .clients-content {
    padding: 30px;
  }
  
  /* PROJECTS */
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-image {
    height: 220px;
  }
  
  /* STATS */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-number {
    font-size: 40px;
  }
  
  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* CONTACT */
  .contact-cta h2 {
    font-size: 32px;
  }
  
  /* FOOTER */
  .footer-top-section,
  .footer-main {
    padding: 40px 20px;
  }
}

/* ========================= */
/* 📱 PATCH MOBILE AVANCÉ - ChatGPT */
/* ========================= */
@media (max-width: 768px) {
  /* Réduire les carrés */
  .client-tab,
  .approach-tab,
  .hero-value-tab {
    padding: 6px 12px;
  }

  /* Titres uniformisés dans les carrés */
  .client-tab h3,
  .approach-tab h3,
  .hero-value-tab h3 {
    font-size: 16px !important;
    line-height: 1.15;
    margin-bottom: 6px;
    font-weight: 800;
  }

  /* Sous-texte des carrés */
  .client-tab p,
  .approach-tab p,
  .hero-value-tab p {
    font-size: 14px !important;
    line-height: 1.35;
    margin: 0;
    opacity: 0.9;
  }

  /* Numéros des carrés */
  .tab-number,
  .value-number {
    font-size: 12px !important;
    margin-bottom: 8px;
  }

  /* Contenu détaillé des carrés - plus compact */
  .client-detail,
  .approach-detail,
  .hero-value-detail {
    padding: 30px 20px !important;
  }

  .client-detail h3,
  .approach-detail h3,
  .hero-value-detail h3 {
    font-size: 24px !important;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .client-detail p,
  .approach-detail p,
  .hero-value-detail p {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .detail-list li {
    font-size: 14px !important;
    margin-bottom: 10px;
  }

  /* Uniformiser TOUS les titres de sections */
  .clients-section h2,
  .approach-section h2,
  .carousel-section h2,
  .contact-cta h2 {
    font-size: 32px !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  /* Accent vert ne dépasse plus */
  .hero h1 .accent,
  .mission-text h2 .accent,
  .clients-section h2 .accent,
  .approach-section h2 .accent,
  .carousel-title h2 .accent,
  .contact-cta h2 .accent {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline;
    min-width: auto;
  }

  /* Grilles compactes */
  .clients-tabs,
  .approach-tabs,
  .hero-values {
    gap: 12px;
  }

  /* Moins d'espace vide entre sections */
  .mission,
  .clients-section,
  .services-grid-section,
  .approach-section,
  .carousel-section,
  .contact-cta {
    padding: 70px 20px !important;
  }

  /* Contenu détaillé plus compact */
  .clients-content,
  .approach-content {
    padding: 25px !important;
    gap: 15px;
  }
}

/* ========================= */
/* 🔤 TITRES UNIFORMES MOBILE */
/* ========================= */
@media (max-width: 768px) {

  /* Tous les H2 des sections principales */
  .clients-section h2,
  .services-grid-title h2,
  .approach-section h2,
  .carousel-title h2,
  .contact-cta h2 {
    
    font-size: 36px;              /* même taille */
    font-weight: 800;             /* bien impactant */
    line-height: 1.3;
    
    text-align: left;             /* aligné à gauche */
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;               /* effet centré dans la page */
  }

  /* Accent vert uniforme */
  .clients-section h2 .accent,
  .services-grid-title h2 .accent,
  .approach-section h2 .accent,
  .carousel-title h2 .accent,
  .contact-cta h2 .accent {
    display: inline-block;
    color: var(--green-dark);
    font-weight: 800;
  }

  /* Variante pour très petit mobile */
  @media (max-width: 480px) {
    .clients-section h2,
    .services-grid-title h2,
    .approach-section h2,
    .carousel-title h2,
    .contact-cta h2 {
      font-size: 32px;
    }
  }
}

/* ========================= */
/* ✨ AMÉLIORATIONS PREMIUM MOBILE */
/* ========================= */
@media (max-width: 768px) {

  /* 🔧 1. HERO rapproché de l'en-tête */
  .hero {
    margin-top: 60px;   /* avant 90px → on rapproche */
    padding: 40px 20px; /* moins d'air */
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  /* 📐 2. Rythme vertical global */
  section {
    padding: 70px 20px !important;
  }

  h2 {
    margin-bottom: 25px !important;
    letter-spacing: -0.5px;
  }

  p {
    line-height: 1.7;
  }

  /* 🧠 3. Services-grid : version mobile lisible */
  .services-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  /* Fade gradient discret sur le côté droit */
  .services-grid::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, var(--light-gray), transparent);
    pointer-events: none;
    border-radius: 0 12px 12px 0;
  }

  .service-card-image {
    display: flex;
    flex-direction: column;
    flex: 0 0 80%;
    height: auto;
    background: var(--white);
    overflow: hidden;
    border-radius: 12px;
    
    scroll-snap-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .service-card-image img {
    height: 180px;
    object-fit: cover;
    width: 100%;
  }

  .service-card-image.expanded {
    flex: 0 0 80%;
  }

  /* Overlay = texte blanc en bas */
  .service-overlay {
    position: relative;
    background: var(--white);
    color: var(--dark-gray);
    opacity: 1;
    padding: 20px;
    text-align: left;
  }

  .service-overlay h3 {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 800;
  }

  .service-overlay p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  /* On supprime le label du bas */
  .service-card-label {
    display: none;
  }

  /* Scrollbar invisible */
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  
  /* ✨ Fin services slider */

  /* 🧩 4. Footer : Services + Entreprise côte à côte */
  .footer-middle {
    grid-template-columns: 1fr 1fr; /* côte à côte */
    gap: 30px;
  }

  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .footer-col a {
    font-size: 14px;
  }

  /* ✨ 5. Détails premium */
  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    gap: 12px;
  }
}

/* ========================= */
/* 📱 OPTIMISATION MOBILE COMPLÈTE */
/* ========================= */
@media (max-width: 768px) {

  /* 🎯 1. STATS-PREMIUM MOBILE */
  .stats-premium {
    padding: 60px 20px !important;
  }

  .stats-premium h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }

  .stat-main {
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid var(--green-dark);
    padding-bottom: 40px;
  }

  .number {
    font-size: 80px;
  }

  .plus {
    font-size: 28px;
    margin-top: 8px;
  }

  .stat-main h3 {
    font-size: 18px;
    margin-top: 15px;
  }

  .stat-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .stat-side {
    gap: 15px;
  }

  .stat-item {
    padding: 20px;
    border-radius: 10px;
  }

  .stat-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .stat-item p {
    font-size: 14px;
  }

  /* 🎯 2. FOOTER MOBILE */
  .footer-top-section {
    padding: 30px 20px;
  }

  .footer-info-card {
    padding: 20px 15px;
  }

  .footer-info-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-info-card p,
  .footer-info-card a {
    font-size: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    text-align: center;
  }

  .footer-middle {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-col ul {
    gap: 12px;
  }

  .footer-col a {
    font-size: 12px;
  }

  .footer-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-right p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .footer-bottom {
    padding: 25px 20px;
    font-size: 12px;
  }

  /* 🎯 3. SECTIONS GÉNÉRALES */
  .mission {
    padding: 50px 20px !important;
  }

  .mission-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .mission-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* 🎯 4. APPROCHE SECTION */
  .approach-section {
    padding: 50px 20px !important;
  }

  .approach-tabs {
    gap: 10px;
  }

  .approach-tab {
    padding: 20px 15px;
    font-size: 14px;
  }

  /* 🎯 5. DEUX SERVICES */
  .two-services {
    padding: 50px 20px !important;
  }

  .two-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-block {
    padding: 25px 20px;
  }

  .service-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .service-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* 🎯 6. CONTACT CTA */
  .contact-cta {
    padding: 50px 20px !important;
  }

  .contact-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .contact-cta p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  /* 🎯 7. TRÈS PETIT MOBILE (480px) */
  @media (max-width: 480px) {
    .stats-premium h2 {
      font-size: 28px;
    }

    .stat-main h3 {
      font-size: 16px;
    }

    .stat-item h3 {
      font-size: 15px;
    }

    .stat-item p {
      font-size: 12px;
    }

    .number {
      font-size: 64px;
    }

    .mission-text h2,
    .approach-section h2,
    .carousel-section h2,
    .contact-cta h2 {
      font-size: 26px;
    }

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

    .footer-col h4 {
      font-size: 12px;
    }

    .footer-col a {
      font-size: 11px;
    }
  }
}

/* ============================================ */
/* NEW: ROOM HOTSPOT SECTION (interactive)     */
/* ============================================ */
.rooms-section {
  padding: 140px 100px;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.rooms-section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.rooms-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.rooms-section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.15;
}

.rooms-section-title h2 .accent {
  color: var(--green-dark);
}

.rooms-section-title p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* INTERACTIVE HOUSE ILLUSTRATION */
.rooms-illustration {
  max-width: 1100px;
  margin: 0 auto 80px;
  position: relative;
}

.rooms-svg {
  width: 100%;
  height: auto;
  display: block;
}

.room-zone {
  cursor: pointer;
  transition: all 0.4s ease;
}

.room-zone:hover .room-fill {
  fill: var(--green-light);
  opacity: 0.35;
}

.room-zone .room-fill {
  fill: var(--green-dark);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-zone:hover .room-dot {
  transform: scale(1.3);
}

.room-dot {
  fill: var(--green-dark);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.room-dot-pulse {
  fill: var(--green-light);
  opacity: 0.4;
  transform-origin: center;
  animation: roomPulse 2s ease-in-out infinite;
}

@keyframes roomPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}

.room-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  fill: var(--dark-gray);
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.3s ease;
}

.room-zone:hover .room-label {
  fill: var(--green-dark);
}

/* ROOM CARDS GRID (mobile + complement) */











@media (max-width: 1024px) {
  .rooms-cards { grid-template-columns: repeat(3, 1fr); }
  .rooms-section { padding: 100px 40px; }
  .rooms-section-title h2 { font-size: 38px; }
}

@media (max-width: 768px) {
  .rooms-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .rooms-section { padding: 80px 20px; }
  .rooms-section-title h2 { font-size: 30px; }
  .rooms-illustration { display: none; }
  .room-card-image { height: 130px; }
}

@media (max-width: 480px) {
  .rooms-cards { grid-template-columns: 1fr; }
}

/* ============================================ */
/* NEW: 3-COLUMN ADVANTAGES (origami style)    */
/* ============================================ */
.advantages-section {
  padding: 140px 100px;
  background: var(--white);
}

.advantages-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.advantages-header .label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.advantages-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.15;
}

.advantages-header h2 .accent { color: var(--green-dark); }

.advantages-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.advantage-card {
  background: linear-gradient(180deg, var(--light-gray) 0%, #f0f5ec 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 4px solid var(--green-dark);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(23, 97, 49, 0.12);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(23, 97, 49, 0.08);
}

.advantage-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-dark);
}

.advantage-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.advantage-card .lead {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 16px;
  font-size: 15px;
}

.advantage-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.advantage-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.advantage-card .footnote {
  font-size: 14px;
  font-style: italic;
  color: var(--green-dark);
  font-weight: 500;
  border-top: 1px solid rgba(23, 97, 49, 0.15);
  padding-top: 16px;
}

@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: 1fr; max-width: 600px; }
  .advantages-section { padding: 100px 40px; }
  .advantages-header h2 { font-size: 38px; }
}

@media (max-width: 768px) {
  .advantages-section { padding: 80px 20px; }
  .advantages-header h2 { font-size: 30px; }
  .advantage-card { padding: 35px 28px; }
}

/* ============================================ */
/* NEW: STEPS SECTION (4-step process)         */
/* ============================================ */
.steps-section {
  padding: 140px 100px;
  background: var(--light-gray);
  position: relative;
}

.steps-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.steps-header .label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.steps-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.15;
}

.steps-header h2 .accent { color: var(--green-dark); }

.steps-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light) 0%, var(--green-dark) 100%);
  opacity: 0.25;
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 30px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(23, 97, 49, 0.1);
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 25px rgba(23, 97, 49, 0.2);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .steps-section { padding: 100px 40px; }
  .steps-header h2 { font-size: 38px; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-section { padding: 80px 20px; }
  .steps-header h2 { font-size: 30px; }
}

/* ============================================ */
/* NEW: ZONES INTERVENTION                      */
/* ============================================ */
.zones-section {
  padding: 140px 100px;
  background: var(--white);
}

.zones-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.zones-text .label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.zones-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.15;
}

.zones-text h2 .accent { color: var(--green-dark); }

.zones-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.zones-text strong { color: var(--dark-gray); font-weight: 600; }

.zones-map {
  background: linear-gradient(135deg, #e8efe1 0%, #f0f5ec 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.zones-map h3 {
  font-size: 24px;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 24px;
}

.zones-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.zones-list li {
  padding: 10px 16px;
  background: var(--white);
  border-radius: 10px;
  font-weight: 500;
  color: var(--dark-gray);
  border-left: 3px solid var(--green-dark);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .zones-container { grid-template-columns: 1fr; gap: 50px; }
  .zones-section { padding: 100px 40px; }
}

@media (max-width: 768px) {
  .zones-section { padding: 80px 20px; }
  .zones-text h2 { font-size: 30px; }
  .zones-map { padding: 40px 25px; }
  .zones-list { grid-template-columns: 1fr; }
}

/* ============================================ */
/* NEW: GUARANTEES                              */
/* ============================================ */
.guarantees-section {
  padding: 140px 100px;
  background: var(--dark-gray);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.guarantees-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(130,189,65,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.guarantees-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.guarantees-header .label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 20px;
}

.guarantees-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.guarantees-header h2 .accent { color: var(--green-light); }

.guarantees-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.guarantee-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.guarantee-card:hover {
  border-color: var(--green-light);
  background: rgba(130,189,65,0.05);
  transform: translateY(-6px);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.guarantee-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.guarantee-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees-section { padding: 100px 40px; }
  .guarantees-header h2 { font-size: 38px; }
}

@media (max-width: 600px) {
  .guarantees-grid { grid-template-columns: 1fr; }
  .guarantees-section { padding: 80px 20px; }
  .guarantees-header h2 { font-size: 30px; }
}

/* ============================================ */
/* SUB-PAGE LAYOUTS (room pages)                */
/* ============================================ */
.subpage-hero {
  padding: 180px 100px 100px;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
  position: relative;
}

.subpage-hero-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subpage-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.subpage-breadcrumb a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 500;
}

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

.subpage-hero h1 {
  font-size: 54px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.1;
}

.subpage-hero h1 .accent { color: var(--green-dark); }

.subpage-hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.subpage-hero-image {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  background: linear-gradient(135deg, #e8efe1 0%, #c8d9b8 100%);
  box-shadow: 0 30px 80px rgba(23,97,49,0.15);
}

.subpage-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subpage-section {
  padding: 100px 100px;
  background: var(--white);
}

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

.subpage-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.subpage-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.2;
}

.subpage-section h2 .accent { color: var(--green-dark); }

.subpage-section .section-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 50px;
}

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

.work-item {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(23,97,49,0.08);
  transition: all 0.3s ease;
}

.subpage-section.alt .work-item {
  background: var(--white);
}

.work-item:hover {
  border-color: var(--green-light);
  transform: translateX(4px);
}

.work-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.work-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.work-item-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.subpage-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  color: var(--white);
  margin: 80px auto;
  max-width: 1100px;
}

.subpage-cta h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.subpage-cta p {
  font-size: 17px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subpage-cta .btn-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.subpage-cta .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
  .subpage-hero { padding: 140px 40px 80px; }
  .subpage-hero-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .subpage-hero h1 { font-size: 42px; }
  .subpage-hero-image { height: 350px; }
  .subpage-section { padding: 80px 40px; }
  .subpage-section h2 { font-size: 30px; }
  .works-grid { grid-template-columns: 1fr; }
  .subpage-cta { padding: 50px 30px; margin: 50px 20px; }
  .subpage-cta h3 { font-size: 26px; }
}

@media (max-width: 768px) {
  .subpage-hero { padding: 120px 20px 60px; }
  .subpage-hero h1 { font-size: 32px; }
  .subpage-section { padding: 60px 20px; }
}


/* ============================================================
   TYPOGRAPHIE ATLANTE-INSPIRED (override global)
   Swiss editorial — Inter en remplacement de Poppins
   Appliqué à TOUTES les pages via style.css
   ============================================================ */

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

body, html {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings — Swiss editorial scale, tight letter-spacing */
h1, .hero h1, .subpage-hero h1 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
}

h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
}

h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.2 !important;
}

h4 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

p, li, a, label, input, textarea, select, button {
  font-family: 'Inter', sans-serif !important;
}

p {
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

/* Labels uppercase — espacement large façon Atlante */
.rooms-label, .label, .advantages-header .label,
.steps-header .label, .zones-text .label,
.guarantees-header .label, .subpage-breadcrumb {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  font-size: 11px !important;
}

/* Boutons : weight et tracking Atlante */
.btn, .btn-primary, .footer-cta-btn, .subpage-cta .btn-white {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: lowercase !important;
}

/* Header nav : style Atlante */
header nav a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: 0.01em !important;
  text-transform: lowercase !important;
}

/* Tailles globales (web + mobile) à la Atlante */
@media (min-width: 1024px) {
  .subpage-hero h1, .hero h1 { font-size: 72px !important; }
  h2 { font-size: 52px !important; }
  h3 { font-size: 22px !important; }
  p { font-size: 17px !important; }
  .subpage-hero p.lead, .hero p { font-size: 20px !important; line-height: 1.55 !important; }
}

@media (max-width: 1023px) {
  .subpage-hero h1, .hero h1 { font-size: 48px !important; }
  h2 { font-size: 36px !important; }
  h3 { font-size: 20px !important; }
  p { font-size: 16px !important; }
}

@media (max-width: 640px) {
  .subpage-hero h1, .hero h1 { font-size: 38px !important; }
  h2 { font-size: 28px !important; }
  p { font-size: 15px !important; }
}

/* ============================================================
   INTRO ANIMÉE — "bauV" en typo qui descend & passe noir→blanc
   (uniquement sur la homepage : <section class="bauv-intro">)
   ============================================================ */

.bauv-intro {
  position: relative;
  height: 220vh;            /* hauteur scroll pour l'animation */
  width: 100%;
  background: transparent;
  overflow: visible;
}

.bauv-intro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;    /* JS interpolera vers #176131 */
  transition: none;
  will-change: background-color;
}

.bauv-logo-typo {
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(120px, 22vw, 360px) !important;
  letter-spacing: -0.06em !important;
  line-height: 0.85 !important;
  color: #0a0a0a;               /* JS interpolera vers blanc */
  margin: 0 !important;
  padding: 0 !important;
  transform-origin: center center;
  will-change: transform, color;
  user-select: none;
}

.bauv-logo-typo .v-accent {
  /* le "V" majuscule peut être stylé en couleur d'accent au repos */
  color: inherit;
}

.bauv-intro-tagline {
  margin-top: 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #0a0a0a;               /* JS interpolera */
  will-change: color, opacity;
}

.bauv-intro-presentation {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 90%;
  text-align: center;
  opacity: 0;                    /* JS fade-in */
  pointer-events: none;
  will-change: opacity;
}

.bauv-intro-presentation p {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
  letter-spacing: -0.005em !important;
}

.bauv-intro-presentation .btn-presentation {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.bauv-intro-presentation .btn-presentation:hover {
  background: #ffffff;
  color: var(--green-dark);
}

/* Scroll hint au début */
.bauv-intro-scrollhint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  animation: scrollHintBlink 2s ease-in-out infinite;
  will-change: opacity, color;
}

@keyframes scrollHintBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Mobile : on garde l'effet mais avec tailles adaptées */
@media (max-width: 768px) {
  .bauv-intro { height: 180vh; }
  .bauv-logo-typo {
    font-size: clamp(80px, 30vw, 180px) !important;
  }
  .bauv-intro-tagline {
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
  }
  .bauv-intro-presentation { bottom: 8vh; }
  .bauv-intro-presentation p {
    font-size: 16px !important;
  }
}


/* ============================================================
   NEW: PHOTO-REAL ROOM HOTSPOTS
   Image isométrique de la maison + 5 hotspots cliquables
   ============================================================ */

.rooms-house-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.rooms-house-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}



/* Dot pulsant central */




/* Label texte (apparaît au hover) */


/* Petite flèche après le label */

/* Masquer l'illustration sur mobile, on garde les cards en grille */
/* (Règle héritée retirée : la maison isométrique reste visible sur mobile,
   avec son traitement tactile dédié défini plus bas — labels permanents, dots agrandis.) */

/* Sur tablette, légèrement plus petit */
@media (max-width: 1024px) and (min-width: 769px) {
  .rooms-house-wrapper {
    max-width: 700px;
  }
  .room-hotspot {
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
  }
}

/* ============================================================
   NEW: HOTSPOTS SUR L'IMAGE (style Origami)
   Points discrets + labels en pill au hover (desktop)
   Labels permanents (mobile) — totalement adapté tactile
   ============================================================ */

.rooms-house-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 1.25 / 1;       /* un peu plus large que haut : room pour les dots autour */
  overflow: visible;
}

.rooms-house-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 1 / 1;          /* l'image reste carrée, centrée */
  overflow: visible;            /* les hotspots positionnés à 0% ou 100% restent visibles */
}

.rooms-house-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Le hotspot = lien transparent positionné par top/left, centré sur le rond vert dessiné dans l'image */
.room-hotspot {
  position: absolute;
  width: 44px;       /* zone cliquable / hover plus large que le rond visuel (~28px dans l'image) */
  height: 44px;
  transform: translate(-50%, -50%);
  text-decoration: none;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-hotspot:hover {
  z-index: 10;
}

/* L'anneau = LE ROND VERT visible en permanence, avec halo blanc autour */
.hotspot-ring {
  display: block;
  width: 22px;       /* taille du rond visible */
  height: 22px;
  border-radius: 50%;
  background: var(--green-dark);    /* #176131 — vert bauV */
  /* Halo blanc autour pour la lisibilité sur tous les fonds */
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.95),
    0 0 0 6px rgba(23, 97, 49, 0.15),
    0 3px 10px rgba(23, 97, 49, 0.35);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease;
  pointer-events: none;
}

/* Au hover : rond grossit + halo s'étend + couleur vert clair + pulse infini */
.room-hotspot:hover .hotspot-ring,
.room-hotspot:focus-visible .hotspot-ring {
  transform: scale(1.15);
  background: var(--green-light);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.95),
    0 0 0 12px rgba(130, 189, 65, 0.35),
    0 0 0 20px rgba(130, 189, 65, 0.12),
    0 4px 14px rgba(23, 97, 49, 0.4);
  animation: hotspotPulse 1.6s ease-out infinite;
}

@keyframes hotspotPulse {
  0% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.95),
      0 0 0 12px rgba(130, 189, 65, 0.35),
      0 0 0 20px rgba(130, 189, 65, 0.12),
      0 4px 14px rgba(23, 97, 49, 0.4);
  }
  100% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.95),
      0 0 0 18px rgba(130, 189, 65, 0.18),
      0 0 0 30px rgba(130, 189, 65, 0),
      0 4px 14px rgba(23, 97, 49, 0.4);
  }
}

/* Le label en pill — apparait au hover sur desktop */
.hotspot-label {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: #ffffff;
  color: var(--dark-gray);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: -0.005em;
  box-shadow:
    0 8px 24px rgba(23, 97, 49, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hotspot-label em {
  font-style: normal;
  color: var(--green-dark);
  font-weight: 700;
  margin-left: 6px;
  font-size: 16px;
  position: relative;
  top: 1px;
}

.room-hotspot:hover .hotspot-label,
.room-hotspot:focus-visible .hotspot-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== TABLETTE — labels visibles en permanence (touch sans hover précis) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .hotspot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    font-size: 12px !important;
    padding: 6px 12px;
  }
  .hotspot-label em { font-size: 14px; margin-left: 4px; }
}

/* ===== MOBILE — labels permanents, dots agrandis pour tap target ===== */
@media (max-width: 768px) {
  .rooms-house-wrapper {
    max-width: 100%;
    aspect-ratio: 1 / 1.18;        /* portrait léger pour donner place aux labels haut/bas */
  }

  .rooms-house-frame {
    height: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* l'image prend toute la largeur, centrée verticalement */
  }

  /* Tap target plus grand */
  .room-hotspot {
    width: 44px;
    height: 44px;
  }

  /* Labels toujours visibles */
  .hotspot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    font-size: 10.5px !important;
    padding: 4px 10px;
    bottom: calc(100% + 2px);
    font-weight: 600 !important;
  }
  .hotspot-label em { font-size: 12px; margin-left: 3px; }

  /* Sur mobile : pulse "radar" continu pour signaler que les points sont cliquables */
  .hotspot-ring {
    width: 15px;
    height: 15px;
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.95),
      0 0 0 5px rgba(130, 189, 65, 0.55),
      0 2px 6px rgba(23, 97, 49, 0.35);
    animation: hotspotPing 1.7s ease-out infinite, hotspotBeat 1.7s ease-in-out infinite;
  }
  /* Décalage pour un effet organique (les points ne pulsent pas tous en même temps) */
  .room-hotspot:nth-of-type(2) .hotspot-ring { animation-delay: 0.34s, 0.34s; }
  .room-hotspot:nth-of-type(3) .hotspot-ring { animation-delay: 0.68s, 0.68s; }
  .room-hotspot:nth-of-type(4) .hotspot-ring { animation-delay: 1.02s, 1.02s; }
  .room-hotspot:nth-of-type(5) .hotspot-ring { animation-delay: 1.36s, 1.36s; }
  .room-hotspot:hover .hotspot-ring,
  .room-hotspot:focus-visible .hotspot-ring {
    animation: none;
    transform: scale(1.1);
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.95),
      0 0 0 8px rgba(130, 189, 65, 0.3),
      0 2px 8px rgba(23, 97, 49, 0.4);
  }
}

/* Très petit écran : on évite l'overflow horizontal des labels */
@media (max-width: 400px) {
  .hotspot-label {
    font-size: 9.5px !important;
    padding: 3px 8px;
  }
}

/* Pulse "radar" des hotspots (mobile) : halo vert qui se diffuse + léger battement du rond */
@keyframes hotspotPing {
  0%   { box-shadow: 0 0 0 3px rgba(255,255,255,0.95), 0 0 0 5px rgba(130,189,65,0.55), 0 2px 6px rgba(23,97,49,0.35); }
  70%  { box-shadow: 0 0 0 3px rgba(255,255,255,0.95), 0 0 0 20px rgba(130,189,65,0), 0 2px 6px rgba(23,97,49,0.35); }
  100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.95), 0 0 0 20px rgba(130,189,65,0), 0 2px 6px rgba(23,97,49,0.35); }
}
@keyframes hotspotBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .hotspot-ring { animation: none !important; }
}


/* ============================================================
   HERO — "Du plan à la réalité"
   Un plan d'architecte se trace (SVG), puis la photo se révèle.
   100% CSS (animations au chargement), compatible file://.
   ============================================================ */

.hero-bp {
  position: relative;
  height: 100vh;
  min-height: 600px;
  height: 100svh;
  overflow: hidden;
  background: #0e1611;
  isolation: isolate;
}

/* Couche 1 — fond plan : dégradé sombre + grain léger */
.hero-bp-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(130,189,65,0.10) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(150deg, #0c130e 0%, #122019 48%, #0d160f 100%);
}

/* Couche 2 — la photo, révélée après le tracé */
.hero-bp-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  animation: bpReveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) 2.9s forwards;
}
.hero-bp-photo.no-img { background: linear-gradient(150deg, #16241a 0%, #1f3a29 100%); }
.hero-bp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.14);
  animation: bpKenburns 9s ease-out 2.9s forwards;
}
/* Voile dégradé pour la lisibilité du texte (poids à gauche) */
.hero-bp-photo-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8,13,10,0.88) 0%, rgba(8,13,10,0.6) 34%, rgba(8,13,10,0.12) 66%, rgba(8,13,10,0.32) 100%),
    linear-gradient(0deg, rgba(8,13,10,0.55) 0%, rgba(8,13,10,0) 38%);
}

/* Couche 3 — le plan SVG qui se dessine */
.hero-bp-draw {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 1;
  animation: bpPlanFade 1.6s ease 3.0s forwards;   /* devient un filigrane une fois la photo révélée */
  pointer-events: none;
}
.hero-bp-draw path,
.hero-bp-draw circle,
.hero-bp-draw ellipse {
  fill: none;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  /* durée courte par trait : combinée au délai progressif (inline), donne l'effet "stylo qui dessine" */
  animation: bpStroke 0.7s ease forwards;
}
/* Couleurs bauV (vert) — plan d'appartement complet */
.hero-bp-draw .bp-floor path   { stroke: rgba(130,189,65,0.30); stroke-width: 1.1; }
.hero-bp-draw .bp-walls path   { stroke: rgba(190,232,170,0.92); stroke-width: 2.2; }
.hero-bp-draw .bp-windows path { stroke: var(--green-light); stroke-width: 1.5; }
.hero-bp-draw .bp-furn path    { stroke: rgba(130,189,65,0.62); stroke-width: 1.4; }

/* Textes du plan (étiquettes, cotes, nord) : pas de tracé → fondu */
.hero-bp-draw text {
  fill: rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  font-weight: 500;
  opacity: 0;
  animation: bpFadeIn 0.8s ease 1.95s forwards;
}
.hero-bp-draw .bp-dims text  { fill: var(--green-light); font-size: 13px; letter-spacing: 0.08em; }
.hero-bp-draw .bp-north text { fill: rgba(255,255,255,0.7); letter-spacing: 0; font-size: 15px; }

/* Couche 4 — repères techniques permanents (coins + coordonnées) */
.hero-bp-marks {
  position: absolute;
  inset: 26px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: bpFadeIn 0.9s ease 3.1s forwards;
}
.bp-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.bp-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.bp-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.bp-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.bp-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.bp-coord {
  position: absolute;
  top: 2px;
  right: 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Couche 5 — contenu éditorial */
.hero-bp-content {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 7vw, 110px);
  bottom: clamp(90px, 16vh, 160px);
  max-width: 620px;
}
.hero-bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 22px;
  opacity: 0;
  animation: bpUpIn 0.8s cubic-bezier(0.22,1,0.36,1) 3.3s forwards;
}
.hero-bp-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--green-light);
}
.hero-bp-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #fff;
  font-size: clamp(48px, 8vw, 104px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 26px 0;
}
.hero-bp-title span {
  display: block;
  opacity: 0;
  transform: translateY(28px);
}
.hero-bp-title .l1 { animation: bpUpIn 0.9s cubic-bezier(0.22,1,0.36,1) 3.42s forwards; }
.hero-bp-title .l2 { animation: bpUpIn 0.9s cubic-bezier(0.22,1,0.36,1) 3.55s forwards; }
.hero-bp-title em {
  font-style: normal;
  color: var(--green-light);
}
.hero-bp-lead {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 0 34px 0;
  opacity: 0;
  animation: bpUpIn 0.9s cubic-bezier(0.22,1,0.36,1) 3.72s forwards;
}
.hero-bp-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: bpUpIn 0.9s cubic-bezier(0.22,1,0.36,1) 3.9s forwards;
}
.hero-bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hero-bp-btn.primary {
  background: var(--green-light);
  color: #0c130e;
}
.hero-bp-btn.primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.hero-bp-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hero-bp-btn.ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Indicateur de scroll */
.hero-bp-scroll {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 5vw, 70px);
  bottom: clamp(90px, 16vh, 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  animation: bpFadeIn 0.9s ease 4.1s forwards;
}
.hero-bp-scroll-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  writing-mode: vertical-rl;
}
.hero-bp-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  overflow: visible;
  position: relative;
}
.hero-bp-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 18px;
  background: var(--green-light);
  animation: bpScrollDot 1.8s ease-in-out infinite;
}

/* ---- Keyframes ---- */
@keyframes bpStroke   { to { stroke-dashoffset: 0; } }
@keyframes bpPlanFade { to { opacity: 0.14; } }
@keyframes bpReveal   { from { opacity: 0; clip-path: inset(0 0 100% 0); } to { opacity: 1; clip-path: inset(0 0 0% 0); } }
@keyframes bpKenburns { to { transform: scale(1); } }
@keyframes bpUpIn     { to { opacity: 1; transform: none; } }
@keyframes bpFadeIn   { to { opacity: 1; } }
@keyframes bpScrollDot{ 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(38px); opacity: 0; } }

/* Responsive mobile */
@media (max-width: 768px) {
  .hero-bp-content {
    left: 22px;
    right: 22px;
    bottom: clamp(110px, 18vh, 170px);
  }
  .hero-bp-scroll { display: none; }
  .hero-bp-marks { inset: 16px; }
  .bp-coord { font-size: 9.5px; right: 28px; }
  .hero-bp-btn { padding: 14px 24px; font-size: 14px; }
  .hero-bp-cta { gap: 12px; }
}

/* Accessibilité : pas d'animation → on montre directement l'état final */
@media (prefers-reduced-motion: reduce) {
  .hero-bp-photo { opacity: 1; clip-path: none; animation: none; }
  .hero-bp-photo img { transform: none; animation: none; }
  .hero-bp-draw { opacity: 0.14; animation: none; }
  .hero-bp-draw path,
  .hero-bp-draw circle,
  .hero-bp-draw ellipse { stroke-dashoffset: 0; animation: none; }
  .hero-bp-draw text { opacity: 1; animation: none; }
  .hero-bp-marks,
  .hero-bp-eyebrow,
  .hero-bp-title span,
  .hero-bp-lead,
  .hero-bp-cta,
  .hero-bp-scroll { opacity: 1; transform: none; animation: none; }
}


/* ============================================================
   BLOG — Page blog-main.html
   ============================================================ */

.blog-section {
  padding: 80px 0 60px;
  background: var(--white);
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(23, 97, 49, 0.10);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  height: 180px;
  flex-shrink: 0;
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-date,
.blog-card-read {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.blog-card-read::before {
  content: "— ";
}

.blog-card h2 {
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: var(--dark-gray);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em !important;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}

.blog-card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.blog-cta-block {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid #ebebeb;
}

.blog-cta-block p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .blog-section { padding: 50px 0 40px; }
  .blog-container { padding: 0 20px; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card-image { height: 140px; }
}


/* ============================================================
   FIL CONDUCTEUR — sections premium "blueprint" + SEO
   (Entreprise générale, Chiffres, Avis, FAQ) + révélation scroll
   ============================================================ */

/* ---- Révélation au scroll (fluidité globale) ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal].in-view { opacity: 1; transform: none; }
.stats-grid [data-reveal].in-view:nth-child(2) { transition-delay: 0.08s; }
.stats-grid [data-reveal].in-view:nth-child(3) { transition-delay: 0.16s; }
.stats-grid [data-reveal].in-view:nth-child(4) { transition-delay: 0.24s; }
.avis-grid [data-reveal].in-view:nth-child(2) { transition-delay: 0.1s; }
.avis-grid [data-reveal].in-view:nth-child(3) { transition-delay: 0.2s; }

/* ---- Repères techniques d'angle réutilisables ---- */
.tech-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 1.5px solid rgba(130,189,65,0.55);
  pointer-events: none;
  z-index: 2;
}
.tc-tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.tc-br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

/* ---- Section ENTREPRISE GÉNÉRALE (dark) ---- */
.eg-section {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 8%, rgba(130,189,65,0.08) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(160deg, #0c130e 0%, #111d15 55%, #0c130e 100%);
  color: #fff;
  padding: clamp(70px, 11vw, 140px) clamp(24px, 7vw, 110px);
  overflow: hidden;
}
.eg-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.eg-index, .faq-intro .eg-index {
  display: inline-block;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 22px;
}
.eg-left h2, .faq-intro h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: clamp(30px, 4vw, 50px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin: 0;
}
.eg-section .accent, .faq-section .accent { color: var(--green-light); }
.eg-right p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.75;
  margin: 0 0 20px 0;
}
.eg-right p strong { color: #fff; font-weight: 600; }
.eg-lead { font-size: clamp(17px, 1.5vw, 20px) !important; color: #fff !important; }
.eg-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.eg-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.eg-tick {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1.5px solid var(--green-light);
  border-radius: 50%;
  position: relative;
}
.eg-tick::after {
  content: "";
  position: absolute;
  left: 5px; top: 4px;
  width: 5px; height: 8px;
  border: solid var(--green-light);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.eg-cta { display: flex; gap: 26px; flex-wrap: wrap; }
.eg-link {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--green-light);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.eg-link em { font-style: normal; color: var(--green-light); }
.eg-link.ghost { border-color: rgba(255,255,255,0.25); }
.eg-link:hover { color: var(--green-light); border-color: var(--green-light); }

/* ---- CHIFFRES CLÉS (dark band) ---- */
.stats-section {
  background: #0c130e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(50px, 7vw, 84px) clamp(24px, 7vw, 90px);
}
.stats-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.stat-num em { font-style: normal; color: var(--green-light); }
.stat-label {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ---- AVIS CLIENTS (light) ---- */
.avis-section {
  background: var(--light-gray);
  padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px);
}
.avis-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.avis-header .label {
  display: block;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.avis-header h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  color: var(--dark-gray);
  margin: 0 0 14px;
}
.avis-header p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.avis-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.avis-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 34px 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.avis-card:hover { box-shadow: 0 16px 50px rgba(23,97,49,0.10); transform: translateY(-4px); }
.avis-stars { color: var(--green-light); letter-spacing: 3px; font-size: 15px; margin-bottom: 18px; }
.avis-card blockquote {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark-gray);
  flex: 1;
}
.avis-card figcaption { display: flex; flex-direction: column; gap: 3px; }
.avis-card figcaption strong { color: var(--dark-gray); font-weight: 600; font-size: 15px; }
.avis-card figcaption span { color: var(--text-muted); font-size: 13px; }
.avis-note {
  text-align: center;
  margin: 40px auto 0;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
}

/* ---- FAQ (dark) ---- */
.faq-section {
  position: relative;
  background: linear-gradient(160deg, #0c130e 0%, #111d15 60%, #0c130e 100%);
  color: #fff;
  padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 110px);
  overflow: hidden;
}
.faq-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.faq-intro h2 { font-size: clamp(28px, 3.6vw, 46px) !important; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 6px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #fff;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--green-light);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--green-light); }
.faq-answer { padding: 0 40px 24px 0; }
.faq-answer p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .eg-wrap, .faq-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .avis-grid { grid-template-columns: 1fr; }
  .eg-points { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tech-corner { display: none; }
}

/* ---- Accessibilité ---- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   REFONTE SECTIONS HOME — valeurs / piliers / process / zones / protection
   (même langage "blueprint", fluide, responsive)
   ============================================================ */

/* ---- VALEURS (grille éditoriale, light) ---- */
.values2 {
  background: #fff;
  padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px);
}
.values2-head { max-width: 1180px; margin: 0 auto clamp(40px, 5vw, 64px); }
.values2-head .label { display: block; color: var(--green-dark); margin-bottom: 14px; }
.values2-head h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(28px, 3.6vw, 46px) !important;
  color: var(--dark-gray) !important;
  letter-spacing: -0.02em !important;
  margin: 0;
  max-width: 720px;
}
.values2-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value2 {
  padding: 28px 26px 30px 0;
  border-top: 1.5px solid #e7e7e7;
  transition: border-color 0.3s ease;
}
.value2:hover { border-top-color: var(--green-light); }
.value2-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--green-light);
}
.value2 h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 22px !important;
  color: var(--dark-gray) !important;
  margin: 14px 0 12px !important;
}
.value2 p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* ---- PILIERS (dark, valorisé) ---- */
.pillars {
  position: relative;
  background:
    radial-gradient(120% 80% at 12% 10%, rgba(130,189,65,0.07) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(165deg, #0c130e 0%, #111d15 55%, #0c130e 100%);
  color: #fff;
  padding: clamp(70px, 11vw, 140px) clamp(24px, 7vw, 110px);
  overflow: hidden;
}
.pillars .accent { color: var(--green-light); }
.pillars-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.pillars-intro h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: clamp(28px, 3.4vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 18px;
}
.pillars-intro p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 30px 26px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.pillar:hover {
  border-color: rgba(130,189,65,0.5);
  background: rgba(130,189,65,0.05);
  transform: translateY(-5px);
}
.pillar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.pillar-num { font-family: 'Poppins', sans-serif; font-size: 13px; letter-spacing: 0.15em; color: var(--green-light); }
.pillar-icon svg { width: 30px; height: 30px; color: var(--green-light); }
.pillar h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  color: #fff !important;
  font-size: 20px !important;
  margin: 0 0 8px !important;
}
.pillar-lead { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0 0 18px; }
.pillar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.pillar ul li { position: relative; padding-left: 20px; color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.4; }
.pillar ul li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 7px; height: 7px; border: 1.5px solid var(--green-light); border-radius: 50%;
}

/* ---- PROCESS (timeline, light) ---- */
.process { background: var(--light-gray); padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px); }
.process-head { text-align: center; max-width: 640px; margin: 0 auto clamp(46px, 6vw, 70px); }
.process-head .label { display: block; color: var(--green-dark); margin-bottom: 14px; }
.process-head h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  color: var(--dark-gray) !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 14px;
}
.process-head p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.process-track {
  list-style: none; padding: 0;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-track::before {
  content: ""; position: absolute; top: 22px; left: 12.5%; right: 12.5%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--green-light) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.process-step { text-align: center; position: relative; }
.process-node {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--green-light); background: var(--light-gray);
  color: var(--green-dark); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  position: relative; z-index: 1; margin-bottom: 22px;
}
.process-step h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: var(--dark-gray) !important;
  margin: 0 0 10px !important;
}
.process-step p { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 240px; margin: 0 auto; }

/* ---- ZONES (bande proximité, dark) ---- */
.zones2 {
  background: #0c130e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(54px, 7vw, 90px) clamp(24px, 7vw, 90px);
}
.zones2 .accent { color: var(--green-light); }
.zones2-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center;
}
.zones2-lead h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  margin: 12px 0 14px;
}
.zones2-lead p { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.7; margin: 0; }
.zones2-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.zones2-chips li {
  border: 1px solid rgba(255,255,255,0.18); border-radius: 30px;
  padding: 8px 16px; font-family: 'Poppins', sans-serif; font-size: 13px; color: rgba(255,255,255,0.8);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.zones2-chips li:hover { border-color: var(--green-light); color: #fff; }

/* ---- PROTECTION (cartes, light) ---- */
.protect { background: #fff; padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px); }
.protect-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 5vw, 60px); }
.protect-head .label { display: block; color: var(--green-dark); margin-bottom: 14px; }
.protect-head h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(28px, 3.6vw, 44px) !important;
  color: var(--dark-gray) !important;
  margin: 0 0 14px;
}
.protect-head p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.protect-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.protect-card {
  border: 1px solid #ececec; border-radius: 16px; padding: 34px 26px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.protect-card:hover {
  box-shadow: 0 16px 50px rgba(23,97,49,0.10);
  transform: translateY(-5px);
  border-color: rgba(130,189,65,0.4);
}
.protect-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 13px; background: rgba(130,189,65,0.12); margin-bottom: 20px;
}
.protect-icon svg { width: 24px; height: 24px; color: var(--green-dark); }
.protect-card h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: var(--dark-gray) !important;
  margin: 0 0 10px !important;
}
.protect-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .values2-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-wrap { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process-track::before { display: none; }
  .zones2-inner { grid-template-columns: 1fr; }
  .protect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values2-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .protect-grid { grid-template-columns: 1fr; }
  .value2 { padding-right: 0; }
}


/* ---- AVIS : note Google + 2 cartes + lien ---- */
.avis-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: 'Poppins', sans-serif;
}
.avis-rating-stars { color: var(--green-light); letter-spacing: 2px; font-size: 17px; }
.avis-rating strong { color: var(--dark-gray); font-size: 18px; font-weight: 700; }
.avis-rating-meta { color: var(--text-muted); font-size: 14px; }

.avis-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
}
.avis-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.avis-card-top .avis-stars { margin-bottom: 0; }
.avis-source {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid #e4e4e4;
  border-radius: 20px;
  padding: 4px 11px;
}
.avis-cta { text-align: center; margin-top: 44px; }
.avis-google-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--green-light);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.avis-google-link em { font-style: normal; }
.avis-google-link:hover { color: var(--green-light); }

@media (max-width: 760px) {
  .avis-grid.two { grid-template-columns: 1fr; max-width: 480px; }
}


/* ============================================================
   PAGES INTERNES — hero sous-page "blueprint" (réutilisable)
   + grille services + cartes de maillage
   ============================================================ */

/* ---- HERO SOUS-PAGE (dark) ---- */
.subhero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 6%, rgba(130,189,65,0.09) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(160deg, #0c130e 0%, #122019 55%, #0c130e 100%);
  color: #fff;
  padding: clamp(70px, 11vw, 130px) clamp(24px, 7vw, 110px) clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.subhero .accent { color: var(--green-light); }
.subhero-inner { max-width: 1000px; margin: 0 auto; }
.subhero-coord {
  position: absolute; top: 34px; right: 64px; z-index: 2;
  font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.subhero-crumb {
  font-family: 'Poppins', sans-serif; font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 26px;
}
.subhero-crumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.subhero-crumb a:hover { color: var(--green-light); }
.subhero-crumb em { font-style: normal; margin: 0 8px; color: rgba(255,255,255,0.35); }
.subhero-crumb span { color: var(--green-light); }
.subhero h1 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: clamp(32px, 5vw, 60px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  margin: 16px 0 22px !important;
  max-width: 17ch;
}
.subhero-lead { color: rgba(255,255,255,0.78); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; max-width: 620px; margin: 0 0 34px; }
.subhero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- INTRO SEO (light, 2 colonnes) ---- */
.svc-intro { background: #fff; padding: clamp(70px, 10vw, 120px) clamp(24px, 7vw, 110px); }
.svc-intro-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: start;
}
.svc-intro-head .label { display: block; color: var(--green-dark); margin-bottom: 14px; }
.svc-intro-head h2, .svc-section-head h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(28px, 3.4vw, 44px) !important;
  color: var(--dark-gray) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin: 0;
}
.svc-intro-text p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin: 0 0 18px; }
.svc-intro-text p strong { color: var(--dark-gray); font-weight: 600; }

/* ---- GRILLE SERVICES (light) ---- */
.svc-section { background: var(--light-gray); padding: clamp(70px, 10vw, 120px) clamp(24px, 7vw, 90px); }
.svc-section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(44px, 5vw, 64px); }
.svc-section-head .label { display: block; color: var(--green-dark); margin-bottom: 14px; }
.svc-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card {
  background: #fff; border: 1px solid #ececec; border-radius: 16px; padding: 34px 30px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.svc-card:hover { box-shadow: 0 16px 50px rgba(23,97,49,0.10); transform: translateY(-5px); border-color: rgba(130,189,65,0.4); }
.svc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 13px; background: rgba(130,189,65,0.12); margin-bottom: 22px;
}
.svc-icon svg { width: 26px; height: 26px; color: var(--green-dark); }
.svc-card h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: 19px !important; color: var(--dark-gray) !important; margin: 0 0 10px !important;
}
.svc-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* ---- MAILLAGE PAR PIÈCE (light) ---- */
.svc-rooms { background: #fff; padding: clamp(70px, 10vw, 120px) clamp(24px, 7vw, 90px); }
.linkcards {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.linkcard {
  display: flex; flex-direction: column;
  border: 1px solid #ececec; border-radius: 14px; padding: 26px 22px;
  text-decoration: none; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.linkcard:hover { border-color: rgba(130,189,65,0.5); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(23,97,49,0.08); }
.linkcard h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: 18px !important; color: var(--dark-gray) !important; margin: 0 0 8px !important;
}
.linkcard p { color: var(--text-muted); font-size: 13.5px; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.linkcard-arrow { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: var(--green-dark); }
.linkcard-arrow em { font-style: normal; }

/* ---- Responsive pages internes ---- */
@media (max-width: 980px) {
  .svc-intro-wrap { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .linkcards { grid-template-columns: repeat(2, 1fr); }
  .subhero-coord { display: none; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .linkcards { grid-template-columns: 1fr; }
}


/* ============================================================
   EXPERTISES — bento sombre + icônes qui se tracent au scroll
   ============================================================ */
.expertise {
  position: relative;
  background:
    radial-gradient(120% 80% at 15% 8%, rgba(130,189,65,0.07) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(165deg, #0c130e 0%, #111d15 55%, #0c130e 100%);
  color: #fff;
  padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px);
  overflow: hidden;
}
.expertise .accent { color: var(--green-light); }
.expertise-head { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 5vw, 64px); }
.expertise-head .eg-index { display: inline-block; margin-bottom: 14px; }
.expertise-head h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: clamp(28px, 3.6vw, 46px) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin: 0;
}

.expertise-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.exp-card {
  position: relative; overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 28px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.exp-card.span2 { grid-column: span 2; }
.exp-card:hover {
  border-color: rgba(130,189,65,0.5);
  background: rgba(130,189,65,0.06);
  transform: translateY(-5px);
}
.exp-num {
  position: absolute; top: 10px; right: 22px;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(54px, 7vw, 96px); line-height: 1;
  color: rgba(255,255,255,0.05); letter-spacing: -0.04em; pointer-events: none;
  transition: color 0.3s ease;
}
.exp-card:hover .exp-num { color: rgba(130,189,65,0.14); }
.exp-icon { position: relative; z-index: 1; display: inline-flex; width: 44px; height: 44px; align-items: center; }
.exp-icon svg { width: 42px; height: 42px; color: var(--green-light); }
.exp-icon svg path, .exp-icon svg rect, .exp-icon svg polygon, .exp-icon svg polyline {
  fill: none; stroke-dasharray: 1; stroke-dashoffset: 1;
}
.exp-card.in-view .exp-icon svg path,
.exp-card.in-view .exp-icon svg rect,
.exp-card.in-view .exp-icon svg polygon,
.exp-card.in-view .exp-icon svg polyline {
  animation: bpStroke 1.1s ease 0.2s forwards;
}
.exp-body { position: relative; z-index: 1; margin-top: auto; }
.exp-card h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  color: #fff !important; font-size: 20px !important; margin: 0 0 9px !important;
}
.exp-card.span2 h3 { font-size: 24px !important; }
.exp-card p { color: rgba(255,255,255,0.66); font-size: 14px; line-height: 1.6; margin: 0; }
.exp-card.span2 p { font-size: 15px; max-width: 46ch; }

@media (max-width: 980px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card.span2 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .exp-card.span2 { grid-column: span 1; }
  .exp-card { min-height: 180px; }
}
@media (prefers-reduced-motion: reduce) {
  .exp-icon svg * { stroke-dashoffset: 0 !important; animation: none !important; }
}


/* ---- Cartes pièces (light) : icône + survol + tracé ---- */
.linkcard { position: relative; overflow: hidden; padding: 30px 24px 26px; min-height: 232px; }
.lc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(130,189,65,0.12); margin-bottom: 20px;
  transition: background 0.25s ease;
}
.lc-icon svg { width: 26px; height: 26px; color: var(--green-dark); transition: color 0.25s ease; }
.linkcard:hover .lc-icon { background: var(--green-dark); }
.linkcard:hover .lc-icon svg { color: #fff; }
.lc-icon svg path, .lc-icon svg rect, .lc-icon svg circle {
  fill: none; stroke-dasharray: 1; stroke-dashoffset: 1;
}
.linkcard.in-view .lc-icon svg path,
.linkcard.in-view .lc-icon svg rect,
.linkcard.in-view .lc-icon svg circle {
  animation: bpStroke 1.1s ease 0.15s forwards;
}
.linkcard-arrow em { display: inline-block; transition: transform 0.25s ease; }
.linkcard:hover .linkcard-arrow { color: var(--green-light); }
.linkcard:hover .linkcard-arrow em { transform: translateX(5px); }
@media (prefers-reduced-motion: reduce) {
  .lc-icon svg * { stroke-dashoffset: 0 !important; animation: none !important; }
}


/* ============================================================
   CONTACT — coordonnées (sombre) + formulaire + carte
   ============================================================ */
.contact2 { background: #fff; padding: clamp(56px, 8vw, 96px) clamp(24px, 7vw, 90px); }
.contact2-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 26px; align-items: stretch;
}

/* Panneau coordonnées (dark) */
.contact-info {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 6%, rgba(130,189,65,0.10) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(165deg, #0c130e 0%, #122019 55%, #0c130e 100%);
  color: #fff; border-radius: 20px; padding: clamp(34px, 4vw, 48px);
  display: flex; flex-direction: column;
}
.contact-info .eg-index { display: inline-block; margin-bottom: 14px; }
.contact-info h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  color: #fff !important; font-size: clamp(24px, 2.6vw, 30px) !important; margin: 0 0 30px !important;
}
.contact-lines { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 22px; }
.contact-lines li { display: flex; gap: 14px; align-items: flex-start; }
.ci-ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px;
  background: rgba(130,189,65,0.14); display: inline-flex; align-items: center; justify-content: center;
}
.ci-ic svg { width: 20px; height: 20px; color: var(--green-light); }
.ci-tx { display: flex; flex-direction: column; gap: 3px; }
.ci-tx > span:first-child { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ci-tx a, .ci-tx p { font-family: 'Poppins', sans-serif; color: #fff; font-size: 16px; font-weight: 500; text-decoration: none; margin: 0; line-height: 1.45; }
.ci-tx a:hover { color: var(--green-light); }
.contact-info .hero-bp-btn { margin-top: auto; align-self: flex-start; }

/* Carte formulaire */
.contact-form-card {
  background: #fff; border: 1px solid #ececec; border-radius: 20px;
  padding: clamp(30px, 4vw, 46px); box-shadow: 0 24px 70px rgba(23,97,49,0.07);
}
.contact-form-card h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  font-size: clamp(22px, 2.4vw, 28px) !important; color: var(--dark-gray) !important; margin: 0 0 6px !important;
}
.cform-sub { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0 0 26px; }
.cform { display: flex; flex-direction: column; gap: 16px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-field { display: flex; flex-direction: column; gap: 7px; }
.cform-field label { font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 500; color: var(--dark-gray); }
.cform-field input, .cform-field select, .cform-field textarea {
  font-family: 'Poppins', sans-serif; font-size: 15px; padding: 13px 15px;
  border: 1px solid #e0e0e0; border-radius: 10px; background: #fff; color: var(--dark-gray);
  width: 100%; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cform-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.cform-field input::placeholder, .cform-field textarea::placeholder { color: #aab0ab; }
.cform-field input:focus, .cform-field select:focus, .cform-field textarea:focus {
  outline: none; border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(130,189,65,0.15);
}
.cform-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-top: 4px; }
.cform-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--green-dark); flex-shrink: 0; }
.cform .hero-bp-btn { width: 100%; justify-content: center; padding: 16px; margin-top: 8px; }

/* Carte Google Maps */
.contact-map {
  max-width: 1180px; margin: 26px auto 0; padding: 0;
  border: 1px solid #ececec; border-radius: 20px; overflow: hidden; position: relative;
}
.contact-map iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(0.15) contrast(1.04); }
.contact-map-cap {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; background: #fff; border-top: 1px solid #ececec;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: var(--dark-gray);
}
.contact-map-cap .ci-ic { width: 34px; height: 34px; background: rgba(130,189,65,0.12); }
.contact-map-cap .ci-ic svg { width: 17px; height: 17px; color: var(--green-dark); }

@media (max-width: 900px) {
  .contact2-grid { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .contact-map iframe { height: 320px; }
}


/* ============================================================
   EN-TÊTE FLOTTANT (transparent → vitrage au scroll) + MENU + FOOTER
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; border: 0; box-shadow: none; height: auto; padding: 0; display: block;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.hidden { transform: translateY(-100%); }
.nav-progress { position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--green-light); z-index: 2; transition: width 0.12s linear; }
.nav-inner { display: flex; align-items: center; gap: 28px; padding: 19px clamp(20px, 5vw, 60px); transition: padding 0.3s ease; }
.site-nav.scrolled, .site-nav.solid {
  background: rgba(11,18,13,0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.site-nav.scrolled .nav-inner { padding-top: 13px; padding-bottom: 13px; }

.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  position: relative; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.8); text-decoration: none; padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--green-light); transition: width 0.3s cubic-bezier(0.22,1,0.36,1); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: #0c130e;
  background: var(--green-light); padding: 15px 32px; border-radius: 8px; text-decoration: none; white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: #fff; transform: translateY(-2px); }

.nav-burger { display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; position: relative; padding: 0; }
.nav-burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 25px; }
.nav-burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* Menu plein écran */
.nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(165deg, #0c130e 0%, #122019 60%, #0c130e 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 clamp(28px, 9vw, 90px);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s 0.35s;
}
.nav-overlay.open { opacity: 1; visibility: visible; transform: none; transition: opacity 0.35s ease, transform 0.35s ease; }
.nav-overlay-links { display: flex; flex-direction: column; gap: 4px; }
.nav-overlay-links a {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(30px, 8vw, 52px);
  color: #fff; text-decoration: none; letter-spacing: -0.02em; padding: 6px 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.nav-overlay-links a:hover { color: var(--green-light); padding-left: 10px; }
.nav-overlay-foot { margin-top: 46px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.nav-overlay-foot a:not(.nav-cta) { color: rgba(255,255,255,0.7); text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 16px; }
.nav-overlay-foot a:not(.nav-cta):hover { color: var(--green-light); }
body.nav-open { overflow: hidden; }

/* Pages sans hero sombre : libère la place sous le header fixe */
body.nav-offset { padding-top: 74px; }

@media (max-width: 860px) {
  .nav-links, .nav-inner > .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-logo-img { height: 40px; }
}

/* ---- FOOTER ---- */
.site-footer { background: linear-gradient(180deg, #0c130e 0%, #080d0a 100%); color: #fff; }
.sf-top {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(54px, 7vw, 84px) clamp(24px, 7vw, 60px) clamp(34px, 4vw, 50px);
  display: grid; grid-template-columns: 1.25fr 2fr; gap: clamp(36px, 6vw, 80px);
}
.sf-brand { max-width: 380px; }
.sf-logo { height: 44px; width: auto; margin-bottom: 20px; }
.sf-brand p { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.7; margin: 0 0 22px; }
.sf-contact { display: flex; flex-direction: column; gap: 8px; }
.sf-contact a, .sf-contact span { font-family: 'Poppins', sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none; }
.sf-contact a:hover { color: var(--green-light); }
.sf-cols { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 30px; }
.sf-col h4 { font-family: 'Poppins', sans-serif; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-light); margin: 0 0 16px; font-weight: 600; }
.sf-col a { display: block; font-family: 'Poppins', sans-serif; font-size: 14.5px; color: rgba(255,255,255,0.72); text-decoration: none; padding: 6px 0; transition: color 0.2s ease, padding-left 0.2s ease; }
.sf-col a:hover { color: #fff; padding-left: 4px; }
.sf-cta-col p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin: 0 0 18px; }
.sf-cta-col .nav-cta { display: inline-block; padding: 15px 32px; color: #0c130e; }
.sf-cta-col .nav-cta:hover { padding-left: 32px; color: #0c130e; }
.sf-bottom {
  max-width: 1180px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(24px, 7vw, 60px);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sf-bottom span { font-family: 'Poppins', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.sf-coord { letter-spacing: 0.14em; text-transform: uppercase; }

@media (max-width: 860px) {
  .sf-top { grid-template-columns: 1fr; }
  .sf-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  /* Rénovations | Entreprise côte à côte (gauche/droite), CTA en pleine largeur dessous */
  .sf-cols { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .sf-cta-col { grid-column: 1 / -1; }
  .sf-bottom { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PAGES PIÈCES — prestations (dark, numérotées, icônes tracées)
   + grille "autres pièces" centrée
   ============================================================ */
.prest-section {
  position: relative;
  background:
    radial-gradient(120% 80% at 15% 8%, rgba(130,189,65,0.07) 0%, rgba(130,189,65,0) 55%),
    linear-gradient(165deg, #0c130e 0%, #111d15 55%, #0c130e 100%);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) clamp(24px, 7vw, 90px);
  overflow: hidden;
}
.prest-section .accent { color: var(--green-light); }
.prest-head { text-align: center; max-width: 700px; margin: 0 auto clamp(44px, 5vw, 60px); }
.prest-head .eg-index { display: inline-block; margin-bottom: 14px; }
.prest-head h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  color: #fff !important; font-size: clamp(28px, 3.4vw, 44px) !important;
  letter-spacing: -0.02em !important; line-height: 1.1 !important; margin: 0;
}
.prest-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prest-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 30px 28px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.prest-card:hover { border-color: rgba(130,189,65,0.5); background: rgba(130,189,65,0.06); transform: translateY(-5px); }
.prest-num {
  position: absolute; top: 12px; right: 22px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(42px, 5vw, 68px); line-height: 1;
  color: rgba(255,255,255,0.05); letter-spacing: -0.04em; pointer-events: none; transition: color 0.3s ease;
}
.prest-card:hover .prest-num { color: rgba(130,189,65,0.14); }
.prest-icon { display: inline-flex; width: 42px; height: 42px; align-items: center; margin-bottom: 18px; position: relative; z-index: 1; }
.prest-icon svg { width: 34px; height: 34px; color: var(--green-light); }
.prest-icon svg path, .prest-icon svg rect, .prest-icon svg polygon, .prest-icon svg polyline, .prest-icon svg circle {
  fill: none; stroke-dasharray: 1; stroke-dashoffset: 1;
}
.prest-card.in-view .prest-icon svg path, .prest-card.in-view .prest-icon svg rect,
.prest-card.in-view .prest-icon svg polygon, .prest-card.in-view .prest-icon svg polyline,
.prest-card.in-view .prest-icon svg circle { animation: bpStroke 1.1s ease 0.2s forwards; }
.prest-card h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  color: #fff !important; font-size: 19px !important; margin: 0 0 9px !important; position: relative; z-index: 1;
}
.prest-card p { color: rgba(255,255,255,0.66); font-size: 14px; line-height: 1.6; margin: 0; position: relative; z-index: 1; }

/* "Autres pièces" : 4 cartes centrées */
.linkcards.linkcards-4 { grid-template-columns: repeat(4, 1fr); max-width: 1000px; }

@media (max-width: 980px) {
  .prest-grid { grid-template-columns: repeat(2, 1fr); }
  .linkcards.linkcards-4 { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
}
@media (max-width: 560px) {
  .prest-grid { grid-template-columns: 1fr; }
  .linkcards.linkcards-4 { grid-template-columns: 1fr; max-width: 360px; }
}
@media (prefers-reduced-motion: reduce) {
  .prest-icon svg * { stroke-dashoffset: 0 !important; animation: none !important; }
}


/* ============================================================
   CARTES "PIÈCES" (linkcards) — version premium
   ============================================================ */
.linkcard {
  position: relative;
  overflow: hidden;
  padding: 34px 28px 28px;
  min-height: 248px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf4 100%);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.linkcard::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--green-light);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.linkcard:hover::before { width: 100%; }
.linkcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(23,97,49,0.14);
  border-color: rgba(130,189,65,0.45);
}
.lc-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(130,189,65,0.12);
  box-shadow: 0 0 0 6px rgba(130,189,65,0.05);
  margin-bottom: 24px;
  transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.lc-icon svg { width: 27px; height: 27px; }
.linkcard:hover .lc-icon {
  background: var(--green-dark);
  box-shadow: 0 0 0 8px rgba(23,97,49,0.08);
  transform: rotate(-6deg);
}
.linkcard:hover .lc-icon svg { color: #fff; }
.linkcard h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: 20px !important; color: var(--dark-gray) !important; margin: 0 0 9px !important;
}
.linkcard p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 20px; flex: 1; }
.linkcard-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 600;
  color: var(--green-dark); letter-spacing: 0.02em; margin-top: auto;
}
.linkcard-arrow em {
  font-style: normal; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(23,97,49,0.3);
  font-size: 14px; line-height: 1; transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.linkcard:hover .linkcard-arrow em {
  transform: translateX(4px);
  background: var(--green-dark); color: #fff; border-color: var(--green-dark);
}


/* ============================================================
   GALERIE RÉALISATIONS (masonry) + LIGHTBOX
   ============================================================ */
.gallery-section { padding: clamp(56px, 7vw, 90px) clamp(24px, 7vw, 90px); }
.gallery-section:nth-of-type(even) { background: var(--light-gray); }
.gallery-head { max-width: 1180px; margin: 0 auto clamp(30px, 4vw, 44px); }
.gallery-head .label { display: block; color: var(--green-dark); margin-bottom: 12px; }
.gallery-head h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  font-size: clamp(26px, 3.2vw, 40px) !important; color: var(--dark-gray) !important;
  letter-spacing: -0.02em !important; margin: 0 0 12px !important;
}
.gallery-head p { color: var(--text-muted); font-size: 16px; line-height: 1.65; max-width: 720px; margin: 0; }
.gallery-grid { max-width: 1180px; margin: 0 auto; column-count: 3; column-gap: 16px; }
.gallery-item {
  display: block; width: 100%; padding: 0; margin: 0 0 16px; border: 0; background: none;
  border-radius: 14px; overflow: hidden; cursor: pointer; position: relative;
  break-inside: avoid; -webkit-column-break-inside: avoid;
}
.gallery-item img { width: 100%; display: block; border-radius: 14px; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(180deg, rgba(12,19,14,0) 55%, rgba(12,19,14,0.45) 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item::before {
  content: "+"; position: absolute; z-index: 2; right: 16px; bottom: 12px;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.9); color: var(--green-dark); border-radius: 50%;
  font-size: 22px; font-weight: 300; opacity: 0; transform: translateY(6px); transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 560px) { .gallery-grid { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,12,9,0.95); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.3s ease; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 30px 90px rgba(0,0,0,0.55); }
.lightbox button {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer; border-radius: 50%; width: 52px; height: 52px;
  font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox button:hover { background: var(--green-dark); border-color: var(--green-dark); }
.lb-close { top: 24px; right: 24px; font-size: 22px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .lightbox button { width: 44px; height: 44px; }
}


/* ============================================================
   AFFICHES PROJETS (réalisations index)
   ============================================================ */
.projects-showcase { padding: clamp(56px, 7vw, 100px) clamp(24px, 7vw, 90px); background: #fff; }
.showcase-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.showcase-card {
  position: relative; display: block; border-radius: 18px; overflow: hidden;
  text-decoration: none; aspect-ratio: 3 / 4; background: #0c130e;
  box-shadow: 0 10px 30px rgba(23,97,49,0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.showcase-card:hover { box-shadow: 0 26px 60px rgba(23,97,49,0.18); transform: translateY(-5px); }
.showcase-img { position: absolute; inset: 0; }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.showcase-card:hover .showcase-img img { transform: scale(1.07); }
.showcase-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,9,0) 32%, rgba(8,12,9,0.5) 65%, rgba(8,12,9,0.9) 100%);
}
.showcase-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 28px; color: #fff; }
.showcase-label { font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light); }
.showcase-body h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 22px; color: #fff; margin: 10px 0 6px; letter-spacing: -0.01em; }
.showcase-body p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.5; margin: 0 0 16px; }
.showcase-link {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1.5px solid var(--green-light); padding-bottom: 3px;
}
.showcase-link em { font-style: normal; transition: transform 0.25s ease; }
.showcase-card:hover .showcase-link em { transform: translateX(5px); }
@media (max-width: 900px) { .showcase-grid { grid-template-columns: 1fr; max-width: 460px; } .showcase-card { aspect-ratio: 16 / 11; } }


/* ============================================================
   BLOG — index éditorial épuré + page article
   ============================================================ */
.blog-index { max-width: 1000px; margin: 0 auto; padding: clamp(54px, 7vw, 86px) clamp(24px, 6vw, 40px); background: #fff; }

/* Article à la une */
.blog-featured {
  display: block; text-decoration: none;
  border: 1px solid #e9e9e9; border-radius: 18px; padding: clamp(30px, 4vw, 46px);
  position: relative; overflow: hidden; margin-bottom: 50px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.blog-featured::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--green-light); }
.blog-featured:hover { box-shadow: 0 20px 50px rgba(23,97,49,0.10); transform: translateY(-4px); border-color: rgba(130,189,65,0.4); }
.blog-featured .post-cat { color: var(--green-dark); }
.blog-featured h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  font-size: clamp(26px, 3.6vw, 40px) !important; color: var(--dark-gray) !important;
  letter-spacing: -0.025em !important; line-height: 1.1 !important; margin: 14px 0 14px !important; max-width: 18ch;
}
.blog-featured p { color: var(--text-muted); font-size: 16px; line-height: 1.65; margin: 0 0 18px; max-width: 60ch; }

/* Liste des articles */
.post-row {
  display: grid; grid-template-columns: 180px 1fr; gap: clamp(18px, 4vw, 44px);
  padding: 32px 0; border-top: 1px solid #ececec; text-decoration: none; align-items: start;
  transition: background 0.2s ease;
}
.post-list .post-row:last-child { border-bottom: 1px solid #ececec; }
.post-cat { font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-dark); }
.post-meta-side { display: flex; flex-direction: column; gap: 8px; }
.post-date { font-size: 13px; color: var(--text-muted); }
.post-row h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: clamp(20px, 2.3vw, 26px) !important; color: var(--dark-gray) !important;
  letter-spacing: -0.01em !important; margin: 0 0 10px !important; transition: color 0.2s ease;
}
.post-row p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0 0 14px; max-width: 62ch; }
.post-link { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 14px; color: var(--green-dark); display: inline-flex; align-items: center; gap: 8px; }
.post-link em { font-style: normal; transition: transform 0.25s ease; }
.post-row:hover h2 { color: var(--green-dark); }
.post-row:hover .post-link em { transform: translateX(5px); }
.post-row.soon { pointer-events: none; }
.post-row.soon h2 { color: #9aa29c !important; }
.post-row.soon .post-link { color: #aab0a9; }
.post-soon-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #aab0a9; border: 1px solid #e2e2e2; border-radius: 20px; padding: 3px 10px; align-self: flex-start; }

@media (max-width: 680px) {
  .post-row { grid-template-columns: 1fr; gap: 12px; }
  .post-meta-side { flex-direction: row; align-items: center; gap: 12px; }
}

/* ---- Page article ---- */
.subhero.is-article h1 { font-size: clamp(28px, 4vw, 46px) !important; line-height: 1.08 !important; max-width: 22ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; font-family: 'Poppins', sans-serif; font-size: 13px; color: rgba(255,255,255,0.6); }
.article-meta .am-cat { color: var(--green-light); font-weight: 500; letter-spacing: 0.04em; }

.article { background: #fff; }
.article-wrap { max-width: 768px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 24px clamp(56px, 7vw, 90px); }
.article-body > p { font-size: 17px; line-height: 1.85; color: #3a3a3a; margin: 0 0 22px; }
.article-body > p.lead { font-size: 19.5px; line-height: 1.7; color: var(--dark-gray); margin-bottom: 30px; }
.article-body h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  font-size: clamp(22px, 2.6vw, 30px) !important; color: var(--dark-gray) !important;
  letter-spacing: -0.02em !important; margin: 46px 0 16px !important;
}
.article-body h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: 19px !important; color: var(--dark-gray) !important; margin: 30px 0 10px !important;
}
.article-body ul { margin: 0 0 22px; padding-left: 0; list-style: none; }
.article-body li { position: relative; padding-left: 24px; margin-bottom: 11px; font-size: 16px; line-height: 1.7; color: #3a3a3a; }
.article-body li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border: 1.5px solid var(--green-light); border-radius: 50%; }
.article-body strong { color: var(--dark-gray); font-weight: 600; }
.article-callout { background: var(--light-gray); border-left: 3px solid var(--green-light); border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 32px 0; }
.article-callout h4 { font-family: 'Poppins', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-dark); margin: 0 0 10px; }
.article-callout p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--dark-gray); }
.article-cta {
  margin-top: 46px; padding: clamp(28px, 4vw, 42px); border-radius: 18px; text-align: center; color: #fff;
  background: linear-gradient(160deg, #0c130e 0%, #122019 60%, #0c130e 100%);
}
.article-cta h3 { font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; font-size: clamp(20px, 2.4vw, 28px) !important; color: #fff !important; margin: 0 0 10px !important; }
.article-cta p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0 0 22px; }


/* ============================================================
   BLOG — grille de cartes articles (présentation améliorée)
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  border: 1px solid #e9e9e9; border-radius: 16px; padding: 28px 26px; text-decoration: none; background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.post-card::before { content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--green-light); transition: width 0.4s cubic-bezier(0.22,1,0.36,1); }
.post-card:hover::before { width: 100%; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(23,97,49,0.10); border-color: rgba(130,189,65,0.4); }
.post-card .post-cat { color: var(--green-dark); margin-bottom: 14px; display: inline-block; }
.post-card h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: 18.5px !important; color: var(--dark-gray) !important; line-height: 1.3 !important;
  letter-spacing: -0.01em !important; margin: 0 0 10px !important; transition: color 0.2s ease;
}
.post-card:hover h2 { color: var(--green-dark); }
.post-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.post-card-foot { display: flex; align-items: center; justify-content: space-between; }
.post-card-foot .post-date { font-size: 12.5px; color: var(--text-muted); }
.post-arrow {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(23,97,49,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.post-card:hover .post-arrow { background: var(--green-dark); color: #fff; border-color: var(--green-dark); transform: translateX(3px); }

@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }


/* ============================================================
   MÉTHODE — parcours en cartes-étapes reliées (light)
   ============================================================ */
.process2 { background: var(--light-gray); padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px); }
.proc-track {
  list-style: none; padding: 0; margin: 0 auto; max-width: 1180px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.proc-step { position: relative; display: flex; }
.proc-step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -13px; z-index: 3;
  width: 13px; height: 13px;
  border-top: 2px solid rgba(130,189,65,0.6); border-right: 2px solid rgba(130,189,65,0.6);
  transform: rotate(45deg);
}
.proc-card {
  position: relative; overflow: hidden; width: 100%;
  background: #fff; border: 1px solid #ececec; border-radius: 16px; padding: 30px 26px 26px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.proc-card:hover { box-shadow: 0 18px 45px rgba(23,97,49,0.10); transform: translateY(-5px); border-color: rgba(130,189,65,0.4); }
.proc-num {
  position: absolute; top: 12px; right: 20px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 48px; line-height: 1;
  color: rgba(23,97,49,0.06); letter-spacing: -0.03em; pointer-events: none;
}
.proc-icon {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  border-radius: 13px; background: rgba(130,189,65,0.12); margin-bottom: 20px; position: relative; z-index: 1;
}
.proc-icon svg { width: 26px; height: 26px; color: var(--green-dark); }
.proc-icon svg path, .proc-icon svg circle { stroke-dasharray: 1; stroke-dashoffset: 1; }
.proc-step.in-view .proc-icon svg path, .proc-step.in-view .proc-icon svg circle { animation: bpStroke 1.1s ease 0.2s forwards; }
.proc-card h3 {
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important;
  font-size: 18px !important; color: var(--dark-gray) !important; margin: 0 0 9px !important;
}
.proc-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.proc-tag {
  align-self: flex-start; font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--green-dark); background: rgba(130,189,65,0.13);
  border-radius: 20px; padding: 6px 13px;
}
@media (max-width: 900px) {
  .proc-track { grid-template-columns: 1fr 1fr; gap: 16px; }
  .proc-step::after { display: none; }
}
@media (max-width: 560px) { .proc-track { grid-template-columns: 1fr; } }

/* ============================================================
   PROTECTION bauV — éditorial + sceau de garantie (light)
   ============================================================ */
.protect2 { position: relative; background: #fff; padding: clamp(70px, 10vw, 130px) clamp(24px, 7vw, 90px); overflow: hidden; }
.protect2 .tech-corner { border-color: rgba(23,97,49,0.18); }
.protect2-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 6vw, 80px); align-items: start;
}
.protect2-intro .eg-index { color: var(--green-dark); display: inline-block; margin-bottom: 14px; }
.protect2-intro h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important;
  font-size: clamp(30px, 4vw, 50px) !important; color: var(--dark-gray) !important;
  letter-spacing: -0.025em !important; line-height: 1.05 !important; margin: 0 0 18px !important;
}
.protect2-intro h2 .accent { color: var(--green-dark); }
.protect2-intro p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin: 0 0 36px; max-width: 42ch; }
.protect-seal { display: flex; align-items: center; gap: 20px; }
.seal-svg { width: 104px; height: 104px; flex-shrink: 0; }
.seal-dash { stroke: rgba(130,189,65,0.55); stroke-dasharray: 2 7; transform-origin: 60px 60px; animation: sealSpin 24s linear infinite; }
.seal-shield { stroke: var(--green-dark); }
.seal-check { stroke: var(--green-light); }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.seal-cap strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--dark-gray); }
.seal-cap span { font-size: 13px; color: var(--text-muted); }

.protect2-list { display: flex; flex-direction: column; }
.g-item { display: flex; gap: 18px; padding: 24px 0; border-top: 1px solid #ececec; }
.protect2-list .g-item:last-child { border-bottom: 1px solid #ececec; }
.g-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; background: rgba(130,189,65,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.g-icon svg { width: 24px; height: 24px; color: var(--green-dark); transition: color 0.25s ease; }
.g-item:hover .g-icon { background: var(--green-dark); }
.g-item:hover .g-icon svg { color: #fff; }
.g-body h3 { font-family: 'Poppins', sans-serif !important; font-weight: 600 !important; font-size: 18px !important; color: var(--dark-gray) !important; margin: 0 0 6px !important; }
.g-body p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 8px; }
.g-benefit { display: inline-flex; align-items: center; gap: 7px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 13.5px; color: var(--green-dark); }
.g-benefit::before { content: "\2192"; }

@media (max-width: 900px) { .protect2-wrap { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .protect-seal { flex-direction: row; } .seal-svg { width: 84px; height: 84px; } }
