/* ============================================
   CHERY ELEC - Feuille de style
   Design : pro, moderne, orienté conversion
   ============================================ */

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

img {
  image-rendering: auto;
  content-visibility: auto;
}

:root {
  --primary: #F5841F;      /* Orange éclair - identité Chery Elec */
  --primary-dark: #D66D10;
  --dark: #1f1f1f;         /* Gris foncé - identité Chery Elec */
  --dark-2: #2a2a2a;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f7f8fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --danger: #dc2626;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   URGENCE BAR (top)
   ============================================ */
.urgence-bar {
  background: var(--danger);
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.urgence-cta {
  background: white;
  color: var(--danger);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.urgence-cta:hover { background: var(--primary); color: var(--dark); }

/* ============================================
   HEADER
   ============================================ */
header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo-img {
  height: 46px;
  width: auto;
  max-width: 200px;
  flex-shrink: 0;
  display: block;
}

nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
nav a:hover, nav a.active { color: var(--primary); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle span + span { margin-top: 6px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -6px); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 149;
}
.nav-overlay.active { display: block; }

.btn-call-header {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(245,132,31,0.35);
}
.btn-call-header:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(245,132,31,0.45);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,132,31,0.55); color: white; }

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

.btn-xl { padding: 20px 40px; font-size: 22px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================
   HERO (version claire)
   ============================================ */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(245,132,31,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(31,31,31,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #fffdfa 0%, #fff6eb 100%);
  color: var(--text);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '⚡';
  position: absolute;
  font-size: 400px;
  opacity: 0.16;
  color: var(--primary);
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(245,132,31,0.15);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(245,132,31,0.35);
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero h1 .accent { color: var(--primary); }
.hero-lead {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 34px;
}
.hero-service-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.hero-service-item + .hero-service-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.hero-sublead {
  font-size: 15px;
  color: var(--muted);
  margin-top: -20px;
  margin-bottom: 12px;
  max-width: 540px;
}
.hero-garantie {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-cta .btn-secondary { background: white; color: var(--dark); border-color: var(--dark); }
.hero-cta .btn-secondary:hover { background: var(--dark); color: white; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.hero-visual { display: flex; justify-content: center; }
.hero-photo-card {
  position: relative;
  width: min(100%, 430px);
  padding: 14px;
  padding-top: 28px;
  padding-bottom: 38px;
  background: white;
  border: 1px solid rgba(245,132,31,0.25);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(31,31,31,0.18);
  overflow: visible;
}
.hero-photo-card::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(245,132,31,0.28), rgba(31,31,31,0.08));
}
.hero-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}
.hero-proof-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(245,132,31,0.22);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(31,31,31,0.18);
  backdrop-filter: blur(10px);
}
.hero-proof-card span {
  display: inline-block;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.hero-proof-card strong {
  display: block;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.1;
}
.hero-proof-card p {
  margin-top: 8px;
  color: var(--text);
  font-size: 14px;
}
.hero-card {
  background: white;
  color: var(--dark);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 340px;
  text-align: center;
  border: 3px solid var(--primary);
}
.hero-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.hero-card-phone {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero-card-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.trust-panel {
  background: var(--light);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-cell {
  background: white;
  padding: 36px 20px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(31,31,31,0.07), 0 1px 4px rgba(31,31,31,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(31,31,31,0.13), 0 1px 4px rgba(31,31,31,0.04);
}
.trust-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.trust-val {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

/* Badge avis en haut de la photo héro */
.hero-rating-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1.5px solid rgba(245,132,31,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(31,31,31,0.12);
  z-index: 2;
}
.hero-rating-stars {
  color: #22a94f;
  font-size: 15px;
  letter-spacing: 1px;
}
.hero-rating-text {
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
}

/* Badge téléphone dans la photo héro */
.hero-phone-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(245,132,31,0.5);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.hero-phone-badge:hover {
  background: #e0730e;
  box-shadow: 0 10px 36px rgba(245,132,31,0.6);
}
.hero-phone-icon { font-size: 20px; color: white; }
.hero-phone-num {
  color: white;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ============================================
   SECTION PARTENAIRES AVEC TITRE AU-DESSUS
   ============================================ */
.partners-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
  overflow: hidden;
}
.partners-title {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.partners-static {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 56px;
  list-style: none;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.partner-logo {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: grayscale(100%) contrast(1.4) brightness(0);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }
@keyframes scroll-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-light { background: linear-gradient(180deg, #fffaf2 0%, #fff5e9 100%); }
/* Section "dark" éclaircie : fond clair crème avec accents orange, garde la lisibilité sans casser les yeux */
.section-dark {
  background: linear-gradient(180deg, #fff9f0 0%, #fff3e2 100%);
  color: var(--text);
  border-top: 1px solid rgba(245,132,31,0.2);
  border-bottom: 1px solid rgba(245,132,31,0.2);
}
.section-dark h2 { color: var(--dark); }

h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.2;
}
h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.section-dark h3 { color: var(--dark); }

.section-lead {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 50px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-lead { color: var(--muted); }

/* ============================================
   GRID SERVICES
   ============================================ */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  box-shadow: 0 12px 35px rgba(31,31,31,0.05);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.service-section-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 0;
  display: block;
}
.service-icon { font-size: 36px; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 16px; font-size: 15px; flex: 1; }
.link-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.link-more:hover { color: var(--primary-dark); }

/* ============================================
   GRID WHY
   ============================================ */
.grid-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.why-item {
  text-align: left;
  background: white;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(245,132,31,0.18);
  box-shadow: 0 12px 35px rgba(31,31,31,0.05);
}
.why-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}
.why-item h3 { color: var(--dark); }
.why-item p { color: var(--text); opacity: 0.85; font-size: 15px; }

/* ============================================
   AVIS
   ============================================ */
.grid-avis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.big-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.avis-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.stars {
  color: #22a94f;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.stars.big { font-size: 28px; }
.avis-card p { color: var(--text); font-size: 15px; margin-bottom: 12px; font-style: italic; }
.avis-author { font-weight: 700; color: var(--dark); font-size: 14px; }

.center-cta { text-align: center; margin-top: 40px; }

.score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  background: linear-gradient(160deg, #fff9f0 0%, #fff1dc 100%);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(245,132,31,0.2);
  text-align: center;
}
.score-box > div { display: flex; flex-direction: column; align-items: center; }
.score {
  font-size: 80px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.score span { font-size: 30px; color: var(--muted); }

/* ============================================
   ZONES
   ============================================ */
.zones-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.zone-pill {
  background: white;
  color: var(--dark);
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.zone-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.zone-block {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.zone-block h2 { text-align: left; margin-bottom: 16px; font-size: 26px; }
.zone-block p { margin-bottom: 16px; color: var(--text); }
.zone-block .btn-primary { margin-top: 10px; display: block; text-align: center; max-width: 320px; margin-left: auto; margin-right: auto; }

/* ============================================
   PAGE HEADER (version claire)
   ============================================ */
.page-header {
  background:
    radial-gradient(ellipse at center, rgba(245,132,31,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #fffdfa 0%, #fff3e2 100%);
  color: var(--dark);
  padding: 70px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--dark);
}
.page-header h1 .accent { color: var(--primary); display: block; margin-top: 4px; }
.page-header h1 a.accent-sm {
  color: var(--primary);
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(245,132,31,0.35);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.page-header h1 a.accent-sm:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}
.page-header h1 a.accent-sm::after { content: ' ↗'; font-size: 16px; opacity: 0.85; }
.page-header p { font-size: 18px; color: var(--text); opacity: 0.85; max-width: 720px; margin: 0 auto; }
.page-header .hero-cta { justify-content: center; }

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.service-detail.reverse { grid-template-columns: 1fr 2fr; }
.service-detail h2 { text-align: left; margin-bottom: 20px; font-size: 32px; }
.service-detail .badge { margin-bottom: 12px; }
.service-detail p { margin-bottom: 20px; font-size: 16px; color: var(--text); }

.check-list { list-style: none; margin-bottom: 28px; }
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  background: rgba(245,132,31,0.15);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-price-card {
  background: linear-gradient(160deg, #fff9f0 0%, #fff1dc 100%);
  color: var(--text);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  position: sticky;
  top: 100px;
  border: 2px solid rgba(245,132,31,0.25);
  box-shadow: 0 10px 30px rgba(245,132,31,0.12);
}
.service-price-card h3 { color: var(--dark); margin-bottom: 12px; font-size: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-price-card .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-price-card p {
  font-size: 14px;
  color: var(--text) !important;
  opacity: 0.85;
  margin-bottom: 0 !important;
  line-height: 1.5;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.phone-big { font-size: 36px; font-weight: 800; margin: 16px 0; }
.phone-big a { color: var(--primary); text-decoration: none; }

.form-box {
  background: linear-gradient(160deg, #fffaf2 0%, #fff3e2 100%);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(245,132,31,0.2);
}
.form-box h2 { text-align: left; margin-bottom: 8px; font-size: 28px; }
.form-box p { margin-bottom: 24px; color: var(--muted); }

.form-box label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 16px;
}
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: white;
  transition: border-color 0.2s;
}
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-box textarea { resize: vertical; }
.form-box button { margin-top: 24px; }
.small { font-size: 13px; color: var(--muted); }

/* ============================================
   FINAL CTA (intégré à la palette claire du site)
   ============================================ */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(245,132,31,0.28) 0%, transparent 65%),
    linear-gradient(180deg, #ffe8c9 0%, #ffd9a6 100%);
  color: var(--dark);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(245,132,31,0.35);
}
.final-cta h2 { color: var(--dark); font-size: 36px; margin-bottom: 14px; }
.final-cta p { font-size: 18px; margin-bottom: 30px; font-weight: 500; color: var(--text); opacity: 0.9; }
.final-cta .btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(245,132,31,0.45);
}
.final-cta .btn-primary:hover { background: var(--primary-dark); color: white; box-shadow: 0 12px 35px rgba(245,132,31,0.55); }
.final-cta .small { color: var(--muted); opacity: 1; margin-top: 16px; }

/* ============================================
   FOOTER (version claire, homogène avec le reste)
   ============================================ */
footer {
  background: linear-gradient(180deg, #fff8ef 0%, #fff1dc 100%);
  color: var(--text);
  padding: 60px 0 0;
  border-top: 1px solid rgba(245,132,31,0.25);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 { color: var(--primary-dark); margin-bottom: 16px; font-size: 16px; font-weight: 800; }
.footer-col a { display: block; color: var(--text); text-decoration: none; padding: 5px 0; font-size: 14px; opacity: 0.85; }
.footer-col a:hover { color: var(--primary); opacity: 1; }
.footer-col p { color: var(--text); opacity: 0.85; font-size: 14px; margin-bottom: 8px; }
.footer-col p a { display: inline; padding: 0; color: var(--primary-dark); font-weight: 600; }
.logo-footer {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.logo-footer-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  flex-shrink: 0;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(245,132,31,0.2);
  padding: 20px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.footer-bottom a { color: var(--primary-dark); text-decoration: underline; }

/* ============================================
   STICKY BOTTOM BAR (mobile)
   ============================================ */
.float-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--danger);
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  z-index: 1000;
  display: none;
  text-align: center;
  box-shadow: 0 -3px 16px rgba(220,38,38,0.35);
  letter-spacing: 0.01em;
}
.float-call:active { background: #b91c1c; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 -3px 16px rgba(220,38,38,0.35); }
  50% { box-shadow: 0 -3px 28px rgba(220,38,38,0.7); }
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 18px; }
  .menu-toggle { display: flex; flex-direction: column; padding: 10px; }
  .menu-toggle span { width: 30px; height: 3px; }
  .menu-toggle span + span { margin-top: 7px; }
  .btn-call-header { display: none; }
  nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 150;
    transition: right 0.3s ease;
  }
  nav.open { right: 0; }
  nav a {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--border);
  }
  nav a.active::after { display: none; }
  body { text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 30px; }
  .hero-lead {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 10px;
  }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta a { width: 100%; max-width: 340px; text-align: center; }
  h2 { font-size: 28px; }
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; gap: 30px; }
  .service-detail .service-price-card { order: -1; }
  .service-detail.reverse .service-price-card { order: -1; }
  .service-detail h2 { text-align: center; }
  .service-price-card { position: static; }
  .check-list li { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid > div:first-child { text-align: center; }
  .form-box h2 { text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > div { text-align: center; }
  .page-header h1 { font-size: 30px; }
  .float-call { display: block; }
  .urgence-bar { font-size: 12px; padding: 8px 12px; }
  .logo-img { width: 110px; height: auto; }
  .hero { padding: 50px 0 70px; }
  .section { padding: 50px 0; }
  .final-cta h2 { font-size: 26px; }
  .btn-xl { padding: 16px 28px; font-size: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-proof-card { position: static; margin-top: 14px; }
  .zone-block h2 { text-align: center; }
  .franck-text h2 { text-align: center; }
  .franck-text { text-align: center; }
}

@media (max-width: 500px) {
  .container { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 50px; }
  .hero h1 { font-size: 26px; line-height: 1.15; }
  .hero-trust { gap: 12px; justify-content: center; }
  .trust-item { font-size: 13px; }
  .hero-service-item { font-size: 13px; gap: 6px; }
  .hero-lead { gap: 6px; row-gap: 6px; }
  .hero-photo-card { max-width: 280px; padding: 10px; padding-top: 20px; padding-bottom: 28px; border-radius: 22px; margin: 0 auto; }
  .hero-photo-card::before { inset: -10px; border-radius: 28px; }
  .hero-photo-img { border-radius: 16px; }
  .hero-proof-card { left: 18px; right: 18px; bottom: 18px; padding: 12px; }
  .hero-proof-card strong { font-size: 18px; }
  .hero-proof-card p { font-size: 13px; margin-top: 4px; }
  .hero-rating-badge { padding: 6px 14px; gap: 6px; top: -14px; }
  .hero-rating-stars { font-size: 13px; }
  .hero-rating-text { font-size: 11px; }
  .hero-phone-badge { padding: 11px 22px; bottom: -14px; }
  .hero-phone-icon { font-size: 16px; }
  .hero-phone-num { font-size: 14px; }
  .urgence-bar { flex-direction: column; gap: 8px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-cell { padding: 16px 8px; border-radius: 12px; }
  .trust-icon { font-size: 22px; margin-bottom: 4px; }
  .trust-val { font-size: 22px; }
  .trust-label { font-size: 11px; }
  .badge { font-size: 12px; padding: 5px 12px; }
}

/* ============================================
   SECTION FRANCK
   ============================================ */
.franck-section { background: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%); }
.franck-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}
.franck-photos-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}
.franck-photo-img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(31,31,31,0.15);
  background: var(--light);
  display: block;
}
.franck-img-main {
  height: 100%;
  min-height: 400px;
  object-position: center 15%;
}
.franck-img-secondary {
  width: 100%;
  height: 100%;
  object-position: center center;
  border: 3px solid var(--primary);
}
.franck-text h2 { text-align: left; font-size: 34px; margin-bottom: 18px; line-height: 1.2; }
.franck-text p { margin-bottom: 16px; font-size: 16px; color: var(--text); }
.franck-text .badge { margin-bottom: 12px; }
.franck-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 22px 20px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.franck-stats .stat { text-align: center; }
.franck-stats .stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.franck-stats .stat span { font-size: 12px; color: var(--muted); line-height: 1.3; }

.hero-card-small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .franck-inner { grid-template-columns: 1fr; gap: 30px; }
  .franck-photos-wrap { grid-template-columns: 1fr 1fr; gap: 10px; }
  .franck-photo-img { max-width: 100%; }
  .franck-img-main { min-height: 220px; }
  .franck-img-secondary { min-height: 220px; }
  .franck-text h2 { font-size: 26px; text-align: center; }
  .franck-text { text-align: center; }
  .franck-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .franck-photos-wrap { grid-template-columns: 1fr 1fr; gap: 8px; max-width: 320px; margin: 0 auto; }
  .franck-img-main { min-height: 170px; }
  .franck-img-secondary { min-height: 170px; }
  .franck-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 16px 12px; }
  .franck-stats .stat strong { font-size: 22px; }
}

/* ============================================
   BADGE AVIS NOUVEAU
   ============================================ */
.avis-card { position: relative; }
.avis-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(245, 132, 31, 0.4);
}
.avis-footnote {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================
   FRANCK BULLETS
   ============================================ */
.franck-bullets {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
}
.franck-bullets li {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.franck-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.franck-bullets li:last-child { border-bottom: none; }

/* ============================================
   CARROUSEL AVIS
   ============================================ */
.avis-section { background: var(--light); }
.carousel-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.carousel-track {
  position: relative;
  min-height: 460px;
}
.carousel-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  animation: fadeSlide 0.5s ease;
}
.carousel-slide.active { display: grid; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chantier-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.chantier-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.chantier-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(31,31,31,0.82);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.avis-slide-card {
  background: white;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(31,31,31,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.avis-slide-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.avis-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245,132,31,0.3);
}
.avis-slide-name {
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 4px;
}
.avis-slide-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  flex: 1;
  line-height: 1.65;
  margin-bottom: 20px;
}
.avis-google-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(245,132,31,0.1);
  border: 1px solid rgba(245,132,31,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  display: inline-block;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--primary); color: white; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.carousel-dot.active { background: var(--primary); }

/* ============================================
   RESPONSIVE AJOUTS
   ============================================ */
@media (max-width: 900px) {
  .carousel-slide.active { grid-template-columns: 1fr; }
  .chantier-photo { min-height: 200px; }
}
@media (max-width: 600px) and (min-width: 501px) {
  .trust-val { font-size: 34px; }
  .trust-cell { padding: 24px 14px; }
}

/* ============================================
   BANDEAU RÉASSURANCE
   ============================================ */
.reassurance-bar {
  background: var(--dark);
  color: white;
  padding: 18px 0;
  border-top: 3px solid var(--primary);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.reassurance-item:last-child { border-right: none; }
.reassurance-icon { font-size: 20px; flex-shrink: 0; }
@media (max-width: 700px) {
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .reassurance-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px; }
  .reassurance-item:nth-child(even) { border-right: none; }
}

/* ============================================
   GRILLE AVIS HOMEPAGE
   ============================================ */
.grid-avis-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.avis-card-home {
  background: white;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(31,31,31,0.05);
}
.avis-card-home p {
  font-style: italic;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.65;
}
.avis-home-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.avis-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,132,31,0.25);
  flex-shrink: 0;
}
@media (max-width: 900px) { .grid-avis-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-avis-home { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--light); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  background: white;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(31,31,31,0.04);
}
.faq-item h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================
   SERVICE CARDS (prix + délai + CTA)
   ============================================ */
.service-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: 4px;
}
.service-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 15px;
}
.service-delay {
  background: rgba(245,132,31,0.1);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(245,132,31,0.25);
}
.btn-service {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

/* ============================================
   PARTENAIRES - bloc normes
   ============================================ */
.partners-section-normes {
  border-top: none;
  padding-top: 6px;
}
.partners-track-slow {
  animation: scroll-partners 18s linear infinite;
}

/* ============================================
   CONTACT - note urgence formulaire
   ============================================ */
.urgence-form-note {
  background: rgba(245,132,31,0.1);
  border: 1px solid rgba(245,132,31,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark) !important;
  margin-bottom: 12px !important;
}
.urgence-form-note a { color: var(--primary); font-weight: 800; text-decoration: none; }
.urgence-form-note a:hover { text-decoration: underline; }

/* ============================================
   FOOTER - lien avis
   ============================================ */
.footer-col a.footer-link-avis {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.footer-col a.footer-link-avis:hover { text-decoration: underline; }

/* ============================================
   ZONES - carte
   ============================================ */
.section-map { padding: 40px 0; background: var(--light); }
.map-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(31,31,31,0.1);
}

/* ============================================
   SECTION ZONES ACCUEIL
   ============================================ */
.zones-home-section { background: var(--light); }
.zones-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.zone-home-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(31,31,31,0.04);
}
.zone-home-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  flex: 1;
}
.zone-home-delay {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.zone-home-btn {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.zone-home-btn:hover { background: var(--primary-dark); }
.zones-home-note {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ============================================
   BANDEAU RGPD
   ============================================ */
.rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  color: #e5e7eb;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.rgpd-banner a { color: var(--primary); text-decoration: underline; }
.rgpd-ok {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
}
.rgpd-ok:hover { background: var(--primary-dark); }

/* ============================================
   PAGES VILLES SEO — grille 2×2 forcée
   ============================================ */
.city-services-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .city-services-grid { grid-template-columns: 1fr; }
}

/* Trust panel compact pour pages villes */
.trust-panel-city {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-grid-city {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-cell-city {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}
.trust-cell-city:last-child { border-right: none; }
.trust-val-city {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  white-space: nowrap;
}
.trust-label-city {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .trust-grid-city { flex-wrap: wrap; }
  .trust-cell-city { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .trust-cell-city:nth-last-child(-n+2) { border-bottom: none; }
}

/* Section texte local en pleine largeur */
.city-intro-section {
  background: white;
  padding: 48px 0;
}
.city-intro-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.city-intro-inner h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.city-intro-inner p + p {
  margin-top: 16px;
}

/* ============================================
   SERVICES COMPACTS PAGES VILLES — 4 cases en ligne
   ============================================ */
.grid-services-city {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service-card-city {
  background: white;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(31,31,31,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card-city .sc-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}
.service-card-city h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.service-card-city p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.service-card-city .sc-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}
.service-card-city .sc-delay {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.service-card-city .btn-sc {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s;
}
.service-card-city .btn-sc:hover { background: var(--primary-dark); }
@media (max-width: 800px) {
  .grid-services-city { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .grid-services-city { grid-template-columns: 1fr; }
}
