/* ============================================================
   SOS DÉPANNAGE OUEST — STYLE B (DYNAMIQUE & MODERNE)
   ============================================================ */

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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #fbbf24;
  --whatsapp: #22c55e;
  --whatsapp-dark: #16a34a;
  --dark: #0f172a;
  --darker: #020617;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: rgba(0,0,0,0.06);
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  --gradient-3: linear-gradient(135deg, #fbbf24 0%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, #f5f3ff 0%, #fce7f3 100%);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 40px -15px rgba(0,0,0,0.12);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.18);
  --shadow-glow: 0 20px 40px -15px rgba(99,102,241,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--secondary); }

p { margin-bottom: 1em; }

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.4em; }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TOP BAR ===== */
.urgent-bar {
  background: var(--gradient-1);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 102;
}
.urgent-bar strong { color: var(--accent); }
.urgent-bar a { color: white; text-decoration: underline; }
.urgent-bar .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border);
}
nav.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.logo .logo-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo .dot { color: var(--secondary); }

.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center; padding: 0; margin: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--gradient-1);
  color: white !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(99,102,241,0.6);
}

.menu-mobile {
  display: none;
  background: none; border: none;
  cursor: pointer; font-size: 26px;
  color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; border: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-1); color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px -15px rgba(99,102,241,0.7);
}
.btn-whatsapp {
  background: var(--whatsapp); color: white;
  box-shadow: 0 20px 40px -15px rgba(34,197,94,0.5);
}
.btn-whatsapp:hover {
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px -15px rgba(34,197,94,0.7);
}
.btn-glass {
  background: rgba(255,255,255,0.1); color: white;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-glass:hover {
  color: white;
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.btn-secondary {
  background: white; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary); color: white;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: var(--gradient-1);
  border-radius: 50%;
  filter: blur(120px); opacity: 0.3;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: var(--gradient-2);
  border-radius: 50%;
  filter: blur(120px); opacity: 0.25;
  animation: float 25s ease-in-out infinite reverse;
  z-index: 0;
}
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(50px, 30px); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; text-align: center;
  margin: 0 auto;
}
.badge-new {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 32px;
  border: 1px solid rgba(99,102,241,0.2);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero p.subtitle {
  font-size: 19px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
}
.hero-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px; margin: 0 auto;
}
.stat-card {
  background: white;
  padding: 24px 16px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-5px); }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px; font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* ===== SECTION TITLE COMMUN ===== */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99,102,241,0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px; color: var(--gray);
  max-width: 700px; margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: white;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before { background: var(--gradient-2); }
.service-card:nth-child(3)::before,
.service-card:nth-child(6)::before { background: var(--gradient-3); }
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  background: var(--gradient-1);
  color: white; font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px -10px rgba(99,102,241,0.5);
}
.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
  background: var(--gradient-2);
  box-shadow: 0 10px 30px -10px rgba(6,182,212,0.5);
}
.service-card:nth-child(3) .service-icon,
.service-card:nth-child(6) .service-icon {
  background: var(--gradient-3);
  box-shadow: 0 10px 30px -10px rgba(251,191,36,0.5);
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.service-link::after {
  content: '→'; transition: transform 0.2s;
}
.service-link:hover::after { transform: translateX(4px); }

/* ===== AVANTAGES ===== */
.features {
  background: linear-gradient(180deg, #fafafa 0%, white 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item { text-align: center; }
.feature-icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  background: white;
  box-shadow: 0 15px 40px -15px rgba(0,0,0,0.15);
  position: relative;
  transition: all 0.3s;
}
.feature-item:hover .feature-icon-wrap {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -15px rgba(99,102,241,0.4);
}
.feature-item h3 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { color: var(--gray); font-size: 14px; }

/* ===== ZONES ===== */
.zones { background: white; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.zone-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  transition: all 0.3s;
}
.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.zone-card h3 {
  font-size: 18px; margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.zone-card .dept {
  display: inline-block;
  background: var(--gradient-1);
  color: white;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.zone-card ul { list-style: none; padding: 0; }
.zone-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.zone-card ul li:last-child { border-bottom: none; }
.zone-card ul li a {
  color: var(--gray);
  text-decoration: none;
  display: block;
}
.zone-card ul li a:hover { color: var(--primary); }

/* ===== CTA SECTION ===== */
.cta-section, .cta-final {
  padding: 100px 0;
  background: var(--dark);
  color: white;
  position: relative; overflow: hidden;
}
.cta-section::before, .cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: var(--gradient-1);
  border-radius: 50%;
  filter: blur(150px); opacity: 0.4;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 {
  color: white;
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 19px; opacity: 0.85;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq-list {
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray);
  font-size: 15px;
}
.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 400px;
}

/* ===== PAGE INTERIEURE (services / villes) ===== */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--gradient-1);
  border-radius: 50%;
  filter: blur(100px); opacity: 0.4;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  color: white;
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 19px; opacity: 0.95;
  margin-bottom: 28px;
  max-width: 700px;
}
.page-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.contenu-page {
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  padding: 80px 0;
  counter-reset: section;
}
.contenu-page .container {
  max-width: 880px;
}

/* ===== H2 = BANNIÈRE COLORÉE NUMÉROTÉE (chaque section bien marquée) ===== */
.contenu-page h2 {
  counter-increment: section;
  font-size: 26px;
  line-height: 1.3;
  margin: 80px 0 28px;
  padding: 22px 28px 22px 24px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 40px -18px rgba(99,102,241,0.55);
  position: relative;
}
.contenu-page h2:first-child { margin-top: 0; }
.contenu-page h2::before {
  content: counter(section, decimal-leading-zero);
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 50px; height: 50px;
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* Variation des couleurs : alternance pour briser la monotonie */
.contenu-page h2:nth-of-type(3n+2) {
  background: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  box-shadow: 0 18px 40px -18px rgba(6,182,212,0.5);
}
.contenu-page h2:nth-of-type(3n+3) {
  background: linear-gradient(135deg, #fbbf24 0%, #ec4899 100%);
  box-shadow: 0 18px 40px -18px rgba(251,191,36,0.5);
}

/* Ligne décorative entre les sections */
.contenu-page h2:not(:first-child)::after {
  content: '';
  position: absolute;
  top: -42px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 30px;
  background: rgba(99,102,241,0.25);
  border-radius: 4px;
}

/* ===== H3 = SOUS-TITRE EN ENCADRÉ DÉCALÉ ===== */
.contenu-page h3 {
  font-size: 19px;
  color: var(--primary);
  margin: 36px 0 14px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(236,72,153,0.04) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ===== PREMIER PARAGRAPHE APRÈS H2 = MIS EN VALEUR ===== */
.contenu-page h2 + p {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  padding: 18px 22px;
  background: white;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== PARAGRAPHES STANDARD ===== */
.contenu-page p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* ===== LISTES = CARTES PROPRES ===== */
.contenu-page ul, .contenu-page ol {
  background: white;
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 16px;
  padding: 22px 28px 22px 28px;
  margin: 18px 0 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  list-style: none;
}
.contenu-page ul li, .contenu-page ol li {
  padding: 8px 0 8px 28px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--dark);
  position: relative;
  border-bottom: 1px dashed rgba(99,102,241,0.12);
}
.contenu-page ul li:last-child,
.contenu-page ol li:last-child { border-bottom: none; }

.contenu-page ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.contenu-page ol {
  counter-reset: list-counter;
}
.contenu-page ol li {
  counter-increment: list-counter;
}
.contenu-page ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0; top: 6px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.contenu-page strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* ===== LIENS DANS LE CONTENU ===== */
.contenu-page a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid rgba(99,102,241,0.25);
  text-decoration: none;
  transition: all 0.2s;
}
.contenu-page a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* Responsive : ajustement des tailles sur mobile */
@media (max-width: 700px) {
  .contenu-page h2 {
    font-size: 20px;
    padding: 18px 20px;
    gap: 12px;
    margin: 48px 0 20px;
  }
  .contenu-page h2::before {
    min-width: 38px; height: 38px;
    font-size: 14px;
  }
  .contenu-page h3 {
    font-size: 17px;
    padding: 12px 16px;
  }
  .contenu-page ul, .contenu-page ol {
    padding: 18px 22px;
  }
}

/* ===== ENCADRÉS = "BREAKS" VISUELS DANS LA LECTURE ===== */
.encadre-urgence {
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f5 100%);
  border: 2px solid #fca5a5;
  border-left: 6px solid #ef4444;
  border-radius: 18px;
  padding: 24px 28px;
  margin: 36px 0;
  box-shadow: 0 10px 30px -10px rgba(239,68,68,0.25);
}
.encadre-urgence p { margin-bottom: 0; font-size: 15.5px; line-height: 1.7; color: #7f1d1d; }
.encadre-urgence strong { color: #991b1b; }

.encadre-info {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  border: 2px solid #c7d2fe;
  border-left: 6px solid var(--primary);
  border-radius: 18px;
  padding: 24px 28px;
  margin: 36px 0;
  box-shadow: 0 10px 30px -10px rgba(99,102,241,0.2);
}
.encadre-info p { margin-bottom: 0; font-size: 15.5px; line-height: 1.7; color: #312e81; }
.encadre-info strong { color: #4338ca; }

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
}
.footer-grid h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 15px;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-grid a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-grid a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99;
  width: 64px; height: 64px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 10px 40px -10px rgba(34,197,94,0.7);
  animation: bounce 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  color: white;
  background: var(--whatsapp-dark);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gradient-soft);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Space Grotesk', serif;
  font-size: 100px;
  position: absolute;
  top: -10px; right: 20px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px; color: var(--dark);
  margin-bottom: 16px; line-height: 1.7;
}
.testimonial-author {
  font-weight: 600; font-size: 14px;
  color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .services-grid, .features-grid, .zones-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  section { padding: 60px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .menu-mobile { display: block; }
  .services-grid, .features-grid, .zones-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 36px; }
  .page-hero { padding: 60px 0 40px; }
  .contenu-page { padding: 50px 0; }
  .contenu-page h2 { font-size: 24px; }
}

/* ============================================================
   ILLUSTRATIONS / IMAGES (ajouts)
   ============================================================ */

/* ===== HERO avec illustration à droite ===== */
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid .hero-content {
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.hero-grid .hero-buttons { justify-content: flex-start; }
.hero-grid .hero-stats {
  margin: 0; max-width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
.hero-illustration {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-illustration img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px -15px rgba(15,23,42,0.45);
}

/* ===== SERVICE CARDS avec illustration ===== */
.service-card-image {
  position: relative;
  margin: -32px -32px 24px;
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.04);
}
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 75%, rgba(255,255,255,0.6));
  pointer-events: none;
}
/* Quand il y a une image, l'icône emoji devient un badge superposé */
.service-card-image + .service-icon {
  margin-top: -56px;
  position: relative;
  z-index: 2;
  border: 4px solid white;
  width: 72px; height: 72px;
}

/* ===== BANDEAU ÉQUIPE / CONFIANCE ===== */
.team-banner {
  background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.team-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.team-banner-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
}
.team-banner-text p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 24px;
}
.team-banner-illustration img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -15px rgba(15,23,42,0.35);
}
.team-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.team-features li {
  list-style: none;
  padding: 10px 14px;
  background: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== ILLUSTRATION SUR PAGES SERVICES ===== */
.page-hero {
  /* override pour permettre la grille */
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.page-hero-grid .page-hero-content { max-width: 100%; }
.page-hero-illustration {
  display: flex;
  justify-content: center;
}
.page-hero-illustration img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.45);
}

/* ===== RESPONSIVE pour les nouvelles sections ===== */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-grid .hero-content { text-align: center; }
  .hero-grid .hero-buttons { justify-content: center; }
  .hero-illustration { order: -1; }
  .hero-illustration img { max-width: 320px; }
  .team-banner-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-illustration { display: none; }
}
@media (max-width: 700px) {
  .service-card-image { height: 130px; margin: -24px -24px 20px; }
  .service-card { padding: 24px; }
  .service-card-image + .service-icon { margin-top: -42px; width: 60px; height: 60px; }
  .team-features { grid-template-columns: 1fr; }
  .hero-grid .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

