/* ===========================================
   DAE Services 33 — Feuille de style principale
   =========================================== */

/* ===== VARIABLES DE DESIGN ===== */
:root {
  /* Couleurs identité - conservées du site actuel */
  --navy: #0d2a4f;
  --navy-light: #1a3d6b;
  --navy-dark: #081c38;
  
  /* Bleu Nettoyage */
  --blue: #1565C0;
  --blue-light: #1e88e5;
  --blue-pale: #e3f2fd;
  
  /* Rouge Anti-Nuisibles */
  --red: #C62828;
  --red-light: #e53935;
  --red-pale: #ffebee;
  
  /* Or certification */
  --gold: #C8A951;
  --gold-light: #f0d97a;
  --gold-pale: #fff9e6;
  
  /* Neutres */
  --white: #ffffff;
  --cream: #fefdfb;
  --gray-50: #fafaf9;
  --gray-100: #f5f4f0;
  --gray-200: #e8e6e0;
  --gray-400: #9e9c96;
  --gray-600: #5c5a54;
  --gray-800: #2d2c28;
  --black: #1a1918;
  
  /* Typographie */
  --font-display: 'Open Sans', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  
  /* Espacements */
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 999px;
  
  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(13, 42, 79, .06);
  --shadow-md: 0 4px 12px rgba(13, 42, 79, .08);
  --shadow-lg: 0 12px 32px rgba(13, 42, 79, .12);
  
  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-med: 300ms ease;
  --trans-slow: 500ms ease;
  
  /* Max-widths */
  --container: 1200px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Compensation du header sticky pour les ancres (#formulaire, etc.) */
[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .75rem;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 3vw + .5rem, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.35rem, 2vw + .5rem, 1.75rem); margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== CONTENEURS ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== BARRE INFO (au-dessus du header) ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: .8rem;
  padding: .5rem 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  transition: opacity var(--trans-fast);
}

.topbar a:hover { opacity: .8; }

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 35%, #6a1f1f 65%, #8e1a1a 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
  gap: var(--space-md);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.header-logo {
  height: 70px;
  width: auto;
  transition: transform var(--trans-fast);
}

.header-logo:hover { transform: translateY(-2px); }

.header-brand-text {
  display: none;
}

@media (min-width: 768px) {
  .header-brand-text {
    display: block;
    line-height: 1.2;
    font-family: var(--font-body);
  }
  .header-brand-text strong {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    display: block;
  }
  .header-brand-text span {
    font-size: .72rem;
    font-weight: 400;
    opacity: .85;
    letter-spacing: .02em;
  }
}

/* Navigation principale */
.nav {
  display: none;
  gap: .3rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: .6rem 1rem;
  color: var(--white);
  font-weight: 500;
  font-size: .9rem;
  border-radius: var(--radius-md);
  transition: background var(--trans-fast);
}

.nav-link:hover,
.nav-link.active {
  background: var(--navy-light);
}

.nav-link.active {
  font-weight: 700;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--trans-med);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: .6rem .8rem;
  color: var(--gray-800);
  font-size: .88rem;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.nav-dropdown a:hover {
  background: var(--gray-100);
  color: var(--navy);
}

/* Bouton CTA du header */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.2rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-full);
  transition: all var(--trans-fast);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Sur mobile (< 900px) : bouton Devis gratuit caché (présent dans le menu burger) */
@media (max-width: 900px) {
  .header-cta {
    display: none !important;
  }
  /* Burger plus visible sur mobile */
  .burger {
    padding: .6rem;
    border-width: 2px;
  }
  .burger span {
    width: 24px;
    height: 2.5px;
  }
}

/* Très petit écran */
@media (max-width: 420px) {
  /* Réduire les logos sur très petit écran pour laisser de la place au burger */
  .header-logo {
    height: 50px;
  }
  .header-brand {
    gap: .35rem;
  }
}

/* Burger menu mobile */
.burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: .5rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--trans-fast);
}

@media (min-width: 1024px) {
  .burger { display: none; }
}

/* Menu mobile */
.mobile-nav {
  display: none;
  background: var(--navy-light);
  padding: var(--space-md) 0 var(--space-xl);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: .7rem var(--space-md);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .95rem;
}

.mobile-nav a:hover {
  background: var(--navy);
}

.mobile-nav .mobile-nav-section {
  padding: .5rem var(--space-md);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-full);
  transition: all var(--trans-fast);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-hero-white {
  background: var(--white);
  color: var(--navy);
}

.btn-hero-white:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.badge-blue {
  background: var(--blue-pale);
  color: var(--blue);
}

.badge-red {
  background: var(--red-pale);
  color: var(--red);
}

/* ===== FIL D'ARIANE ===== */
.breadcrumb {
  padding: var(--space-sm) 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .85rem;
  color: var(--gray-600);
  list-style: none;
}

.breadcrumb-list a {
  color: var(--blue);
}

.breadcrumb-list a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--gray-400);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(165deg, var(--blue) 0%, var(--navy) 30%, #6a1a1a 65%, var(--red) 100%);
  color: var(--white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

/* Ligne blanche de respiration entre header et hero (uniquement accueil — 
   quand le hero suit directement le header, sans breadcrumb intermédiaire) */
.header + .hero {
  margin-top: var(--space-md);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 169, 81, .1) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero h1 strong.accent-blue { color: var(--blue-light); }
.hero h1 strong.accent-red { color: var(--red-light); }

.hero-lead {
  font-size: 1.15rem;
  opacity: .92;
  margin-bottom: var(--space-lg);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ===== TAMPON CERTIBIOCIDE dans hero nuisibles ===== */
.hero-certi-stamp {
  position: absolute;
  right: 6%;
  bottom: var(--space-xl);
  width: 190px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
  opacity: .98;
  pointer-events: none;
  user-select: none;
}

/* Écrans moyens */
@media (max-width: 1100px) {
  .hero-certi-stamp {
    width: 150px;
    right: 5%;
  }
}

/* Mobile : tampon plus visible qu'avant, position standard bas-droite */
@media (max-width: 720px) {
  .hero-certi-stamp {
    width: 110px;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    opacity: .92;
  }
  /* Marge droite pour éviter chevauchement texte */
  .hero-red .hero-content,
  .hero-blue .hero-content {
    padding-right: 125px;
  }
}

/* Très petit écran */
@media (max-width: 420px) {
  .hero-certi-stamp {
    width: 85px;
    right: .7rem;
    bottom: .8rem;
    transform: none;
  }
  .hero-red .hero-content,
  .hero-blue .hero-content {
    padding-right: 95px;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-xl) 0;
}


.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title span {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title h2 {
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SOUS-TITRES DE CATÉGORIE ===== */
.category-title {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: .5rem;
  border-bottom: 2px solid currentColor;
  display: inline-block;
}

.category-title:first-of-type {
  margin-top: 0;
}

/* ===== CARTES SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
  text-decoration: none;  /* Enlève le soulignement quand c'est un <a> */
  color: inherit;          /* Hérite de la couleur du parent, pas bleu lien */
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  text-decoration: none;
}

.service-card-header {
  padding: var(--space-md);
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}

.service-card-header.bg-blue {
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, var(--blue) 100%);
}
.service-card-header.bg-red {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
}

.service-card-header h3 {
  color: var(--white);
  margin-bottom: .3rem;
}

.service-card-header p {
  font-size: .85rem;
  opacity: .9;
  margin: 0;
}

.service-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body p {
  color: var(--gray-600);
  font-size: .92rem;
  margin-bottom: var(--space-sm);
}

.service-card-body p:last-of-type {
  margin-bottom: var(--space-md);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
  font-weight: 700;
  font-size: .92rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--gray-200);
  transition: gap var(--trans-fast);
  margin-top: auto;
}

.service-card-link:hover {
  gap: .7rem;
  color: var(--blue);
}

/* ===== TAMPON CERTIBIOCIDE sur les cartes Anti-Nuisibles ===== */
/* Le tampon est positionné dans le BANDEAU COLORÉ en haut de la carte,
   en bas à droite de ce bandeau (pas de la carte entière) */

/* Cartes service-card (sous-cartes activités sur l'accueil) */
.service-card.has-certi .service-card-header {
  position: relative;
}
.service-card.has-certi .service-card-header::after {
  content: "";
  position: absolute;
  bottom: .5rem;
  right: .7rem;
  width: 44px;
  height: 44px;
  background-image: url('/assets/images/certibiocide-tampon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .95;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.3));
  pointer-events: none;
  z-index: 1;
}

/* Variante plus grande pour la grande carte "Lutte Anti-Nuisibles" */
.service-card.has-certi.service-card-large .service-card-header::after {
  width: 54px;
  height: 54px;
  bottom: .6rem;
  right: .8rem;
}

/* Éviter que le tampon chevauche le sous-titre du bandeau */
.service-card.has-certi .service-card-header h3,
.service-card.has-certi .service-card-header p {
  padding-right: 54px;
}
.service-card.has-certi.service-card-large .service-card-header h3,
.service-card.has-certi.service-card-large .service-card-header p {
  padding-right: 64px;
}

/* Cartes blog Anti-Nuisibles (articles) — tampon dans le bandeau du haut */
.blog-card.cat-nuisibles .blog-card-header {
  position: relative;
}
.blog-card.cat-nuisibles .blog-card-header::after {
  content: "";
  position: absolute;
  bottom: .4rem;
  right: .6rem;
  width: 42px;
  height: 42px;
  background-image: url('/assets/images/certibiocide-tampon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .95;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.3));
  pointer-events: none;
  z-index: 1;
}

/* Reset du padding ajouté précédemment sur le meta */
.blog-card.cat-nuisibles .blog-card-meta {
  padding-right: 0;
}

/* ===== NOS ENGAGEMENTS ===== */
.engagements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .engagements-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .engagements-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.engagement-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engagement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.engagement-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.engagement-card h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .4rem;
  line-height: 1.3;
}

.engagement-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ===== BANDEAU CERTIFICATION ===== */
.cert-strip {
  background: linear-gradient(90deg, var(--gold-pale) 0%, #fff8dc 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: var(--space-md) 0;
  margin: var(--space-lg) 0;
}

.cert-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  text-align: center;
}

.cert-strip strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.cert-strip a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 35%, #6a1f1f 65%, #8e1a1a 100%);
  color: rgba(255,255,255,.85);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}

/* ===== ZONE SEO (zones d'intervention détaillées, en accordéon) ===== */
.seo-zone {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.seo-zone details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.seo-zone summary {
  padding: .9rem 0;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  text-align: center;
  list-style: none;
  transition: color .2s;
  user-select: none;
}

.seo-zone summary::-webkit-details-marker {
  display: none;
}

.seo-zone summary::after {
  content: " ▾";
  color: var(--gray-400);
  font-size: .7rem;
  margin-left: .3rem;
}

.seo-zone details[open] summary::after {
  content: " ▴";
}

.seo-zone summary:hover {
  color: var(--navy);
}

.seo-zone-content {
  padding: var(--space-sm) 0 var(--space-md);
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.55;
  border-top: 1px solid var(--gray-200);
  margin-top: .3rem;
}

.seo-zone-content h4 {
  font-size: .8rem;
  color: var(--gray-700);
  margin: var(--space-sm) 0 .3rem;
  font-weight: 700;
}

.seo-zone-content h4:first-child {
  margin-top: .5rem;
}

.seo-zone-content p {
  text-align: justify;
  margin-bottom: .5rem;
}

.seo-zone-content p:last-child {
  margin-bottom: 0;
}

.seo-zone-content strong {
  color: var(--gray-700);
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand-logos {
  display: flex;
  gap: .6rem;
  margin-bottom: var(--space-sm);
}

.footer-brand-logos img {
  height: 180px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 600px) {
  .footer-brand-logos img {
    height: 130px;
  }
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  opacity: .85;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  margin-bottom: .4rem;
}

.footer-contact a {
  color: var(--white);
  transition: color var(--trans-fast);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: .4rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  border-radius: var(--radius-full);
  transition: transform var(--trans-fast);
}

.footer-social a:hover { transform: translateY(-2px); }

.footer-social .sb-ig { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf); }
.footer-social .sb-fb { background: #1877f2; }
.footer-social .sb-yt { background: #ff0000; }
.footer-social .sb-tk { background: #000; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-sm);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .5rem;
}

.footer-col a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  transition: all var(--trans-fast);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: .3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .82rem;
  opacity: .7;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===== ZONES D'INTERVENTION intégrées dans le footer (fondu discret) ===== */
.footer-zones {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  text-align: center;
}

.footer-zones details {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-zones summary {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  list-style: none;
  padding: .4rem 0;
  font-weight: 500;
  transition: color .2s;
  user-select: none;
  letter-spacing: .02em;
}

.footer-zones summary::-webkit-details-marker { display: none; }

.footer-zones summary::after {
  content: " ▾";
  font-size: .65rem;
  margin-left: .25rem;
  color: rgba(255,255,255,.4);
}

.footer-zones details[open] summary::after { content: " ▴"; }

.footer-zones summary:hover {
  color: rgba(255,255,255,.85);
}

.footer-zones-content {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  text-align: left;
  padding: var(--space-sm) 0 .3rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: .3rem;
}

.footer-zones-content h4 {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  margin: .6rem 0 .2rem;
}

.footer-zones-content h4:first-child { margin-top: 0; }

.footer-zones-content p {
  margin-bottom: .4rem;
  text-align: justify;
}

.footer-zones-content p:last-child { margin-bottom: 0; }

.footer-zones-content strong {
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ===== LIEN "GÉRER LES COOKIES" (discret, dans footer-bottom-links) ===== */
.cookie-manage-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
}

.cookie-manage-link:hover { color: var(--gold); }

/* ===== PAGE CONTACT — logos raccourcis (activités + certification) ===== */
.contact-logos-section {
  padding: var(--space-lg) 0;
  background: var(--white);
}

.contact-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}

.contact-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.contact-logo-card img {
  max-height: 80px;
  width: auto;
  margin-bottom: .7rem;
  object-fit: contain;
}

.contact-logo-card .logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.contact-logo-card .logo-desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.contact-logo-card .logo-cta {
  margin-top: .7rem;
  font-weight: 700;
  color: var(--navy);
  font-size: .85rem;
}

.contact-logo-card:hover .logo-cta { color: var(--gold); }

/* ===== PAGE CONTACT — social pills (réseaux sociaux discrets) ===== */
.contact-social {
  text-align: center;
  padding: var(--space-md) 0;
}

.contact-social-label {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: .7rem;
}

.contact-social-pills {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.contact-social-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--navy);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
}

.contact-social-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== PAGE FAQ — filtres par catégorie ===== */
.faq-filters {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin: 0 auto var(--space-lg);
  max-width: 900px;
  padding: 0 var(--space-sm);
}

.faq-filter-btn {
  padding: .65rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.faq-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.faq-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.faq-filter-btn.is-active:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* Section cachée par le filtre */
.faq-section-hidden { display: none !important; }

/* ===== BANDEAU AVIS ===== */
.reviews-strip {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: center;
}

.reviews-strip-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: .15em;
  margin-bottom: .4rem;
}

.reviews-strip a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  :root { --space-xl: 2.5rem; --space-2xl: 4rem; }
  
  .topbar { font-size: .72rem; }
  .topbar-left { display: none; }
  
  .hero { padding: var(--space-lg) 0; }
  .hero-lead { font-size: 1rem; }
  
  .section { padding: var(--space-lg) 0; }
  
  .footer { padding: var(--space-lg) 0 var(--space-sm); }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===========================================
   SYSTÈME DE COULEURS PAR UNIVERS
   - Le header est uniformément en dégradé bleu→rouge sur tout le site
     (voir .header plus haut)
   - Les variations bleu/rouge par univers ne concernent plus le header
   - Le bouton "Devis gratuit" reste doré sur tous les univers (identité DAE)
   =========================================== */

/* ===== UNIVERS NETTOYAGE (bleu) ===== */
body.univers-nettoyage .mobile-nav {
  background: #0d47a1;
}

body.univers-nettoyage .nav-link:hover,
body.univers-nettoyage .nav-link.active {
  background: rgba(255, 255, 255, .15);
}

/* ===== BADGE CERTIBIOCIDE HEADER (visible uniquement univers nuisibles) ===== */
.header-certibiocide {
  display: none;
}

body.univers-nuisibles .header-certibiocide {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .7rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(200, 169, 81, .6);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: var(--space-sm);
  cursor: default;
}

body.univers-nuisibles .header-certibiocide::before {
  content: "✓";
  font-size: .85rem;
  color: var(--gold);
}

/* Responsive : masquer sur petit écran où il y a déjà le burger */
@media (max-width: 900px) {
  body.univers-nuisibles .header-certibiocide {
    display: none;
  }
}

/* ===== UNIVERS ANTI-NUISIBLES (rouge) ===== */
body.univers-nuisibles .mobile-nav {
  background: #8e1a1a;
}

body.univers-nuisibles .nav-link:hover,
body.univers-nuisibles .nav-link.active {
  background: rgba(255, 255, 255, .15);
}

/* Titres et éléments textuels : rouge sur fond blanc, sauf dans les cartes colorées */
body.univers-nuisibles .maintenance-card h4,
body.univers-nuisibles .maintenance-card strong,
body.univers-nuisibles .timeline-step-body h4,
body.univers-nuisibles .timeline-step-body strong,
body.univers-nuisibles .nuisible-card-header h3,
body.univers-nuisibles .method-highlight h3,
body.univers-nuisibles .method-highlight-list strong,
body.univers-nuisibles .warning-box strong {
  color: var(--red);
}

/* Garde le blanc pour les headers de cartes à fond rouge */
body.univers-nuisibles .nuisible-card-header.bg-red h3,
body.univers-nuisibles .method-card-header h3 {
  color: var(--white);
}

/* ===== UTILITAIRES ===== */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

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

.fade-in-up {
  animation: fadeInUp 600ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== GRILLE GOUTTIÈRES 2x2 ===== */
.gouttiere-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

@media (min-width: 640px) {
  .gouttiere-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== ENCADRÉ AVERTISSEMENT DORÉ ===== */
.warning-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  color: var(--gray-800);
  line-height: 1.6;
}

.warning-box strong {
  color: var(--navy);
}

/* ===== GRILLE HYDROFUGE 2x2 (Toiture) ===== */
.hydrofuge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .hydrofuge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== CARTES ENTRETIEN / DURABILITÉ (Terrasses) ===== */
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

@media (min-width: 768px) {
  .maintenance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.maintenance-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--trans-fast);
}

.maintenance-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.maintenance-card h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.maintenance-card p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
  font-size: .95rem;
}

.maintenance-card strong {
  color: var(--navy);
}

/* ===== MÉTHODE PRINCIPALE VAPEUR (Terrasses) ===== */
.method-highlight {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.method-highlight h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.method-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.method-highlight-list li {
  padding: .6rem 0 .6rem 2rem;
  position: relative;
  color: var(--gray-800);
  line-height: 1.6;
  border-bottom: 1px solid rgba(200, 169, 81, .2);
}

.method-highlight-list li:last-child {
  border-bottom: none;
}

.method-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .6rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

.method-highlight-list strong {
  color: var(--navy);
}

/* ===== MÉTHODES SIMPLES (Terrasses - 2 techniques) ===== */
.method-simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .method-simple-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.method-simple {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--trans-fast);
}

.method-simple:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.method-simple-icon {
  font-size: 2.5rem;
  margin-bottom: .6rem;
}

.method-simple h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: .8rem;
}

.method-simple p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: .8rem;
}

.method-simple strong {
  color: var(--navy);
}

.method-simple-ideal {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: .7rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

/* ===== CARTES MATÉRIAU (Terrasses - par support) ===== */
.material-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .material-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .material-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.material-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(8px);
  transition: all var(--trans-fast);
}

.material-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.material-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding-bottom: .8rem;
  margin-bottom: .8rem;
}

.material-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: .3rem;
}

.material-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.material-method {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.material-card p {
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

.material-card strong {
  color: var(--gold-light);
}

/* ===== 2 MÉTHODES COMPARÉES (Toiture) ===== */
.methods-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .methods-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.method-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}

.method-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.method-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: var(--space-md);
  text-align: center;
}

body.univers-nuisibles .method-card-header {
  background: linear-gradient(135deg, var(--red) 0%, #8e1a1a 100%);
}

.method-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: .25rem .8rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .6rem;
}

.method-card-header h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: .25rem;
}

.method-card-header p {
  font-size: .9rem;
  opacity: .9;
  margin: 0;
}

.method-card-body {
  padding: var(--space-md);
  flex: 1;
}

.method-card-body h4 {
  color: var(--navy);
  font-size: .95rem;
  margin-top: var(--space-md);
  margin-bottom: .6rem;
  padding-bottom: .3rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.method-card-body h4:first-child {
  margin-top: 0;
}

.method-card-body ol,
.method-card-body ul {
  padding-left: 1.3rem;
  margin-bottom: var(--space-sm);
}

.method-card-body li {
  color: var(--gray-800);
  margin-bottom: .5rem;
  line-height: 1.55;
  font-size: .93rem;
}

.method-card-body li strong {
  color: var(--navy);
}

.method-card-body p {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.6;
}

.method-card-body p strong {
  color: var(--navy);
}

/* ===== BANDEAU SERVICE À LA PERSONNE (SAP) ===== */
.sap-strip {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .sap-strip {
    flex-direction: column;
    text-align: center;
  }
}

.sap-logo-link {
  flex-shrink: 0;
  display: block;
  transition: transform var(--trans-fast);
}

.sap-logo-link:hover {
  transform: scale(1.05);
}

.sap-logo {
  height: 75px;
  width: auto;
  display: block;
}

.sap-content h3 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: .3rem;
}

.sap-content p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: .5rem;
}

.sap-content strong {
  color: var(--navy);
}

.sap-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
  transition: gap var(--trans-fast);
}

.sap-link:hover {
  gap: .6rem;
  color: var(--navy);
}

/* ===== SECTION AVIS GOOGLE (widget Elfsight) ===== */
.reviews-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
}

/* ===== ZONE D'INTERVENTION (contour doré) ===== */
.zone-strip {
  padding: var(--space-md);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

.zone-strip strong {
  color: var(--navy);
}

/* ===== TEXTE D'INTRODUCTION ===== */
.intro-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-800);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.intro-text strong {
  color: var(--navy);
}

/* ===== GRILLE ARGUMENTS (3 piliers) ===== */
.arguments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.argument-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--trans-med);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.argument-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* Bandeau dégradé noir → bleu en haut de chaque carte (cohérent avec les cartes service-card) */
.argument-card::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, var(--blue) 100%);
}

/* Variante rouge si placée dans univers nuisibles */
body.univers-nuisibles .argument-card::before {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
}

.argument-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
  padding: var(--space-lg) var(--space-lg) 0;
}

.argument-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--navy);
  padding: var(--space-lg) var(--space-lg) 0;
}

.argument-card p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.65;
  padding: 0 var(--space-lg) var(--space-lg);
  margin: 0;
}

.argument-card strong {
  color: var(--navy);
}

/* ===== PHOTO AVANT/APRÈS ===== */
.before-after {
  margin: var(--space-lg) 0 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.before-after img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  object-position: center;
}

.before-after figcaption {
  padding: var(--space-md);
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.6;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  text-align: left;
}

.before-after figcaption strong {
  color: var(--navy);
}

/* ===== GRILLE FEATURES (Pourquoi DAE) ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-item {
  position: relative;
  padding-left: 4rem;
}

.feature-number {
  position: absolute;
  left: 0;
  top: -.3rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  opacity: .8;
}

.feature-item h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.feature-item p {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: var(--space-md);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: all var(--trans-fast);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  padding-right: 3rem;
  font-size: 1rem;
  list-style: none;
  transition: background var(--trans-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--trans-fast);
}

.faq-item[open] summary {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--gray-200);
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--navy);
}

.faq-item p {
  padding: var(--space-sm) var(--space-md);
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
  font-size: .95rem;
}

.faq-item p strong {
  color: var(--navy);
}

/* ===== BANDEAU CTA FINAL ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip-blue {
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, var(--blue) 100%);
}

/* Idem pour le rouge, cohérent avec les hero-red */
.cta-strip-red {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-content {
    grid-template-columns: 2fr 1fr;
    text-align: left;
  }
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: .5rem;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: .95;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-actions {
    justify-content: flex-end;
  }
}

.cta-actions .btn-primary {
  background: var(--white);
  color: var(--red);
}

.cta-actions .btn-primary:hover {
  background: var(--cream);
  color: var(--red);
}

.cta-strip-blue .btn-primary {
  color: var(--navy);
}

.cta-strip-blue .btn-primary:hover {
  color: var(--navy);
}

.cta-strip-blue .btn-secondary {
  border-color: transparent;
}

.cta-strip-blue .btn-secondary:hover {
  background: var(--navy-dark);
  border-color: transparent;
}

/* ===== VARIANTES HERO ===== */
/* Hero Nettoyage : noir/navy en haut-gauche, bleu en bas-droite (diagonale) */
.hero-blue {
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, var(--blue) 100%);
}

/* Hero Anti-Nuisibles : noir en haut-gauche, bordeaux au milieu, rouge en bas-droite (même logique que hero-blue) */
.hero-red {
  background: linear-gradient(165deg, #0d0d18 0%, #5a1818 40%, var(--red) 100%);
}

/* ===========================================
   PAGES ANTI-NUISIBLES
   =========================================== */

/* ===== BANDEAU CTA ROUGE ===== */
.cta-strip-red {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
  color: var(--white);
  padding: var(--space-lg) 0;
}

.cta-strip-red .cta-strip-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-strip-red .cta-strip-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-strip-red h2 {
  color: var(--white);
  margin-bottom: .5rem;
}

.cta-strip-red p {
  color: rgba(255,255,255,.9);
  margin: 0;
}

/* CTA-strip-blue : assurer la visibilité du texte sur fond bleu marine */
.cta-strip-blue .cta-strip-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-strip-blue .cta-strip-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cta-strip-blue h2 {
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-strip-blue p {
  color: rgba(255,255,255,.9);
  margin: 0;
}
.cta-strip-blue .cta-strip-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-strip-red .cta-strip-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== GRILLE 6 NUISIBLES ===== */
.nuisibles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .nuisibles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .nuisibles-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.nuisible-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}

.nuisible-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.nuisible-card-header {
  padding: var(--space-md);
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 95px;
  position: relative;
}

.nuisible-card-header.bg-red {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
}

/* Tampon Certibiocide dans le bandeau coloré en bas à droite */
.nuisible-card-header.bg-red::after {
  content: "";
  position: absolute;
  bottom: .5rem;
  right: .7rem;
  width: 44px;
  height: 44px;
  background-image: url('/assets/images/certibiocide-tampon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .95;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.3));
  pointer-events: none;
  z-index: 1;
}

/* Padding droite sur le titre pour éviter chevauchement avec le tampon */
.nuisible-card-header.bg-red h3,
.nuisible-card-header.bg-red p {
  padding-right: 54px;
}

.nuisible-card-header h3 {
  color: var(--white);
  margin-bottom: .3rem;
}

.nuisible-card-header p {
  font-size: .85rem;
  opacity: .9;
  margin: 0;
}

.nuisible-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nuisible-card-body p {
  color: var(--gray-600);
  font-size: .92rem;
  margin-bottom: var(--space-md);
}

.nuisible-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--red);
  font-weight: 700;
  font-size: .92rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--gray-200);
  transition: gap var(--trans-fast);
  margin-top: auto;
}

.nuisible-card-link:hover {
  gap: .7rem;
  color: #8e1a1a;
}

/* ===== RAISONS DE CHOISIR UN PRO (6 en 3x2) ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .reasons-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.reason-item {
  position: relative;
  padding-left: 4rem;
}

.reason-number {
  position: absolute;
  left: 0;
  top: -.3rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  opacity: .85;
}

.reason-item h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.reason-item p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: .92rem;
  margin: 0;
}

.reason-item strong {
  color: var(--navy);
}

/* Style harmonisé anti-nuisibles : même principe que feature-item de Nettoyage 
   (fond gradient de la section + numéros dorés directement en texte) */
body.univers-nuisibles .reason-item {
  padding-left: 4rem;
}

body.univers-nuisibles .reason-number {
  position: absolute;
  left: 0;
  top: -.3rem;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .8;
  display: block;
  line-height: 1;
}

body.univers-nuisibles .reason-item h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

body.univers-nuisibles .reason-item p {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

body.univers-nuisibles .reason-item strong {
  color: var(--gold-light);
}

/* ===== COMPARATIF 2 COLONNES (ex: frelon asiatique vs européen) ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--trans-med);
}

.comparison-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* Bandeau coloré en haut de chaque carte */
.comparison-card-header {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
  color: var(--white);
  padding: var(--space-md);
}

.comparison-card-header h3 {
  color: var(--white);
  margin: 0 0 .3rem;
  font-size: 1.35rem;
}

.comparison-card-header .comparison-subtitle {
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  margin: 0;
  padding: 0;
  border: none;
}

.comparison-card-header .comparison-subtitle em {
  color: var(--white);
  font-weight: 600;
}

/* Corps blanc de la carte */
.comparison-card-body {
  padding: var(--space-md);
  flex: 1;
}

/* Ancien style comparison-subtitle pour compat : gardé pour cas où il serait utilisé ailleurs */
.comparison-card-body .comparison-subtitle {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-200);
}

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

.comparison-list li {
  padding: .5rem 0;
  color: var(--gray-700);
  line-height: 1.5;
  font-size: .95rem;
  border-bottom: 1px dashed var(--gray-200);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list strong {
  color: var(--navy);
}

/* ===== TIMELINE CYCLE DE VIE ===== */
.timeline {
  margin-top: var(--space-lg);
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--red);
  opacity: .3;
}

.timeline-step {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: .4rem;
  width: 1rem;
  height: 1rem;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-step-date {
  display: inline-block;
  background: linear-gradient(135deg, #1a1a2e 0%, #3d1414 50%, var(--red) 100%);
  color: var(--white);
  padding: .35rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.timeline-step-body h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.timeline-step-body p {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: .95rem;
  margin: 0;
}

.timeline-step-body strong {
  color: var(--navy);
}

/* ===== MÉTHODE EN 3 COLONNES (6 steps = 2 lignes de 3) ===== */
.method-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .method-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .method-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.method-step {
  position: relative;
  padding-left: 4rem;
}

.method-step-number {
  position: absolute;
  left: 0;
  top: -.3rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  opacity: .85;
}

.method-step h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.method-step p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: .92rem;
  margin: 0;
}

.method-step strong {
  color: var(--navy);
}

/* ===== PAGE SERVICE DÉTAILLÉE (ex: Panneaux solaires)
   =========================================== */

/* ===== AVERTISSEMENT - RISQUES MAUVAIS NETTOYAGE ===== */
.warning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .warning-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.warning-item {
  background: var(--white);
  border-left: 5px solid transparent;
  border-image: linear-gradient(180deg, #1a1a2e 0%, #3d1414 50%, var(--red) 100%) 1;
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.warning-item strong {
  display: block;
  color: var(--red);
  font-size: .95rem;
  margin-bottom: .4rem;
}

.warning-item p {
  margin: 0;
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ===== MÉTHODE EN ÉTAPES ===== */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.univers-nuisibles .method-step {
  position: relative;
  padding: var(--space-md);
  padding-left: 5rem;
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

body.univers-nuisibles .method-step-number {
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, .15);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

body.univers-nuisibles .method-step h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

body.univers-nuisibles .method-step p {
  color: rgba(255, 255, 255, .92);
  line-height: 1.6;
  font-size: .92rem;
  margin: 0;
}

body.univers-nuisibles .method-step strong {
  color: var(--gold-light);
}

body.univers-nettoyage .method-step {
  position: relative;
  padding-left: 4.5rem;
}

body.univers-nettoyage .method-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(21, 101, 192, .3);
}

body.univers-nettoyage .method-step h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

body.univers-nettoyage .method-step p {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.6;
}

body.univers-nettoyage .method-step strong {
  color: var(--navy);
}

/* ===== TYPES D'INSTALLATIONS ===== */
.install-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .install-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .install-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.install-item {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(8px);
  transition: all var(--trans-fast);
}

.install-item:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.install-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.install-item p {
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== POUR QUI (audience) ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--trans-fast);
}

.audience-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.audience-card p {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== PRICING BOX ===== */
.pricing-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: .3rem 1rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-sm);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gray-600);
  margin-bottom: .3rem;
}

.pricing-amount strong {
  color: var(--navy);
  font-size: 2.5rem;
  font-weight: 800;
}

.pricing-note {
  font-size: .88rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.pricing-detail {
  text-align: left;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

.pricing-detail h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: .8rem;
}

.pricing-detail p {
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: .8rem;
}

.pricing-detail ul {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}

.pricing-detail ul li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  color: var(--gray-800);
  line-height: 1.55;
}

.pricing-detail ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-detail strong {
  color: var(--navy);
}

.pricing-cta {
  margin-top: var(--space-lg);
  text-align: center;
}

/* ===== IMPACT ÉCOLOGIQUE ===== */
.eco-box {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-left: 4px solid #4caf50;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.eco-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.eco-box h3 {
  color: #2e7d32;
  margin-bottom: .6rem;
  font-size: 1.25rem;
}

.eco-box p {
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: .8rem;
}

.eco-box strong {
  color: #2e7d32;
}

@media (max-width: 640px) {
  .eco-box { flex-direction: column; }
}

/* ===========================================
   BLOG - LISTE ET ARTICLES
   =========================================== */

/* === LISTE DES ARTICLES (page /blog) === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-header {
  padding: var(--space-sm) var(--space-md);
  min-height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Par défaut (fallback) */
.blog-card .blog-card-header {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 40%, var(--blue) 100%);
}

/* Variante Nuisibles : noir → rouge */
.blog-card.cat-nuisibles .blog-card-header {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
}

/* Variante Nettoyage : noir → bleu */
.blog-card.cat-nettoyage .blog-card-header {
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, var(--blue) 100%);
}

.blog-card-category {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .35rem .75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}

.blog-card-category.cat-nuisibles,
.blog-card-category.cat-nettoyage {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
}

.blog-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0 0 var(--space-sm);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--gray-100);
}

.blog-card-reading-time {
  font-size: .75rem;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.blog-card-link {
  color: var(--gold);
  font-weight: 700;
  font-size: .82rem;
  transition: gap var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.blog-card:hover .blog-card-link {
  gap: .5rem;
}

/* Bordures top supprimées (remplacées par le bandeau dégradé) */
.blog-card.cat-nuisibles,
.blog-card.cat-nettoyage {
  border-top: 1px solid var(--gray-100);
}

/* === PAGE ARTICLE === */
.article-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  color: var(--white);
}

.article-hero.hero-nuisibles {
  background: linear-gradient(165deg, #1a1a2e 0%, #6a1a1a 40%, var(--red) 100%);
}

.article-hero.hero-nettoyage {
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, var(--blue) 100%);
}

.article-hero-category {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .35rem .8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .15);
  color: var(--gold-light);
  border: 1px solid rgba(200, 169, 81, .4);
  margin-bottom: var(--space-sm);
}

.article-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.article-hero-meta {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.article-body {
  padding: var(--space-xl) 0;
  max-width: 780px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

body.univers-nuisibles .article-body h2 {
  color: var(--red);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: var(--space-md);
  margin-bottom: .5rem;
}

body.univers-nuisibles .article-body h3 {
  color: var(--red);
}

.article-body ul, .article-body ol {
  margin: 0 0 var(--space-sm) var(--space-md);
  padding: 0;
}

.article-body ul li, .article-body ol li {
  margin-bottom: .5rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.article-body strong {
  color: var(--navy);
  font-weight: 700;
}

body.univers-nuisibles .article-body strong {
  color: var(--red);
}

.article-lead {
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
  color: var(--gray-700) !important;
  padding: var(--space-md);
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-lg) !important;
}

.article-alert {
  padding: var(--space-sm) var(--space-md);
  background: #fff5e6;
  border: 2px solid #ffb74d;
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
  font-size: .95rem;
  line-height: 1.6;
  color: #7a4a00;
}

/* === YOUTUBE === */
.article-youtube {
  margin: var(--space-md) 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === ARTICLES LIÉS (sur pages thématiques ET dans les articles) === */
.related-articles {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

.related-articles-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  text-align: center;
}

body.univers-nuisibles .related-articles-title {
  color: var(--red);
}

.related-articles-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: var(--space-md);
}

.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 700px) {
  .related-articles-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* === NAVIGATION RETOUR BLOG === */
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.1rem;
  background: var(--gray-100);
  color: var(--navy);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  margin-top: var(--space-md);
  transition: background .2s;
}

.back-to-blog:hover {
  background: var(--gray-200);
}

body.univers-nuisibles .back-to-blog {
  color: var(--red);
}

/* === FILTRE BLOG === */
.blog-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.blog-filter {
  padding: .5rem 1rem;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}

.blog-filter:hover {
  background: var(--gray-200);
}

.blog-filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.blog-filter.active.filter-nuisibles {
  background: var(--red);
  border-color: var(--red);
}

.blog-filter.active.filter-nettoyage {
  background: var(--blue);
  border-color: var(--blue);
}

/* === DERNIERS ARTICLES (page accueil) === */
.latest-articles {
  margin-top: var(--space-md);
}

.latest-articles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.latest-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .latest-articles-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ===========================================
   PAGE CONTACT
   =========================================== */

/* === 3 MODES DE CONTACT === */
.contact-modes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 700px) {
  .contact-modes-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.contact-mode-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}

.contact-mode-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-mode-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.contact-mode-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: .8rem;
}

.contact-mode-big {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .6rem;
  line-height: 1.25;
}

.contact-mode-note {
  font-size: .85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* === FORMULAIRE DE CONTACT === */
.contact-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

@media (min-width: 700px) {
  .contact-form {
    padding: var(--space-xl) var(--space-lg);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: .75rem .9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, .15);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.checkbox-label {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--gray-600);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: .2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--gold);
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.form-result {
  margin-top: var(--space-md);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  display: none;
}

.form-result-success {
  display: block;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  color: #1b5e20;
  font-weight: 600;
}

.form-result-error {
  display: block;
  background: #ffebee;
  border: 2px solid #e57373;
  color: #c62828;
  font-weight: 600;
}

/* === INFO GRID === */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 700px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.info-card h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.info-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  font-size: .95rem;
}

.info-card strong {
  color: var(--navy);
}

/* ===========================================
   PAGE RÉSEAUX SOCIAUX
   =========================================== */
.social-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 700px) {
  .social-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .social-links-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.social-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.social-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.social-instagram::before { background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-facebook::before { background: #1877f2; }
.social-tiktok::before { background: linear-gradient(90deg, #25f4ee 0%, #000 50%, #fe2c55 100%); }
.social-youtube::before { background: #ff0000; }

.social-link-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.social-link-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.social-link-handle {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .8rem;
  font-size: 1rem;
}

.social-link-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.social-link-cta {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  margin-top: auto;
}

/* ===========================================
   PAGES LÉGALES
   =========================================== */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: var(--space-md);
  margin-bottom: .5rem;
}

.legal-content p {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.legal-content ul, .legal-content ol {
  margin: 0 0 var(--space-sm) var(--space-md);
}

.legal-content ul li, .legal-content ol li {
  margin-bottom: .5rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.legal-content strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-content em {
  color: var(--gray-500);
  font-size: .9rem;
}

/* Tableau cookies */
.cookies-table {
  overflow-x: auto;
  margin: var(--space-sm) 0;
}

.cookies-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.cookies-table th,
.cookies-table td {
  padding: .7rem .9rem;
  border: 1px solid var(--gray-200);
  text-align: left;
}

.cookies-table th {
  background: var(--gray-100);
  font-weight: 700;
  color: var(--navy);
  font-size: .85rem;
}

.cookies-table td {
  color: var(--gray-700);
}

/* ===========================================
   BANDEAU COOKIES
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: var(--space-sm);
  left: var(--space-sm);
  right: var(--space-sm);
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: stretch;
}

@media (min-width: 700px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-btn {
  padding: .55rem 1rem;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  transition: all .2s;
  white-space: nowrap;
}

.cookie-banner-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.cookie-banner-btn.accept {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.cookie-banner-btn.accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===========================================
   IMAGES DE FOND POUR HEROS (mai 2026)
   Stratégie : on AJOUTE une image par-dessus
   les dégradés existants sans rien toucher.
   Le navigateur fusionne naturellement.
   =========================================== */

/* Image mobile (≤768px) */
.hero-accueil { background: linear-gradient(105deg, rgba(13,42,79,.78) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.45) 70%, rgba(198,40,40,.4) 100%), url("/assets/images/bandeaux/bandeau-accueil-mobile.webp") center/cover; }
.hero-nettoyage { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-nettoyage-vue-ensemble-mobile.webp") center/cover; }
.hero-panneaux { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-panneaux-solaires-mobile.webp") center/cover; }
.hero-toiture { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-toiture-gouttieres-mobile.webp") center/cover; }
.hero-terrasses { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-terrasses-exterieurs-mobile.webp") center/cover; }
.hero-anti-nuisibles { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-anti-nuisibles-mobile.webp") center/cover; }
.hero-frelons { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-frelons-mobile.webp") center/cover; }
.hero-guepes { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-guepes-mobile.webp") center/cover; }
.hero-cafards { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-cafards-mobile.webp") center/cover; }
.hero-punaises { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-punaises-de-lit-mobile.webp") center/cover; }
.hero-rats { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-rats-souris-mobile.webp") center/cover; }
.hero-moustiques { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-moustiques-mobile.webp") center/cover; }
.hero-realisations { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-realisations-mobile.webp") center/cover; }
.hero-contact { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-contact-mobile.webp") center/cover; }
.hero-faq { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-faq-mobile.webp") center/cover; }
.hero-reseaux { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-reseaux-mobile.webp") center/cover; }

/* Image tablette (≥769px) */
@media (min-width: 769px) {
  .hero-accueil { background: linear-gradient(105deg, rgba(13,42,79,.78) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.45) 70%, rgba(198,40,40,.4) 100%), url("/assets/images/bandeaux/bandeau-accueil-tablet.webp") center/cover; }
  .hero-nettoyage { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-nettoyage-vue-ensemble-tablet.webp") center/cover; }
  .hero-panneaux { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-panneaux-solaires-tablet.webp") center/cover; }
  .hero-toiture { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-toiture-gouttieres-tablet.webp") center/cover; }
  .hero-terrasses { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-terrasses-exterieurs-tablet.webp") center/cover; }
  .hero-anti-nuisibles { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-anti-nuisibles-tablet.webp") center/cover; }
  .hero-frelons { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-frelons-tablet.webp") center/cover; }
  .hero-guepes { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-guepes-tablet.webp") center/cover; }
  .hero-cafards { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-cafards-tablet.webp") center/cover; }
  .hero-punaises { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-punaises-de-lit-tablet.webp") center/cover; }
  .hero-rats { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-rats-souris-tablet.webp") center/cover; }
  .hero-moustiques { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-moustiques-tablet.webp") center/cover; }
  .hero-realisations { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-realisations-tablet.webp") center/cover; }
  .hero-contact { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-contact-tablet.webp") center/cover; }
  .hero-faq { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-faq-tablet.webp") center/cover; }
  .hero-reseaux { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-reseaux-tablet.webp") center/cover; }
}

/* Image desktop (≥1200px) */
@media (min-width: 1200px) {
  .hero-accueil { background: linear-gradient(105deg, rgba(13,42,79,.78) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.45) 70%, rgba(198,40,40,.4) 100%), url("/assets/images/bandeaux/bandeau-accueil.webp") center/cover; }
  .hero-nettoyage { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-nettoyage-vue-ensemble.webp") center/cover; }
  .hero-panneaux { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-panneaux-solaires.webp") center/cover; }
  .hero-toiture { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-toiture-gouttieres.webp") center/cover; }
  .hero-terrasses { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-terrasses-exterieurs.webp") center/cover; }
  .hero-anti-nuisibles { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-anti-nuisibles.webp") center/cover; }
  .hero-frelons { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-frelons.webp") center/cover; }
  .hero-guepes { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-guepes.webp") center/cover; }
  .hero-cafards { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-cafards.webp") center/cover; }
  .hero-punaises { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-punaises-de-lit.webp") center/cover; }
  .hero-rats { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-rats-souris.webp") center/cover; }
  .hero-moustiques { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-moustiques.webp") center/cover; }
  .hero-realisations { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-realisations.webp") center/cover; }
  .hero-contact { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-contact.webp") center/cover; }
  .hero-faq { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-faq.webp") center/cover; }
  .hero-reseaux { background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-reseaux.webp") center/cover; }
}

/* Mobile spécifique cafards (cafard mieux centré) */
@media (max-width: 768px) {
  .hero-cafards { background-position: center 60%; }
}


/* ===========================================
   IMAGES SUR LES CARTES (mai 2026)
   Stratégie : multi-background avec voile + image
   On ne touche PAS aux ::after qui contiennent les tampons
   =========================================== */

/* Voile bleu pour les cartes Nettoyage */
.service-card-header.bg-blue.carte-net-vue {
  background: linear-gradient(165deg, rgba(10,22,40,.55) 0%, rgba(13,42,79,.55) 40%, rgba(21,101,192,.55) 100%),
              url("/assets/images/bandeaux/bandeau-nettoyage-vue-ensemble-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-blue.carte-panneaux {
  background: linear-gradient(165deg, rgba(10,22,40,.55) 0%, rgba(13,42,79,.55) 40%, rgba(21,101,192,.55) 100%),
              url("/assets/images/bandeaux/bandeau-panneaux-solaires-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-blue.carte-toiture {
  background: linear-gradient(165deg, rgba(10,22,40,.55) 0%, rgba(13,42,79,.55) 40%, rgba(21,101,192,.55) 100%),
              url("/assets/images/bandeaux/bandeau-toiture-gouttieres-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-blue.carte-terrasses {
  background: linear-gradient(165deg, rgba(10,22,40,.55) 0%, rgba(13,42,79,.55) 40%, rgba(21,101,192,.55) 100%),
              url("/assets/images/bandeaux/bandeau-terrasses-exterieurs-tablet.webp") center/cover no-repeat !important;
}

/* Voile rouge pour les cartes Anti-Nuisibles */
.service-card-header.bg-red.carte-anti-vue {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-anti-nuisibles-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-red.carte-frelons {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-frelons-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-red.carte-guepes {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-guepes-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-red.carte-punaises {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-punaises-de-lit-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-red.carte-rats {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-rats-souris-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-red.carte-cafards {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-cafards-tablet.webp") center/cover no-repeat !important;
}
.service-card-header.bg-red.carte-moustiques {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-moustiques-tablet.webp") center/cover no-repeat !important;
}

/* Pour les cartes nuisible-card-header (page Anti-Nuisibles) */
.nuisible-card-header.bg-red.carte-frelons {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-frelons-tablet.webp") center/cover no-repeat !important;
}
.nuisible-card-header.bg-red.carte-guepes {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-guepes-tablet.webp") center/cover no-repeat !important;
}
.nuisible-card-header.bg-red.carte-punaises {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-punaises-de-lit-tablet.webp") center/cover no-repeat !important;
}
.nuisible-card-header.bg-red.carte-rats {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-rats-souris-tablet.webp") center/cover no-repeat !important;
}
.nuisible-card-header.bg-red.carte-cafards {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-cafards-tablet.webp") center/cover no-repeat !important;
}
.nuisible-card-header.bg-red.carte-moustiques {
  background: linear-gradient(165deg, rgba(26,26,46,.55) 0%, rgba(106,26,26,.55) 40%, rgba(198,40,40,.55) 100%),
              url("/assets/images/bandeaux/bandeau-moustiques-tablet.webp") center/cover no-repeat !important;
}



/* ===========================================
   BANDEAU HERO PAGE BLOG (mai 2026)
   Carte de Gironde + carnet : SEO local
   =========================================== */
.hero-blog {
  background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-blog-mobile.webp") center/cover;
}
@media (min-width: 769px) {
  .hero-blog {
    background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-blog-tablet.webp") center/cover;
  }
}
@media (min-width: 1200px) {
  .hero-blog {
    background: linear-gradient(105deg, rgba(13,42,79,.72) 0%, rgba(13,42,79,.55) 35%, rgba(106,26,26,.4) 65%, rgba(198,40,40,.35) 100%), url("/assets/images/bandeaux/bandeau-blog.webp") center/cover;
  }
}

/* ===========================================
   IMAGES SUR BANDEAUX ARTICLES BLOG (mai 2026)
   Réutilise les images des bandeaux principaux
   pour personnaliser chaque article
   =========================================== */

/* === ARTICLES ANTI-NUISIBLES : voile rouge + image spécifique === */
.article-hero.article-bandeau-frelons {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-frelons-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-guepes {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-guepes-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-cafards {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-cafards-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-punaises-de-lit {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-punaises-de-lit-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-rats-souris {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-rats-souris-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-moustiques {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-moustiques-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-anti-nuisibles {
  background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%),
              url("/assets/images/bandeaux/bandeau-anti-nuisibles-mobile.webp") center/cover no-repeat !important;
}

/* === ARTICLES NETTOYAGE : voile bleu + image spécifique === */
.article-hero.article-bandeau-panneaux-solaires {
  background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%),
              url("/assets/images/bandeaux/bandeau-panneaux-solaires-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-toiture-gouttieres {
  background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%),
              url("/assets/images/bandeaux/bandeau-toiture-gouttieres-mobile.webp") center/cover no-repeat !important;
}
.article-hero.article-bandeau-terrasses-exterieurs {
  background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%),
              url("/assets/images/bandeaux/bandeau-terrasses-exterieurs-mobile.webp") center/cover no-repeat !important;
}

/* === Versions tablette (≥769px) === */
@media (min-width: 769px) {
  .article-hero.article-bandeau-frelons { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-frelons-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-guepes { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-guepes-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-cafards { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-cafards-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-punaises-de-lit { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-punaises-de-lit-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-rats-souris { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-rats-souris-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-moustiques { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-moustiques-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-anti-nuisibles { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-anti-nuisibles-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-panneaux-solaires { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-panneaux-solaires-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-toiture-gouttieres { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-toiture-gouttieres-tablet.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-terrasses-exterieurs { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-terrasses-exterieurs-tablet.webp") center/cover no-repeat !important; }
}

/* === Versions desktop (≥1200px) === */
@media (min-width: 1200px) {
  .article-hero.article-bandeau-frelons { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-frelons.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-guepes { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-guepes.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-cafards { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-cafards.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-punaises-de-lit { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-punaises-de-lit.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-rats-souris { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-rats-souris.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-moustiques { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-moustiques.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-anti-nuisibles { background: linear-gradient(105deg, rgba(13,13,24,.88) 0%, rgba(90,24,24,.72) 35%, rgba(198,40,40,.4) 70%, rgba(198,40,40,.2) 100%), url("/assets/images/bandeaux/bandeau-anti-nuisibles.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-panneaux-solaires { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-panneaux-solaires.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-toiture-gouttieres { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-toiture-gouttieres.webp") center/cover no-repeat !important; }
  .article-hero.article-bandeau-terrasses-exterieurs { background: linear-gradient(105deg, rgba(8,28,56,.85) 0%, rgba(13,42,79,.7) 30%, rgba(21,101,192,.4) 65%, rgba(21,101,192,.25) 100%), url("/assets/images/bandeaux/bandeau-terrasses-exterieurs.webp") center/cover no-repeat !important; }
}
