@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --vert-profond: #1a3a2a;
  --vert-moyen: #2d6a4f;
  --vert-vif: #40916c;
  --vert-clair: #74c69d;
  --vert-pale: #d8f3dc;
  --gris-fonce: #1e1e1e;
  --gris-moyen: #4a4a4a;
  --gris-clair: #8d8d8d;
  --gris-pale: #f2f2f0;
  --blanc: #fafaf8;
  --accent: #52b788;

  --font-titre: 'Syne', sans-serif;
  --font-corps: 'DM Sans', sans-serif;

  --ombre: 0 4px 24px rgba(26, 58, 42, 0.10);
  --ombre-forte: 0 8px 40px rgba(26, 58, 42, 0.18);
  --rayon: 12px;
  --rayon-grand: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-corps);
  background: var(--blanc);
  color: var(--gris-fonce);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
  transition: box-shadow 0.3s ease;
}

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

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  display: block;
  height: auto;
  max-height: 60px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--vert-profond);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--vert-vif);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-corps);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gris-moyen);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vert-vif);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--vert-profond);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--vert-moyen);
  color: white !important;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--vert-profond) !important;
  transform: translateY(-1px);
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gris-fonce);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO (accueil)
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(116, 198, 157, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(45, 106, 79, 0.08) 0%, transparent 60%),
    var(--blanc);
}

/* Motif grille subtil */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 106, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 106, 79, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vert-pale);
  color: var(--vert-profond);
  border: 1px solid rgba(64, 145, 108, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vert-vif);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-titre {
  font-family: var(--font-titre);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--vert-profond);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-titre em {
  font-style: normal;
  color: var(--vert-vif);
  position: relative;
}

.hero-titre em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vert-clair);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gris-moyen);
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primaire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vert-moyen);
  color: white;
  padding: 14px 28px;
  border-radius: var(--rayon);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.25);
}

.btn-primaire:hover {
  background: var(--vert-profond);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.btn-secondaire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--vert-moyen);
  padding: 14px 24px;
  border-radius: var(--rayon);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--vert-clair);
  transition: all 0.2s;
}

.btn-secondaire:hover {
  background: var(--vert-pale);
  border-color: var(--vert-moyen);
}

/* Illustration hero */
.hero-visuel {
  animation: fadeUp 0.7s 0.2s ease both;
  position: relative;
}

.hero-card {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 2rem;
  box-shadow: var(--ombre-forte);
  border: 1px solid rgba(45, 106, 79, 0.08);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: var(--vert-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.hero-card-title {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vert-profond);
}

.hero-card-sub {
  font-size: 0.78rem;
  color: var(--gris-clair);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--gris-pale);
}

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

.service-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gris-moyen);
}

.service-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vert-clair);
}

.service-item-prix {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--vert-moyen);
  font-family: var(--font-titre);
}

.hero-floating {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--ombre-forte);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-floating-1 {
  top: -18px;
  right: -24px;
  color: var(--vert-profond);
}

.hero-floating-2 {
  bottom: -16px;
  left: -20px;
  color: var(--gris-moyen);
  font-weight: 400;
}

/* ===========================
   SECTIONS COMMUNES
=========================== */
section {
  padding: 80px 2rem;
}

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert-vif);
  margin-bottom: 0.8rem;
}

.section-titre {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--vert-profond);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1rem;
  color: var(--gris-moyen);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}

/* ===========================
   SERVICES (accueil)
=========================== */
.services {
  background: var(--gris-pale);
}

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

.service-card {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 2rem;
  border: 1px solid rgba(45, 106, 79, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert-moyen), var(--vert-clair));
  opacity: 0;
  transition: opacity 0.25s;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: var(--vert-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vert-profond);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gris-clair);
  line-height: 1.6;
  font-weight: 300;
}

/* ===========================
   STATS BARRE
=========================== */
.stats {
  padding: 50px 2rem;
  background: var(--vert-profond);
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-valeur {
  font-family: var(--font-titre);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--vert-clair);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 300;
}

/* ===========================
   POURQUOI MOI (accueil)
=========================== */
.pourquoi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}

.pourquoi-liste {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pourquoi-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pourquoi-check {
  width: 28px;
  height: 28px;
  background: var(--vert-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--vert-moyen);
  font-size: 14px;
  font-weight: 700;
}

.pourquoi-item-content h4 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vert-profond);
  margin-bottom: 4px;
}

.pourquoi-item-content p {
  font-size: 0.875rem;
  color: var(--gris-clair);
  font-weight: 300;
  line-height: 1.6;
}

.pourquoi-visuel {
  position: relative;
}

.pourquoi-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--vert-pale) 0%, rgba(116, 198, 157, 0.3) 100%);
  border-radius: var(--rayon-grand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(64, 145, 108, 0.3);
  position: relative;
  overflow: hidden;
}

.pourquoi-photo-placeholder .big-icon {
  font-size: 64px;
  opacity: 0.5;
}

.pourquoi-photo-placeholder .placeholder-text {
  font-size: 0.8rem;
  color: var(--vert-vif);
  text-align: center;
  font-weight: 500;
  opacity: 0.7;
}

/* ===========================
   TARIFS PAGE
=========================== */
.tarifs-hero {
  background: linear-gradient(135deg, var(--vert-profond) 0%, var(--vert-moyen) 100%);
  padding: 120px 2rem 80px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tarifs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.tarifs-hero .section-label {
  color: var(--vert-clair);
}

.tarifs-hero .section-titre {
  color: white;
}

.tarifs-hero .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.tarifs-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(116, 198, 157, 0.15);
  border: 1px solid rgba(116, 198, 157, 0.3);
  color: var(--vert-clair);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

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

.tarif-bloc {
  background: white;
  border-radius: var(--rayon-grand);
  overflow: hidden;
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: var(--ombre);
  transition: transform 0.25s, box-shadow 0.25s;
}

.tarif-bloc:hover {
  transform: translateY(-4px);
  box-shadow: var(--ombre-forte);
}

.tarif-bloc-header {
  padding: 1.6rem 1.6rem 1.2rem;
  background: var(--gris-pale);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tarif-bloc-icon {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tarif-bloc-header h3 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vert-profond);
}

.tarif-bloc-header p {
  font-size: 0.78rem;
  color: var(--gris-clair);
  margin-top: 2px;
}

.tarif-liste {
  padding: 1.2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tarif-ligne {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gris-pale);
}

.tarif-ligne:last-child {
  border-bottom: none;
}

.tarif-ligne-nom {
  font-size: 0.875rem;
  color: var(--gris-moyen);
  flex: 1;
  padding-right: 1rem;
  line-height: 1.4;
}

.tarif-ligne-prix {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vert-moyen);
  white-space: nowrap;
  text-align: right;
}

.tarif-ligne-prix.offert {
  color: var(--vert-clair);
  font-size: 0.8rem;
}

.tarif-info {
  background: var(--vert-pale);
  border: 1px solid rgba(64, 145, 108, 0.2);
  border-radius: var(--rayon);
  padding: 1rem 1.4rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tarif-info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tarif-info p {
  font-size: 0.875rem;
  color: var(--vert-profond);
  line-height: 1.6;
  font-weight: 400;
}

.tarif-info strong {
  font-weight: 600;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-hero {
  background: var(--gris-pale);
  padding: 120px 2rem 60px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 1.6rem;
  border: 1px solid rgba(45, 106, 79, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

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

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--vert-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vert-profond);
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 0.875rem;
  color: var(--gris-moyen);
  font-weight: 300;
  transition: color 0.2s;
}

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

.contact-card .detail {
  font-size: 0.78rem;
  color: var(--gris-clair);
  margin-top: 2px;
}

/* Zone d'intervention */
.zone-card {
  background: var(--vert-profond);
  border-radius: var(--rayon-grand);
  padding: 1.6rem;
  color: white;
  margin-top: 0.5rem;
}

.zone-card h4 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vert-clair);
  margin-bottom: 0.6rem;
}

.zone-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
}

/* Formulaire */
.contact-form-wrap {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 2.4rem;
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: var(--ombre);
}

.contact-form-wrap h3 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--vert-profond);
  margin-bottom: 1.6rem;
}

.form-groupe {
  margin-bottom: 1.2rem;
}

.form-groupe label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gris-moyen);
  margin-bottom: 6px;
}

.form-groupe input,
.form-groupe textarea,
.form-groupe select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(45, 106, 79, 0.15);
  border-radius: var(--rayon);
  font-family: var(--font-corps);
  font-size: 0.9rem;
  color: var(--gris-fonce);
  background: var(--blanc);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-groupe input:focus,
.form-groupe textarea:focus,
.form-groupe select:focus {
  border-color: var(--vert-vif);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.form-groupe textarea {
  min-height: 120px;
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--vert-moyen);
  color: white;
  border: none;
  border-radius: var(--rayon);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--vert-profond);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: var(--vert-pale);
  border: 1px solid var(--vert-clair);
  border-radius: var(--rayon);
  padding: 14px;
  text-align: center;
  color: var(--vert-profond);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===========================
   MENTIONS LÉGALES
=========================== */
.mentions-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 2rem 80px;
}

.mentions-content h1 {
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vert-profond);
  margin-bottom: 2rem;
}

.mentions-content h2 {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vert-profond);
  margin: 2rem 0 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gris-pale);
}

.mentions-content p {
  font-size: 0.9rem;
  color: var(--gris-moyen);
  line-height: 1.8;
  font-weight: 300;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--gris-fonce);
  color: white;
  padding: 50px 2rem 30px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-top: 0.8rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

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

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--vert-clair);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--vert-clair);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visuel {
    display: none;
  }

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

  .tarifs-grille {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .pourquoi-visuel {
    display: none;
  }

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

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

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--blanc);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: var(--ombre);
    gap: 1.2rem;
  }

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

  .burger {
    display: flex;
  }

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

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

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

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

/* Variables Dark Mode */
[data-theme='dark'] {
  --blanc: #121212;
  --gris-fonce: #f0f0f0;
  --gris-moyen: #d1d1d1;
  --gris-clair: #aaaaaa;
  --gris-pale: #1e1e1e;
  --vert-pale: #1a2e23;
  --vert-profond: #74c69d;
  --ombre: 0 4px 24px rgba(0, 0, 0, 0.4);
  --ombre-forte: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* Adaptations éléments */
[data-theme='dark'] body {
  background-color: var(--blanc);
  color: var(--gris-fonce);
}

[data-theme='dark'] .nav {
  background: rgba(18, 18, 18, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .nav-links a {
  color: var(--gris-moyen);
}

[data-theme='dark'] .service-card,
[data-theme='dark'] .hero-card,
[data-theme='dark'] .tarif-bloc,
[data-theme='dark'] .contact-card,
[data-theme='dark'] .contact-form-wrap {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .tarif-bloc-header,
[data-theme='dark'] .contact-hero {
  background: #181818;
}

[data-theme='dark'] .form-groupe input,
[data-theme='dark'] .form-groupe textarea,
[data-theme='dark'] .form-groupe select {
  background: #252525;
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

[data-theme='dark'] footer {
  background: #0a0a0a;
}

/* Bouton Interrupteur */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 1.2rem;
  order: 3;
}

.theme-toggle .sun {
  display: none;
}

.theme-toggle .moon {
  display: block;
}

[data-theme='dark'] .theme-toggle .sun {
  display: block;
}

[data-theme='dark'] .theme-toggle .moon {
  display: none;
}

[data-theme='dark'] .hero-floating-2 {
  color: black;
}

[data-theme='dark'] .zone-card {
  background-color: rgba(30, 30, 30);
}