:root {
  /* Vert releve directement dans le logo (teinte dominante de logo.png). */
  --green-logo: #00a848;
  --green-logo-dark: #00913d;
  --green-deep: #022c22;
  --green-dark: #064e3b;
  --green: #047857;
  --green-bright: #10b981;
  --green-light: #34d399;
  --green-soft: #d1fae5;
  --green-bg: #ecfdf5;
  --orange: #ea580c;
  --orange-bright: #f97316;
  --orange-soft: #ffedd5;
  --amber: #f59e0b;
  --amber-bg: #fef3c7;
  --red: #dc2626;
  --cream: #fdfcf7;
  --warm: #faf7f0;
  --ink: #0c0a09;
  --ink-soft: #44403c;
  --ink-mid: #57534e;
  --ink-light: #78716c;
  --line: #e7e5e4;
  --line-soft: #f5f5f4;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(12,10,9,.05);
  --shadow: 0 4px 12px -2px rgba(12,10,9,.08), 0 2px 4px -2px rgba(12,10,9,.04);
  --shadow-lg: 0 24px 48px -12px rgba(4,120,87,.18), 0 12px 24px -6px rgba(12,10,9,.06);
  --shadow-xl: 0 40px 80px -20px rgba(4,120,87,.28);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }

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

.eyebrow {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--green); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
/* Le petit trait vert devant chaque intitule de section a ete retire :
   il revenait 17 fois dans la page et se lisait comme un tiret. */

/* === STICKY PROGRESS BAR === */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-bright), var(--orange));
  z-index: 999;
  transition: width .1s ease-out;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); color: white;
  box-shadow: 0 6px 18px rgba(234,88,12,.32), inset 0 1px 0 rgba(255,255,255,.18);
  letter-spacing: .01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(234,88,12,.42), inset 0 1px 0 rgba(255,255,255,.2);
  background: linear-gradient(135deg, #fb8a3c 0%, #f2630f 100%);
}
@media (max-width: 640px){ .tb-sep { display:none; } }
.btn-secondary {
  background: white; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: white; }
.btn-large { padding: 18px 32px; font-size: 17px; border-radius: var(--radius); }
/* Un bouton pleine largeur n'a aucune raison de tenir sur une seule ligne.
   Le white-space:nowrap herite de .btn tronquait "devis gratuit" sur mobile :
   le visiteur voyait un libelle coupe au moment de valider. */
.btn-block { width: 100%; white-space: normal; line-height: 1.3; }

/* === TOPBAR === */
.topbar {
  background: var(--green-deep); color: white;
  padding: 10px 0; font-size: 13px;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.topbar .badges { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .badges span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .check { color: var(--green-light); font-weight: 800; }
.topbar a {
  color: white; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
/* La promesse "rappel sous 2h" doit avoir son propre lien vers le formulaire.
   Collee au numero, elle passait pour un bouton d'appel : le visiteur qui
   voulait etre rappele n'avait nulle part ou laisser ses coordonnees. */
.topbar-rappel {
  margin-left: 14px; padding: 3px 12px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px;
  font-weight: 700; white-space: nowrap;
}
.topbar-rappel:hover { background: rgba(255,255,255,.14); }

/* === HEADER === */
.header {
  background: rgba(253,252,247,.95);
  backdrop-filter: blur(12px) saturate(140%);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
/* gap + min-width:0 : sans eux, le logo et le bouton se recouvrent des que la
   largeur manque, au lieu de se serrer. */
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.logo { min-width: 0; }
.logo img { height: 42px; width: auto; max-width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.btn-phone {
  font-weight: 700; font-size: 15px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}

/* === HERO REVOLUTION === */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.18;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 60%;
  background: radial-gradient(ellipse at 20% 0%, rgba(16,185,129,.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  color: var(--green-deep);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(16,185,129,.2);
}
.hero-pill .dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.2); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,.05); }
}

/* Live counter FOMO */
.live-counter {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(234,88,12,.08);
  border: 1px solid rgba(234,88,12,.2);
  color: var(--orange);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
  margin-left: 10px;
  vertical-align: middle;
}
.live-counter strong { color: var(--ink); font-weight: 800; }
.live-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-orange 1.5s ease-in-out infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,.6); }
  50% { box-shadow: 0 0 0 6px rgba(234,88,12,0); }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 24px;
  line-height: 1.02;
}
.hero h1 .accent {
  color: var(--orange);
  position: relative; display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 4px; left: -2px; right: -2px;
  height: 16px;
  background: rgba(234,88,12,.2);
  z-index: -1;
  transform: skew(-3deg) rotate(-1deg);
}
.hero h1 strong { color: var(--green); font-weight: 700; }

.hero-lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-bullets {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.hero-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-soft);
}
.hero-bullet .ico {
  width: 24px; height: 24px;
  background: var(--green-bg);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-weight: 800; font-size: 13px;
  margin-top: 1px;
}
.hero-bullet strong { color: var(--ink); font-weight: 700; }

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust-google {
  display: flex; align-items: center; gap: 10px;
}
.hero-trust-google .gicon {
  width: 36px; height: 36px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 800;
  border: 1px solid var(--line);
  background: linear-gradient(45deg, #4285F4 25%, #EA4335 25% 50%, #FBBC04 50% 75%, #34A853 75%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-trust-google .stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.hero-trust-google .lab { font-size: 12px; color: var(--ink-light); font-weight: 600; }
.hero-trust-google strong {
  font-family: 'Fraunces', serif; font-size: 18px; color: var(--ink);
}
.hero-trust-cert {
  font-size: 12px; color: var(--ink-light); font-weight: 600;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.hero-trust-cert strong { color: var(--ink); display: block; font-size: 14px; }

/* === HERO FORM === */
.hero-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-form::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--green), var(--green-bright), var(--orange));
}
.hero-form-head {
  text-align: center; margin-bottom: 24px;
}
.hero-form-tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.hero-form-head h3 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; }
.hero-form-head p { font-size: 14px; color: var(--ink-light); }

.sim-progress {
  display: flex; gap: 6px; margin-bottom: 24px;
}
.sim-progress-step {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--line);
  transition: background .3s;
}
.sim-progress-step.done, .sim-progress-step.active {
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.sim-step { display: none; animation: stepIn .35s ease-out; }
.sim-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.sim-step h4 { font-size: 17px; margin-bottom: 18px; line-height: 1.3; }

.sim-options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-bottom: 14px;
}
.sim-option {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  font-weight: 600; font-size: 13px;
}
.sim-option:hover {
  border-color: var(--green-bright);
  background: var(--green-bg);
  transform: translateY(-2px);
}
.sim-option.selected {
  border-color: var(--green);
  background: var(--green-bg);
  color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}
.sim-option .icon { font-size: 24px; display: block; margin-bottom: 6px; color: var(--green); }

/* === ICONES ===
   Les emojis ont ete remplaces par des traces au meme gabarit que le texte.
   Un emoji est rendu par la police systeme : couleur imposee, style different
   sur iOS, Android et Windows. Un SVG en currentColor suit la couleur et le
   corps du texte, et reste identique partout. */
.ico-svg { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.2em; }
.sim-option .icon .ico-svg { width: 26px; height: 26px; vertical-align: 0; }
.ico-bloc { display: block; margin-bottom: 8px; color: var(--green); }
.ico-bloc .ico-svg { width: 32px; height: 32px; vertical-align: 0; }
.ico-inline { display: inline-flex; flex: none; }
.ico-etape { display: flex; justify-content: center; color: var(--green); }
.ico-etape .ico-svg { width: 21px; height: 21px; vertical-align: 0; }

.sim-actions {
  display: flex; justify-content: space-between; gap: 12px; margin-top: 12px;
}
.sim-back {
  background: transparent; border: none;
  color: var(--ink-light); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; font-size: 13px;
}

/* === LIVE CALC DISPLAY (form) === */
.calc-display {
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border: 1.5px solid var(--green-bright);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Filigrane decoratif derriere le montant estime : un simple symbole euro
   dans la typo du site, a la place de l'emoji sac de billets. */
.calc-display::before {
  content: "\20AC"; position: absolute;
  top: -18px; right: -6px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 96px; line-height: 1;
  color: var(--green-deep); opacity: .07;
}
.calc-label {
  font-size: 11px; font-weight: 800;
  color: var(--green-deep);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.calc-amount {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 800;
  color: var(--green-deep);
  line-height: 1; margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.calc-detail { font-size: 12px; color: var(--green-dark); font-weight: 600; }

.sim-form-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 14px;
}
.sim-form-fields .full { grid-column: 1 / -1; }
.sim-form-fields label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--ink-soft); margin-bottom: 4px;
}
.sim-form-fields input, .sim-form-fields select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: white;
}
.sim-form-fields input:focus, .sim-form-fields select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}

.sim-rgpd {
  margin-top: 10px;
  font-size: 11px; color: var(--ink-light); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.sim-success { text-align: center; padding: 16px 0; }
.sim-success .ico {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 40px; color: var(--green);
  box-shadow: 0 0 0 8px rgba(16,185,129,.1);
  animation: bounce .6s ease-out;
}
@keyframes bounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.sim-success h4 { font-size: 22px; margin-bottom: 12px; }
.sim-success p { font-size: 14px; color: var(--ink-soft); }

/* === STATS === */
.stats {
  background: var(--green-deep);
  color: white;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--green-light);
  line-height: 1; margin-bottom: 8px;
}
.stat-lab { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }

/* === SECTION === */
section { padding: 100px 0; }
.section-header {
  text-align: center; max-width: 740px; margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 16px;
}
.section-header p { font-size: 18px; color: var(--ink-soft); }

/* ============================================ */
/* === LIVE CALCULATOR (NOUVEAU - HERO PIECE) === */
/* ============================================ */
.calculator {
  background: linear-gradient(180deg, var(--cream), var(--warm));
  position: relative;
}
.calculator::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(16,185,129,.05) 0%, transparent 60%);
  pointer-events: none;
}
.calc-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.calc-wrapper::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--green), var(--green-bright), var(--orange));
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
}
.calc-inputs {
  padding: 50px 44px;
  border-right: 1px solid var(--line);
}
.calc-inputs h3 {
  font-size: 26px; margin-bottom: 8px; line-height: 1.2;
}
.calc-inputs > p {
  font-size: 14px; color: var(--ink-light); margin-bottom: 32px;
}

.calc-field { margin-bottom: 28px; }
.calc-field-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.calc-field-label {
  font-size: 14px; font-weight: 700; color: var(--ink);
}
.calc-field-value {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

/* Slider custom */
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px;
  background: var(--line);
  border-radius: 4px;
  outline: none;
  background-image: linear-gradient(var(--green), var(--green));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size .15s;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px;
  background: white;
  border: 3px solid var(--green);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(4,120,87,.25);
  transition: transform .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; }
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: white;
  border: 3px solid var(--green);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(4,120,87,.25);
}
.calc-slider-marks {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 11px; color: var(--ink-light); font-weight: 600;
}

.calc-chips {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.calc-chip {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  font-weight: 600; font-size: 13px;
}
.calc-chip:hover {
  border-color: var(--green-bright);
  background: var(--green-bg);
}
.calc-chip.selected {
  border-color: var(--green);
  background: var(--green-bg);
  color: var(--green-deep);
}
.calc-chip .icon { font-size: 20px; display: block; margin-bottom: 2px; }

/* Calc Results (right side) */
.calc-results {
  padding: 50px 44px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: white;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.calc-results::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 20%, rgba(16,185,129,.3) 0%, transparent 50%);
  pointer-events: none;
}
.calc-results-head {
  position: relative; z-index: 1;
  margin-bottom: 24px;
}
.calc-results-eyebrow {
  display: inline-block;
  background: rgba(16,185,129,.2);
  color: var(--green-light);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.calc-results-head h3 {
  color: white;
  font-size: 22px; margin-bottom: 6px;
}
.calc-results-head p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.calc-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  position: relative; z-index: 1;
  font-size: 14px;
}
.calc-line .lab { color: rgba(255,255,255,.85); }
.calc-line .val {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.calc-line.aid .val { color: var(--green-light); }
.calc-line.aid .lab::before {
  content: "−"; color: var(--green-light); margin-right: 6px; font-weight: 800;
}

.calc-line.total {
  margin-top: 16px;
  padding: 18px 22px;
  background: rgba(16,185,129,.15);
  border: 1.5px solid var(--green-bright);
  border-radius: var(--radius);
  border-bottom: 1.5px solid var(--green-bright);
}
.calc-line.total .lab {
  font-weight: 800; font-size: 13px; color: white;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.calc-line.total .val {
  font-size: 32px; color: white;
}

.calc-bonus {
  margin-top: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  position: relative; z-index: 1;
}
.calc-bonus-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.calc-bonus-card .lab {
  font-size: 11px; color: rgba(255,255,255,.7);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.calc-bonus-card .val {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 800;
  color: var(--orange-bright);
}

.calc-cta {
  margin-top: 20px;
  position: relative; z-index: 1;
}

/* ============================================ */
/* === GARANTIES (4 cards big) === */
/* ============================================ */
.guarantees {
  background: linear-gradient(135deg, var(--amber-bg), #fef3c7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gua-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(245,158,11,.3);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.gua-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gua-card::before {
  content: "✓ ENGAGEMENT";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.gua-icon {
  width: 64px; height: 64px;
  margin: 12px auto 18px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--green);
}
.gua-card h4 {
  font-size: 18px; margin-bottom: 8px; line-height: 1.3;
}
.gua-card .promise {
  font-family: 'Fraunces', serif;
  color: var(--green); font-weight: 700;
  font-size: 14px; margin-bottom: 12px;
}
.gua-card p {
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
}

/* === ZIGZAG === */
.zigzag { background: var(--white); }
.zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.zig:last-child { margin-bottom: 0; }
.zig.reverse > div:first-child { order: 2; }
.zig-text h3 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 20px;
}
.zig-text > p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.zig-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.zig-list-item {
  background: var(--green-bg);
  border-left: 3px solid var(--green);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--green-deep);
}
.zig-list-item::before {
  content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0;
}
.zig-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4 / 3;
}
.zig-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease-out;
}
.zig-img:hover img { transform: scale(1.05); }
.zig-img-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  color: var(--green-deep);
  font-size: 12px; font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 6px;
}

/* === 3 CAS CLIENTS === */
.cases { background: var(--warm); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-lg);
}
.case.featured::after {
  content: "★ Le plus avantageux";
  position: absolute;
  top: -12px; right: 24px;
  background: var(--orange); color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.case-tag {
  position: absolute; top: -12px; left: 32px;
  background: var(--green);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.case.modeste .case-tag { background: var(--amber); }
.case.intermediaire .case-tag { background: #8b5cf6; }
.case-profile {
  font-size: 12px; font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 6px; margin-top: 8px;
}
.case h3 { font-size: 22px; margin-bottom: 12px; }
.case-where {
  font-size: 13px; color: var(--ink-light);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 6px;
}
.case-desc {
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
  line-height: 1.55;
}
.case-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
  font-size: 14px;
}
.case-line.minus { color: var(--green); }
.case-line.minus .val { font-weight: 700; }
.case-line .lab { color: var(--ink-soft); }
.case-line .val { font-family: 'Fraunces', serif; font-weight: 600; }
.case-total {
  margin-top: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border-radius: var(--radius);
  border: 1.5px solid rgba(16,185,129,.3);
  display: flex; justify-content: space-between; align-items: center;
}
.case-total .lab {
  font-weight: 700; font-size: 13px; color: var(--green-deep);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.case-total .val {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 800;
  color: var(--green-deep);
}
.case-bonus {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--amber-bg);
  border-radius: var(--radius-sm);
  font-size: 13px; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.case-bonus strong { color: var(--ink); }
.case-foot {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11px; color: var(--ink-light);
  line-height: 1.5;
}

/* === ROI VISUALIZER === */
.roi { background: var(--cream); }
.roi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  max-width: 1000px;
  margin: 0 auto;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.roi-text h3 { font-size: 28px; margin-bottom: 16px; }
.roi-text > p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.roi-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.roi-stat {
  background: var(--green-bg);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.roi-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 800;
  color: var(--green-deep);
  line-height: 1; margin-bottom: 4px;
}
.roi-stat .lab {
  font-size: 11px; color: var(--green-dark);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.roi-chart {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
}
.roi-chart svg { width: 100%; height: auto; display: block; }
.roi-chart-legend {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 16px;
  font-size: 12px; font-weight: 600;
}
.roi-chart-legend span {
  display: inline-flex; align-items: center; gap: 6px;
}
.roi-chart-legend .dot {
  width: 12px; height: 3px; border-radius: 2px;
}

/* === GALERIE === */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
/* Les villes sont annoncees pour la serie, pas photo par photo : on sait que
   ces chantiers sont les notres, on ne sait pas relier chaque cliche a sa
   commune. Une legende inventee serait un faux temoignage. */
.gallery-villes {
  font-size: 14px; color: var(--ink-light);
  margin-top: 10px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .where {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(12,10,9,.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
}

/* === COMPARATIF === */
.compare { background: var(--warm); }
.compare-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: white;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 22px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.compare-table thead th {
  background: var(--cream);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding: 28px 20px;
}
.compare-table thead th.us {
  background: var(--green); color: white;
  position: relative;
  font-size: 14px;
}
.compare-table thead th.us::after {
  content: "★ NOUS";
  position: absolute;
  top: -10px; right: 16px;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.compare-table tbody td {
  font-size: 15px; color: var(--ink-soft);
  vertical-align: top;
}
.compare-table tbody td:first-child {
  font-weight: 700; color: var(--ink);
}
.compare-table tbody td.us {
  background: var(--green-bg);
  font-weight: 600;
  color: var(--green-deep);
}
.compare-table tbody tr:last-child td { border-bottom: none; }

/* === ENGAGEMENTS === */
.engagements { background: var(--white); }
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.eng-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .25s;
}
.eng-card:hover {
  background: white;
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.eng-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--green);
}
.eng-card h4 { font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
.eng-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* === BRANDS === */
.brands-section { background: var(--warm); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all .25s;
  overflow: hidden;
}
.brand-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.brand-card::before {
  content: "★ Partenaire agréé";
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green-bg);
  color: var(--green-deep);
  font-size: 10px; font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 800;
  margin: 24px 0 8px;
  letter-spacing: -0.03em;
  display: block;
}
.brand-name.daikin { color: #003478; }
.brand-name.atlantic { color: #c8102e; font-style: italic; }
.brand-name.airwell { color: #1a1a1a; }
.brand-logo-wrap {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin: 24px 0 12px;
}
.brand-logo {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-tagline {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.brand-features {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: left;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.brand-features div {
  display: flex; align-items: center; gap: 8px;
}
.brand-features .check {
  color: var(--green); font-weight: 800; width: 16px;
}

/* === AIDES === */
.aides { background: var(--cream); }
.aides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aide-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.aide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.aide-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}
.aide-card .label {
  font-size: 11px; font-weight: 800;
  color: var(--green);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.aide-card h4 { font-size: 22px; margin-bottom: 16px; }
.aide-card .amount {
  font-family: 'Fraunces', serif;
  font-size: 38px; font-weight: 800;
  color: var(--green);
  line-height: 1; margin-bottom: 16px;
}
.aide-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.aide-card .tag {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-deep);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
}

/* === MÉTHODE === */
.methode { background: linear-gradient(135deg, var(--green-deep), var(--green)); color: white; }
.methode .section-header h2 { color: white; }
.methode .section-header p { color: rgba(255,255,255,.8); }
.methode .eyebrow { color: var(--green-light); }
.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.methode-grid::before {
  content: ""; position: absolute;
  top: 30px; left: 60px; right: 60px; height: 2px;
  background: rgba(16,185,129,.3);
  z-index: 0;
}
.methode-step { position: relative; z-index: 1; text-align: center; }
.methode-num {
  width: 60px; height: 60px;
  background: var(--green-bright);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(16,185,129,.15);
}
.methode-step h4 { color: white; font-size: 19px; margin-bottom: 10px; }
.methode-step p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }

/* === TÉMOIGNAGES === */
.temoignages { background: var(--warm); }
.temo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.temo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.temo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.temo-stars {
  color: var(--amber); margin-bottom: 14px; font-size: 18px;
  letter-spacing: 2px;
}
.temo-highlight {
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border: 1px solid var(--green-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
  text-align: center;
}
.temo-highlight .val {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}
.temo-highlight .lab {
  font-size: 11px; color: var(--green-dark);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 4px;
}
.temo-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: 16px; line-height: 1.5;
  color: var(--ink); margin-bottom: 20px;
  flex-grow: 1;
}
.temo-foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.temo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700;
  color: white; font-size: 16px;
}
.temo-avatar.a1 { background: linear-gradient(135deg, #047857, #10b981); }
.temo-avatar.a2 { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.temo-avatar.a3 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.temo-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--green-light);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.temo-name { font-weight: 700; font-size: 14px; }
.temo-where { font-size: 12px; color: var(--ink-light); }

/* === FAQ === */
.faq { background: var(--white); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--green-bright); }
.faq-item[open] { border-color: var(--green); }
.faq-q {
  padding: 22px 28px;
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 28px; color: var(--green);
  transition: transform .25s;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 300;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px 24px;
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.7;
}

/* === CTA FINAL === */
.cta-final {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(16,185,129,.4) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final h2 {
  color: white;
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 20px;
  position: relative;
}
.cta-final p {
  font-size: 19px;
  color: rgba(255,255,255,.9);
  margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-final .btn { position: relative; }

/* === FOOTER === */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.85);
  padding: 70px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h5 {
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer p, .footer a, .footer li {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,.7);
}
.footer ul { list-style: none; }
.footer a:hover { color: var(--green-light); }
.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* === STICKY MOBILE BOTTOM === */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.12);
  z-index: 90;
  border-top: 1px solid var(--line);
  gap: 10px;
}
.mobile-sticky .btn { flex: 1; padding: 14px 16px; font-size: 15px; }
.mobile-sticky .btn-call {
  /* --green-deep (#022c22) passait pour du noir a cote de l'orange.
     On reprend le vert exact du logo pour que la barre du bas appartienne
     visiblement a la marque. */
  background: var(--green-logo); color: white;
  flex: 0 0 56px; padding: 14px;
}
.mobile-sticky .btn-call:hover,
.mobile-sticky .btn-call:active { background: var(--green-logo-dark); }

/* === WHATSAPP FLOATING === */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 80;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.05); }

/* === EXIT-INTENT POPUP === */
.exit-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(12,10,9,.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .25s;
}
.exit-overlay.show { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink-light);
  display: flex; align-items: center; justify-content: center;
}
.exit-modal .ico {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px; color: #fff;
  box-shadow: 0 0 0 8px rgba(234,88,12,.15);
}
.exit-modal h3 { text-align: center; font-size: 26px; margin-bottom: 12px; }
.exit-modal p { text-align: center; color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; }
.exit-modal .highlight {
  background: var(--green-bg);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  text-align: center;
}
.exit-modal .highlight strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--green-deep);
}

/* Scroll animations */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .engagements-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-trust { flex-wrap: wrap; }
  .live-counter { margin-left: 0; display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-inputs { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--line); }
  .calc-results { padding: 36px 28px; }
  .roi-grid { grid-template-columns: 1fr; gap: 32px; }
  .zig { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .zig.reverse > div:first-child { order: 0; }
  .cases-grid, .aides-grid, .temo-grid, .engagements-grid, .brands-grid, .guarantees-grid {
    grid-template-columns: 1fr; gap: 20px;
  }
  .methode-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .methode-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 70px 0; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 80px; }
  .wa-float { bottom: 92px; }
  /* Tablette : le bouton reste, mais compact, pour laisser le logo entier. */
  .header-cta .btn-primary { padding: 11px 18px; font-size: 14px; white-space: nowrap; }
}
@media (max-width: 640px) {
  .topbar { font-size: 11px; padding: 8px 0; }
  .topbar .badges { gap: 12px; }
  /* Sur telephone la barre collante du bas affiche "Etre rappele sous 2h" en
     permanence : ce rappel en haut ferait doublon et pousserait le contenu
     d'une ligne de plus. Le bandeau ne garde que le numero, sans promesse. */
  .topbar-rappel { display: none; }
  .btn-large { padding: 16px 20px; font-size: 15.5px; }
  .header-cta .btn-secondary, .header-cta .btn-phone { display: none; }
  /* Le bouton du header passait par-dessus le logo : le nom de l'entreprise
     disparaissait sous l'orange. La barre collante du bas porte deja l'appel
     a l'action en permanence sur mobile, ce bouton faisait doublon. */
  .header-cta { display: none; }
  .hero-form { padding: 28px 24px; }
  .sim-form-fields { grid-template-columns: 1fr; }
  .case { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { min-width: 540px; }
  .compare-table th, .compare-table td { padding: 16px 12px; font-size: 13px; }
  .calc-chips { grid-template-columns: repeat(2, 1fr); }
  .roi-stats { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr !important; }
  .h1-callout { flex-direction: column; text-align: center; }
  .case-1euro-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}



/* ===================================================================
   LOGO 3D EXO'ENERGIE - en-tete
   Volume obtenu par empilement de 18 calques du trace reel du logo,
   sans librairie 3D : rendu par la carte graphique, 0 Ko de JavaScript.
   Le trace est vectorise depuis logo.png : la petite maison est un trou
   dans la matiere, pas une forme posee par-dessus.
   =================================================================== */
.logo { display:flex; align-items:center; gap:5px; text-decoration:none; }

.exo3d {
  --exo3d-z: .38;
  position:relative;
  width:52px; height:42px;
  flex:0 0 auto;
  perspective:520px;
  perspective-origin:50% 45%;
}
.exo3d__stack {
  position:absolute; inset:0;
  transform-style:preserve-3d;
  animation:exo3dOscille 16s ease-in-out infinite;
  will-change:transform;
}
.exo3d__stack > i {
  position:absolute; inset:0;
  display:block;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 828 664'%3E%3Cg transform='translate(0,664) scale(0.1,-0.1)'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M3997 6620 c-5 -18 -14 -20 -76 -20 -60 0 -72 -3 -81 -20 -8 -16 -21%0A-20 -58 -20 -42 0 -51 -4 -82 -40 -21 -24 -44 -40 -58 -40 -32 0 -3482 -3450%0A-3482 -3482 0 -14 -16 -37 -40 -58 -36 -31 -40 -40 -40 -82 0 -37 -4 -50 -20%0A-58 -17 -9 -20 -21 -20 -81 0 -62 -2 -71 -20 -76 -19 -5 -20 -14 -20 -123 0%0A-109 1 -118 20 -123 18 -5 20 -14 20 -96 0 -80 2 -92 20 -101 13 -7 20 -21 20%0A-40 0 -19 7 -33 20 -40 12 -6 20 -21 20 -36 0 -19 17 -43 60 -84 37 -36 60%0A-66 60 -80 0 -29 52 -80 82 -80 14 0 36 -15 58 -40 25 -28 43 -40 62 -40 17 0%0A31 -8 38 -20 7 -13 21 -20 40 -20 19 0 33 -7 40 -20 7 -13 21 -20 40 -20 19 0%0A33 -7 40 -20 10 -19 21 -20 260 -20 239 0 250 1 260 20 7 12 21 20 38 20 16 0%0A32 8 40 20 7 11 19 20 27 20 13 0 15 -40 15 -295 0 -284 1 -295 20 -305 18 -9%0A20 -21 20 -100 0 -79 2 -91 20 -100 16 -8 20 -21 20 -60 0 -39 4 -52 20 -60%0A13 -7 20 -21 20 -40 0 -19 7 -33 20 -40 13 -7 20 -21 20 -40 0 -19 7 -33 20%0A-40 12 -7 20 -21 20 -38 0 -19 12 -37 40 -62 24 -21 40 -44 40 -58 0 -31 171%0A-202 202 -202 14 0 37 -16 58 -40 23 -26 44 -40 60 -40 16 0 37 -14 60 -40 31%0A-36 40 -40 82 -40 37 0 50 -4 58 -20 7 -13 21 -20 40 -20 19 0 33 -7 40 -20 9%0A-18 21 -20 101 -20 82 0 91 -2 96 -20 5 -20 14 -20 1783 -20 1769 0 1778 0%0A1783 20 5 18 14 20 76 20 60 0 72 3 81 20 8 16 21 20 60 20 39 0 52 4 60 20 7%0A13 21 20 40 20 19 0 33 7 40 20 7 12 21 20 38 20 19 0 37 12 62 40 21 24 44%0A40 58 40 33 0 322 291 322 324 0 15 8 30 20 36 13 7 20 21 20 40 0 19 7 33 20%0A40 13 7 20 21 20 40 0 19 7 33 20 40 13 7 20 21 20 40 0 19 7 33 20 40 17 9%0A20 21 20 80 0 59 3 71 20 80 19 10 20 23 22 363 l3 352 32 3 c24 2 34 -2 43%0A-17 9 -17 20 -21 60 -21 39 0 52 -4 60 -20 10 -19 21 -20 200 -20 179 0 190 1%0A200 20 8 16 21 20 60 20 39 0 52 4 60 20 8 16 21 20 58 20 42 0 51 4 82 40 21%0A24 44 40 58 40 31 0 202 171 202 202 0 14 16 37 40 58 28 25 40 43 40 62 0 17%0A8 31 20 38 16 8 20 21 20 60 0 39 4 52 20 60 19 10 20 21 20 240 0 219 -1 230%0A-20 240 -16 8 -20 21 -20 60 0 39 -4 52 -20 60 -12 7 -20 21 -20 38 0 19 -12%0A37 -40 62 -24 21 -40 44 -40 58 0 32 -3370 3402 -3402 3402 -14 0 -37 16 -58%0A40 -25 28 -43 40 -62 40 -17 0 -31 8 -38 20 -7 13 -21 20 -40 20 -19 0 -33 7%0A-40 20 -9 17 -21 20 -81 20 -62 0 -71 2 -76 20 -5 19 -14 20 -143 20 -129 0%0A-138 -1 -143 -20z m753 -2750 l610 -610 -2 -828 -3 -827 -1209 -3 c-1199 -2%0A-1210 -2 -1228 18 -10 11 -23 20 -28 20 -19 0 -10 38 10 43 20 5 20 14 20 757%0A0 743 0 752 -20 757 -20 5 -29 43 -10 43 6 0 288 279 628 619 339 341 618 620%0A620 620 1 1 277 -274 612 -609z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 828 664'%3E%3Cg transform='translate(0,664) scale(0.1,-0.1)'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M3997 6620 c-5 -18 -14 -20 -76 -20 -60 0 -72 -3 -81 -20 -8 -16 -21%0A-20 -58 -20 -42 0 -51 -4 -82 -40 -21 -24 -44 -40 -58 -40 -32 0 -3482 -3450%0A-3482 -3482 0 -14 -16 -37 -40 -58 -36 -31 -40 -40 -40 -82 0 -37 -4 -50 -20%0A-58 -17 -9 -20 -21 -20 -81 0 -62 -2 -71 -20 -76 -19 -5 -20 -14 -20 -123 0%0A-109 1 -118 20 -123 18 -5 20 -14 20 -96 0 -80 2 -92 20 -101 13 -7 20 -21 20%0A-40 0 -19 7 -33 20 -40 12 -6 20 -21 20 -36 0 -19 17 -43 60 -84 37 -36 60%0A-66 60 -80 0 -29 52 -80 82 -80 14 0 36 -15 58 -40 25 -28 43 -40 62 -40 17 0%0A31 -8 38 -20 7 -13 21 -20 40 -20 19 0 33 -7 40 -20 7 -13 21 -20 40 -20 19 0%0A33 -7 40 -20 10 -19 21 -20 260 -20 239 0 250 1 260 20 7 12 21 20 38 20 16 0%0A32 8 40 20 7 11 19 20 27 20 13 0 15 -40 15 -295 0 -284 1 -295 20 -305 18 -9%0A20 -21 20 -100 0 -79 2 -91 20 -100 16 -8 20 -21 20 -60 0 -39 4 -52 20 -60%0A13 -7 20 -21 20 -40 0 -19 7 -33 20 -40 13 -7 20 -21 20 -40 0 -19 7 -33 20%0A-40 12 -7 20 -21 20 -38 0 -19 12 -37 40 -62 24 -21 40 -44 40 -58 0 -31 171%0A-202 202 -202 14 0 37 -16 58 -40 23 -26 44 -40 60 -40 16 0 37 -14 60 -40 31%0A-36 40 -40 82 -40 37 0 50 -4 58 -20 7 -13 21 -20 40 -20 19 0 33 -7 40 -20 9%0A-18 21 -20 101 -20 82 0 91 -2 96 -20 5 -20 14 -20 1783 -20 1769 0 1778 0%0A1783 20 5 18 14 20 76 20 60 0 72 3 81 20 8 16 21 20 60 20 39 0 52 4 60 20 7%0A13 21 20 40 20 19 0 33 7 40 20 7 12 21 20 38 20 19 0 37 12 62 40 21 24 44%0A40 58 40 33 0 322 291 322 324 0 15 8 30 20 36 13 7 20 21 20 40 0 19 7 33 20%0A40 13 7 20 21 20 40 0 19 7 33 20 40 13 7 20 21 20 40 0 19 7 33 20 40 17 9%0A20 21 20 80 0 59 3 71 20 80 19 10 20 23 22 363 l3 352 32 3 c24 2 34 -2 43%0A-17 9 -17 20 -21 60 -21 39 0 52 -4 60 -20 10 -19 21 -20 200 -20 179 0 190 1%0A200 20 8 16 21 20 60 20 39 0 52 4 60 20 8 16 21 20 58 20 42 0 51 4 82 40 21%0A24 44 40 58 40 31 0 202 171 202 202 0 14 16 37 40 58 28 25 40 43 40 62 0 17%0A8 31 20 38 16 8 20 21 20 60 0 39 4 52 20 60 19 10 20 21 20 240 0 219 -1 230%0A-20 240 -16 8 -20 21 -20 60 0 39 -4 52 -20 60 -12 7 -20 21 -20 38 0 19 -12%0A37 -40 62 -24 21 -40 44 -40 58 0 32 -3370 3402 -3402 3402 -14 0 -37 16 -58%0A40 -25 28 -43 40 -62 40 -17 0 -31 8 -38 20 -7 13 -21 20 -40 20 -19 0 -33 7%0A-40 20 -9 17 -21 20 -81 20 -62 0 -71 2 -76 20 -5 19 -14 20 -143 20 -129 0%0A-138 -1 -143 -20z m753 -2750 l610 -610 -2 -828 -3 -827 -1209 -3 c-1199 -2%0A-1210 -2 -1228 18 -10 11 -23 20 -28 20 -19 0 -10 38 10 43 20 5 20 14 20 757%0A0 743 0 752 -20 757 -20 5 -29 43 -10 43 6 0 288 279 628 619 339 341 618 620%0A620 620 1 1 277 -274 612 -609z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size:contain; mask-size:contain;
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-position:center; mask-position:center;
  backface-visibility:visible;
}
.exo3d__l0{background:rgb(0,176,80);transform:translateZ(calc(-8.5px * var(--exo3d-z)));}
.exo3d__l1{background:rgb(0,166,75);transform:translateZ(calc(-7.5px * var(--exo3d-z)));}
.exo3d__l2{background:rgb(0,155,70);transform:translateZ(calc(-6.5px * var(--exo3d-z)));}
.exo3d__l3{background:rgb(0,144,65);transform:translateZ(calc(-5.5px * var(--exo3d-z)));}
.exo3d__l4{background:rgb(0,133,60);transform:translateZ(calc(-4.5px * var(--exo3d-z)));}
.exo3d__l5{background:rgb(0,121,55);transform:translateZ(calc(-3.5px * var(--exo3d-z)));}
.exo3d__l6{background:rgb(0,109,50);transform:translateZ(calc(-2.5px * var(--exo3d-z)));}
.exo3d__l7{background:rgb(0,97,44);transform:translateZ(calc(-1.5px * var(--exo3d-z)));}
.exo3d__l8{background:rgb(0,82,37);transform:translateZ(calc(-0.5px * var(--exo3d-z)));}
.exo3d__l9{background:rgb(0,82,37);transform:translateZ(calc(0.5px * var(--exo3d-z)));}
.exo3d__l10{background:rgb(0,97,44);transform:translateZ(calc(1.5px * var(--exo3d-z)));}
.exo3d__l11{background:rgb(0,109,50);transform:translateZ(calc(2.5px * var(--exo3d-z)));}
.exo3d__l12{background:rgb(0,121,55);transform:translateZ(calc(3.5px * var(--exo3d-z)));}
.exo3d__l13{background:rgb(0,133,60);transform:translateZ(calc(4.5px * var(--exo3d-z)));}
.exo3d__l14{background:rgb(0,144,65);transform:translateZ(calc(5.5px * var(--exo3d-z)));}
.exo3d__l15{background:rgb(0,155,70);transform:translateZ(calc(6.5px * var(--exo3d-z)));}
.exo3d__l16{background:rgb(0,166,75);transform:translateZ(calc(7.5px * var(--exo3d-z)));}
.exo3d__l17{background:rgb(0,176,80);transform:translateZ(calc(8.5px * var(--exo3d-z)));}

/* modele de la face avant : lumiere en haut a gauche, ombre en bas a droite */
.exo3d__stack > i.exo3d__modele {
  background:linear-gradient(145deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.10) 38%, rgba(0,0,0,.10) 62%, rgba(0,0,0,.30) 100%);
  transform:translateZ(calc(9.2px * var(--exo3d-z)));
  mix-blend-mode:overlay;
}
.exo3d__stack > i.exo3d__modele-dos {
  background:linear-gradient(145deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.12) 55%, rgba(255,255,255,.12) 100%);
  transform:translateZ(calc(-9.2px * var(--exo3d-z)));
  mix-blend-mode:overlay;
}
/* reflet qui balaie l'objet */
.exo3d__stack > i.exo3d__reflet {
  background:linear-gradient(115deg, transparent 30%, rgba(255,255,255,.62) 47%, rgba(255,255,255,0) 62%);
  background-size:260% 100%;
  transform:translateZ(calc(9.6px * var(--exo3d-z)));
  animation:exo3dReflet 16s ease-in-out infinite;
  mix-blend-mode:screen;
}
/* ombre de contact, pour poser l'objet */
.exo3d::after {
  content:"";
  position:absolute; left:12%; right:12%; bottom:-5px; height:7px;
  background:radial-gradient(ellipse at center, rgba(2,44,34,.34), transparent 72%);
  filter:blur(2.5px);
  z-index:-1;
}

.exo3d-wordmark { height:33px; width:auto; display:block; }

@keyframes exo3dOscille {
  0%   { transform:rotateX(7deg) rotateY(-23deg); }
  50%  { transform:rotateX(4deg) rotateY(21deg); }
  100% { transform:rotateX(7deg) rotateY(-23deg); }
}
@keyframes exo3dReflet {
  0%,100% { background-position:130% 0; }
  50%     { background-position:-30% 0; }
}
.logo:hover .exo3d__stack { animation-duration:5.5s; }
.logo:hover .exo3d__reflet { animation-duration:5.5s; }

/* repli : si les masques CSS ne sont pas geres, le logo plat reste affiche */
.logo .exo3d-plat { display:none; height:42px; width:auto; }
@supports not ((-webkit-mask-image: linear-gradient(#000,#000)) or (mask-image: linear-gradient(#000,#000))) {
  .logo .exo3d, .logo .exo3d-wordmark { display:none; }
  .logo .exo3d-plat { display:block; }
}

@media (prefers-reduced-motion: reduce) {
  .exo3d__stack { animation:none; transform:rotateX(6deg) rotateY(-15deg); }
  .exo3d__reflet { animation:none; background-position:40% 0; }
}

/* ===================================================================
   IMAGE DU HERO : leger travelling avant, facon prise de vue
   =================================================================== */
/* Le hero porte maintenant une video. L'image reste en secours, immobile,
   un cran derriere : si la video ne se lance pas, rien ne manque a l'ecran. */
.hero::before { z-index:-3; opacity:.18; transform:scale(1.04); }

.hero-video {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center right;
  opacity:.18;
  z-index:-2;
  pointer-events:none;
  transform:scale(1.04);
}
@media (max-width: 700px) {
  /* sur mobile on garde l'image fixe : pas de video a telecharger en 4G */
  .hero-video { display:none; }
}
@media (max-width: 768px) {
  .exo3d { width:46px; height:37px; }
  .exo3d-wordmark { height:29px; }
  .logo .exo3d-plat { height:37px; }
}
