/* ==========================================================================
   LES COMPAGNONS NORMANDS — V2
   Charte : navy / orange / yellow / red — design différencié
   ========================================================================== */

:root {
  --navy:        #0d2340;
  --navy-deep:   #081729;
  --navy-soft:   #1a3358;
  --orange:      #f08a1c;
  --orange-dark: #d97706;
  --yellow:      #ffc107;
  --red:         #e63946;
  --red-dark:    #c1272d;
  --white:       #ffffff;
  --light:       #f7f8fa;
  --gray-100:    #f1f3f6;
  --gray-200:    #e4e8ee;
  --gray-300:    #cbd2dc;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;

  --shadow-sm:   0 1px 2px rgba(13, 35, 64, 0.06);
  --shadow:      0 4px 14px rgba(13, 35, 64, 0.08);
  --shadow-md:   0 8px 24px rgba(13, 35, 64, 0.12);
  --shadow-lg:   0 18px 50px rgba(13, 35, 64, 0.20);
  --shadow-orange: 0 8px 24px rgba(240, 138, 28, 0.35);
  --shadow-red:  0 8px 24px rgba(230, 57, 70, 0.35);

  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-2xl:  32px;

  --container:   1240px;
  --header-h:    72px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: all 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 100%);
  z-index: 200; transition: width 0.1s linear;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed; right: 22px; bottom: 90px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all 0.3s var(--ease); z-index: 90;
}
.back-to-top:hover { background: var(--orange); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* MOBILE STICKY (sobre) */
.urgence-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 10px 12px; display: none; gap: 10px; z-index: 100;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.urgence-btn {
  flex: 2; display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 10px;
  background: var(--navy);
  color: var(--white); position: relative; overflow: hidden;
}
.urgence-pulse {
  position: absolute; left: 16px; top: 50%; width: 32px; height: 32px;
  border-radius: 50%; background: var(--orange); opacity: 0.22;
  transform: translateY(-50%) scale(1);
  animation: urgence-pulse 2.4s ease-out infinite;
}
@keyframes urgence-pulse {
  0% { transform: translateY(-50%) scale(1); opacity: 0.3; }
  100% { transform: translateY(-50%) scale(2); opacity: 0; }
}
.urgence-btn svg { color: var(--orange); position: relative; z-index: 1; }
.urgence-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; position: relative; z-index: 1; }
.urgence-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.65); }
.urgence-num { font-size: 16px; font-weight: 800; letter-spacing: 0.3px; }
.urgence-devis {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-weight: 700; font-size: 14px;
}

/* HEADER */
.header {
  position: sticky; top: 0; background: var(--white);
  border-bottom: 1px solid var(--gray-200); z-index: 80;
  height: var(--header-h); display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; line-height: 1; flex-shrink: 0; text-decoration: none; }
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(13, 35, 64, 0.14));
  transition: transform 0.2s var(--ease);
}
@media (max-width: 768px) {
  .logo-img { height: 40px; }
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 13px; font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13, 35, 64, 0.12);
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(240, 138, 28, 0.18) 0%, transparent 100%);
  pointer-events: none;
}
.logo-mark-letter { position: relative; z-index: 1; }
.logo-mark-letter-c { color: var(--orange); margin: 0 1px; }
.logo-text { display: flex; flex-direction: column; line-height: 0.95; }
.logo-main {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.logo-accent {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 1.2px;
  margin-top: 2px;
  text-transform: uppercase;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  color: var(--gray-500);
  letter-spacing: 2.2px;
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-desktop {
  flex: 1;
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-desktop a {
  font-weight: 600; font-size: 14.5px; color: var(--gray-700); position: relative;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--orange); transition: right 0.25s var(--ease);
}
.nav-desktop a:hover { color: var(--navy); }
.nav-desktop a:hover::after { right: 0; }

.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 800; color: var(--navy); font-size: 14px;
  padding: 8px 14px; border: 1.5px solid var(--gray-200); border-radius: 100px;
}
.header-phone:hover { border-color: var(--orange); color: var(--orange); }
.header-phone svg { color: var(--orange); }

.header-cta { padding: 11px 20px; font-size: 13.5px; }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 0 auto; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow); z-index: 79; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 14px 4px; border-bottom: 1px solid var(--gray-100); font-weight: 600; color: var(--gray-700); }
.nav-mobile a.btn { margin-top: 12px; border: none; text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-weight: 700; font-size: 14.5px; letter-spacing: 0.2px;
  transition: all 0.2s var(--ease); cursor: pointer; white-space: nowrap; line-height: 1;
}
[hidden] { display: none !important; }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240, 138, 28, 0.45); }
.btn-orange-outline {
  background: transparent; color: var(--orange); border: 2px solid var(--orange);
  font-weight: 700;
}
.btn-orange-outline:hover { background: var(--orange); color: var(--white); }
.btn-yellow {
  background: var(--yellow); color: var(--navy);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35);
}
.btn-yellow:hover { background: #e6ac00; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-ghost { background: transparent; color: var(--gray-500); }
.btn-ghost:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-ghost:not(:disabled):hover { color: var(--navy); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-full { width: 100%; }

/* ============================================================
   HERO (Solybat-style, sober & premium)
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 110px;
  isolation: isolate;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-inner { position: relative; z-index: 1; max-width: 920px; text-align: center; margin: 0 auto; }

.hero .hero-tag-row { justify-content: center; margin-bottom: 32px; }

.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0 auto 22px;
  text-wrap: balance;
  text-align: center;
  max-width: 16ch;
}
.hero-h1-accent {
  color: var(--orange);
  font-weight: 900;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  position: relative;
  white-space: nowrap;
}
.hero-h1-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 6px;
  background: var(--yellow);
  opacity: 0.32;
  z-index: -1;
  border-radius: 2px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 40px;
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.32);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.2s var(--ease);
}
.hero-emergency:hover {
  background: rgba(230, 57, 70, 0.14);
  border-color: rgba(230, 57, 70, 0.55);
}
.hero-emergency-dot {
  width: 8px; height: 8px;
  background: #ff5b6a;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero-emergency-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: #ff5b6a;
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
.hero-emergency-label { color: #ff8e96; font-weight: 700; letter-spacing: 0.3px; }
.hero-emergency-num { font-weight: 800; letter-spacing: 0.5px; color: var(--white); }
.hero-emergency-sub { color: rgba(255, 255, 255, 0.55); font-size: 12.5px; font-weight: 500; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* legacy class kept for compat (not used) */
.hero-split {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 60px 0 80px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1759722127719-cbde72c095dd?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.7;
  filter: contrast(1.1) brightness(0.7) saturate(0.9);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(240, 138, 28, 0.10) 0%, transparent 55%),
    linear-gradient(135deg, rgba(13, 35, 64, 0.55) 0%, rgba(8, 23, 41, 0.78) 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-split-inner { position: relative; z-index: 1; }

.hero-tag-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-loc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px;
}
.hero-loc-tag svg { color: var(--orange); }
.hero-rating {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
}
.hero-stars {
  color: var(--yellow); font-size: 15px; letter-spacing: 1.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-rating-text { color: rgba(255,255,255,0.85); }
.hero-rating-text b { color: var(--white); font-weight: 800; }

.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero-h1-accent {
  background: linear-gradient(120deg, var(--orange) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 18px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin-bottom: 44px;
}

/* DOORS */
.hero-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 880px;
}
.hero-door {
  position: relative;
  display: block;
  padding: 28px 28px 26px;
  border-radius: var(--radius-lg);
  color: var(--white);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
}
.hero-door:hover { transform: translateY(-4px); }
.hero-door::before {
  content: ''; position: absolute; inset: 0; opacity: 0.08;
  background-image: radial-gradient(circle at top right, rgba(255,255,255,0.4), transparent 60%);
}

.door-urgence {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 57, 70, 0.35);
  backdrop-filter: blur(10px);
}
.door-urgence:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(230, 57, 70, 0.6);
  box-shadow: 0 18px 40px rgba(230, 57, 70, 0.18);
}
.door-urgence .door-icon {
  background: rgba(230, 57, 70, 0.18);
  color: #ff6b76;
}
.door-urgence .door-badge {
  background: rgba(230, 57, 70, 0.22);
  color: #ff8e96;
}

.door-projet {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(240, 138, 28, 0.35);
  backdrop-filter: blur(10px);
}
.door-projet:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 138, 28, 0.6);
  box-shadow: 0 18px 40px rgba(240, 138, 28, 0.18);
}
.door-projet .door-icon {
  background: rgba(240, 138, 28, 0.18);
  color: var(--orange);
}
.door-projet .door-badge {
  background: rgba(240, 138, 28, 0.22);
  color: var(--orange);
}

.door-badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.8px;
  margin-bottom: 16px;
}
.door-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.door-icon svg { width: 26px; height: 26px; }

.door-title {
  font-size: 22px; font-weight: 800; line-height: 1.2;
  margin-bottom: 6px; letter-spacing: -0.3px;
  color: var(--white);
}
.door-sub { font-size: 14px; color: rgba(255, 255, 255, 0.72); margin-bottom: 22px; }
.door-sub b { font-weight: 800; color: var(--white); }
.door-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 16px; font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--white);
}
.door-urgence .door-cta { color: #ff8e96; border-color: rgba(230, 57, 70, 0.4); }
.door-projet .door-cta { color: var(--orange); border-color: rgba(240, 138, 28, 0.4); }
.door-arrow {
  position: absolute; right: 28px; bottom: 26px;
  font-size: 28px; font-weight: 300;
  opacity: 0.4;
  transition: all 0.3s var(--ease);
  color: rgba(255, 255, 255, 0.7);
}
.hero-door:hover .door-arrow { transform: translateX(6px); opacity: 0.85; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}
.stat {
  text-align: center;
  padding: 8px 12px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: -8px; top: 18%; bottom: 18%;
  width: 1px; background: var(--gray-200);
}
.stat-num {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-star { color: var(--yellow); font-size: 24px; margin-left: 2px; }
.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.stat-label b { color: var(--navy); font-weight: 800; }
.stat-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-cert {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */
.section { padding: 96px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; padding: 6px 14px;
  background: rgba(240, 138, 28, 0.12); color: var(--orange);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.section-tag-light { background: rgba(255, 193, 7, 0.18); color: var(--yellow); }
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.8px; color: var(--navy);
  margin-bottom: 14px;
}
.section-head-light .section-title { color: var(--white); }
.section-sub { font-size: 17px; line-height: 1.6; color: var(--gray-500); }
.section-head-light .section-sub { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   PROCESS 5 ÉTAPES
   ============================================================ */
.process-section { background: var(--light); padding: 96px 0; }
.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  counter-reset: process;
}
.process-line::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  z-index: 1;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  box-shadow: var(--shadow-orange);
  border: 4px solid var(--light);
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 28px auto 16px;
  transition: all 0.3s var(--ease);
}
.step-icon svg { width: 28px; height: 28px; }
.process-step:hover .step-icon { background: var(--navy); color: var(--yellow); }
.process-step h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px; line-height: 1.55; color: var(--gray-500);
}

/* ============================================================
   SERVICES — alternating rows
   ============================================================ */
.services-rows { padding: 96px 0; background: var(--white); }
.services-rows .section-head { margin-bottom: 72px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row-reverse .service-row-image { order: 2; }
.service-row-reverse .service-row-content { order: 1; }

.service-row-image {
  position: relative;
  height: 440px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.service-img-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13, 35, 64, 0.30) 0%, rgba(13, 35, 64, 0.08) 50%, rgba(240, 138, 28, 0.18) 100%);
  z-index: 1;
}
.service-img-decor {
  position: relative; z-index: 2;
  width: 200px; height: 200px;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.service-img-label {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px; font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
}

/* Service-specific gradients */
.service-img-etancheite {
  background: linear-gradient(135deg, #1a3358 0%, #0d2340 50%, #081729 100%);
}
.service-img-bardage {
  background: linear-gradient(135deg, #d97706 0%, #f08a1c 50%, #ffc107 100%);
}
.service-img-couverture {
  background: linear-gradient(135deg, #1e40af 0%, #1a3358 50%, #0d2340 100%);
}
.service-img-maintenance {
  background: linear-gradient(135deg, #c1272d 0%, #e63946 50%, #ef4444 100%);
}
.service-row-tag {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px; font-weight: 900;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  letter-spacing: 0.5px;
}
.service-row-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.service-row-content h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.service-row-content p {
  font-size: 16px; line-height: 1.65;
  color: var(--gray-500); margin-bottom: 24px;
}
.service-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.service-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background:
    radial-gradient(circle, var(--white) 30%, transparent 35%),
    var(--orange);
  border-radius: 50%;
}
.service-bullets b { color: var(--navy); font-weight: 800; }

/* ============================================================
   MÉTHODE RECHERCHE DE FUITE
   ============================================================ */
.method {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(240, 138, 28, 0.08) 0%, transparent 40%);
}
.method .section-head { position: relative; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.method-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  color: var(--white);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(6px);
}
.method-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.method-num {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 32px; font-weight: 900;
  color: rgba(255, 193, 7, 0.18);
  line-height: 1;
}
.method-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--yellow) 0%, #e6ac00 100%);
  color: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.method-icon svg { width: 26px; height: 26px; }
.method-card h3 {
  font-size: 18px; font-weight: 800; color: var(--white);
  margin-bottom: 10px; letter-spacing: -0.2px;
}
.method-card p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}
.method-when {
  font-size: 12px; font-weight: 700;
  color: var(--yellow);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.3px;
}
.method-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
}

/* ============================================================
   ZONE NORMANDIE
   ============================================================ */
.zone {
  background: var(--white);
  padding: 100px 0;
}
.normandie-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.normandie-map {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  /* No frame, no border, no shadow — just the map */
}
.normandie-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(13, 35, 64, 0.14));
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   LEAFLET MAP — zone d'intervention Normandie
   ============================================================ */
.leaflet-wrap {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 35, 64, 0.16);
  border: 1px solid var(--gray-200);
}
.leaflet-map {
  width: 100%;
  height: 480px;
  background: #f4f6f8;
}

/* Pin custom */
.lcn-pin-icon {
  background: transparent !important;
  border: none !important;
}
.lcn-pin-icon svg { display: block; }

/* Pulsing dot under the pin */
.lcn-pulse-icon {
  background: transparent !important;
  border: none !important;
  position: relative;
}
.lcn-pulse-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--red);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(13, 35, 64, 0.18);
  z-index: 2;
}
.lcn-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.55;
  animation: lcn-pulse 2.4s ease-out infinite;
}
.lcn-pulse-ring-2 { animation-delay: 1.2s; }
@keyframes lcn-pulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  100% { transform: scale(4);   opacity: 0; }
}

/* City labels (4 départements) */
.lcn-city-icon {
  background: transparent !important;
  border: none !important;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.lcn-city-dot {
  width: 8px; height: 8px;
  background: var(--navy);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(13, 35, 64, 0.25);
  flex-shrink: 0;
}
.lcn-city-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 3px rgba(13, 35, 64, 0.10);
}

/* Popup custom (Les Compagnons Normands) */
.lcn-popup-wrapper .leaflet-popup-content-wrapper {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(13, 35, 64, 0.25);
}
.lcn-popup-wrapper .leaflet-popup-content {
  margin: 12px 16px;
}
.lcn-popup-wrapper .leaflet-popup-tip {
  background: var(--navy);
}
.lcn-popup {
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 200px;
}
.lcn-popup strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.2px;
}
.lcn-popup span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
.lcn-popup a {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  margin-top: 4px;
  text-decoration: none;
}
.lcn-popup a:hover { color: var(--yellow); }

/* Leaflet attribution lighter */
.leaflet-container .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.85);
  font-size: 10.5px;
  padding: 2px 8px;
}

@media (max-width: 768px) {
  .leaflet-map { height: 380px; }
}

/* Silhouette PNG + labels en position absolute (legacy, kept for fallback) */
.normandie-canvas {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 913 / 533;
}
.normandie-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(13, 35, 64, 0.12));
}
.map-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.map-label-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.3px;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 10px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.map-label-num {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.map-label-active .map-label-name {
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  padding: 4px 12px;
  box-shadow: 0 6px 14px rgba(240, 138, 28, 0.32);
}
.map-label-active .map-label-num {
  color: var(--orange-dark);
  font-weight: 800;
}

/* Carte Normandie image détourée + markers HTML */
/* SVG dept paths — clean flat fill avec léger relief */
.dept {
  stroke: #fff;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: all 0.25s var(--ease);
}
.dept-manche, .dept-orne, .dept-eure {
  fill: #1a3358;
}
.dept-manche:hover, .dept-orne:hover, .dept-eure:hover {
  fill: #2a4775;
  cursor: pointer;
}
.dept-calvados {
  fill: #f08a1c;
  filter: drop-shadow(0 6px 16px rgba(240, 138, 28, 0.42));
}
.dept-calvados:hover {
  fill: #ff9928;
  cursor: pointer;
}

.dept-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  fill: rgba(255, 255, 255, 0.85);
  text-anchor: middle;
  letter-spacing: 0.4px;
  pointer-events: none;
}
.dept-name-active {
  fill: #fff;
  font-weight: 800;
  font-size: 13px;
}
.dept-num {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  fill: rgba(255, 255, 255, 0.55);
  text-anchor: middle;
  letter-spacing: 1.2px;
  pointer-events: none;
}
.dept-num-active { fill: rgba(255, 255, 255, 0.92); font-size: 10px; }

/* Pin Condé pulse rings */
.conde-pulse-1, .conde-pulse-2 {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.4;
  transform-origin: 298px 170px;
  transform-box: view-box;
}
.conde-pulse-1 { animation: conde-pulse-svg 2.4s ease-out infinite; }
.conde-pulse-2 { animation: conde-pulse-svg 2.4s ease-out 1.2s infinite; }
@keyframes conde-pulse-svg {
  0% { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(2.4); opacity: 0; }
}

.conde-title {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  fill: #fff;
  text-anchor: middle;
  letter-spacing: 0.3px;
}
.conde-sub {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.65);
  text-anchor: middle;
  letter-spacing: 0.5px;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.marker-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12.5px;
  margin: 0 auto 8px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(13, 35, 64, 0.18);
  letter-spacing: 0.3px;
  transition: all 0.2s var(--ease);
}
.marker-name {
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  padding: 4px 10px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(13, 35, 64, 0.10);
  border: 1px solid var(--gray-200);
}
.map-marker-active .marker-num {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  width: 46px; height: 46px;
  font-size: 14px;
  border-width: 4px;
  box-shadow: 0 6px 18px rgba(240, 138, 28, 0.45);
}
.map-marker-active .marker-name {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 800;
  font-size: 13.5px;
}
.map-marker-secondary .marker-num {
  background: var(--gray-300);
  color: var(--gray-700);
  width: 30px; height: 30px;
  font-size: 11px;
  border-width: 2.5px;
}
.map-marker-secondary .marker-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
}

/* Pin Condé-en-Normandie */
.map-conde {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.map-conde-dot {
  position: relative;
  display: block;
  width: 16px; height: 16px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(13, 35, 64, 0.18), 0 4px 10px rgba(230, 57, 70, 0.45);
  z-index: 2;
}
.map-conde-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.55;
  animation: conde-pulse 2.4s ease-out infinite;
}
.map-conde-pulse-2 { animation-delay: 1.2s; }
@keyframes conde-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3.5); opacity: 0; }
}
.map-conde-label {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 4px 14px rgba(13, 35, 64, 0.25);
}
.map-conde-label::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--navy);
}
.map-conde-label strong {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.map-conde-label span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.4px;
  margin-top: 1px;
}

.map-attribution {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 9px;
  color: var(--gray-500);
  letter-spacing: 0.3px;
  opacity: 0.6;
}

.pulse-ring { fill: none; stroke: var(--red); stroke-width: 1.5; transform-origin: 308px 168px; transform-box: view-box; }
.pulse-ring-1 { animation: pulse-ring 2.6s ease-out infinite; }
.pulse-ring-2 { animation: pulse-ring 2.6s ease-out 1.3s infinite; }
@keyframes pulse-ring {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.map-pin circle:nth-child(2) { animation: pin-bounce 1.8s ease-in-out infinite; transform-origin: 308px 168px; transform-box: view-box; }
@keyframes pin-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.pin-label-title {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px; font-weight: 800;
  fill: #fff; text-anchor: middle;
  letter-spacing: 0.3px;
}
.pin-label-sub {
  font-family: 'Inter', sans-serif;
  font-size: 7.5px; font-weight: 600;
  fill: rgba(255, 255, 255, 0.65);
  text-anchor: middle;
  letter-spacing: 0.5px;
}

.pin-label-title { font-size: 12.5px; font-weight: 800; fill: var(--white); text-anchor: middle; letter-spacing: 0.3px; }
.pin-label-sub { font-size: 9.5px; font-weight: 600; fill: rgba(255,255,255,0.7); text-anchor: middle; letter-spacing: 0.5px; }

.compass-needle { transform-origin: center; animation: compass-tick 6s steps(60) infinite; transform-box: fill-box; }
@keyframes compass-tick { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Cities list */
.zone-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.zone-city-block {
  padding: 22px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.2s var(--ease);
}
.zone-city-block:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.zone-city-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.zone-city-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.zone-city-num-active {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}
.zone-city-name {
  font-size: 16px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.2px;
}
.zone-city-list {
  font-size: 13px; color: var(--gray-500); line-height: 1.6;
}

/* ============================================================
   B2B SECTION
   ============================================================ */
.b2b {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.b2b::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(240, 138, 28, 0.10) 0%, transparent 40%);
}
.b2b-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.b2b-content .section-tag { margin-bottom: 18px; }
.b2b-content .section-title { color: var(--white); margin-bottom: 18px; text-align: left; }
.b2b-lead {
  font-size: 17px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
  max-width: 580px;
}
.b2b-list { list-style: none; margin-bottom: 32px; }
.b2b-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.b2b-list li:last-child { border-bottom: none; }
.b2b-list b { color: var(--white); font-weight: 700; }
.b2b-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(240, 138, 28, 0.18);
  color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.b2b-icon svg { width: 14px; height: 14px; }
.b2b-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.b2b-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.b2b-card-tag {
  display: inline-block;
  padding: 5px 11px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 100px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.b2b-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
.b2b-card-row span { color: rgba(255, 255, 255, 0.72); }
.b2b-card-row b {
  color: var(--yellow);
  font-weight: 800;
  font-size: 14px;
}
.b2b-card-divider { height: 1px; background: rgba(255,255,255,0.10); margin: 20px 0; }
.b2b-card-note {
  font-size: 12.5px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   DEVIS MULTI-STEP
   ============================================================ */
.devis-section {
  background: var(--light);
  padding: 96px 0;
  position: relative;
}
.devis-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.devis-head .section-tag { background: rgba(240, 138, 28, 0.12); color: var(--orange); }
.devis-head .section-sub a { color: var(--orange); border-bottom: 1px dotted; }

.multistep {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 44px 48px 36px;
  box-shadow: var(--shadow-md);
}

/* Progress */
.ms-progress { margin-bottom: 40px; position: relative; }
.ms-progress-line {
  position: absolute;
  top: 18px; left: 10%; right: 10%;
  height: 3px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
  z-index: 0;
}
.ms-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 100%);
  transition: width 0.4s var(--ease);
}
.ms-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 1;
}
.ms-dot {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: default;
}
.ms-dot span {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--gray-300);
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  transition: all 0.25s var(--ease);
}
.ms-dot label {
  font-size: 12px; font-weight: 700; color: var(--gray-500);
  letter-spacing: 0.3px;
}
.ms-dot.active span,
.ms-dot.done span {
  background: var(--orange); border-color: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.ms-dot.active label,
.ms-dot.done label { color: var(--navy); }
.ms-dot.done span::after { content: '✓'; }
.ms-dot.done span > * { display: none; }

/* Steps */
.ms-step { display: none; }
.ms-step.active { display: block; animation: ms-fade-in 0.35s var(--ease); }
@keyframes ms-fade-in { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

.ms-question {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin-bottom: 24px; text-align: center; letter-spacing: -0.3px;
}

.ms-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.ms-options-compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.ms-option {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--light);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-size: 15px; font-weight: 600; color: var(--gray-700);
}
.ms-option input { position: absolute; opacity: 0; pointer-events: none; }
.ms-option:hover { border-color: var(--orange); background: var(--white); transform: translateY(-2px); }
.ms-option:has(input:checked) {
  border-color: var(--orange); background: var(--white);
  box-shadow: var(--shadow-orange);
}
.ms-option:has(input:checked) span { color: var(--navy); font-weight: 800; }
.ms-option-icon {
  width: 38px; height: 38px;
  background: var(--white);
  color: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  transition: all 0.2s var(--ease);
}
.ms-option-icon svg { width: 20px; height: 20px; }
.ms-option:has(input:checked) .ms-option-icon { background: var(--orange); color: var(--white); border-color: var(--orange); }
.ms-option-icon-red { color: var(--red); }
.ms-option-urgent:has(input:checked) { border-color: var(--red); box-shadow: var(--shadow-red); }
.ms-option-urgent:has(input:checked) .ms-option-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.ms-option-urgent:has(input:checked) span { color: var(--red-dark); }

.ms-option-pill {
  justify-content: center;
  padding: 14px 18px;
  text-align: center;
  font-size: 14.5px;
}

/* Sub-question text under main question */
.ms-subq {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin: -14px auto 22px;
  max-width: 520px;
  line-height: 1.5;
}
.ms-subquestion {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 28px 0 8px;
  text-align: center;
  letter-spacing: -0.2px;
}

/* Yes / No options (accessibility) */
.ms-options-yesno {
  grid-template-columns: 1fr 1fr;
  max-width: 520px;
  margin: 0 auto 8px;
}
.ms-option-yes:has(input:checked) {
  border-color: #15803d;
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.18);
}
.ms-option-yes:has(input:checked) .ms-option-icon {
  background: #15803d; color: var(--white); border-color: #15803d;
}
.ms-option-yes:has(input:checked) span b { color: #166534; }
.ms-option-no:has(input:checked) {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.ms-option-no:has(input:checked) .ms-option-icon {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.ms-option-no:has(input:checked) span b { color: var(--red-dark); }
.ms-option-icon-green { color: #15803d; }
.ms-options-yesno .ms-option { padding: 18px 20px; }
.ms-options-yesno .ms-option span b {
  display: block;
  font-size: 16px; font-weight: 800;
  color: var(--navy);
}
.ms-options-yesno .ms-option span small {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--gray-500);
  margin-top: 2px;
  letter-spacing: 0.2px;
}

/* Conditional block (hauteur) */
.ms-conditional {
  margin-top: 12px;
  padding-top: 8px;
  animation: ms-conditional-in 0.3s var(--ease);
}
@keyframes ms-conditional-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form fields step 4 */
.ms-fields { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: var(--light); color: var(--gray-900);
  transition: all 0.15s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--gray-500); line-height: 1.5; margin-bottom: 16px; margin-top: 6px; }
.form-check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.form-check label { font-weight: 500; color: var(--gray-700); margin: 0; }
.form-check a { color: var(--orange); text-decoration: underline; }

/* Navigation */
.ms-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}
.form-status { margin-top: 16px; padding: 0; font-size: 14px; font-weight: 600; text-align: center; }
.form-status.success { color: #15803d; padding: 12px; background: #dcfce7; border-radius: 8px; }
.form-status.error { color: #b91c1c; padding: 12px; background: #fee2e2; border-radius: 8px; }

/* ============================================================
   CONTACT COMPACT
   ============================================================ */
.contact-compact { padding: 70px 0 90px; background: var(--white); border-top: 1px solid var(--gray-200); }
.contact-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card-c {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  background: var(--light);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.2s var(--ease);
}
a.contact-card-c:hover { border-color: var(--orange); transform: translateY(-2px); background: var(--white); box-shadow: var(--shadow); }
.contact-card-c svg {
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--orange);
  background: rgba(240, 138, 28, 0.10);
  padding: 8px; border-radius: 12px;
  box-sizing: content-box;
}
.contact-card-c b { font-size: 15.5px; color: var(--navy); font-weight: 800; }
.contact-card-c span { font-size: 13px; color: var(--gray-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p { line-height: 1.65; max-width: 320px; margin-top: 16px; }
.footer-logo { display: flex; flex-direction: column; line-height: 1; font-weight: 900; }
.footer-logo .logo-main { font-size: 17px; color: rgba(255, 255, 255, 0.85); }
.footer-logo .logo-accent { font-size: 26px; color: var(--orange); margin-top: 2px; }
.footer-logo .logo-sub { font-size: 9px; color: rgba(255, 255, 255, 0.55); margin-top: 5px; }
.footer-col h4 {
  color: var(--white); font-size: 14px; font-weight: 800;
  margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; line-height: 1.5; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 14px; padding: 24px 0; font-size: 13px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--orange); }
.footer-disclaimer {
  text-align: center; font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 28px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-h1 { max-width: 100%; }
  .hero-doors { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4)::after, .stat:nth-child(5)::after { display: none; }
  .stat:nth-child(4), .stat:nth-child(5) { grid-column: span 1; }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-line::before { display: none; }
  .service-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .service-row-image { height: 300px; }
  .service-row-reverse .service-row-image { order: 0; }
  .service-row-reverse .service-row-content { order: 1; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .normandie-wrap { grid-template-columns: 1fr; gap: 36px; }
  .b2b-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-compact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .nav-desktop, .header-phone, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .urgence-sticky { display: flex; }
  .back-to-top { right: 14px; bottom: 80px; }
  .section, .process-section, .services-rows, .method, .zone, .b2b, .devis-section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-split { padding: 44px 0 56px; }
  .hero-tag-row { gap: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none !important; }
  .process-line { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .multistep { padding: 28px 22px 24px; }
  .ms-question { font-size: 18px; }
  .ms-options { grid-template-columns: 1fr; }
  .ms-dot label { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .door-title { font-size: 19px; }
  .door-cta { font-size: 15px; }
}

/* ============================================================
   PAGE HERO (sub-pages : services, réalisations, contact)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(240, 138, 28, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; text-align: center; max-width: 880px; }
.page-hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(240, 138, 28, 0.18);
  color: var(--orange);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
.page-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-sub a { color: var(--orange); border-bottom: 1px dotted; }

/* NAV active state */
.nav-desktop a.active, .nav-mobile a.active {
  color: var(--orange);
  font-weight: 800;
}
.nav-desktop a.active::after { right: 0; }

/* ============================================================
   RÉALISATIONS — galerie
   ============================================================ */
.reali-notice {
  background: var(--gray-100);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.reali-notice p {
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: var(--gray-500);
}
.reali-grid-section { padding: 80px 0; background: var(--white); }
.reali-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reali-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.reali-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.reali-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.reali-meta { padding: 22px 24px 24px; }
.reali-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.reali-tag-etan  { background: rgba(13, 35, 64, 0.08); color: var(--navy); }
.reali-tag-bard  { background: rgba(240, 138, 28, 0.14); color: var(--orange-dark); }
.reali-tag-couv  { background: rgba(255, 193, 7, 0.18); color: #b08400; }
.reali-tag-maint { background: rgba(230, 57, 70, 0.12); color: var(--red-dark); }
.reali-tag-fuite { background: rgba(26, 51, 88, 0.10); color: var(--navy-soft); }
.reali-meta h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.reali-meta p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.reali-loc {
  font-size: 12.5px; font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.3px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

/* ============================================================
   SERVICES PREVIEW (sur l'accueil) — 4 mini cards
   ============================================================ */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.service-mini {
  display: flex;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}
.service-mini:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.service-mini-img {
  flex: 0 0 38%;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.service-mini-meta { padding: 22px 26px; flex: 1; display: flex; flex-direction: column; }
.service-mini-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: 10px;
}
.service-mini-meta h3 {
  font-size: 17px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-mini-meta p {
  font-size: 14px; line-height: 1.55;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 14px;
}
.service-mini-link {
  font-size: 13.5px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.2px;
}
.services-preview-cta { text-align: center; }

@media (max-width: 1024px) {
  .services-preview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .service-mini { flex-direction: column; }
  .service-mini-img { flex: 0 0 180px; }
}

/* ============================================================
   ZONE D'INTERVENTION (accueil) — résumé simple sous la carte
   ============================================================ */
.zone-home { background: var(--white); }
.zone-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.zone-summary-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700;
  color: var(--gray-700);
}
.zone-summary-item b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.5px;
}
.zone-summary-item:first-child b {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(240, 138, 28, 0.32);
}
.zone-summary-divider {
  width: 6px; height: 6px;
  background: var(--gray-300);
  border-radius: 50%;
}

/* ============================================================
   TÉMOIGNAGES (style Solybat — clean & subtle)
   ============================================================ */
.testimonials {
  background: var(--light);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px 22px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.testi-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testi-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.testi-name {
  font-size: 14px; font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.testi-loc {
  font-size: 12px; font-weight: 600;
  color: var(--gray-500);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND (full-width sticky CTA between sections)
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(240, 138, 28, 0.14) 0%, transparent 50%);
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 6px;
}
.cta-band p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile responsive for new sections */
@media (max-width: 1024px) {
  .reali-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 64px 0 48px; }
  .reali-grid { grid-template-columns: 1fr; gap: 18px; }
  .cta-band { padding: 44px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MERCI PAGE
   ============================================================ */
.merci-page {
  background: var(--light);
  padding: 70px 0 100px;
  min-height: calc(100vh - var(--header-h) - 320px);
  position: relative;
  overflow: hidden;
}

/* Confetti animation à l'arrivée */
.merci-confetti {
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.merci-confetti span {
  position: absolute;
  top: -20px;
  width: 10px; height: 14px;
  opacity: 0;
  animation: confetti-fall 3s ease-out forwards;
}
.merci-confetti span:nth-child(1)  { left: 6%;  background: var(--orange); animation-delay: 0.0s; transform: rotate(15deg); }
.merci-confetti span:nth-child(2)  { left: 14%; background: var(--yellow); animation-delay: 0.1s; transform: rotate(-22deg); }
.merci-confetti span:nth-child(3)  { left: 22%; background: var(--navy);   animation-delay: 0.2s; }
.merci-confetti span:nth-child(4)  { left: 30%; background: var(--orange); animation-delay: 0.05s; transform: rotate(45deg); }
.merci-confetti span:nth-child(5)  { left: 38%; background: #15803d;       animation-delay: 0.3s; transform: rotate(-10deg); }
.merci-confetti span:nth-child(6)  { left: 46%; background: var(--yellow); animation-delay: 0.15s; }
.merci-confetti span:nth-child(7)  { left: 54%; background: var(--orange); animation-delay: 0.4s; transform: rotate(30deg); }
.merci-confetti span:nth-child(8)  { left: 62%; background: var(--navy);   animation-delay: 0.25s; transform: rotate(-15deg); }
.merci-confetti span:nth-child(9)  { left: 70%; background: var(--yellow); animation-delay: 0.5s; }
.merci-confetti span:nth-child(10) { left: 78%; background: var(--orange); animation-delay: 0.35s; transform: rotate(20deg); }
.merci-confetti span:nth-child(11) { left: 86%; background: #15803d;       animation-delay: 0.6s; transform: rotate(-25deg); }
.merci-confetti span:nth-child(12) { left: 94%; background: var(--yellow); animation-delay: 0.45s; }
.merci-confetti span:nth-child(13) { left: 18%; background: var(--orange); animation-delay: 0.7s; transform: rotate(40deg); }
.merci-confetti span:nth-child(14) { left: 50%; background: var(--navy);   animation-delay: 0.55s; transform: rotate(-30deg); }
.merci-confetti span:nth-child(15) { left: 82%; background: var(--orange); animation-delay: 0.65s; }
@keyframes confetti-fall {
  0%   { opacity: 0; transform: translateY(0) rotate(0); }
  10%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(700px) rotate(720deg); }
}
.merci-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 48px 48px;
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 50px rgba(13, 35, 64, 0.10);
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 2;
  animation: merci-card-in 0.6s var(--ease-bounce) both;
}
@keyframes merci-card-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.merci-icon {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(21, 128, 61, 0.32);
  animation: merci-pop 0.5s var(--ease-bounce);
}
@keyframes merci-pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.merci-icon svg { width: 44px; height: 44px; }

.merci-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(21, 128, 61, 0.10);
  color: #15803d;
  border-radius: 100px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px;
}
.merci-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}
.merci-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 36px;
}
.merci-sub b { color: var(--navy); font-weight: 800; }

.merci-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.merci-next {
  border-top: 1px solid var(--gray-200);
  padding-top: 28px;
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}
.merci-next h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  text-align: center;
}
.merci-next ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
}
.merci-next li {
  counter-increment: step;
  position: relative;
  padding: 12px 0 12px 44px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.merci-next li:last-child { border-bottom: none; }
.merci-next li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 12px;
  width: 30px; height: 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 3px 8px rgba(240, 138, 28, 0.32);
}
.merci-next li b {
  display: block;
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}
.merci-next li span {
  display: block;
  color: var(--gray-500);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Récap card */
.merci-recap {
  max-width: 540px;
  margin: 0 auto 36px;
  background: var(--light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 26px 18px;
  text-align: left;
}
.merci-recap-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800;
  color: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.merci-recap-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  margin: 0 0 16px;
}
.merci-recap-list dt {
  font-size: 12.5px;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.merci-recap-list dd {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}
.merci-recap-foot {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin: 0;
  font-style: italic;
}
.merci-recap-foot b { color: var(--navy); font-style: normal; }

/* En attendant, découvrez */
.merci-discover {
  max-width: 1000px;
  margin: 56px auto 0;
  position: relative;
  z-index: 2;
}
.merci-discover h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}
.merci-discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.merci-discover-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease);
  display: flex; flex-direction: column;
}
.merci-discover-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.merci-discover-icon {
  width: 44px; height: 44px;
  background: rgba(240, 138, 28, 0.12);
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.merci-discover-icon svg { width: 22px; height: 22px; }
.merci-discover-card h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}
.merci-discover-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 14px;
}
.merci-discover-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
  .merci-discover-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  .merci-card { padding: 40px 26px 32px; }
  .merci-recap { padding: 18px 20px 16px; }
  .merci-recap-list { grid-template-columns: 1fr; gap: 4px; }
  .merci-recap-list dd { margin-bottom: 8px; }
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 0 80px;
  background: var(--light);
  min-height: calc(100vh - var(--header-h));
}
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: 36px; font-weight: 900; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px; }
.legal-page .legal-sub { color: var(--gray-500); font-size: 15px; margin-bottom: 36px; }
.legal-page h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.legal-page h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 22px 0 8px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page a { color: var(--orange); text-decoration: underline; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 14px; font-weight: 600; color: var(--gray-500); }
.legal-back:hover { color: var(--orange); }
