/* ==========================================================================
   Armor Nuisibles — feuille de style principale
   ========================================================================== */

:root {
  --navy-950: #0b1b2b;
  --navy-900: #0f2438;
  --navy-800: #16324a;
  --navy-700: #1e4560;
  --navy-600: #2a5a7a;
  --sage-500: #6f9a86;
  --sage-400: #8bb09d;
  --sage-300: #aecab9;
  --sage-100: #e7f0ea;
  --sand-50: #f7f5f0;
  --white: #ffffff;
  --ink: #16232c;
  --ink-soft: #4b5b63;
  --line: rgba(15, 36, 56, 0.1);
  --shadow-sm: 0 2px 10px rgba(11, 27, 43, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 27, 43, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 27, 43, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ff-head: "Fraunces", "Georgia", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); margin: 0; font-weight: 600; color: var(--navy-950); }
p { margin: 0; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-500);
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 12px; line-height: 1.2; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { padding: 88px 0; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--sage-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy-900);
}
.btn-ghost:hover { background: var(--sage-100); border-color: var(--sage-300); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled {
  background: rgba(11, 27, 43, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.logo-mark { flex-shrink: 0; }
.logo span { color: var(--sage-300); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav .dropdown { position: relative; }
.main-nav .dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  display: grid;
  gap: 2px;
}
.main-nav .dropdown:hover .dropdown-panel,
.main-nav .dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}
.dropdown-panel a:hover { background: var(--sage-100); color: var(--navy-900); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 176, 157, 0.22), transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(30, 69, 96, 0.55), transparent 50%);
  will-change: transform;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 32%, rgba(6, 15, 24, 0.75), rgba(6, 15, 24, 0.15) 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(139, 176, 157, 0.16);
  border: 1px solid rgba(139, 176, 157, 0.4);
  color: var(--sage-300);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  line-height: 1.12;
  margin-top: 22px;
}
.hero-content h1 em { color: var(--sage-300); font-style: normal; }
.hero-content .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
}
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
}
.trust-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-bar .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-400);
  flex-shrink: 0;
}
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue .line { width: 1px; height: 30px; background: linear-gradient(var(--sage-300), transparent); animation: cueMove 1.8s ease-in-out infinite; }
@keyframes cueMove { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Reveal on scroll ---------------------------------------------------- */
/* Hidden only when JS runs (html.js set in <head>), so content stays visible without JS */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* Services grid --------------------------------------------------------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--sand-50);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
.service-card-body {
  padding: 34px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.service-title-row { display: flex; align-items: center; gap: 14px; }
.service-icon-lg {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--sage-400), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.service-icon,


.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; flex-grow: 1; }
.service-card-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.link-more { font-size: 0.9rem; font-weight: 600; color: var(--navy-700); border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.link-more:hover { border-color: var(--navy-700); }

/* Image placeholders ------------------------------------------------------ */













/* Process steps ----------------------------------------------------------- */
.process { background: var(--navy-950); color: var(--white); position: relative; }
.process .section-head h2 { color: var(--white); }
.process .section-head p { color: rgba(255,255,255,0.68); }
.process .eyebrow { color: var(--sage-300); }
.process-track { position: relative; max-width: 880px; margin: 0 auto; }
.process-progress-rail {
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255,255,255,0.14);
}
.process-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--sage-400);
  transition: height 0.2s ease-out;
}
.process-step {
  position: relative;
  display: flex;
  gap: 26px;
  padding: 0 0 52px 0;
  padding-left: 74px;
}
.process-step:last-child { padding-bottom: 0; }
.process-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--sage-300);
  flex-shrink: 0;
}
.process-step.is-active .process-num { background: var(--sage-500); border-color: var(--sage-500); color: var(--white); }
.process-step h3 { color: var(--white); font-size: 1.25rem; }
.process-step p { color: rgba(255,255,255,0.68); margin-top: 8px; max-width: 480px; }
.step-points {
  margin-top: 14px;
  display: grid;
  gap: 7px;
  max-width: 480px;
}
.step-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.step-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.52em;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--sage-400);
  border-bottom: 1.6px solid var(--sage-400);
  transform: rotate(-45deg);
}

/* Trust / certifications ------------------------------------------------ */
.trust { background: var(--sage-100); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.trust-card .badge-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.trust-card p { color: var(--ink-soft); font-size: 0.88rem; }

/* Team / "qui intervient" ------------------------------------------------ */
.team { background: var(--white); }
.team-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.team-facts { display: grid; gap: 0; margin: 0; }
.team-facts > div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.team-facts > div:last-child { border-bottom: 1px solid var(--line); }
.team-facts dt {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 6px;
}
.team-facts dd {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cert-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--sage-400);
  color: var(--sage-500);
  background: var(--white);
}
.cert-seal span {
  font-family: var(--ff-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Avant / après teaser ----------------------------------------------------- */

.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }







/* Audience segmentation --------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.audience-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-card:nth-child(2) { background: linear-gradient(150deg, var(--navy-800), var(--sage-500)); }
.audience-card:nth-child(3) { background: linear-gradient(150deg, var(--sage-500), var(--navy-800)); }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience-card h3 { color: var(--white); font-size: 1.3rem; }
.audience-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; flex-grow: 1; }
.audience-card .btn-outline { align-self: flex-start; }

/* Zone d'intervention ------------------------------------------------ */
.zone { background: var(--white); }
.zone-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.zone-map-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--sage-100);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.zone-map { position: absolute; inset: 0; z-index: 0; }
.zone-map .zone-tiles { filter: grayscale(1) contrast(0.9) brightness(1.06); opacity: 0.85; }
.zone-map .leaflet-tooltip {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
  border: none;
  box-shadow: var(--shadow-sm);
}
.city-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--sand-50);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-900);
}
.city-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage-500); flex-shrink: 0; }

/* Reviews ---------------------------------------------------------------- */
.reviews { background: var(--sand-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line);
}
.review-stars { color: var(--sage-500); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p.quote { color: var(--ink); font-size: 0.97rem; }
.review-meta { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-400), var(--navy-700));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-loc { font-size: 0.8rem; color: var(--ink-soft); }

/* Urgency band ------------------------------------------------------------ */
.urgency {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  color: var(--white);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid rgba(139,176,157,0.35);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  background: rgba(139, 176, 157, 0.08);
}
.urgency-text h3 { color: var(--white); font-size: 1.4rem; }
.urgency-text p { color: rgba(255,255,255,0.75); margin-top: 8px; max-width: 480px; }

/* Contact ------------------------------------------------------------------ */
.contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--sage-100); color: var(--sage-500);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-row h4 { font-size: 0.98rem; margin-bottom: 4px; }
.info-row p { color: var(--ink-soft); font-size: 0.92rem; }
.contact-form {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--sage-400); outline-offset: 1px; }

/* Footer ------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 64px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  padding: 11px 16px;
  color: var(--white);
  font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  border-radius: 999px;
  border: none;
  background: var(--sage-500);
  color: var(--white);
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.82rem; }
.footer-bottom ul { display: flex; gap: 20px; flex-wrap: wrap; }

/* Secondary page header (devis, légal) ------------------------------------ */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 150px 0 70px;
  text-align: center;
}
.page-hero .hero-badge.dark { background: rgba(139,176,157,0.16); border-color: rgba(139,176,157,0.4); color: var(--sage-300); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 18px; }
.page-hero .lead-dark { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 16px auto 0; }

/* Fil d'Ariane -------------------------------------------------------------- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.breadcrumb li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-top: 1.5px solid var(--sage-400);
  border-right: 1.5px solid var(--sage-400);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.breadcrumb a { color: var(--navy-700); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); }

/* Devis page ---------------------------------------------------------------- */
.devis-section { background: var(--sand-50); padding: 70px 0 100px; }
.devis-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.recap-block {
  background: var(--sage-100);
  border: 1px solid var(--sage-300);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 22px;
}
.recap-block h3 { font-size: 1rem; margin-bottom: 12px; }
.recap-block ul { display: grid; gap: 6px; margin-bottom: 14px; }
.recap-block li { font-size: 0.92rem; color: var(--navy-900); }
.devis-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.devis-info-card h3 { font-size: 1rem; margin-bottom: 14px; }
.devis-info-list { display: grid; gap: 12px; }
.devis-info-list li { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.devis-info-list strong { color: var(--navy-900); }
.field-checkbox label { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; color: var(--navy-900); cursor: pointer; }
.field-checkbox input { width: 18px; height: 18px; accent-color: var(--sage-500); }
.form-note { font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin-top: 4px; }
.devis-confirmation {
  grid-column: 2;
  background: var(--white);
  border: 1px solid var(--sage-300);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
}
.devis-confirmation .confirmation-icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-500);
  display: flex; align-items: center; justify-content: center;
}
.devis-confirmation h3 { font-size: 1.3rem; margin-bottom: 10px; }
.devis-confirmation p { color: var(--ink-soft); }

/* Legal pages ---------------------------------------------------------------- */
.legal-section { background: var(--white); padding: 60px 0 100px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.legal-content li { color: var(--ink-soft); margin-bottom: 6px; line-height: 1.6; }
.legal-content .updated { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 30px; }
.todo-fill {
  background: #fff3d6;
  border: 1px dashed #d9a441;
  border-radius: 4px;
  padding: 1px 8px;
  color: #7a5310;
  font-weight: 600;
  font-size: 0.95em;
}

/* Photos réelles ------------------------------------------------------------- */
.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.photo-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-sunk, var(--sand-50));
}
.photo-frame.ratio-4-3 { aspect-ratio: 4/3; }
.photo-frame.ratio-16-10 { aspect-ratio: 16/10; }
.photo-caption {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.4;
}

/* Expertise terrain --------------------------------------------------------- */
.expertise { background: var(--white); }
.expertise-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 44px;
  align-items: start;
}
.expertise-text p {
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 17px;
  max-width: 64ch;
}
.expertise-text p:last-child { margin-bottom: 0; }
.expertise-text strong { color: var(--navy-900); font-weight: 600; }
.expertise-envs {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.expertise-envs h3 {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 16px;
  font-family: var(--ff-body);
  font-weight: 700;
}
.expertise-envs ul { display: grid; gap: 11px; margin-bottom: 20px; }
.expertise-envs li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--navy-900);
}
.expertise-envs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--sage-500);
  border-bottom: 1.6px solid var(--sage-500);
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .expertise-layout { grid-template-columns: 1fr; gap: 30px; }
}

.process-outro {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.process-outro p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 52ch; }

.faq-more { margin-top: 26px; }

.section-head-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}
.link-more.on-dark { color: var(--sage-300); }
.link-more.on-dark:hover { border-color: var(--sage-300); }

/* Blog — état vide ----------------------------------------------------------- */
.blog-section { background: var(--sand-50); padding: 70px 0 100px; }
.blog-empty { max-width: 460px; margin: 0 auto; text-align: center; padding: 40px 0; }
.blog-empty-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-500);
  display: flex; align-items: center; justify-content: center;
}
.blog-empty h2 { font-size: 1.3rem; margin-bottom: 10px; }
.blog-empty p { color: var(--ink-soft); }

/* Page pilier dératisation --------------------------------------------------- */
.pillars { background: var(--white); padding: 78px 0; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pillar { background: var(--white); padding: 28px 26px; }
.pillar h3 { font-size: 1.08rem; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.65; }

.cert-banner { background: var(--sage-100); padding: 40px 0; }
.cert-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.cert-inner .logo-placeholder { margin: 0; flex-shrink: 0; }
.cert-text { flex: 1 1 340px; }
.cert-text h3 { font-size: 1.12rem; margin-bottom: 8px; }
.cert-text p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; max-width: 68ch; }

.cta-inline { background: var(--white); padding: 0 0 20px; }
.cta-inline-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 30px;
}
.cta-inline-inner p { color: var(--navy-900); font-weight: 500; max-width: 56ch; }

.species { background: var(--sand-50); padding: 78px 0; }
.species-block .btn { margin-top: 18px; }
.species-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 30px 32px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
.species-block:last-child { margin-bottom: 0; }
.species-block h3 { font-size: 1.25rem; margin-bottom: 14px; }
.species-block p { color: var(--ink-soft); line-height: 1.72; margin-bottom: 13px; max-width: 72ch; }
.species-block p:last-child { margin-bottom: 0; }
.species-block strong { color: var(--navy-900); font-weight: 600; }

.stat-feature { background: var(--navy-950); padding: 70px 0; }
.stat-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.stat-figure {
  border-right: 1px solid rgba(255,255,255,0.16);
  padding-right: 40px;
}
.stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 4.4rem);
  line-height: 1;
  color: var(--sage-300);
  font-weight: 600;
}
.stat-unit {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-text h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 12px; }
.stat-text p { color: rgba(255,255,255,0.75); line-height: 1.72; margin-bottom: 12px; max-width: 66ch; }
.stat-text p:last-child { margin-bottom: 0; }

.steps-plain { background: var(--white); padding: 78px 0; }
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.steps-list > li { border-top: 2px solid var(--sage-400); padding-top: 18px; }
.step-points.dark-on-light li { color: var(--ink-soft); }
.step-points.dark-on-light li::before { border-color: var(--sage-500); }

/* Variante détaillée : parcours vertical numéroté */
.steps-list.detailed {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
  max-width: 920px;
}
.steps-list.detailed > li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: start;
  border-top: none;
  border-bottom: 1px solid var(--line);
  padding: 42px 0 46px;
}
.steps-list.detailed > li:first-child { padding-top: 10px; }
.steps-list.detailed > li:last-child { border-bottom: none; padding-bottom: 10px; }
.steps-list.detailed > li > * { grid-column: 2; }
.steps-list.detailed > li::before {
  content: counter(step, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / -1;
  font-family: var(--ff-head);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 0.9;
  color: var(--sage-300);
  letter-spacing: -0.02em;
}
.steps-list.detailed .step-idx {
  display: inline-block;
  justify-self: start;
  background: var(--sage-100);
  color: var(--sage-500);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.steps-list.detailed h3 { font-size: 1.24rem; margin-bottom: 10px; }
.steps-list.detailed > li > p {
  font-size: 0.99rem;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 0;
}
.steps-list.detailed .step-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 11px 32px;
  max-width: none;
  margin-top: 20px;
}
.steps-list.detailed .step-points li { font-size: 0.91rem; }

@media (max-width: 620px) {
  .steps-list.detailed > li { grid-template-columns: 1fr; gap: 0; padding: 32px 0 34px; }
  .steps-list.detailed > li > * { grid-column: 1; }
  .steps-list.detailed > li::before { grid-column: 1; grid-row: auto; font-size: 2rem; margin-bottom: 10px; }
}
.step-idx {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-500);
  margin-bottom: 8px;
}
.steps-list h3 { font-size: 1.05rem; margin-bottom: 8px; }
.steps-list p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; }

.faq-section { background: var(--sage-100); padding: 78px 0; }
.faq-list { max-width: 800px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-list summary {
  padding: 17px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sage-500);
  flex-shrink: 0;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list summary:hover { background: var(--sand-50); }
.faq-list summary:focus-visible { outline: 2px solid var(--sage-400); outline-offset: -2px; }
.faq-list details p {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.94rem;
  max-width: 70ch;
}

@media (max-width: 760px) {
  .stat-inner { grid-template-columns: 1fr; gap: 26px; }
  .stat-figure { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.16); padding-right: 0; padding-bottom: 22px; }
  .species-block { padding: 24px 22px; }
}

/* Blog index ---------------------------------------------------------------- */
.blog-section { background: var(--sand-50); padding: 70px 0 100px; }
.blog-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.blog-intro p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 12px; }


.blog-empty-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-500);
  display: flex; align-items: center; justify-content: center;
}




.blog-card-media { aspect-ratio: 16/10; }
.blog-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }



.blog-card-meta { font-size: 0.78rem; color: var(--ink-soft); }


/* Article page ---------------------------------------------------------------- */



.article-section { background: var(--white); padding: 60px 0 100px; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.1rem; margin: 26px 0 10px; color: var(--navy-900); }
.article-body p { color: var(--ink); margin-bottom: 16px; line-height: 1.75; font-size: 1.02rem; }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 22px; }
.article-body li { color: var(--ink); margin-bottom: 8px; line-height: 1.65; }
.article-body strong { color: var(--navy-900); }
.article-callout {
  background: var(--sage-100);
  border: 1px solid var(--sage-300);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 30px 0;
}
.article-callout p { color: var(--navy-900); margin-bottom: 14px; font-size: 0.98rem; }
.article-callout p:last-child { margin-bottom: 0; }
.article-end-cta {
  margin-top: 50px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  color: var(--white);
}
.article-end-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.article-end-cta p { color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 30px;
}

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .zone-layout, .contact-layout, .team-layout, .devis-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .devis-confirmation { grid-column: 1; }
}

@media (max-width: 560px) {

}

@media (max-width: 780px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw); background: var(--navy-950); flex-direction: column; align-items: flex-start; padding: 100px 30px 30px; gap: 22px; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: var(--shadow-lg); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; background: rgba(255,255,255,0.06); display: none; box-shadow: none; }
  .main-nav .dropdown.is-open .dropdown-panel { display: grid; }
  .dropdown-panel a { color: rgba(255,255,255,0.85); }
  .dropdown-panel a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .burger { display: flex; }
  html:not(.js) .burger { display: none; }
  html:not(.js) .main-nav { position: static; height: auto; width: auto; background: none; flex-direction: row; padding: 0; gap: 16px; transform: none; box-shadow: none; }
  .header-actions .btn-primary.header-cta { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { transition: none; opacity: 1; transform: none; }
  .scroll-cue .line { animation: none; }
}

[hidden] { display: none !important; }
.hp-field { display: none !important; }
.form-error {
  background: #fdecea;
  border: 1px solid #f1b8b1;
  color: #8a2c20;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-note a { color: var(--navy-700); text-decoration: underline; }

.notfound-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }

/* Without JS the map cannot render: hide its empty frame */
html:not(.js) .zone-map-frame { display: none; }
