/* ==========================================================================
   MH Dératiseur — style.css v2
   Poppins (titres) + Inter (corps) | #1B3A6B | #14283F | #E8601A
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1C1C1C; background: #fff; line-height: 1.6; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; line-height: 1.15; }

/* --------------------------------------------------------------------------
   VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --blue:         #1B3A6B;
  --blue-dark:    #14283F;
  --blue-light:   #EEF3FB;
  --dark:         #1C1C1C;
  --orange:       #E8601A;
  --orange-hover: #cf5215;
  --orange-light: #FEF0E8;
  --light:        #F4F6F9;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg:    0 12px 40px rgba(27,58,107,0.18);
  --radius:       16px;
  --radius-sm:    8px;
  --max-w:        1200px;
  --topbar-h:     36px;
  --header-h:     72px;
}

/* --------------------------------------------------------------------------
   UTILITAIRES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-hover); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: #fff; color: var(--blue); border-color: #fff; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 56px;
  max-width: 600px;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Police spécifique au H1 hero */
.hero-title { font-family: 'Hammersmith One', sans-serif; }

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   TOP BAR
   -------------------------------------------------------------------------- */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.top-bar-contact { display: flex; align-items: center; gap: 16px; }
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.top-bar-link:hover { color: #fff; }
.top-bar-sep { opacity: .35; }
.top-bar-right { font-weight: 600; letter-spacing: .3px; }

/* --------------------------------------------------------------------------
   HEADER FIXE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef0f4;
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(27,58,107,.10);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav */
.nav-main ul { display: flex; gap: 28px; align-items: center; }
.nav-main a {
  font-weight: 600;
  font-size: .95rem;
  color: #333;
  position: relative;
  transition: color .2s;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .2s;
}
.nav-main a:hover, .nav-main a.active { color: var(--blue); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }

.btn-header-cta { padding: 11px 22px; font-size: .9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  order: 3;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Page offset */
.page-body { padding-top: calc(var(--topbar-h) + var(--header-h)); }

/* --------------------------------------------------------------------------
   HERO — 2 colonnes
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #1B3A6B 0%, #0f2347 100%);
  padding: 80px 24px 100px;
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: .88;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
}

.hero-video-wrap { position: relative; }
.hero-video-wrap video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  max-height: 520px;
}
.video-float-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
  white-space: nowrap;
}
.video-float-badge svg { color: var(--orange); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   HERO COMPACT (autres pages)
   -------------------------------------------------------------------------- */
.hero-compact {
  background: linear-gradient(135deg, #1B3A6B 0%, #0f2347 100%);
  padding: 56px 24px;
  text-align: center;
  color: #fff;
}
.hero-compact h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.hero-compact .hero-sub { font-size: 1rem; margin-bottom: 16px; opacity: .85; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .88rem;
  opacity: .75;
  flex-wrap: wrap;
}
.breadcrumb a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* --------------------------------------------------------------------------
   RÉASSURANCE
   -------------------------------------------------------------------------- */
.reassurance {
  background: #fff;
  padding: 72px 24px;
  border-bottom: 1px solid #eef0f5;
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.reassurance-item { display: flex; flex-direction: column; align-items: center; }
.reassurance-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.reassurance-item:hover .reassurance-icon { background: var(--orange-light); color: var(--orange); }
.reassurance-item h3 { font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.reassurance-item p { font-size: .85rem; color: #666; line-height: 1.6; }

/* --------------------------------------------------------------------------
   SERVICES (grille)
   -------------------------------------------------------------------------- */
.services-section { background: var(--light); padding: 100px 24px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.service-card:hover .service-icon-wrap { background: var(--orange-light); color: var(--orange); }

/* Pictogrammes PNG personnalisés (sans cercle de fond) */
.service-picto-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-picto-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: #555; flex: 1; margin-bottom: 20px; line-height: 1.65; }
.link-more {
  font-size: .88rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-more:hover { color: var(--orange-hover); text-decoration: underline; }

/* --------------------------------------------------------------------------
   SECTION VIDÉO
   -------------------------------------------------------------------------- */
.video-section { background: var(--blue-dark); padding: 100px 24px; }
.video-section .section-title, .video-section .section-subtitle { color: #fff; }
.video-section .section-subtitle { color: rgba(255,255,255,.7); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}
.video-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s, box-shadow .3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.35); }
.video-card video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-legend {
  padding: 16px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-align: center;
}

/* --------------------------------------------------------------------------
   POURQUOI NOUS — layout asymétrique
   -------------------------------------------------------------------------- */
.why-us { background: #fff; padding: 100px 24px; }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  max-height: 500px;
}
.why-content .section-subtitle { margin-bottom: 36px; }
.why-args { display: flex; flex-direction: column; gap: 28px; }
.why-arg {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-arg-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.why-arg:hover .why-arg-icon { background: var(--orange-light); color: var(--orange); }
.why-arg-text h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.why-arg-text p { font-size: .88rem; color: #666; line-height: 1.65; }

/* --------------------------------------------------------------------------
   TÉMOIGNAGES
   -------------------------------------------------------------------------- */
.testimonials { background: var(--light); padding: 100px 24px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #F5A623; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card blockquote {
  font-size: .93rem;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author { font-weight: 700; font-size: .88rem; color: var(--blue); }

/* --------------------------------------------------------------------------
   ZONES APERÇU
   -------------------------------------------------------------------------- */
.zones-preview { background: #fff; padding: 100px 24px; text-align: center; }
.zones-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 28px 0 40px; }
.zone-badge {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s, transform .2s;
}
.zone-badge:hover { background: var(--orange); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   CTA URGENCE
   -------------------------------------------------------------------------- */
.cta-urgence { background: var(--dark); padding: 100px 24px; text-align: center; color: #fff; }
.cta-urgence h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 14px; color: #fff; }
.cta-urgence p { font-size: 1.05rem; opacity: .82; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-tel-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background .25s, color .25s, border-color .25s;
}
.btn-tel-large:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* --------------------------------------------------------------------------
   FOOTER — 4 colonnes
   -------------------------------------------------------------------------- */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.82); padding: 72px 24px 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-box {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-box img { height: 80px; width: auto; object-fit: contain; display: block; }
.footer-slogan { font-size: .95rem; font-style: italic; opacity: .75; margin-bottom: 14px; }
.footer-address { font-style: normal; font-size: .88rem; line-height: 1.8; opacity: .7; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; opacity: .75; transition: opacity .2s; }
.footer-col ul li a:hover { opacity: 1; text-decoration: underline; }

/* Footer contact column */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.fc-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item a, .footer-contact-item span { font-size: .87rem; opacity: .8; line-height: 1.4; }
.footer-contact-item a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  opacity: .55;
}
.footer-bottom a { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   UTILITAIRES SECTION GÉNÉRIQUES
   -------------------------------------------------------------------------- */
.section-padded { padding: 100px 24px; }
.bg-blue-light { background: var(--blue-light); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.section-header p { color: #666; font-size: 1rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   PAGE SERVICES — détails
   -------------------------------------------------------------------------- */
.services-detail { padding: 100px 24px; }
.services-detail:nth-child(even) { background: var(--light); }
.service-detail-block {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.service-detail-icon {
  width: 80px; height: 80px;
  background: var(--blue-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.service-detail-icon svg { width: 40px; height: 40px; }
.service-detail-picto { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; display: block; }
.service-detail-block h2 { font-size: 1.7rem; font-weight: 800; color: var(--blue); margin-bottom: 14px; }
.service-detail-block p { color: #444; margin-bottom: 16px; line-height: 1.75; }
.service-list { list-style: none; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.service-list li { font-size: .93rem; color: #444; display: flex; align-items: flex-start; gap: 8px; }
.service-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   PAGE ZONES
   -------------------------------------------------------------------------- */
.zones-section { padding: 100px 24px; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 0 56px;
}
.zone-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform .3s, box-shadow .3s;
}
.zone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.zone-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.zone-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.zone-icon svg { width: 18px; height: 18px; }
.zone-card h3 { font-size: .95rem; font-weight: 700; color: var(--blue); margin: 0; }
.zone-card p { font-size: .83rem; color: #666; line-height: 1.55; margin-bottom: 10px; }
.zone-list { display: flex; flex-direction: column; gap: 4px; }
.zone-list li { font-size: .82rem; color: #555; padding: 4px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 6px; }
.zone-list li::before { content: '→'; color: var(--orange); font-size: .75rem; flex-shrink: 0; }
.zone-list li:last-child { border-bottom: none; }
.zone-card .zone-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 2px; }
.seo-text { background: var(--light); padding: 64px 24px; }
.seo-text .container p { font-size: .95rem; color: #444; line-height: 1.85; max-width: 820px; margin: 0 auto; }

/* Engagements (zones page) */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.engagement-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.engagement-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.engagement-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 16px;
  transition: background .3s, color .3s;
}
.engagement-card:hover .engagement-icon { background: var(--orange-light); color: var(--orange); }
.engagement-icon svg { width: 26px; height: 26px; }
.engagement-card h4 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.engagement-card p { font-size: .87rem; color: #666; line-height: 1.6; }

/* --------------------------------------------------------------------------
   PAGE DEVIS
   -------------------------------------------------------------------------- */
.contact-section { padding: 100px 24px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: var(--max-w); margin: 0 auto; align-items: start; }

.contact-form-wrap h2,
.contact-info-wrap h2 { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 10px; }
.contact-form-wrap p,
.contact-info-wrap p { font-size: .93rem; color: #666; margin-bottom: 28px; line-height: 1.65; }

.contact-form h2 { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.required { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #dde3ec;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #e74c3c;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; justify-content: center; }
.btn-full { width: 100%; justify-content: center; }
.form-check { margin-top: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: #666;
  cursor: pointer;
  line-height: 1.6;
}
.checkbox-label input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); width: 16px; height: 16px; }
.checkbox-label a { color: var(--blue); text-decoration: underline; }
.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #999;
  margin-top: 10px;
}
.hidden-field { position: absolute; left: -9999px; }

/* Contact info list */
.ci-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f5;
}
.ci-item:last-child { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.ci-content { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; color: #999; font-weight: 600; }
.ci-value { font-size: .98rem; font-weight: 600; color: var(--blue); line-height: 1.4; }
.ci-value a { color: var(--blue); }
.ci-value a:hover { color: var(--orange); text-decoration: underline; }
.ci-content strong { display: block; font-size: .78rem; color: #999; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.ci-content a, .ci-content span { font-size: 1rem; font-weight: 600; color: var(--blue); }
.ci-content a:hover { color: var(--orange); text-decoration: underline; }

/* Contact urgence box */
.contact-urgence-box {
  background: var(--orange-light);
  border: 2px solid rgba(232,96,26,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-urgence-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.contact-urgence-box p { font-size: .88rem; color: #555; margin-bottom: 18px; line-height: 1.65; }

/* FAQ */
.faq-section { background: var(--light); padding: 100px 24px; }
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item, details {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open], details[open] { box-shadow: var(--shadow); }
.faq-item summary, summary {
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker,
summary::-webkit-details-marker { display: none; }
.faq-item summary::after, summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--orange); flex-shrink: 0; }
.faq-item[open] summary::after, details[open] summary::after { content: '−'; }
.faq-item summary:hover, summary:hover { background: var(--light); }
.faq-item p { padding: 0 24px 22px; font-size: .93rem; color: #444; line-height: 1.75; }
.faq-answer { padding: 0 24px 22px; font-size: .93rem; color: #444; line-height: 1.75; }
.faq-answer a { color: var(--blue); text-decoration: underline; }

/* Contact info card (old) */
.contact-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 28px; }
.contact-info-card { background: var(--light); border-radius: var(--radius); padding: 32px 28px; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #dde8f0; }
.contact-info-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* --------------------------------------------------------------------------
   PAGE MENTIONS LÉGALES
   -------------------------------------------------------------------------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin: 24px 0 10px; }
.legal-content p, .legal-content address { font-size: .93rem; color: #444; line-height: 1.85; font-style: normal; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin: 10px 0 18px; }
.legal-content ul li { font-size: .93rem; color: #444; line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-content .legal-update { font-size: .85rem; color: #999; margin-top: 48px; }
.legal-section { margin-bottom: 44px; }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--light); }
.legal-section p, .legal-section address { font-size: .93rem; color: #444; line-height: 1.85; font-style: normal; margin-bottom: 12px; }
.legal-section ul { padding-left: 20px; margin: 10px 0; }
.legal-section ul li { font-size: .93rem; color: #444; line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-section a { color: var(--blue); text-decoration: underline; }

/* --------------------------------------------------------------------------
   PAGE MERCI
   -------------------------------------------------------------------------- */
.merci-section {
  min-height: calc(100vh - var(--topbar-h) - var(--header-h) - 280px);
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background: var(--light);
}
.merci-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 64px 56px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.merci-icon {
  width: 80px; height: 80px;
  background: #eafaf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  margin: 0 auto 28px;
}
.merci-card h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}
.merci-card > p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 8px;
}
.merci-sub {
  font-size: .9rem;
  color: #888;
  margin-bottom: 36px;
}
.merci-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .merci-card { padding: 40px 24px; }
  .merci-actions { flex-direction: column; align-items: center; }
  .merci-actions .btn, .merci-actions .btn-tel-large { width: 100%; max-width: 300px; justify-content: center; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — 1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* 1024px : 4 cols → 2 cols, ok pour 7 cartes (4 rangées de 2 + 1 seule) */
  .why-split { gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { gap: 36px; }
  .contact-layout { gap: 36px; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --topbar-h: 0px; }
  .top-bar { display: none; }
  .site-header { top: 0; }
  .page-body { padding-top: var(--header-h); }

  .nav-main {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid #eef0f4;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }
  .nav-main.open { display: block; }
  .nav-main ul { flex-direction: column; gap: 0; }
  .nav-main ul li a { display: block; padding: 14px 0; border-bottom: 1px solid #f0f0f0; font-size: 1rem; }
  .hamburger { display: flex; }
  .btn-header-cta { display: none; }

  /* Hero */
  .hero { padding: 60px 20px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { text-align: center; }
  .hero-sub { text-align: center; }
  .hero-cta { justify-content: center; flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-video-wrap video { max-height: 320px; }
  .video-float-badge { left: 10px; bottom: -14px; font-size: .78rem; padding: 10px 14px; }

  /* Sections */
  .reassurance { padding: 60px 20px; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .video-section { padding: 60px 20px; }
  .video-grid { grid-template-columns: 1fr; }
  .why-us { padding: 60px 20px; }
  .why-split { grid-template-columns: 1fr; gap: 40px; }
  .testimonials { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .zones-preview { padding: 60px 20px; }
  .cta-urgence { padding: 60px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn, .btn-tel-large { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Services detail */
  .services-detail { padding: 60px 20px; }
  .service-detail-block { grid-template-columns: 1fr; }
  .service-detail-icon { width: 64px; height: 64px; }
  .service-detail-icon svg { width: 32px; height: 32px; }

  /* Zones */
  .zones-section { padding: 60px 20px; }
  .zones-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-section { padding: 60px 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-padded { padding: 60px 20px; }

  /* FAQ */
  .faq-section { padding: 60px 20px; }

  /* Legal */
  .legal-content { padding: 60px 20px; }

  .section-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .reassurance-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .engagements-grid { grid-template-columns: 1fr; }
}
