:root {
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FCD34D;
  --secondary: #1E293B;
  --secondary-dark: #0F172A;
  --secondary-medium: #334155;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F1F5F9;
  --mid-gray: #E2E8F0;
  --text-gray: #64748B;
  --dark-gray: #475569;
  --black: #0F172A;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-btn: 0 4px 12px rgba(20,184,166,0.3);
  --container: 1200px;
  --transition: all 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section, .contact-strip { scroll-margin-top: 90px; }
body { font-family: var(--font-body); font-size: 15px; color: var(--text-gray); line-height: 1.7; background: var(--white); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* TOP BAR */
.top-bar {
  background: var(--primary);
  border-bottom: none;
  padding: 10px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--white);
}
.top-bar a {
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}
.top-bar a:hover {
  color: var(--secondary-dark);
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar i {
  color: var(--white);
  margin-right: 5px;
}
.top-bar-hide-mobile {
  display: inline;
}

/* BURGER MENU */
.burger-menu { display: none; background: none; border: none; cursor: pointer; }
.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--secondary);
  margin: 5px 0;
  transition: var(--transition);
}
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* NAV */
nav {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--mid-gray);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  gap: 40px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo img { height: 60px; }
.logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--secondary); letter-spacing: -0.5px; }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; list-style: none; margin-right: 20px; }
.nav-links a { font-family: var(--font-heading); font-size: 14px; font-weight: 500; color: var(--dark-gray); }
.nav-links a:hover { color: var(--primary); }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 200;
  border-bottom: 1px solid var(--mid-gray);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px 0;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-gray);
  display: block;
  text-align: center;
  padding: 10px 20px;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-btn { display: none; }
.mobile-call-btn { display: none; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
  display: inline-block;

  /* Biseautage asymétrique global */
  border-radius: 8px 0px 8px 0px;

  /* Transition fluide pour le survol */
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: none;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;

  /* Biseautage asymétrique identique aux boutons principaux */
  border-radius: 8px 0px 8px 0px;

  /* Transition fluide pour le survol */
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.7) 5%, rgba(0, 0, 0, 0.4) 20%),
    url('IMG-ELEC/hero-bg-2.webp') center/cover no-repeat;
  min-height: 600px;
  display: flex; align-items: center;
  padding: 100px 0;
}
.hero-inner { display: grid; grid-template-columns: 60% 1fr; gap: 60px; align-items: center; text-align: left; }
.hero-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px; font-weight: 700;
  color: var(--white); line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 16px; line-height: 1.7;
  margin-bottom: 24px;
}
.hero-checklist { list-style: none; margin-bottom: 32px; display: block; text-align: left; }
.hero-checklist li {
  color: rgba(255,255,255,0.9);
  font-size: 14px; padding: 5px 0;
  display: flex; align-items: center; gap: 10px;
}
.hero-checklist li i { color: var(--primary-light); font-size: 16px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero-content { display: block; text-align: left; }
.hero-trust-elements {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
}
.hero-certifications {
  padding-top: 20px !important;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.hero-stars {
  padding-top: 20px !important;
  color: #FACC15;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero-badge {
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center; color: var(--secondary);
}
.hero-badge .num {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 800;
  color: var(--primary); display: block;
}
.hero-badge p { font-size: 13px; color: var(--text-gray); margin: 0; }
.hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* SERVICE STRIP - Version 10 : Badges Compacts Asymétriques */
.service-strip {
  background: var(--off-white);
  padding: 30px 0;
  border-top: 1px solid var(--mid-gray);
  border-bottom: none !important;
}

.service-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.strip-badge {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 8px 24px 8px 8px;
  min-width: 260px;
  border-radius: 9999px !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.strip-badge:hover {
  transform: none !important;
  border-color: var(--mid-gray) !important;
  box-shadow: none !important;
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  border-radius: 9999px !important;
}

.badge-icon-wrap i {
  font-size: 16px;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-content h3 {
  font-family: var(--font-heading);
  font-size: 14px !important;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 0 0 2px 0 !important;
  line-height: 1.2;
}

.badge-content h3 span {
  color: var(--primary);
}

.badge-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-decoration: none;
}

/* SECTION LABEL */
.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 700;
  color: var(--secondary); line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc { font-size: 15px; color: var(--text-gray); max-width: 520px; }

/* ABOUT - Version 2 Overlap Gauche (Carré & Sans Ombres) */
.about {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-inner {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
}
.about-img-wrap {
  width: 55%;
  position: relative;
  z-index: 1;
}
.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.about-badge-overlay {
  position: absolute;
  top: 40px;
  left: -40px;
  background: var(--white);
  color: var(--secondary-dark);
  font-family: var(--font-heading);
  padding: 24px 30px;
  border-radius: 0 !important;
  text-align: center;
  box-shadow: none !important;
  z-index: 10;
  border: 2px solid var(--primary);
}
.about-badge-overlay .big {
  font-size: 38px;
  font-weight: 900;
  display: block;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-overlay small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
}
.about-text {
  width: 50%;
  margin-left: -5%;
  background: var(--light-gray);
  padding: 60px;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  z-index: 5;
  border: 1px solid var(--mid-gray);
}
.about-checklist {
  list-style: none;
  margin: 28px 0 32px 0;
}
.about-checklist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
  font-size: 14px;
  color: var(--secondary-medium);
  font-weight: 600;
}
.about-checklist li:last-child {
  border-bottom: none;
}
.check-icon {
  color: var(--primary);
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* STATS */
.stats { background: var(--off-white); padding: 56px 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item { text-align: center; padding: 16px 20px; border-right: 1px solid var(--mid-gray); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 38px; font-weight: 700;
  color: var(--secondary);
}
.stat-num span { color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-gray); font-weight: 500; }

/* CTA BANNER - Version 3 Split Screen */
.cta-banner {
  background: url('IMG-ELEC/hori-6.webp') center/cover no-repeat fixed;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}
.cta-banner-left {
  width: 50%;
  background: var(--secondary-dark);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 4px solid var(--primary);
  position: relative;
  z-index: 10;
}
.cta-banner-right {
  width: 50%;
  position: relative;
  background: rgba(20, 184, 166, 0.1);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 15px;
}
.cta-banner h2 span {
  color: var(--primary);
}
.cta-banner p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* SERVICES GRID - Version 3 : Effet Superposition (Overlapping) */
.services-section {
  padding: 90px 0 230px 0;
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 200px 24px; /* Augmenté à 200px verticalement */
}

.service-card {
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  height: 280px;
  border-radius: 0 !important;
}

.service-card-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 !important;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-body {
  position: absolute;
  bottom: -145px; /* Baissé encore plus */
  left: 16px;
  right: 16px;
  background: var(--white);
  padding: 28px 20px 20px 20px;
  border-radius: 0 !important;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  min-height: 220px;
}

.service-card:hover .service-card-body {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-card-icon i {
  color: var(--white);
  font-size: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 10px 0 8px 0 !important;
  line-height: 1.4;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.service-card a:hover {
  color: var(--primary-dark);
}

/* PROCESS - Version 26 Timeline Minimaliste Gauche (Fond Gris) */
.process {
  padding: 100px 0;
  background: var(--light-gray);
}
.process-inner {
  max-width: 800px;
  margin: 0 auto;
}
.process-header {
  text-align: center;
  margin-bottom: 56px;
}
.process-header .section-label {
  justify-content: center;
}
.process-timeline {
  position: relative;
  border-left: 2px solid var(--mid-gray);
  margin-left: 10px;
  padding-left: 35px;
}
.process-item {
  position: relative;
  margin-bottom: 50px;
}
.process-item:last-child {
  margin-bottom: 0;
}
.process-dot {
  position: absolute;
  left: -44px; /* Alignement parfait sur la ligne verticale */
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--light-gray); /* Masque la ligne sous le point */
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 10;
  transition: background-color 0.3s ease;
}

/* 1. Pseudo-élément pour la bague radar */
.process-dot::after {
  content: '';
  position: absolute;
  inset: -6px; /* S'étend autour du point */
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

/* --- SURVOL DE L'ÉTAPE --- */

/* 2. Au survol, le point change de couleur (centre blanc lumineux) */
.process-item:hover .process-dot {
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-dark);
}

/* 3. Déclenchement de l'effet d'onde radar au survol */
.process-item:hover .process-dot::after {
  animation: radar-pulse 1.2s infinite ease-out;
}

/* Keyframes pour la pulsation infinie de l'onde radar */
@keyframes radar-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
    border-width: 3px;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
    border-width: 1px;
  }
}

.process-step-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.process-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}
.process-item p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* WHY US - Version 3 Floating Overlay (Carré & Sans Ombres) */
.why-us {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.why-us-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.why-us-img-bg {
  width: 70%;
  margin-left: auto;
  height: 600px;
  overflow: hidden;
  border-radius: 0 !important; /* Bords 100% carrés */
  position: relative;
  z-index: 1;
}
.why-us-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.why-us-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.15); /* Voile très léger */
}
.why-us-card {
  position: absolute;
  left: 0;
  width: 42%;
  background: var(--white);
  padding: 50px;
  border-radius: 0 !important; /* Bords 100% carrés */
  border: 1px solid var(--mid-gray);
  box-shadow: none !important; /* Aucune ombre */
  z-index: 5;
}
.why-us-card .section-label {
  margin-bottom: 15px;
}
.why-us-card .section-title {
  font-size: 32px;
  margin-bottom: 15px;
}
.why-us-card p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.why-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-feature-item i {
  color: var(--primary);
  font-size: 24px;
}
.why-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-dark);
}
.why-feature-item p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* PRICING */
.pricing { padding: 90px 0; background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pricing-card {
  background: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border-top: 3px solid transparent;
}
.pricing-card.featured {
  border-top-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-card-hover);
}
.pricing-card-head {
  padding: 28px 28px 20px;
  background: var(--off-white);
}
.pricing-card.featured .pricing-card-head {
  background: var(--primary);
}
.pricing-badge {
  background: var(--secondary-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px;
  display: inline-block; margin-bottom: 10px;
}
.pricing-plan {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--secondary);
}
.pricing-card.featured .pricing-plan { color: var(--white); }
.pricing-sub { font-size: 13px; color: var(--text-gray); margin-top: 4px; }
.pricing-card.featured .pricing-sub { color: rgba(255,255,255,0.85); }
.pricing-card-body { padding: 24px 28px 32px; }
.price {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 800;
  color: var(--secondary); display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 20px;
}
.price sup { font-size: 20px; font-weight: 600; color: var(--primary); }
.price span { font-size: 14px; font-weight: 400; color: var(--text-gray); }
.pricing-divider { height: 1px; background: var(--mid-gray); margin: 16px 0; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--dark-gray); padding: 6px 0;
}
.pricing-features li i { color: var(--primary); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.btn-plan {
  width: 100%; padding: 13px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  text-align: center; display: block;
}
.btn-plan:hover { background: var(--primary-dark); }

/* TESTIMONIALS */
.testimonials { padding: 90px 0; background: var(--off-white); }
.testi-header { text-align: center; margin-bottom: 50px; }
.testi-header .section-label { justify-content: center; }
.testi-header .section-label::before { display: none; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: 0;
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.testi-stars { color: var(--primary); font-size: 14px; margin-bottom: 14px; }
.testi-text {
  font-size: 14px; color: var(--text-gray);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 0;
  border: 2px solid var(--primary);
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--secondary);
}
.testi-role { font-size: 13px; color: var(--text-gray); }

/* CONTACT STRIP */
/* CONTACT STRIP - Version 2 Cartes Entrelacées (Carré & Sans Ombres) */
.contact-strip {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.contact-strip-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}
.contact-left-card {
  width: 60%;
  background: var(--primary);
  color: var(--white);
  padding: 60px;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left-card h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-left-card p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.6;
}
.contact-left-card .btn-contact {
  background: var(--secondary-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 8px 0px 8px 0px; /* Biseautage asymétrique Namur */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: max-content;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-left-card .btn-contact:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.contact-right-card {
  width: 45%;
  margin-left: -5%;
  background: var(--white);
  padding: 50px;
  border: 2px solid var(--primary);
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
}
.contact-info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.contact-info-head i {
  color: var(--primary);
  font-size: 20px;
}
.contact-info-head h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  margin: 0;
}
.contact-info-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--secondary-dark);
  margin: 0;
  text-decoration: none;
}
.contact-info-email {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-dark);
  margin: 0;
  word-break: break-all;
  text-decoration: none;
}
.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--mid-gray);
}

/* FOOTER */
footer {
  background: var(--secondary-dark);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 14px;
}
.footer-logo span { color: var(--primary-light); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 15px;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.8); }
.footer-bottom {
  background: var(--secondary-dark);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-bottom span { color: var(--white); }

/* ZONE INTERVENTION - Version 2 Inversée sans Badge */
.zone { padding: 90px 0; background: var(--off-white); }
.zone-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 24px;
}
.zone-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.zone-item-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.zone-item-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-dark);
}
.zone-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 0 !important;
}
.zone-img-backplate {
  position: absolute;
  inset: 0;
  background: var(--primary); /* Même couleur que les boutons d'appel à l'action principaux */
  border-radius: 0 !important;
  transform: rotate(-3deg) scale(1.03);
  z-index: 5;
}
.zone-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
  position: relative;
  z-index: 10;
  box-shadow: none !important;
}

/* MOBILE STARS BAR */
.mobile-stars-bar {
  display: none;
}

/* URGENCY BAR */
.urgency-bar {
  background: var(--secondary);
  padding: 16px 0;
}
.urgency-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.urgency-bar p {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--white);
}
.urgency-bar i { color: var(--white); font-size: 20px; }
.btn-urgency {
  background: var(--white);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  padding: 9px 20px;
  border-radius: 0;
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.5px;
}

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

/* VIBRATION ANIMATION */
@keyframes vibrate {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}
.hero-btns .btn-primary:hover i {
  animation: vibrate 0.3s infinite;
}

/* CALLBACK POPUP */
.callback-popup {
  position: fixed;
  right: 20px;
  top: 150px;
  background: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15);
  padding: 24px;
  z-index: 1000;
  min-width: 280px;
  display: none;
  border-radius: 20px 0px 20px 0px !important;
}
.close-popup {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-gray);
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}
.close-popup:hover { color: var(--primary); }
.callback-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}
.callback-content p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 15px;
}
.callback-input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--mid-gray);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
  background: var(--off-white);
  border-radius: 6px 0px 6px 0px !important;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.callback-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}
.callback-btn {
  width: 100%;
  padding: 10px;
  background: var(--primary) !important;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  border: none !important;
  cursor: pointer;
  border-radius: 8px 0px 8px 0px !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
}
.callback-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

/* CONTACT FORM POPUP */
.contact-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.2);
  padding: 35px;
  z-index: 1001;
  min-width: 420px;
  display: none;
  border-radius: 30px 0px 30px 0px !important;
}
.contact-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}
.contact-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.contact-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--mid-gray);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
  background: var(--off-white);
  border-radius: 6px 0px 6px 0px !important;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.contact-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}
.contact-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--mid-gray);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 16px;
  resize: vertical;
  background: var(--off-white);
  border-radius: 6px 0px 6px 0px !important;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.contact-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}
.contact-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary) !important;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border: none !important;
  cursor: pointer;
  border-radius: 8px 0px 8px 0px !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
}
.contact-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: none;
}

/* FLOATING CALL BUTTON */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0px rgba(245, 158, 11, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0px rgba(245, 158, 11, 0); }
}

@keyframes phone-vibrate {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(-12deg); }
  20%  { transform: rotate(12deg); }
  30%  { transform: rotate(-10deg); }
  40%  { transform: rotate(10deg); }
  50%  { transform: rotate(-6deg); }
  60%  { transform: rotate(6deg); }
  70%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.floating-call-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-call {
  position: relative;
  background: var(--primary);
  color: var(--white);
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.5);
  font-size: 20px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  animation: pulse-ring 2s ease-out infinite;
}

.floating-call i {
  animation: phone-vibrate 1.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
}

.floating-call-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.floating-call:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20,184,166,0.5);
}

@media (max-width: 992px) {
  .top-bar-hide-mobile { display: none; }
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .about-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .about-img-wrap, .about-text {
    width: 100%;
    margin-left: 0;
  }
  .about-text {
    padding: 40px 24px;
  }
  .about-img-wrap img {
    height: 380px;
  }
  .about-badge-overlay {
    left: 20px;
    top: -20px;
  }
  .zone-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .zone-img-wrap img {
    height: 380px;
  }
  .hero h1 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; gap: 200px 0; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .service-strip-inner {
    flex-direction: column;
    align-items: center;
  }
  .strip-badge {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 8px 16px;
  }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-banner {
    flex-direction: column;
    min-height: auto;
    background-attachment: scroll;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
                      url('IMG-ELEC/hori-6.webp') !important;
    background-position: center;
    background-size: cover;
  }
  .cta-banner-left {
    width: 100%;
    padding: 60px 24px;
    background: transparent;
    border-right: none;
    border-bottom: none;
    text-align: center;
    align-items: center;
  }
  .cta-banner-right {
    display: none;
  }
  .cta-banner-btns {
    justify-content: center;
    width: 100%;
  }
  .cta-banner h2 {
    font-size: 28px;
  }
  .cta-banner p {
    margin-left: auto;
    margin-right: auto;
  }
  .process-timeline {
    margin-left: 5px;
    padding-left: 25px;
  }
  .process-dot {
    left: -34px;
    width: 12px;
    height: 12px;
  }
  .process-item h3 {
    font-size: 16px;
  }
  .process-item p {
    font-size: 14px;
  }
  .hero-badges { display: none; }
  .callback-popup {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    min-width: auto;
    border-right: 4px solid var(--primary);
    border-left: none;
  }
  .contact-popup {
    left: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    min-width: auto;
    padding: 20px;
  }
  .top-bar {
    display: none;
  }
  .burger-menu { display: block; }
  .mobile-btn { display: inline-block; }
  .mobile-call-btn { display: inline-block; }
  .nav-links { display: none; }
  .mobile-menu { display: none; }
  nav .nav-inner {
    height: 80px;
    padding: 10px 0;
  }
  nav .logo img {
    height: 50px;
  }
  nav .logo-text {
    font-size: 16px;
  }
  .mobile-call-btn {
    font-size: 11px !important;
    padding: 8px 14px !important;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px !important;
    margin-top: 0;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    text-align: center;
  }
  nav .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 18px;
  }
  .mobile-stars-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    padding: 10px 0;
  }
  .mobile-stars-bar i {
    color: #FFD700;
    font-size: 12px;
  }

  /* WHY US — inverser l'ordre image/texte sur mobile */
  .why-us-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .why-us-img-bg {
    width: 100%;
    height: 380px;
  }
  .why-us-card {
    position: relative;
    width: 100%;
    padding: 40px 24px;
  }
  .contact-strip-inner {
    flex-direction: column;
    gap: 30px;
  }
  .contact-left-card, .contact-right-card {
    width: 100%;
    margin-left: 0;
    padding: 40px 24px;
  }
  .contact-left-card h2 {
    font-size: 28px;
  }
  .contact-info-val {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; gap: 200px 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .nav-links { display: none; }
  .contact-strip-inner {
    flex-direction: column;
    gap: 30px;
  }
  .contact-left-card, .contact-right-card {
    width: 100%;
    margin-left: 0;
    padding: 40px 24px;
  }
  .contact-left-card h2 {
    font-size: 28px;
  }
  .contact-info-val {
    font-size: 24px;
  }
}

/* ELECTRICIEN RENARDET&FILS — overrides design */
.hero{
  background: linear-gradient(115deg, rgba(15,23,42,.82) 0%, rgba(15,23,42,.45) 55%), url('IMG-ELEC/hero-bg-2.webp') center/cover no-repeat;
}
.btn-primary,.btn-secondary,.contact-left-card .btn-contact,.callback-btn,.contact-btn{border-radius:14px!important;}
.strip-badge,.contact-right-card,.about-text,.why-us-card,.service-card-body{border-radius:18px!important;}
.about-text{background:#fffdf7;border:1px solid rgba(245,158,11,.22)}
.about-img-wrap img,.why-us-img-bg,.why-us-img-bg img{border-radius:22px!important}

/* Applique le chevauchement et l'inversion uniquement sur grand écran */
@media (min-width: 993px) {
  .about-inner {
    flex-direction: row-reverse;
    gap: 40px;
  }
  .about-text {
    margin-left: 0;
    margin-right: -5%;
  }
  .about-badge-overlay {
    left: auto;
    right: -30px;
    border-radius: 18px!important;
    background: linear-gradient(135deg,var(--primary),#fbbf24);
    color: #fff;
    border: none;
  }
}

/* Ajustements de la section à propos et de son badge sur mobile et tablette */
@media (max-width: 992px) {
  .about-inner {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .about-text {
    margin-right: 0;
    width: 100%;
  }
  .about-badge-overlay {
    left: 20px;
    right: auto;
    top: -20px;
    border-radius: 18px!important;
    background: linear-gradient(135deg,var(--primary),#fbbf24);
    color: #fff;
    border: none;
  }
}
.cta-banner-left{background:linear-gradient(135deg,#111827,#1f2937);border-right:none}
.why-us-card{left:auto;right:0;border:1px solid rgba(245,158,11,.22);box-shadow:0 18px 60px rgba(15,23,42,.08)!important}
.contact-left-card{background:linear-gradient(135deg,var(--primary),#fbbf24)}
.zone-img-backplate{transform:rotate(3deg) scale(1.02);background:#1f2937}
.service-card-body{bottom:-130px}
.service-card-icon{background:linear-gradient(135deg,var(--primary),#fbbf24)}

@media (min-width: 993px) {
  .why-us-img-bg {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

/* PAGE MERCI - Styles spécifiques */
.merci-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: var(--off-white, #FAFAFA);
}
.merci-card {
  max-width: 600px;
  width: 100%;
  background: var(--white, #ffffff);
  padding: 50px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(15,23,42,.08);
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.success-icon-wrap {
  width: 90px;
  height: 90px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon-wrap i {
  font-size: 45px;
  color: var(--primary, #F59E0B);
}
.merci-card h1 {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary, #1E293B);
  margin-bottom: 16px;
}
.merci-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
}
.btn-retour {
  display: inline-block;
  background: var(--primary, #F59E0B);
  color: var(--white, #ffffff);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 14px;
  transition: all 0.25s ease;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
}
.btn-retour:hover {
  background: var(--primary-dark, #D97706);
  transform: translateY(-1px);
}
