/* =========================================================
   DERPEST SOLUTIONS — Feuille de style principale
   Identité : Lutte anti-nuisibles & hygiène professionnelle
   Couleurs : bleu nuit / vert menthe / vert pro
   ========================================================= */

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

:root {
  /* Couleurs principales */
  --bleu-nuit: #051733;
  --bleu-nuit-soft: #0a2347;
  --bleu-nuit-light: #1a3563;
  --vert-menthe: #a4dec6;
  --vert-menthe-soft: #c8ecdb;
  --vert-pro: #4caf50;
  --vert-pro-dark: #3d8b40;
  --blanc: #ffffff;
  --gris-clair: #f5f7f8;
  --gris-moyen: #e3e8eb;
  --gris-texte: #6b7785;
  --noir-soft: #111c2e;

  /* Typographie */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Espacements */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(5, 23, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(5, 23, 51, 0.08);
  --shadow-lg: 0 18px 48px rgba(5, 23, 51, 0.12);
  --shadow-xl: 0 28px 80px rgba(5, 23, 51, 0.18);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-med: 0.32s cubic-bezier(.2,.7,.2,1);
  --t-slow: 0.6s cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--noir-soft);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--bleu-nuit);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.5em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; position: relative; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ---------- 2. HEADER & NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 78px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med), box-shadow var(--t-med), height var(--t-fast);
}
.site-header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(5, 23, 51, 0.08);
  box-shadow: 0 4px 24px rgba(5, 23, 51, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  transition: opacity var(--t-med);
}
/* Par défaut (haut de page) : version blanche visible, version sombre cachée */
.logo-img--dark { display: none; }
.logo-img--white { display: block; }
/* Au scroll : version sombre visible, version blanche cachée */
.site-header.scrolled .logo-img--white { display: none; }
.site-header.scrolled .logo-img--dark { display: block; }

/* État transparent (haut de page) : couleurs claires pour navigation */
.site-header:not(.scrolled) .nav-main > a,
.site-header:not(.scrolled) .nav-dropdown > a { color: var(--blanc); }
.site-header:not(.scrolled) .nav-main > a:hover,
.site-header:not(.scrolled) .nav-dropdown > a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--vert-menthe);
}
.site-header:not(.scrolled) .btn-outline {
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.site-header:not(.scrolled) .btn-outline:hover {
  background: var(--blanc);
  color: var(--bleu-nuit);
  border-color: var(--blanc);
}
.site-header:not(.scrolled) .menu-toggle span { background: var(--blanc); }


.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  flex: 1;
  justify-content: center;
}
.nav-main > a,
.nav-dropdown > a {
  padding: 10px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  border-radius: 8px;
  transition: background var(--t-fast), color var(--t-fast);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.nav-main > a:hover,
.nav-dropdown > a:hover { background: var(--gris-clair); color: var(--vert-pro); }
.nav-main > a.active,
.nav-dropdown > a.active { color: var(--vert-pro); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾'; font-size: 0.7em; margin-left: 4px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-med);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--bleu-nuit) !important;
  font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: var(--gris-clair) !important;
  color: var(--vert-pro) !important;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--vert-pro);
  color: var(--blanc);
  box-shadow: 0 6px 18px rgba(76, 175, 80, 0.28);
}
.btn-primary:hover {
  background: var(--vert-pro-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76, 175, 80, 0.38);
}
.btn-secondary {
  background: var(--bleu-nuit);
  color: var(--blanc);
}
.btn-secondary:hover { background: var(--bleu-nuit-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--bleu-nuit);
  border: 1.5px solid var(--bleu-nuit);
}
.btn-outline:hover { background: var(--bleu-nuit); color: var(--blanc); }
.btn-whatsapp {
  background: #25d366;
  color: var(--blanc);
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

.btn-sm { padding: 9px 16px; font-size: 0.88rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gris-clair);
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px; height: 2px;
  background: var(--bleu-nuit);
  border-radius: 2px;
  transition: var(--t-fast);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-main, .nav-actions .btn:not(.btn-primary) { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; }
  .site-header .container { gap: 12px; }
  .logo-img { height: 38px; }
}
@media (max-width: 560px) {
  .site-header { height: 64px; }
  .site-header.scrolled { height: 60px; }
  .mobile-nav { top: 64px; }
  .logo-img { height: 32px; max-width: 160px; }
  .nav-actions .btn-primary { padding: 8px 14px; font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .nav-actions .btn-primary { display: none; }
  .logo-img { height: 30px; max-width: 150px; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--blanc);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
  z-index: 999;
}
.mobile-nav.open { max-height: calc(100vh - 70px); overflow-y: auto; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gris-moyen);
  font-weight: 500;
  color: var(--bleu-nuit);
}
.mobile-nav details summary {
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid var(--gris-moyen);
}
.mobile-nav details a { padding-left: 16px; font-size: 0.92rem; }

/* ---------- 3. HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-soft) 60%, var(--bleu-nuit-light) 100%);
  color: var(--blanc);
  overflow: hidden;
  isolation: isolate;
}
/* Image de fond globale des slides : sera changée dynamiquement par JS */
.hero-bg-images {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-img.active { opacity: 0.32; }
.hero-bg-images::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(5,23,51,0.92) 0%, rgba(5,23,51,0.78) 45%, rgba(5,23,51,0.5) 100%);
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(164, 222, 198, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  margin-bottom: 0;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
  visibility: hidden;
  max-width: 780px;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(164, 222, 198, 0.12);
  color: var(--vert-menthe);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(164, 222, 198, 0.25);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--vert-pro);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.08); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--blanc);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 .accent { color: var(--vert-menthe); }
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}
.hero-trust-item strong {
  display: block;
  color: var(--vert-menthe);
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-dots {
  position: relative;
  display: flex;
  gap: 10px;
  z-index: 5;
  margin: 36px 0 48px;
  justify-content: flex-start;
}
.hero-dots button {
  width: 36px; height: 5px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  transition: var(--t-med);
  cursor: pointer;
  border: 0;
  padding: 0;
}
.hero-dots button:hover { background: rgba(255, 255, 255, 0.4); }
.hero-dots button.active { background: var(--vert-menthe); width: 56px; }

/* Hero version simple (pages internes) */
.hero-page {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-soft) 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(164, 222, 198, 0.12) 0%, transparent 60%);
}
.hero-page h1 { color: var(--blanc); max-width: 820px; }
.hero-page .hero-lead { color: rgba(255, 255, 255, 0.82); }
.hero-page .breadcrumb {
  font-size: 0.88rem;
  color: rgba(164, 222, 198, 0.85);
  margin-bottom: 18px;
}
.hero-page .breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.hero-page .breadcrumb a:hover { color: var(--vert-menthe); }

/* ---------- 4. SECTIONS GÉNÉRIQUES ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--vert-pro);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 2px;
  background: var(--vert-pro);
}
.section-title {
  max-width: 720px;
  margin-bottom: 18px;
}
.section-lead {
  max-width: 720px;
  color: var(--gris-texte);
  font-size: 1.05rem;
  margin-bottom: 50px;
}
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-tag::before { left: 50%; transform: translate(-100%, -50%); margin-left: -8px; }
.section-head.center .section-tag { padding-left: 0; padding-right: 0; }
.section-head.center .section-title,
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- 5. CARTES SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gris-moyen);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vert-menthe-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--vert-menthe);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-light) 100%);
  display: grid; place-items: center;
  color: var(--vert-menthe);
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(5, 23, 51, 0.15);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gris-texte); font-size: 0.95rem; margin-bottom: 20px; }
.service-card .more {
  color: var(--vert-pro);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}
.service-card:hover .more { gap: 12px; }

/* ---------- 6. POURQUOI NOUS ---------- */
.why-section { background: var(--gris-clair); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-features {
  display: grid;
  gap: 20px;
}
.why-feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  border: 1px solid var(--gris-moyen);
  transition: var(--t-med);
}
.why-feature:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--vert-menthe); }
.why-feature .icon {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vert-menthe-soft);
  color: var(--bleu-nuit);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.why-feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why-feature p { color: var(--gris-texte); font-size: 0.92rem; margin: 0; }

.why-stats {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-light) 100%);
  color: var(--blanc);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.why-stats::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(164, 222, 198, 0.18) 0%, transparent 70%);
}
.why-stats h2 { color: var(--blanc); }
.why-stats .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  position: relative;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vert-menthe);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ---------- 7. SECTEURS ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.sector-card {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--blanc);
  border: 1px solid var(--gris-moyen);
  text-align: center;
  transition: var(--t-med);
}
.sector-card:hover {
  background: var(--bleu-nuit);
  color: var(--blanc);
  transform: translateY(-4px);
  border-color: var(--bleu-nuit);
}
.sector-card:hover h3 { color: var(--blanc); }
.sector-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--vert-pro);
}
.sector-card:hover .icon { color: var(--vert-menthe); }
.sector-card h3 { font-size: 1rem; margin-bottom: 6px; }
.sector-card p { font-size: 0.85rem; color: var(--gris-texte); margin: 0; }
.sector-card:hover p { color: rgba(255, 255, 255, 0.7); }

/* ---------- 8. NUISIBLES ---------- */
.pests-section { background: var(--gris-clair); }
.pests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.pest-tile {
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--gris-moyen);
  transition: var(--t-med);
}
.pest-tile:hover {
  transform: translateY(-4px);
  border-color: var(--vert-pro);
  box-shadow: var(--shadow-md);
}
.pest-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.pest-tile h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bleu-nuit);
  margin-bottom: 4px;
}
.pest-tile span { font-size: 0.78rem; color: var(--gris-texte); }

/* ---------- 9. IMAGE PLACEHOLDER ---------- */
.image-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gris-clair) 0%, var(--vert-menthe-soft) 100%);
  border: 2px dashed rgba(5, 23, 51, 0.18);
  display: grid; place-items: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 280px;
}
.image-placeholder::before {
  content: '🖼️';
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
  opacity: 0.6;
}
.image-placeholder .ph-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bleu-nuit);
  font-size: 1rem;
}
.image-placeholder .ph-filename {
  display: block;
  margin-top: 8px;
  font-family: 'Menlo', monospace;
  font-size: 0.78rem;
  color: var(--gris-texte);
  word-break: break-all;
}
.image-placeholder .ph-alt {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--gris-texte);
  font-style: italic;
}

/* Image hero de service (remplace les placeholders) */
.service-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gris-clair);
  margin: 0;
  aspect-ratio: 3 / 2;
}
.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-hero-img:hover img { transform: scale(1.03); }
.service-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,23,51,0.08) 100%);
  pointer-events: none;
}

/* ---------- 9b. GALERIE PHOTOS ---------- */
.gallery-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--blanc) 0%, var(--gris-clair) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--bleu-nuit);
  text-decoration: none;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(5,23,51,0.85) 60%, rgba(5,23,51,0.95) 100%);
  color: var(--blanc);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gallery-caption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.gallery-caption span {
  font-size: 0.85rem;
  opacity: 0.85;
}
.gallery-caption::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--vert-menthe);
  transition: transform var(--t-fast);
}
.gallery-item:hover .gallery-caption::after { transform: translateY(-50%) translateX(6px); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- 9c. IMAGE PAGE NUISIBLE ---------- */
.pest-hero-img {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gris-clair);
  aspect-ratio: 16 / 9;
}
.pest-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pest-hero-img:hover img { transform: scale(1.02); }
.image-section { padding: 60px 0 20px; }

/* ---------- 9d. GALERIE VILLE ---------- */
.ville-gallery-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.ville-gallery-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bleu-nuit);
  margin-bottom: 0.6rem;
}
.ville-gallery-head p {
  font-size: 1.02rem;
  color: var(--gris-texte);
  line-height: 1.65;
}
.ville-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ville-gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--bleu-nuit);
  text-decoration: none;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.ville-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ville-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ville-gallery-item:hover img { transform: scale(1.08); }
.ville-gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(5,23,51,0.85) 60%, rgba(5,23,51,0.95) 100%);
  color: var(--blanc);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ville-gallery-cap strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ville-gallery-cap span {
  font-size: 0.84rem;
  opacity: 0.85;
}
.ville-gallery-cap::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--vert-menthe);
  transition: transform var(--t-fast);
}
.ville-gallery-item:hover .ville-gallery-cap::after { transform: translateY(-50%) translateX(6px); }
@media (max-width: 900px) {
  .ville-gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .ville-gallery { grid-template-columns: 1fr; }
}

/* ---------- 10. FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--blanc);
  border: 1px solid var(--gris-moyen);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--t-fast);
}
.faq-item[open] { border-color: var(--vert-pro); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bleu-nuit);
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--vert-pro);
  transition: var(--t-fast);
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--gris-texte);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- 11. TÉMOIGNAGES ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gris-moyen);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px; right: 26px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--vert-menthe);
  line-height: 1;
  font-weight: 800;
}
.testimonial-stars { color: #f5a623; margin-bottom: 14px; }
.testimonial p {
  color: var(--noir-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gris-moyen);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--vert-pro) 100%);
  color: var(--blanc);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bleu-nuit);
  font-size: 0.95rem;
}
.testimonial-role { font-size: 0.82rem; color: var(--gris-texte); }

/* ---------- 12. CERTIFICATIONS ---------- */
.certifications {
  background: var(--bleu-nuit);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.certifications::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
}
.certifications h2 { color: var(--blanc); }
.certifications .section-tag { color: var(--vert-menthe); }
.certifications .section-tag::before { background: var(--vert-menthe); }
.certifications .section-lead { color: rgba(255, 255, 255, 0.72); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(164, 222, 198, 0.18);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--t-med);
}
.cert-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--vert-menthe);
  transform: translateY(-4px);
}
.cert-card .cert-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(164, 222, 198, 0.12);
  display: grid; place-items: center;
  font-size: 1.7rem;
  color: var(--vert-menthe);
}
.cert-card h3 { color: var(--blanc); font-size: 1rem; margin-bottom: 6px; }
.cert-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.84rem; margin: 0; }

/* ---------- 13. CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--vert-pro) 0%, var(--vert-pro-dark) 100%);
  color: var(--blanc);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0%, transparent 40%);
}
.cta-banner > .container { position: relative; }
.cta-banner h2 { color: var(--blanc); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.92); max-width: 640px; margin: 0 auto 28px; }
.cta-banner .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-banner .btn-primary {
  background: var(--blanc);
  color: var(--vert-pro);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover { background: var(--bleu-nuit); color: var(--blanc); }
.cta-banner .btn-outline {
  color: var(--blanc);
  border-color: var(--blanc);
}
.cta-banner .btn-outline:hover { background: var(--blanc); color: var(--vert-pro); }

/* ---------- 14. FORMULAIRE DEVIS ---------- */
.devis-section {
  background: var(--gris-clair);
  position: relative;
}
.devis-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .devis-wrap { grid-template-columns: 1fr; } }

.devis-info h2 { margin-bottom: 18px; }
.devis-info p { color: var(--gris-texte); margin-bottom: 28px; }
.devis-features { display: grid; gap: 14px; }
.devis-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.devis-feature .check {
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vert-pro);
  color: var(--blanc);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
}
.devis-feature strong {
  color: var(--bleu-nuit);
  font-family: var(--font-display);
}
.devis-feature span { color: var(--gris-texte); font-size: 0.93rem; display: block; }

.devis-form {
  background: var(--blanc);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gris-moyen);
}
.devis-form h3 { margin-bottom: 6px; }
.devis-form .form-sub { color: var(--gris-texte); margin-bottom: 24px; font-size: 0.94rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gris-moyen);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--blanc);
  transition: var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vert-pro);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field .error { color: #d63838; font-size: 0.8rem; margin-top: 4px; min-height: 16px; }

.form-submit { margin-top: 6px; width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--gris-texte);
  text-align: center;
  margin-top: 12px;
}

/* ---------- 15. FOOTER ---------- */
.site-footer {
  background: var(--noir-soft);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--blanc); margin-bottom: 16px; }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 52px; width: auto; max-width: 240px; display: block; }
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-contact-item .icon {
  color: var(--vert-menthe);
  flex: 0 0 18px;
}

.footer-col h4 {
  color: var(--blanc);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--t-fast);
}
.footer-links a:hover { color: var(--vert-menthe); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: var(--vert-menthe); }

/* ---------- 16. BOUTONS FLOTTANTS ---------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blanc);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--t-med);
  position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab.whatsapp { background: #25d366; }
.fab.call { background: var(--vert-pro); }
.fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: ring 2.5s infinite;
}
@keyframes ring {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.4); }
}
@media (max-width: 540px) {
  .fab { width: 52px; height: 52px; font-size: 1.3rem; }
  .floating-actions { bottom: 16px; right: 16px; }
}

/* ---------- 17. CONTENU PAGE INTERNE ---------- */
.content-section { padding: 70px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

.content-main h2 { margin-top: 36px; margin-bottom: 14px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; }
.content-main p {
  margin-bottom: 16px;
  color: var(--noir-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.content-main ul {
  margin-bottom: 20px;
  padding-left: 4px;
}
.content-main li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--noir-soft);
  line-height: 1.7;
}
.content-main li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--vert-menthe-soft);
  color: var(--vert-pro-dark);
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.content-aside {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 20px;
  align-self: start;
}
.aside-card {
  background: var(--gris-clair);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gris-moyen);
}
.aside-card.dark {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-light) 100%);
  color: var(--blanc);
  border: none;
}
.aside-card.dark h3 { color: var(--blanc); }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.aside-card p { font-size: 0.92rem; margin-bottom: 16px; }
.aside-card.dark p { color: rgba(255, 255, 255, 0.78); }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-links { display: grid; gap: 8px; margin-top: 12px; }
.aside-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  border-bottom: 1px solid var(--gris-moyen);
}
.aside-links a:last-child { border-bottom: none; }
.aside-links a:hover { color: var(--vert-pro); }
.aside-links a::before { content: '→'; color: var(--vert-pro); }

/* ---------- 18. GOOGLE ADS LANDING ---------- */
.ads-hero {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-soft) 100%);
  color: var(--blanc);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.ads-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .ads-hero-grid { grid-template-columns: 1fr; } }

.ads-hero h1 { color: var(--blanc); }
.ads-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.ads-trust-row .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.ads-trust-row .item::before { content: '✓'; color: var(--vert-menthe); font-weight: 700; }

.ads-form {
  background: var(--blanc);
  color: var(--noir-soft);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.ads-form h3 { margin-bottom: 6px; }
.ads-form .ads-form-sub { font-size: 0.92rem; color: var(--gris-texte); margin-bottom: 20px; }

.proof-strip {
  background: var(--blanc);
  padding: 30px 0;
  border-bottom: 1px solid var(--gris-moyen);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.proof-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vert-pro);
  display: block;
}
.proof-item .lab {
  font-size: 0.85rem;
  color: var(--gris-texte);
}

/* ---------- 19. ANIMATIONS SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- 20. UTILITAIRES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-light { background: var(--gris-clair); }

/* Spacer pour fixed header */
.has-fixed-header { padding-top: 70px; }

/* Print fallback */
@media print {
  .site-header, .floating-actions, .cta-banner, .site-footer { display: none; }
}

/* ---------- 21. PAGE HERO (Services / Villes / Nuisibles) ---------- */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #0a2247 60%, #143a6b 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(164,222,198,.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(76,175,80,.12), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1,
.page-hero h2 {
  color: #fff !important;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 1.2rem 0 1.4rem;
  color: #fff;
}
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero .breadcrumb a:hover { color: var(--vert-menthe); }
.page-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(164, 222, 198, 0.15);
  color: var(--vert-menthe);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(164, 222, 198, 0.3);
}
.page-hero .hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  max-width: 760px;
  opacity: .92;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Breadcrumb */
.breadcrumb {
  font-size: .9rem;
  opacity: .85;
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--vert-menthe);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .35rem; opacity: .6; }

/* Badge pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: rgba(164, 222, 198, .15);
  color: var(--vert-menthe);
  border: 1px solid rgba(164, 222, 198, .35);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
}

/* Hero CTA group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
}

/* ---------- 22. CONTAINER VARIANT ---------- */
.container.narrow {
  max-width: 920px;
}

/* ---------- 23. IMAGE SECTION (placeholder block) ---------- */
.image-section {
  padding: 3rem 0;
  background: var(--gris-clair);
}

/* ---------- 24. CONTENT SECTIONS ---------- */
.content-section {
  padding: 4rem 0;
  background: #fff;
}
.content-section.alt { background: var(--gris-clair); }
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--bleu-nuit);
  margin-bottom: 1.3rem;
}
.content-section p { line-height: 1.75; color: #475569; }

/* Check list (avantages, prévention, signes) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: .85rem;
}
.check-list li {
  position: relative;
  padding: 1rem 1.2rem 1rem 3rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
  color: #1e293b;
  line-height: 1.55;
  transition: all .25s ease;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vert-pro);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}
.check-list li:hover {
  border-color: var(--vert-menthe);
  transform: translateX(4px);
}
.check-list.danger li::before {
  content: "!";
  background: #ef4444;
}

/* Ordered step list */
.step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: .9rem;
}
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 1.1rem 1.3rem 1.1rem 3.4rem;
  background: #fff;
  border-left: 4px solid var(--vert-pro);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 3px 10px rgba(15, 23, 42, .05);
  line-height: 1.6;
  color: #1e293b;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: .9rem;
  top: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bleu-nuit);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .95rem;
}

/* ---------- 25. SECTORS SECTION ---------- */
.sectors-section {
  padding: 4rem 0;
  background: var(--gris-clair);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.sector-tile {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  position: relative;
  padding-left: 2.6rem;
  transition: all .25s ease;
  cursor: default;
}
.sector-tile::before {
  content: "📍";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.sector-tile:hover {
  background: var(--bleu-nuit);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(5, 23, 51, .15);
}

/* ---------- 26. DEVIS SECTION ---------- */
.devis-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--gris-clair) 0%, #fff 100%);
}

/* ---------- 27. RELATED SECTION (maillage interne) ---------- */
.related-section {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, .06);
}
.related-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bleu-nuit);
  margin-bottom: 1.5rem;
  text-align: center;
}
.related-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}
.related-links li a {
  display: inline-block;
  padding: .65rem 1.2rem;
  background: var(--gris-clair);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 100px;
  color: var(--bleu-nuit);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: all .25s ease;
}
.related-links li a:hover {
  background: var(--bleu-nuit);
  color: var(--vert-menthe);
  border-color: var(--bleu-nuit);
  transform: translateY(-2px);
}

/* ---------- 28. BUTTON VARIANTS (light outline pour bannières sombres) ---------- */
.btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--bleu-nuit);
}

/* ---------- 29. ADJUST FAQ details summary chevron ---------- */
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--vert-pro);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "−"; }

/* ---------- 30. Service icon dans cards ---------- */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vert-menthe) 0%, #c6e9d6 100%);
  color: var(--bleu-nuit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ---------- 31. Mobile responsive tweaks ---------- */
@media (max-width: 768px) {
  .page-hero { padding: 5.5rem 0 3rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .related-links { flex-direction: column; }
  .related-links li a { display: block; text-align: center; }
}

/* ============================================
   PAGE GOOGLE ADS — Styles dédiés
   ============================================ */

body.ads-page {
  font-family: var(--font-body);
  color: var(--bleu-nuit);
  background: #fff;
  margin: 0;
  padding: 0;
}

/* ---------- ADS HEADER ---------- */
.ads-header {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}
.ads-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ads-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--bleu-nuit);
}
.ads-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
}
.ads-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #143a6b 100%);
  color: var(--vert-menthe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.ads-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
}
.ads-phone-top {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1rem;
  background: var(--vert-pro);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  transition: all .25s ease;
}
.ads-phone-top:hover { background: #3d8b41; transform: translateY(-1px); }
.ads-phone-icon { font-size: 1.1rem; }
.ads-phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.ads-phone-label { font-size: .7rem; opacity: .85; }
.ads-phone-text strong { font-size: .95rem; }

/* ---------- ADS HERO ---------- */
.ads-hero {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #0a2247 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.ads-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(164,222,198,.18), transparent 60%);
  pointer-events: none;
}
.ads-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ads-hero-content { padding-right: 1rem; }
.ads-badge {
  display: inline-block;
  padding: .45rem 1rem;
  background: rgba(76, 175, 80, .2);
  color: #d4f3d5;
  border: 1px solid rgba(76, 175, 80, .4);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.ads-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}
.ads-highlight {
  color: var(--vert-menthe);
}
.ads-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: .95;
  margin-bottom: 1.5rem;
}
.ads-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}
.ads-bullets li {
  padding: .55rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ads-bullets li:last-child { border: none; }

/* CTA buttons hero */
.ads-cta-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ads-cta-row.centered { justify-content: center; }
.ads-cta-call, .ads-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.4rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all .25s ease;
  flex: 1;
  min-width: 220px;
}
.ads-cta-call {
  background: var(--vert-pro);
  color: #fff;
  box-shadow: 0 6px 18px rgba(76, 175, 80, .35);
}
.ads-cta-call:hover { background: #3d8b41; transform: translateY(-2px); }
.ads-cta-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
}
.ads-cta-wa:hover { background: #1da851; transform: translateY(-2px); }
.ads-cta-icon { font-size: 1.4rem; }
.ads-cta-call small, .ads-cta-wa small { opacity: .85; font-weight: 400; font-size: .8rem; }

.ads-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  font-size: .85rem;
  opacity: .92;
}
.ads-trust-item strong { color: #fff; }

/* ---------- ADS FORM (sur le fold) ---------- */
.ads-form-wrap { position: relative; }
.ads-form-card {
  background: #fff;
  color: var(--bleu-nuit);
  border-radius: 18px;
  padding: 1.8rem 1.5rem 1.5rem;
  box-shadow: 0 20px 50px rgba(5, 23, 51, .35), 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
}
.ads-form-head { text-align: center; margin-bottom: 1.2rem; }
.ads-form-eyebrow {
  display: inline-block;
  background: rgba(76, 175, 80, .12);
  color: var(--vert-pro);
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.ads-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 .3rem;
  color: var(--bleu-nuit);
}
.ads-form-sub { font-size: .9rem; opacity: .7; margin: 0; }

.ads-form { display: grid; gap: .85rem; }
.ads-field { display: grid; gap: .35rem; }
.ads-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bleu-nuit);
}
.ads-field input,
.ads-field select {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(15, 23, 42, .12);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--bleu-nuit);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ads-field input:focus,
.ads-field select:focus {
  outline: none;
  border-color: var(--vert-pro);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, .15);
}
.ads-submit {
  padding: .95rem 1rem;
  background: linear-gradient(135deg, var(--vert-pro) 0%, #3d8b41 100%);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  margin-top: .3rem;
  box-shadow: 0 6px 16px rgba(76, 175, 80, .35);
}
.ads-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(76, 175, 80, .45); }
.ads-form-note {
  font-size: .75rem;
  text-align: center;
  opacity: .65;
  margin: .2rem 0 0;
}

.ads-form-success {
  text-align: center;
  padding: 1.5rem 1rem;
}
.ads-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vert-pro);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.ads-form-success h3 {
  font-family: var(--font-display);
  margin: 0 0 .5rem;
  color: var(--bleu-nuit);
}
.ads-form-success a {
  color: var(--vert-pro);
  font-weight: 700;
  text-decoration: none;
}

/* ---------- TRUST STRIP ---------- */
.ads-trust-strip {
  background: var(--gris-clair);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.ads-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: center;
}
.ads-trust-block { padding: 1rem; }
.ads-trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--bleu-nuit);
  margin-bottom: .3rem;
}
.ads-trust-label {
  font-size: .85rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- WHY US ---------- */
.ads-why {
  padding: 4rem 0;
  background: #fff;
}
.ads-why-head { text-align: center; margin-bottom: 2.5rem; }
.ads-why-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--bleu-nuit);
  max-width: 800px;
  margin: 0 auto;
}
.ads-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ads-why-card {
  padding: 1.8rem 1.5rem;
  background: var(--gris-clair);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .06);
  transition: all .3s ease;
}
.ads-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5, 23, 51, .08);
  background: #fff;
  border-color: var(--vert-menthe);
}
.ads-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vert-menthe) 0%, #c6e9d6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.ads-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  color: var(--bleu-nuit);
}
.ads-why-card p {
  font-size: .95rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* ---------- GALERIE ADS ---------- */
.ads-gallery {
  padding: 4rem 0;
  background: #fff;
}
.ads-gallery .ads-section-title {
  text-align: center;
  margin-bottom: 0.4rem;
}
.ads-gallery-sub {
  text-align: center;
  color: var(--gris-texte);
  margin-bottom: 2.2rem;
  font-size: 0.98rem;
}
.ads-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ads-gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--bleu-nuit);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.ads-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ads-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ads-gallery-item:hover img { transform: scale(1.06); }
.ads-gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(5,23,51,0.9) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
}
@media (max-width: 900px) {
  .ads-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .ads-gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS ADS ---------- */
.ads-testimonials {
  background: linear-gradient(180deg, var(--gris-clair) 0%, #fff 100%);
  padding: 4rem 0;
}
.ads-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  text-align: center;
  color: var(--bleu-nuit);
  margin-bottom: 2.2rem;
}
.ads-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.ads-testimonial {
  background: #fff;
  padding: 1.6rem;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(5, 23, 51, .06);
  border: 1px solid rgba(15, 23, 42, .04);
}
.ads-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: .8rem;
  letter-spacing: 2px;
}
.ads-testimonial p {
  font-style: italic;
  line-height: 1.6;
  color: #1e293b;
  margin: 0 0 .8rem;
}
.ads-testimonial-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  opacity: .8;
}

/* ---------- ADS FAQ ---------- */
.ads-faq {
  padding: 4rem 0;
  background: #fff;
}
.ads-faq .faq-item {
  background: var(--gris-clair);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  margin-bottom: .7rem;
  border: 1px solid rgba(15, 23, 42, .06);
}
.ads-faq .faq-item summary {
  font-weight: 600;
  color: var(--bleu-nuit);
  cursor: pointer;
  padding: .3rem 0;
}
.ads-faq .faq-answer { padding-top: .8rem; color: #475569; line-height: 1.6; }
.ads-faq .faq-answer p { margin: 0; }

/* ---------- FINAL CTA ---------- */
.ads-final-cta {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #0a2247 100%);
  color: #fff;
  padding: 4rem 0;
}
.ads-final-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ads-final-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  margin: 0 0 .8rem;
}
.ads-final-inner p {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 2rem;
}

/* ---------- ADS FOOTER ---------- */
.ads-footer {
  background: #051733;
  color: #d1d8e0;
  padding: 2.5rem 0 1.5rem;
  font-size: .9rem;
}
.ads-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ads-footer strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: .6rem;
}
.ads-footer p { line-height: 1.65; opacity: .8; margin: 0; }
.ads-footer a { color: var(--vert-menthe); text-decoration: none; }
.ads-footer a:hover { text-decoration: underline; }
.ads-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .8rem;
  opacity: .65;
}

/* ---------- Floating call mobile ---------- */
.ads-floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vert-pro);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 90;
  box-shadow: 0 8px 22px rgba(76, 175, 80, .45);
  animation: pulse-call 2.5s ease-in-out infinite;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 8px 22px rgba(76, 175, 80, .45); }
  50% { box-shadow: 0 8px 22px rgba(76, 175, 80, .45), 0 0 0 12px rgba(76, 175, 80, .1); }
}

/* ---------- Responsive ADS ---------- */
@media (max-width: 960px) {
  .ads-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ads-hero-content { padding-right: 0; }
  .ads-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ads-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ads-testimonials-grid { grid-template-columns: 1fr; }
  .ads-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ads-phone-text .ads-phone-label { display: none; }
  .ads-phone-top { padding: .55rem .8rem; }
  .ads-logo-text { display: none; }
  .ads-floating-call { display: flex; }
  .ads-why-grid { grid-template-columns: 1fr; }
  .ads-cta-call, .ads-cta-wa { width: 100%; min-width: 0; }
  .ads-hero h1 { font-size: 1.7rem; }
  .ads-trust-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .ads-trust-block { padding: .6rem; }
}
