/* ===== VARIABLES ===== */
:root {
  --green-dark: #1B3A2D;
  --green-mid:  #2A5240;
  --green-light:#3D7A5E;
  --gold:       #C9A96E;
  --gold-light: #E8CFA0;
  --cream:      #F8F6F0;
  --white:      #FFFFFF;
  --gray-100:   #F4F4F4;
  --gray-200:   #E8E8E8;
  --gray-400:   #9A9A9A;
  --gray-600:   #5A5A5A;
  --gray-800:   #2A2A2A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius:     12px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  z-index: 10000;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: 100px 0; }
.section--dark { background: var(--green-dark); color: var(--white); position: relative; overflow: hidden; }
.section--dark::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 10%, rgba(201,169,110,.06) 0%, transparent 60%);
  pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--nav { background: var(--gold); color: var(--green-dark); border-color: var(--gold); padding: 10px 22px; font-size: 13px; }
.btn--nav:hover { background: var(--gold-light); }
.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section__header { text-align: center; margin-bottom: 64px; }
.section__header--light .section__eyebrow { color: var(--gold-light); }
.section__header--light .section__title { color: var(--white); }
.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section__eyebrow--light { color: var(--gold-light); }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
}
.section__title em { font-style: italic; color: var(--gold); }

/* ===== RGPD ===== */
.rgpd {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--gray-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  line-height: 1.5;
  flex-wrap: wrap;
}
.rgpd.hidden { display: none; }
.rgpd__btns { display: flex; gap: 10px; flex-shrink: 0; }
.rgpd__accept { background: var(--gold); color: var(--green-dark); border: none; border-radius: 6px; padding: 8px 18px; font-size: 13px; font-weight: 600; cursor: pointer; }
.rgpd__refuse { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: 8px 18px; font-size: 13px; cursor: pointer; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-mid);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}
.topbar a { color: var(--gold); font-weight: 500; transition: color var(--transition); }
.topbar a:hover { color: var(--gold-light); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  background: rgba(27, 58, 45, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,.15);
  transition: all var(--transition);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  display: flex; align-items: center; justify-content: center;
  height: 38px; width: 38px; flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.nav__logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--white); }
.logo-sub { font-size: 9px; font-weight: 400; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a:not(.btn) { position: relative; font-size: 13px; color: rgba(255,255,255,.8); transition: color var(--transition); padding-bottom: 4px; }
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--white); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; padding: 16px 24px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.nav__mobile.open { display: flex; }
.nav__mobile-link { color: rgba(255,255,255,.85); font-size: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color var(--transition); }
.nav__mobile-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--green-dark) url(images/machine-2.jpg) center 40% / cover no-repeat;
  overflow: hidden;
  padding-top: 108px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,24,16,0.93) 0%, rgba(15,31,20,0.82) 55%, rgba(10,24,16,0.55) 100%),
    radial-gradient(ellipse 55% 65% at 80% 45%, rgba(201,169,110,.06) 0%, transparent 60%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.04) 0%, transparent 70%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: 50%; right: 6%;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.12);
  transform: translateY(-50%);
}
.hero__content { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 80px 24px 80px; }
.hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle { font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.7); max-width: 540px; margin-bottom: 44px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero__stats { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.stat { display: flex; flex-direction: column; padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat__row { display: flex; align-items: baseline; gap: 2px; }
.stat__number { font-family: var(--font-serif); font-size: 36px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat__label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 0.04em; margin-top: 4px; }
.stat__sep { width: 1px; height: 48px; background: rgba(255,255,255,.1); }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== COMMENT CA MARCHE ===== */
.steps { background: var(--white); }
.steps__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.step-card {
  flex: 1;
  max-width: 300px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__num {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
}
.step-card__icon {
  width: 64px; height: 64px;
  color: var(--green-dark);
  margin: 16px auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 50%;
  transition: all var(--transition);
}
.step-card__icon svg { width: 28px; height: 28px; }
.step-card:hover .step-card__icon { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.step-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--green-dark); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.step-card__arrow { font-size: 28px; color: var(--gold); padding: 0 16px; flex-shrink: 0; margin-top: 24px; }
.steps__cta { text-align: center; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-dark), var(--gold)); opacity: 0; transition: opacity var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 60px; height: 60px;
  color: var(--green-dark);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  transition: all var(--transition);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { background: var(--green-dark); color: var(--gold); }
.service-card__title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--green-dark); margin-bottom: 12px; }
.service-card__text { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ===== POURQUOI ===== */
.pourquoi__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.visual-card { background: rgba(255,255,255,.06); border: 1px solid rgba(201,169,110,.2); border-radius: var(--radius); padding: 40px 32px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.visual-card__badge { display: inline-block; background: var(--gold); color: var(--green-dark); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 24px; }
.visual-card__label { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.visual-card__answer { font-family: var(--font-serif); font-size: 56px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.visual-card__sub { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.pourquoi__points { display: flex; flex-direction: column; gap: 36px; }
.point { display: flex; gap: 24px; align-items: flex-start; }
.point__num { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: rgba(201,169,110,.25); line-height: 1; flex-shrink: 0; width: 52px; }
.point__body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.point__body p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ===== TEMOIGNAGES ===== */
.temoignages { background: var(--cream); }
.rating-global { margin-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stars { color: #F59E0B; font-size: 22px; letter-spacing: 2px; }
.rating-global p { font-size: 13px; color: var(--gray-400); }
.temoignages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.temoignage-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--gray-200); display: flex; flex-direction: column; gap: 16px; transition: all var(--transition); }
.temoignage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,169,110,.4); }
.temoignage-card__stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.temoignage-card__text { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: var(--gray-600); line-height: 1.6; flex: 1; }
.temoignage-card__author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--green-dark); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 18px; font-weight: 600; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--green-dark); }
.author-role { font-size: 12px; color: var(--gray-400); }

/* ===== FAQ ===== */
.faq { background: var(--white); position: relative; overflow: hidden; }
.faq::before {
  content: '';
  position: absolute; top: -120px; left: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.12);
  pointer-events: none;
}
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--gray-200); transition: background var(--transition); }
.faq__item:first-child { border-top: 1px solid var(--gray-200); }
.faq__item:hover { background: var(--cream); }
.faq__q { width: 100%; background: none; border: none; padding: 22px 16px; font-size: 16px; font-weight: 500; color: var(--green-dark); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color var(--transition); }
.faq__q:hover { color: var(--gold); }
.faq__arrow { font-size: 24px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); line-height: 1; }
.faq__q.open .faq__arrow { transform: rotate(45deg); }
.faq__a { display: none; font-size: 15px; color: var(--gray-600); line-height: 1.7; padding: 0 16px 20px; }
.faq__a.open { display: block; }

/* ===== CONTACT ===== */
.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact__text p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 36px; }
.contact__text .section__title { color: var(--white); }
.contact__infos { display: flex; flex-direction: column; gap: 16px; }
.contact__info-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255,255,255,.8); transition: color var(--transition); }
.contact__info-item:hover { color: var(--gold); }
.contact__info-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact__form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); }
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 5px; }
.form__group label { font-size: 12px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; }
.form__group input, .form__group select, .form__group textarea { border: 1.5px solid var(--gray-200); border-radius: 6px; padding: 12px 14px; font-size: 14px; color: var(--gray-800); background: var(--white); transition: border-color var(--transition); outline: none; -webkit-appearance: none; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--green-dark); }
.form__group textarea { resize: vertical; }
.form__legal { font-size: 11px; color: var(--gray-400); line-height: 1.5; text-align: center; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { background: #0F1F17; padding: 64px 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer__logo { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 4px; letter-spacing: 0.01em; }
.footer__tagline { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 12px; }
.footer__zones { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 380px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border-radius: 50%; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--green-dark); }
.footer__social a svg { width: 16px; height: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.25); }

/* ===== WHATSAPP FLOTTANT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--gray-800);
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float__tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--gray-800); }
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }


/* ===== EXIT INTENT ===== */
.exit-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.show { opacity: 1; pointer-events: all; }
.exit-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.exit-overlay.show .exit-modal { transform: translateY(0); }
.exit-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 28px; color: var(--gray-400);
  cursor: pointer; line-height: 1; transition: color var(--transition);
}
.exit-modal__close:hover { color: var(--gray-800); }
.exit-modal__icon { width: 52px; height: 52px; color: var(--green-dark); margin: 0 auto 20px; }
.exit-modal__icon svg { width: 100%; height: 100%; }
.exit-modal__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.exit-modal__title { font-family: var(--font-serif); font-size: 30px; font-weight: 600; color: var(--green-dark); line-height: 1.2; margin-bottom: 14px; }
.exit-modal__text { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 28px; }
.exit-modal__btns { display: flex; flex-direction: column; gap: 12px; }
.exit-modal__skip { background: none; border: none; font-size: 13px; color: var(--gray-400); cursor: pointer; text-decoration: underline; padding: 4px; transition: color var(--transition); }
.exit-modal__skip:hover { color: var(--gray-600); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .steps__grid { flex-direction: column; align-items: center; }
  .step-card { width: 100%; max-width: 420px; }
  .step-card__arrow { transform: rotate(90deg); margin: 4px 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pourquoi__grid { grid-template-columns: 1fr; gap: 40px; }
  .temoignages__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .galerie__grid { gap: 14px; }
}
@media (max-width: 720px) {
  .temoignages__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(36px, 8vw, 60px); }
  .section__title { font-size: clamp(26px, 5vw, 40px); }
}
/* ===== GALERIE ===== */
.galerie { background: var(--cream); }
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.galerie__item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  position: relative;
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.galerie__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,20,.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.galerie__item:hover img { transform: scale(1.05); }
.galerie__item:hover::after { opacity: 1; }

@media (max-width: 600px) {
  .topbar { font-size: 11px; gap: 10px; }
  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat { padding: 0; }
  .stat__sep { display: none; }
  .hero__scroll { display: none; }
  .hero { min-height: auto; padding-bottom: 56px; }
  .contact__form-wrap { padding: 24px 16px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .rgpd { bottom: 80px; left: 16px; right: 16px; }
  .galerie__grid { grid-template-columns: 1fr; gap: 14px; }
  .hero__content { padding: 60px 20px; }
  .hero__stats { gap: 12px; }
  .stat { padding: 0 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .step-card { max-width: 100%; }
  .pourquoi__visual { display: none; }
  .nav__mobile-link { font-size: 16px; padding: 14px 0; }
}
