/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFD600;
  --yellow-dark: #F0C800;
  --navy: #1a2d5a;
  --navy-dark: #0f1e3d;
  --navy-light: #243670;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text: #2c2c2c;
  --text-light: #555;
  --font: 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}
html { scroll-behavior: smooth; }
section, .features-bar { scroll-margin-top: 88px; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== HEADER ===== */
header {
  background: var(--yellow);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 88px;
}
.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.header-tagline {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
nav a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
nav a:hover { background: rgba(0,0,0,0.08); }
.nav-services { position: relative; }
.nav-services > a::after { content: ' ▾'; font-size: 10px; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  overflow: hidden;
  z-index: 100;
}
.nav-services:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid #f0f0f0;
}
.dropdown a:hover { background: var(--yellow); color: var(--navy); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== HERO (index) ===== */
#accueil {
  background: url('images/hero.jpg') center right/cover no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#accueil::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 30%, rgba(255,255,255,0.6) 55%, rgba(255,255,255,0) 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 40px 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.hero-text { max-width: 520px; }
.hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero-content h1 span {
  color: var(--yellow-dark);
  display: block;
}
.hero-underline {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 16px 0 20px;
  border-radius: 2px;
}
.hero-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 20px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-whatsapp {
  display: flex; align-items: center; gap: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.btn-whatsapp:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-phone {
  display: flex; align-items: center; gap: 10px;
  background: white;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: all 0.2s;
}
.btn-phone:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.hero-whatsapp-hint {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-light);
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: white;
  box-shadow: var(--shadow);
  padding: 18px 40px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 0;
}
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-text strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.feature-text span { font-size: 12px; color: var(--text-light); }

/* ===== SECTION BASE ===== */
section { padding: 50px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 30px; }
.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header h2 span { color: var(--yellow-dark); }
.section-divider {
  width: 60px; height: 3px;
  background: var(--yellow);
  margin: 14px auto 16px;
  border-radius: 2px;
}
.section-header p {
  font-size: 16px; color: var(--text-light);
  max-width: 700px; margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES (index) ===== */
#services {
  background: url('images/bg-services.jpg') center/cover no-repeat;
  position: relative;
}
#services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 0;
}
#services .section-inner { position: relative; z-index: 1; }
#services .section-header h2 { color: var(--navy); }
#services .section-header p { color: var(--navy); opacity: 0.8; }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.service-card { flex: 0 0 calc(20% - 12px); min-width: 160px; }
.service-card {
  background: rgba(10, 20, 60, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}
.service-card:hover {
  background: rgba(10, 20, 60, 0.35);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.service-icon { margin-bottom: 8px; }
.service-icon img { width: 48px; height: 48px; object-fit: contain; mix-blend-mode: screen; }
.service-card h3 {
  font-size: 15px; font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ===== POURQUOI (index) ===== */
#pourquoi { background: var(--light-gray); }
.pourquoi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.engagements h3, .process h3 {
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
}
.col-divider {
  width: 50px; height: 3px;
  background: var(--yellow);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.engagement-item {
  display: flex; align-items: center; gap: 16px;
  background: white;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.engagement-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-size: 22px;
}
.engagement-item strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.engagement-item span { font-size: 13px; color: var(--text-light); }
.engagement-footer {
  background: var(--navy);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  color: white; font-size: 13px; font-weight: 600;
}
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900; font-size: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-line {
  width: 2px; flex: 1; min-height: 30px;
  background: #ddd;
  margin: 4px 0;
}
.step-icon { width: 44px; height: 44px; margin-right: 4px; object-fit: contain; }
.step-right strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.step-right p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== ZONE (index) ===== */
#zone {
  background: url('images/carte-zone.jpg') center/cover no-repeat;
  min-height: calc(100vh - 88px);
  padding: 30px 40px 90px;
  position: relative;
}
#zone .section-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#zone .section-header { margin-bottom: 0; padding-top: 60px; }
.zone-middle {
  position: absolute;
  top: 58%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}
#zone::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.zone-cities-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 10px;
  justify-content: center;
  width: 100%;
}
.city-tag {
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  font-size: 12px; font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(26,45,90,0.2);
  backdrop-filter: blur(4px);
}
.zone-cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}
.zone-card { flex: 0 0 220px; }
.zone-card {
  background: rgba(26,45,90,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
}
.zone-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.zone-card-icon img { width: 34px; height: 34px; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.2); }
.zone-card-text { text-align: left; }
.zone-card strong { display: block; font-size: 13px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 3px; }
.zone-card span { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.4; }
.zone-cta-bar {
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 75%;
  background: rgba(255,214,0,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.zone-cta-bar p { font-size: 15px; font-weight: 700; color: var(--navy); }
.zone-cta-bar a {
  background: var(--navy); color: white;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
}

/* ===== À PROPOS (index) ===== */
#apropos { background: white; }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.apropos-portrait {
  display: flex; justify-content: center; align-items: flex-start;
}
.apropos-content h2 {
  font-size: 32px; font-weight: 900;
  color: var(--navy); text-transform: uppercase; letter-spacing: 1px;
}
.apropos-divider { width: 50px; height: 3px; background: var(--yellow); margin: 14px 0 20px; border-radius: 2px; }
.apropos-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.apropos-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.apropos-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-light);
}
.apropos-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px;
}

/* ===== TÉMOIGNAGES (index) ===== */
#temoignages {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
#temoignages::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,214,0,0.06) 0%, transparent 70%);
}
#temoignages .section-header h2 { color: white; position: relative; z-index: 1; }
#temoignages .section-divider { position: relative; z-index: 1; }
.temoignages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative; z-index: 1;
}
.temoignage-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px;
}
.stars { color: var(--yellow); font-size: 22px; margin-bottom: 16px; letter-spacing: 2px; }
.temoignage-card blockquote {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 20px;
  font-style: italic;
}
.temoignage-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--navy); font-size: 16px;
}
.author-name { font-weight: 700; color: white; font-size: 14px; }
.author-city { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }

/* ===== CONTACT / FOOTER ===== */
#contact {
  background: var(--navy);
  padding: 50px 40px 30px;
}
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 50px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-col-title {
  font-size: 12px; font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,214,0,0.15);
  border: 1px solid rgba(255,214,0,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-text strong { display: block; color: white; font-size: 15px; font-weight: 700; }
.contact-info-text span { font-size: 12px; color: rgba(255,255,255,0.6); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--yellow); }
.contact-form textarea { height: 90px; resize: vertical; }
.btn-submit {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700; font-size: 14px;
  padding: 14px;
  border: none; border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
/* Ligne nom / adresse / téléphone : signal local lu par Google, donc lisible et sur toute la largeur */
.footer-bottom .footer-nap {
  flex: 1 1 100%;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 4px;
}
.footer-bottom .footer-nap strong { color: var(--yellow); font-weight: 700; }
.footer-bottom .footer-nap a { text-decoration: none; }
.footer-bottom .footer-nap a:hover { text-decoration: underline; }
.footer-badges { display: flex; gap: 12px; }
.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 5px;
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--yellow);
  padding: 12px 20px;
  z-index: 999;
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700; font-size: 14px;
}
.sticky-cta .s-phone { background: var(--navy); color: white; }
.sticky-cta .s-wa { background: #25D366; color: white; }

/* ===================================================
   SERVICE PAGES
   =================================================== */

/* ===== TABLEAU COMPARATIF (conformité) ===== */
.comparison-section { background: white; padding: 50px 40px; }
.comparison-inner { max-width: 1200px; margin: 0 auto; }
.comparison-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--navy); margin-bottom: 30px; line-height: 1.2;
}
.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.comparison-table-wrap { overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td {
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.comp-table th:first-child, .comp-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
  width: 55%;
}
.comp-table th { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.comp-col-securite { background: rgba(255,214,0,0.12); color: var(--navy); text-align: center; }
.comp-col-conformite { background: rgba(26,45,90,0.06); color: var(--navy); text-align: center; }
.comp-header-securite {
  background: var(--yellow); color: var(--navy);
  border-radius: 10px 10px 0 0; padding: 14px;
  text-align: center;
}
.comp-header-conformite {
  background: var(--navy); color: white;
  border-radius: 10px 10px 0 0; padding: 14px;
  text-align: center;
}
.comp-header-securite h4, .comp-header-conformite h4 {
  font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.comp-header-securite span { font-size: 11px; opacity: 0.75; display: block; }
.comp-header-conformite span { font-size: 11px; opacity: 0.75; display: block; color: var(--yellow); }
.comp-header-securite .comp-tagline { font-size: 12px; font-weight: 700; margin-top: 6px; color: var(--navy); }
.comp-header-conformite .comp-tagline { font-size: 12px; font-weight: 700; margin-top: 6px; color: var(--yellow); }
.badge-inclus {
  display: inline-block; background: var(--navy); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-inclus.yellow { background: var(--yellow); color: var(--navy); }
.badge-non {
  display: inline-block; background: #e8e8e8; color: #999;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-partiel {
  display: inline-block; background: rgba(26,45,90,0.15); color: var(--navy);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.comp-section-label td {
  background: var(--light-gray);
  font-size: 11px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 8px 14px;
}
.comp-sidebar { display: flex; flex-direction: column; gap: 16px; }
.comp-sidebar-card {
  border: 1.5px solid #e8e8e8;
  border-radius: 12px; padding: 18px 16px;
}
.comp-sidebar-card h4 {
  font-size: 13px; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; text-align: center;
}
.comp-sidebar-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: 12.5px; color: var(--text-light); line-height: 1.5;
}
.comp-sidebar-item span.icon { font-size: 18px; flex-shrink: 0; }
.comp-choice { margin-top: 8px; }
.comp-choice-item { margin-bottom: 12px; }
.comp-choice-item strong { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--navy); margin-bottom: 4px; }
.comp-choice-item p { font-size: 12px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 900px) {
  .comparison-layout { grid-template-columns: 1fr; }
  .comparison-section { padding: 40px 20px; }
}

/* ===== HERO SOMBRE (diagnostic) ===== */
.service-hero-dark::after {
  background: linear-gradient(to right, rgba(0,0,0,0.88) 25%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.1) 80%) !important;
}
.service-hero-dark .hero-content h1 { color: white; }
.service-hero-dark .hero-content h1 span { color: var(--yellow); }
.service-hero-dark .hero-content p { color: rgba(255,255,255,0.85); }
.service-hero-dark .hero-underline { background: var(--yellow); }
.service-hero-dark .breadcrumb { color: rgba(255,255,255,0.6); }
.service-hero-dark .breadcrumb a { color: rgba(255,255,255,0.85); }
.service-hero-dark .hero-whatsapp-hint { color: rgba(255,255,255,0.7); }
.service-hero-dark .btn-phone { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: white; }
.service-hero-dark .btn-phone:hover { background: white; color: var(--navy); }

/* ===== 3 CARTES DIAGNOSTIC ===== */
.diagnostic-section { background: var(--light-gray); padding: 50px 40px; }
.diagnostic-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.diagnostic-text h2 { font-size: clamp(24px,3vw,32px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 6px; }
.diagnostic-text .page-divider { width: 50px; height: 3px; background: var(--yellow); margin: 14px 0 20px; border-radius: 2px; }
.diagnostic-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.diagnostic-text .bold-conclusion { font-weight: 700; color: var(--navy); font-size: 15px; }
.diag-cards-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.diag-card {
  background: white;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex; flex-direction: column;
}
.diag-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.diag-card-icon {
  width: 52px; height: 52px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.diag-card.featured .diag-card-icon { background: #fff; }
.diag-card-icon img { width: 34px; height: 34px; object-fit: contain; }
.diag-card h3 { font-size: 13px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; line-height: 1.3; }
.diag-card.featured h3 { color: var(--yellow); }
.diag-card .diag-subtitle { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.diag-card.featured .diag-subtitle { color: rgba(255,255,255,0.9); }
.diag-card .diag-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.diag-card.featured .diag-desc { color: rgba(255,255,255,0.7); }
.diag-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 18px; }
.diag-checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-light); line-height: 1.5; }
.diag-checklist li::before { content: '✓'; width: 18px; height: 18px; background: var(--yellow); color: var(--navy); font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; margin-top: 1px; }
.diag-card.featured .diag-checklist li { color: rgba(255,255,255,0.8); }
.diag-price-block { border-top: 1px solid #eee; padding-top: 14px; text-align: center; }
.diag-card.featured .diag-price-block { border-top-color: rgba(255,255,255,0.2); }
.diag-price-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 4px; }
.diag-card.featured .diag-price-label { color: rgba(255,255,255,0.6); }
.diag-price-value { font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.diag-card.featured .diag-price-value { color: var(--yellow); font-size: 26px; }
.diag-price-note { font-size: 11px; color: var(--text-light); font-style: italic; margin-top: 4px; }
.diag-card.featured .diag-price-note { color: rgba(255,255,255,0.5); }

/* ===== SECTION RAPPORT (diagnostic) ===== */
.rapport-section { background: white; padding: 50px 40px; }
.rapport-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr 0.7fr; gap: 24px; align-items: start; }
.rapport-why { background: white; border: 1.5px solid #e8e8e8; border-radius: 14px; padding: 24px 20px; }
.rapport-why h3 { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.rapport-why .bold-intro { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.5; }
.rapport-example { background: white; border: 1.5px solid #e8e8e8; border-radius: 14px; padding: 24px 20px; }
.rapport-example h3 { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid #eee; text-transform: uppercase; letter-spacing: 0.5px; }
.rapport-img-placeholder { background: var(--light-gray); border-radius: 8px; padding: 20px; text-align: center; color: var(--text-light); font-size: 13px; min-height: 200px; display: flex; align-items: center; justify-content: center; }
.rapport-img-placeholder img { width: 100%; border-radius: 8px; }

/* ===== RAPPORT DOC PREVIEW ===== */
.rapport-doc-preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dde3f0;
  box-shadow: 0 4px 20px rgba(26,45,90,0.10);
  font-size: 12px;
}
.rdp-header {
  background: var(--navy);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rdp-logo-sub { color: rgba(255,255,255,0.55); font-size: 10px; margin-top: 3px; }
.rdp-title-block { text-align: right; }
.rdp-badge {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}
.rdp-doc-type { color: rgba(255,255,255,0.75); font-size: 10px; }
.rdp-meta {
  background: #f5f7fb;
  padding: 10px 16px;
  border-bottom: 1px solid #e0e5ef;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.rdp-meta-row { display: flex; gap: 6px; align-items: baseline; }
.rdp-meta-label { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap; }
.rdp-meta-val { font-size: 11px; color: var(--navy); font-weight: 600; }
.rdp-sections { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.rdp-section-row { display: flex; align-items: flex-start; gap: 10px; background: #fafafa; border-radius: 7px; padding: 8px 10px; border: 1px solid #eef0f5; }
.rdp-section-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.rdp-section-title { font-size: 11px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.rdp-section-status { font-size: 10px; line-height: 1.4; }
.rdp-status-ok { color: #1a7a3a; }
.rdp-status-warn { color: #b06000; }
.rdp-status-error { color: #b02020; }
.rdp-footer {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rdp-footer-label { color: rgba(255,255,255,0.65); font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; }
.rdp-footer-price { color: var(--yellow); font-size: 18px; font-weight: 900; flex: 1; }
.rdp-footer-note { color: rgba(255,255,255,0.5); font-size: 9px; text-align: right; line-height: 1.4; }
.rdp-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 28px;
  font-weight: 900;
  color: rgba(26,45,90,0.07);
  letter-spacing: 4px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

@media (max-width: 900px) {
  .diagnostic-inner { grid-template-columns: 1fr; }
  .diag-cards-grid { grid-template-columns: 1fr; }
  .rapport-inner { grid-template-columns: 1fr; }
  .diagnostic-section, .rapport-section { padding: 40px 20px; }
}

/* ===== SERVICE HERO ===== */
.service-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 30%, rgba(255,255,255,0.65) 55%, rgba(255,255,255,0) 78%);
  pointer-events: none;
}
.service-hero .hero-content { padding-top: 10px; padding-bottom: 30px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { color: var(--yellow-dark); }
.breadcrumb span { opacity: 0.5; }

/* ===== POURQUOI SECTION (service pages) ===== */
.page-pourquoi { background: white; }
.page-pourquoi .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pourquoi-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.pourquoi-text .page-divider {
  width: 50px; height: 3px;
  background: var(--yellow);
  margin: 14px 0 20px;
  border-radius: 2px;
}
.pourquoi-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.pourquoi-text .bold-conclusion { font-weight: 700; color: var(--navy); font-size: 15px; }
.reason-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.reason-card {
  background: white;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reason-card:hover { border-color: var(--yellow); box-shadow: 0 4px 16px rgba(255,214,0,0.15); }
.reason-card-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}
.reason-card h4 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; }
.reason-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== DÉROULEMENT (timeline) ===== */
.deroulement-section { background: var(--light-gray); padding: 50px 40px; }
.deroulement-inner { max-width: 1200px; margin: 0 auto; }
.deroulement-title {
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.deroulement-divider { width: 50px; height: 3px; background: var(--yellow); margin-bottom: 36px; border-radius: 2px; }
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  align-items: flex-start;
}
.tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.tl-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  border-top: 2px dashed #bbb;
  z-index: 0;
}
.tl-num {
  width: 38px; height: 38px;
  background: var(--navy);
  color: white;
  font-weight: 900; font-size: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  flex-shrink: 0;
  margin-bottom: 12px;
}
.tl-icon { font-size: 24px; margin-bottom: 8px; }
.tl-step h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; padding: 0 8px; }
.tl-step p { font-size: 12px; color: var(--text-light); line-height: 1.5; padding: 0 8px; }

/* ===== PRESTATION / EXAMPLES / BUDGET ===== */
.prestation-section { background: white; padding: 50px 40px; }
.prestation-inner { max-width: 1200px; margin: 0 auto; }
.prestation-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}
/* Variante 2 colonnes : pages sans colonne budget/QR (ex. dépannage) */
.prestation-grid.no-budget { grid-template-columns: 1fr 1.6fr; }

/* Checklist card */
.checklist-card {
  background: white;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px 20px;
}
.checklist-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 800; color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.checklist-card h3 .card-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.checklist-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text);
  line-height: 1.5;
}
.checklist-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px;
  margin-top: 2px;
}
.checklist-list li .item-content { display: flex; flex-direction: column; gap: 2px; }
.checklist-list li strong { color: var(--navy); font-weight: 700; display: block; }
.checklist-list li span { color: var(--text-light); font-size: 13px; }

/* Examples card */
.examples-card {
  background: white;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px 20px;
}
.examples-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 800; color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.examples-card h3 .card-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.examples-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.example-item {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  border: 1.5px solid #e8e8e8;
  display: flex;
  flex-direction: column;
}
.example-item-photo {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.example-item-body {
  padding: 12px 10px;
  background: white;
  flex: 1;
}
.example-item-icon { font-size: 20px; margin-bottom: 4px; display: block; }
.example-item-icon img { width: 24px; height: 24px; object-fit: contain; display: block; margin-bottom: 4px; }
.example-item h4 { font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.example-item p { font-size: 11px; color: var(--text-light); line-height: 1.4; }

/* Budget + QR cards */
.budget-qr-col { display: flex; flex-direction: column; gap: 14px; }
.budget-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 22px 20px;
  color: white;
}
.budget-card h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.budget-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.budget-price { font-size: 26px; font-weight: 900; color: var(--yellow); line-height: 1.2; margin-bottom: 10px; }
.budget-note { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.5; font-style: italic; }
.qr-card {
  background: var(--yellow);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.qr-card p { font-size: 13px; font-weight: 700; color: var(--navy); text-align: center; }
.qr-card span { font-size: 11px; color: var(--navy); opacity: 0.7; text-align: center; }
.qr-card img { width: 110px; height: 110px; border-radius: 8px; }

/* ===== SERVICE PAGE CTA ===== */
.service-cta-section { background: var(--light-gray); padding: 40px; }
.service-cta-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.service-cta-inner h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 10px; }
.service-cta-inner p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.service-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-tagline { display: none; }
  #main-nav { display: none; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0; background: var(--yellow); padding: 10px 20px 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
  #main-nav.open { display: flex; }
  #main-nav a { padding: 12px 8px; border-bottom: 1px solid rgba(0,0,0,0.08); white-space: normal; }
  .dropdown { position: static; box-shadow: none; display: none; }
  .nav-services.open .dropdown { display: block; }
  .burger { display: flex; margin-left: auto; }
  #accueil::after, .service-hero::after { background: rgba(255,255,255,0.82); }
  #accueil { min-height: auto; padding: 30px 0 40px; background-position: center center; }
  .hero-content { padding: 20px 20px 30px; }
  .hero-text { max-width: 100%; }
  .hero-content h1 { font-size: clamp(28px, 7vw, 40px); }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .pourquoi-grid, .apropos-grid, .temoignages-grid,
  .page-pourquoi .section-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  section { padding: 40px 20px; }
  header { padding: 0 20px; }
  .deroulement-section { padding: 40px 20px; }
  .prestation-section { padding: 40px 20px; }
  .service-cta-section { padding: 40px 20px; }

  /* Timeline vertical sur mobile (align-items:stretch => puces centrées sur le même axe) */
  .timeline { flex-direction: column; gap: 24px; align-items: stretch; }
  .tl-step:not(:last-child)::after { display: none; }

  /* Prestation grid -> 1 col */
  .prestation-grid { grid-template-columns: 1fr; }
  .prestation-grid.no-budget { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .reason-cards { grid-template-columns: 1fr; }

  /* Zone d'intervention : passage en flux normal sur mobile (fix débordement horizontal) */
  #zone { min-height: auto; padding: 40px 16px; }
  #zone .section-header { padding-top: 0; }
  .zone-middle { position: static; transform: none; width: 100%; }
  .zone-cards { flex-direction: column; }
  .zone-card { flex: 1 1 auto; width: 100%; }
  .zone-cta-bar { position: static; transform: none; width: 100%; margin-top: 4px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .features-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .service-cta-btns { flex-direction: column; }
  .service-hero { min-height: auto; padding: 30px 0 40px; }
  .service-hero .hero-content { padding: 20px 20px 30px; }
}

/* ===== CAUSES SECTION (dépannage) ===== */
.causes-section { background: white; padding: 50px 40px; text-align: center; }
.causes-inner { max-width: 1100px; margin: 0 auto; }
.causes-inner h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 0; }
.causes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cause-card { background: white; border: 1.5px solid #e5e8f0; border-radius: 14px; padding: 28px 16px 22px; text-align: center; transition: box-shadow 0.2s; }
.cause-card:hover { box-shadow: 0 6px 24px rgba(26,45,90,0.10); }
.cause-icon { margin-bottom: 14px; display: flex; justify-content: center; }
.cause-card h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.cause-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ===== TARIFICATION (dépannage) ===== */
.tarif-block { background: white; border: 1.5px solid #e5e8f0; border-radius: 14px; overflow: hidden; margin-bottom: 16px; }
.tarif-block h3 { font-size: 13px; font-weight: 800; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; padding: 14px 18px 0; }
.tarif-principal { background: var(--navy); color: white; padding: 16px 18px 20px; margin: 10px; border-radius: 10px; }
.tarif-label-top { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.tarif-prix { font-size: 36px; font-weight: 900; color: white; line-height: 1; margin-bottom: 4px; }
.tarif-sous { font-size: 11px; color: var(--yellow); font-weight: 700; margin-bottom: 14px; }
.tarif-inclus { list-style: none; padding: 0; margin: 0 0 12px; text-align: left; }
.tarif-inclus li { font-size: 11px; color: rgba(255,255,255,0.85); padding: 3px 0; }
.tarif-info { font-size: 10px; color: rgba(255,255,255,0.55); font-style: italic; line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 10px; }
.tarif-extras { display: flex; flex-direction: column; gap: 0; }
.tarif-extra-item { padding: 14px 18px; border-top: 1px solid #eef0f5; }
.tarif-extra-title { font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.tarif-extra-prix { font-size: 15px; font-weight: 900; color: var(--navy); margin-bottom: 2px; }
.tarif-extra-detail { font-size: 10px; color: var(--text-light); margin-bottom: 6px; }
.tarif-extra-note { font-size: 10px; color: var(--text-light); font-style: italic; line-height: 1.4; }

@media (max-width: 900px) {
  .causes-grid { grid-template-columns: repeat(2, 1fr); }
  .causes-section { padding: 40px 20px; }
}
@media (max-width: 500px) {
  .causes-grid { grid-template-columns: 1fr; }
}

/* ===== WISER BADGE (hero) ===== */
.wiser-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #3DCD58;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px; color: var(--navy);
  margin-bottom: 18px;
}
.wiser-badge strong { color: #3DCD58; }

/* ===== WISER SECTION ===== */
.wiser-section { background: #f5f7fb; padding: 50px 40px; }
.wiser-inner { max-width: 1200px; margin: 0 auto; }
.wiser-header { text-align: center; margin-bottom: 36px; }
.wiser-logo-inline {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid #3DCD58;
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; color: #3DCD58;
  margin-bottom: 14px;
}
.wiser-logo-inline em { color: var(--text-light); font-style: normal; }
.wiser-logo-inline strong { color: var(--navy); }
.wiser-header h2 { font-size: 22px; font-weight: 800; color: var(--navy); }
.wiser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wiser-card {
  background: white; border: 1.5px solid #e5e8f0;
  border-radius: 14px; padding: 24px 18px;
  text-align: center; transition: box-shadow 0.2s;
}
.wiser-card:hover { box-shadow: 0 6px 24px rgba(26,45,90,0.10); }
.wiser-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.wiser-card-featured h3 { color: white; }
.wiser-card-featured p { color: rgba(255,255,255,0.75); }
.wiser-card-icon { margin-bottom: 14px; display: flex; justify-content: center; }
.wiser-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.wiser-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.wiser-card-tag {
  display: inline-block; background: #f0f4ff;
  color: var(--navy); font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px; padding: 3px 10px; border-radius: 10px;
}

/* ===== FORFAITS ===== */
.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.forfait-card {
  background: white; border: 1.5px solid #e5e8f0;
  border-radius: 14px; padding: 28px 22px;
}
.forfait-card.forfait-featured {
  border-color: var(--navy);
  box-shadow: 0 6px 24px rgba(26,45,90,0.12);
}
.forfait-card.forfait-custom { background: #f5f7fb; }
.forfait-icon { font-size: 32px; margin-bottom: 8px; }
.forfait-label {
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 6px;
}
.forfait-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.forfait-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.forfait-list { list-style: none; padding: 0; margin: 0 0 20px; }
.forfait-list li { font-size: 12px; color: var(--text); padding: 4px 0; border-bottom: 1px solid #f0f0f0; }
.forfait-list li:last-child { border-bottom: none; }
.forfait-prix { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.forfait-prix strong { color: var(--navy); }
.forfait-note { font-size: 11px; color: var(--text-light); font-style: italic; }

@media (max-width: 900px) {
  .wiser-grid { grid-template-columns: repeat(2, 1fr); }
  .forfaits-grid { grid-template-columns: 1fr; }
  .wiser-section { padding: 40px 20px; }
}
@media (max-width: 500px) {
  .wiser-grid { grid-template-columns: 1fr; }
}

/* ===== TARIFICATION SECTION (dépannage) ===== */
.tarification-section { background: var(--navy); padding: 50px 40px; }
.tarification-inner { max-width: 1100px; margin: 0 auto; }
.tarif-reassurance {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--yellow);
  border-radius: 10px; padding: 18px 20px; margin-bottom: 32px;
}
.tarif-reassurance-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.tarif-reassurance strong { display: block; color: white; font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.tarif-reassurance span { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.6; }
.tarif-cards-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; align-items: start; }
.tarif-card-main {
  background: white; border-radius: 12px; padding: 24px 22px;
}
.tarif-card-main-label { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.tarif-card-main-price { font-size: 48px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.tarif-card-main-sub { font-size: 12px; color: var(--yellow-dark); font-weight: 700; margin-bottom: 18px; }
.tarif-card-main-list { list-style: none; padding: 0; margin: 0 0 14px; }
.tarif-card-main-list li { font-size: 12px; color: var(--text); padding: 5px 0; border-bottom: 1px solid #f0f0f0; }
.tarif-card-main-list li:last-child { border-bottom: none; }
.tarif-card-main-info { font-size: 11px; color: var(--text-light); font-style: italic; line-height: 1.5; border-top: 1px solid #eee; padding-top: 12px; }
.tarif-card-extra {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 22px 18px; text-align: center;
}
.tarif-extra-title { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.tarif-extra-price { font-size: 28px; font-weight: 900; color: white; line-height: 1; margin-bottom: 6px; }
.tarif-extra-price span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); }
.tarif-extra-sub { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: 14px; }
.tarif-extra-info { font-size: 10px; color: rgba(255,255,255,0.45); font-style: italic; line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }

@media (max-width: 900px) {
  .tarif-cards-row { grid-template-columns: 1fr; }
  .tarification-section { padding: 40px 20px; }
}

/* ===== HUB DIAGRAM (domotique) ===== */
.hub-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.hub-col { display: flex; flex-direction: column; gap: 16px; }

/* Satellites */
.hub-satellite {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 1.5px solid #e5e8f0;
  border-radius: 12px; padding: 12px 14px;
  position: relative;
}
.hub-satellite-right { flex-direction: row-reverse; text-align: right; }
.hub-sat-icon { flex-shrink: 0; }
.hub-sat-text strong { display: block; font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.hub-sat-text span { font-size: 11px; color: var(--text-light); line-height: 1.4; }
.hub-sat-line {
  flex-shrink: 0;
  width: 28px; height: 2px;
  border-top: 2px dashed #c0c8e0;
}
.hub-col-left .hub-sat-line { order: 99; }
.hub-col-right .hub-sat-line { order: -1; }

/* Hub central */
.hub-center {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 8px;
}
.hub-center-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,45,90,0.30);
  position: relative;
  z-index: 2;
}
.hub-center-ring {
  width: 100%; height: 0;
  position: relative;
}
.hub-center-title {
  font-size: 16px; font-weight: 900; letter-spacing: 2px;
  color: white; margin: 10px 0 4px;
}
.hub-center-sub {
  font-size: 11px; color: rgba(255,255,255,0.65);
  line-height: 1.5; margin-bottom: 14px;
}
.hub-center-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(61,205,88,0.15); border: 1px solid rgba(61,205,88,0.4);
  border-radius: 12px; padding: 4px 10px;
  font-size: 9px; font-weight: 700; color: #3DCD58;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .hub-diagram {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hub-center { order: -1; margin-bottom: 8px; }
  .hub-sat-line { display: none; }
  .hub-satellite, .hub-satellite-right { flex-direction: row; text-align: left; }
}

/* ===== DEUX TYPES D'INTERVENTION (dépannage) ===== */
.interv-section { background: #f5f7fb; padding: 50px 40px; }
.interv-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.interv-inner h2 { font-size: 22px; font-weight: 800; color: var(--navy); }
.interv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; }

.interv-card { background: white; border-radius: 14px; overflow: hidden; border: 1.5px solid #e5e8f0; }
.interv-simple { border-top: 4px solid #1a7a3a; }
.interv-complexe { border-top: 4px solid var(--navy); }

.interv-card-header { padding: 22px 22px 0; }
.interv-card-badge {
  display: inline-block; font-size: 9px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
}
.interv-badge-simple { background: #e8f5eb; color: #1a7a3a; }
.interv-badge-complexe { background: #e8ecf5; color: var(--navy); }
.interv-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.interv-card-intro { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 0; }

.interv-exemples { padding: 16px 22px; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.interv-exemple { font-size: 12px; color: var(--text); }

.interv-tarif-box { padding: 18px 22px; }
.interv-tarif-simple { background: #f0faf2; }
.interv-tarif-complexe { background: #f0f2fa; }
.interv-tarif-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 4px; }
.interv-tarif-prix { font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 4px; line-height: 1.1; }
.interv-tarif-prix span { font-size: 13px; font-weight: 500; color: var(--text-light); }
.interv-tarif-note { font-size: 11px; color: var(--text-light); line-height: 1.5; }

.interv-engage {
  margin: 0 22px 22px;
  background: var(--navy); color: white;
  border-radius: 8px; padding: 12px 14px;
  font-size: 12px; line-height: 1.6;
}
.interv-engage strong { color: var(--yellow); }
.interv-engage em { font-style: normal; font-weight: 700; }

@media (max-width: 900px) {
  .interv-grid { grid-template-columns: 1fr; }
  .interv-section { padding: 40px 20px; }
}

/* ===== AIDES FINANCIÈRES (borne) ===== */
.aides-section { background: var(--navy); padding: 50px 40px; }
.aides-inner { max-width: 1100px; margin: 0 auto; }
.aides-header { text-align: center; margin-bottom: 32px; }
.aides-header h2 { font-size: 22px; font-weight: 800; color: white; }
.aides-header p { font-size: 13px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 12px auto 0; line-height: 1.6; }
.aides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.aide-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 22px 18px; }
.aide-card-featured { background: rgba(255,214,0,0.12); border-color: rgba(255,214,0,0.4); }
.aide-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.aide-logo { font-size: 28px; }
.aide-name { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.aide-montant { font-size: 22px; font-weight: 900; color: var(--yellow); }
.aide-card p { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 12px; }
.aide-condition { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.aides-note { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,214,0,0.3); border-left: 3px solid var(--yellow); border-radius: 8px; padding: 14px 18px; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; }

@media (max-width: 900px) {
  .aides-grid { grid-template-columns: 1fr; }
  .aides-section { padding: 40px 20px; }
}

/* ============================================================
   PASSE MOBILE 2026-08-09 — finitions responsive (audit mobile)
   ============================================================ */

/* Filet anti-débordement : chaînes longues insécables (emails, URL, réf. légales)
   cassent au lieu d'élargir la page. */
p, li, h1, h2, h3, h4, td, th, .faq-answer, .footer-bottom p { overflow-wrap: break-word; }

/* Fix structurels sûrs (toutes tailles) */
.breadcrumb { flex-wrap: wrap; }
.footer-badges { flex-wrap: wrap; }

@media (max-width: 900px) {
  /* iOS : champs de formulaire à 16px = pas de zoom auto au focus (évite le décalage latéral) */
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 16px; }

  /* Gouttières cohérentes (ces blocs gardaient 40px car non couverts par section{}) */
  .features-bar { padding: 18px 20px; }
  #contact { padding: 40px 20px 30px !important; } /* !important : bat le style inline des pages service/legal */
  .header-inner { gap: 14px; }

  /* Lisibilité : textes de contenu à 13px minimum */
  .feature-text span, .zone-card span, .tl-step p, .example-item p, .example-item h4 { font-size: 13px; }

  /* Cibles tactiles ~44px */
  #main-nav a { min-height: 44px; display: flex; align-items: center; }
  .footer-links a { display: inline-block; padding: 6px 0; }
}

@media (max-width: 600px) {
  /* En-tête du rapport exemple (diagnostic) : 1 colonne, sinon la 2e colonne est tronquée */
  .rdp-meta { grid-template-columns: 1fr; }
}

/* Logo header calé dans la barre de 88px (bat le style inline height:96px) */
.logo img { height: 72px !important; }

/* Indice de scroll du tableau comparatif (affiché en mobile uniquement) */
.comparison-scroll-hint { display: none; }

@media (max-width: 900px) {
  .logo img { height: 60px !important; }
  .comparison-scroll-hint { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--navy); margin: -4px 0 14px; }
}

/* ============================================================
   MOBILE — la barre sticky (Appeler / WhatsApp) porte le contact.
   On masque les CTA d'appel redondants + les QR (inutiles quand on est DÉJÀ sur mobile).
   ============================================================ */
@media (max-width: 900px) {
  .hero-cta,               /* boutons WhatsApp + tél du hero (accueil + pages service) */
  .hero-whatsapp-hint,     /* QR + « Scannez… » du hero */
  .qr-card,                /* QR éventuel en milieu de page */
  .service-cta-section,    /* bande CTA de fin de page service */
  #contact .btn-whatsapp   /* bouton « Contacter sur WhatsApp » du footer */
  { display: none !important; }
}

/* ============================================================
   MENU MOBILE — présentation nette (items pleine largeur alignés à gauche,
   séparateurs pleins, sous-menu Services intégré et indenté)
   ============================================================ */
@media (max-width: 900px) {
  #main-nav { align-items: stretch; padding: 4px 0 10px; }
  #main-nav > a,
  #main-nav .nav-services > a {
    justify-content: flex-start;
    padding: 14px 22px;
    font-size: 15px;
    color: var(--navy);
    border-bottom: 1px solid rgba(0,0,0,0.10);
    border-radius: 0;
  }
  #main-nav .nav-services { width: 100%; }
  #main-nav .nav-services > a { justify-content: space-between; }   /* le ▾ poussé à droite */
  #main-nav .nav-services.open .dropdown {
    background: rgba(255,255,255,0.45);
    box-shadow: none;
  }
  #main-nav .dropdown a {
    min-height: 44px; display: flex; align-items: center;
    padding: 12px 22px 12px 38px;   /* indenté sous « Services » */
    font-size: 14px; font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
}
