/* ───────────────────────────────────────────────
   Couvreur Compiègne EJL · Conversion-optimized
   Palette: Navy + Terracotta + Gold + Cream
   ─────────────────────────────────────────────── */

:root {
  --navy:        #1F3A4F;
  --navy-2:      #2A4F6A;
  --navy-dark:   #142534;
  --navy-darker: #0d1a25;
  --terracotta:  #C0501C;
  --terra-2:     #D4693A;
  --terra-soft:  #F5E5DC;
  --gold:        #C9992A;
  --gold-2:      #E2B84A;
  --gold-soft:   #FAF1D8;
  --cream:       #FAF8F5;
  --cream-2:     #F0EDE7;
  --cream-3:     #E8E3D5;
  --white:       #FFFFFF;
  --text:        #1A2A35;
  --text-2:      #3a4a55;
  --text-muted:  #5A7080;
  --border:      #D8D2C8;
  --border-soft: #EBE6DC;
  --success:     #2D7A4F;
  --success-light: #d6e9dd;

  --serif: "DM Serif Display", Georgia, serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --max:    1200px;
  --pad:    clamp(20px, 4vw, 56px);
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(20,37,52,0.06), 0 4px 12px rgba(20,37,52,0.05);
  --shadow:    0 4px 14px rgba(20,37,52,0.08), 0 24px 48px -16px rgba(20,37,52,0.18);
  --shadow-lg: 0 12px 24px rgba(20,37,52,0.10), 0 36px 72px -20px rgba(20,37,52,0.25);
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--terracotta); color: white; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(192,80,28,0.45);
}
.btn--primary:hover {
  background: var(--terra-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(192,80,28,0.55);
}
.btn--ghost {
  background: white;
  color: var(--navy);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--navy); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--center { display: flex; margin: 32px auto 0; max-width: max-content; }

/* ───────── URGENCY BANNER ───────── */
.urgency {
  background: var(--terracotta);
  color: white;
  text-align: center;
  padding: 10px var(--pad);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.urgency strong { font-weight: 800; }
.urgency__phone {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.urgency__pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gold-2);
  border-radius: 50%;
  position: relative;
}
.urgency__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-2);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ───────── HEADER ───────── */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .25s ease;
}
.hdr.is-scrolled { box-shadow: var(--shadow-sm); }
.hdr__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.hdr__logo {
  display: flex; align-items: center; gap: 12px;
}
.hdr__logo-mark {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--terracotta);
  background: var(--terra-soft);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  letter-spacing: -0.04em;
}
.hdr__logo-txt {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hdr__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.hdr__nav a { transition: color .2s ease; position: relative; padding: 6px 0; }
.hdr__nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.hdr__nav a:hover { color: var(--terracotta); }
.hdr__nav a:hover::after { transform: scaleX(1); }

.hdr__cta { display: flex; align-items: center; gap: 12px; }
.hdr__phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s ease;
}
.hdr__phone:hover { background: var(--cream-2); }
.hdr__phone svg { color: var(--terracotta); }

.hdr__burger { display: none; width: 32px; height: 32px; flex-direction: column; gap: 5px; padding: 6px; }
.hdr__burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  background: var(--navy-dark);
  color: white;
  padding: clamp(48px, 8vw, 96px) var(--pad) clamp(56px, 9vw, 112px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(192,80,28,0.18), transparent 60%),
    radial-gradient(700px 400px at -10% 80%, rgba(201,153,42,0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-darker), var(--navy-dark));
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><circle cx='40' cy='40' r='1' fill='white' opacity='0.06'/></svg>");
  background-size: 40px 40px;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero__badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge--gold {
  background: rgba(201,153,42,0.18);
  color: var(--gold-2);
  border: 1px solid rgba(201,153,42,0.4);
}
.badge--gold strong { color: white; font-weight: 800; }
.badge--rge {
  background: rgba(45,122,79,0.2);
  color: #6dd397;
  border: 1px solid rgba(45,122,79,0.45);
}

.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 24px;
}
.hero__h1 em {
  font-style: italic;
  color: var(--terra-2);
  font-weight: 400;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero__sub strong { color: white; font-weight: 700; }

.hero__trust {
  list-style: none;
  margin: 0 0 32px; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.hero__trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero__trust svg { color: var(--success); flex-shrink: 0; background: rgba(45,122,79,0.2); padding: 2px; border-radius: 50%; }

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__cta .btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.hero__cta .btn--ghost:hover { border-color: white; background: rgba(255,255,255,0.06); }

/* Hero form */
.hero__form {
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}
.form__head h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.form__head p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form input,
.form select {
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: var(--cream);
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
  font-family: var(--sans);
}
.form input:focus,
.form select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: white;
}
.form__hint {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  margin: 6px 0 0;
}
.form__rating {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}
.form__rating .stars { color: var(--gold); letter-spacing: 1px; }
.form__rating strong { color: var(--navy); font-weight: 800; }

.form__success {
  text-align: center;
  padding: 24px 0 8px;
}
.form__success svg { margin: 0 auto 12px; }
.form__success p { font-size: 16px; line-height: 1.5; color: var(--text); }

/* ───────── TRUST BAR ───────── */
.trustbar {
  background: var(--cream-2);
  border-bottom: 1px solid var(--border-soft);
}
.trustbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trustbar__cell { text-align: center; padding: 0 8px; border-right: 1px solid var(--border-soft); }
.trustbar__cell:last-child { border-right: 0; }
.trustbar__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trustbar__num span {
  font-size: 0.55em;
  color: var(--terracotta);
  font-style: italic;
}
.trustbar__lbl {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ───────── SECTION COMMONS ───────── */
section.services,
section.tarifs,
section.process,
section.reviews,
section.certif,
section.faq,
section.zone {
  padding: clamp(64px, 9vw, 112px) 0;
}
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 800px; }
.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head--light .sec-kicker { color: var(--gold-2); }
.sec-head--light .sec-title { color: white; }
.sec-head--light .sec-title em { color: var(--gold-2); }
.sec-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 500;
}
.sec-kicker--light { color: var(--gold-2); }
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--navy);
}
.sec-title em {
  font-style: italic;
  color: var(--terracotta);
}
.sec-title--light { color: white; }
.sec-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}
.sec-lede strong { color: var(--text); font-weight: 700; }

/* ───────── SERVICES ───────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.svc {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--terracotta);
}
.svc__icon {
  font-family: var(--serif);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--terra-soft);
  color: var(--terracotta);
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 400;
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.svc p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.svc--urgent {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.svc--urgent .svc__icon { background: rgba(192,80,28,0.25); color: var(--gold-2); }
.svc--urgent h3 { color: white; }
.svc--urgent p { color: rgba(255,255,255,0.78); }

/* ───────── TARIFS ───────── */
.tarifs { background: var(--cream-2); }
.price-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.price {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.price:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.price--accent {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  position: relative;
}
.price--accent::before {
  content: "★ Recommandé";
  position: absolute;
  top: -10px; left: 24px;
  background: var(--terracotta);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.price__head { display: flex; flex-direction: column; gap: 4px; }
.price h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: inherit;
  letter-spacing: -0.01em;
}
.price--accent h3 { color: white; }
.price__tag { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.price--accent .price__tag { color: var(--gold-2); }
.price__amt {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.price--accent .price__amt { color: white; }
.price__cur { font-size: 0.55em; color: var(--terracotta); font-style: italic; font-weight: 400; }
.price--accent .price__cur { color: var(--gold-2); }
.price p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.price--accent p { color: rgba(255,255,255,0.78); }

/* ───────── AIDES ───────── */
.aides {
  background: var(--navy);
  color: white;
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
}
.aides::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
}
.aides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.aide {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .3s ease, border-color .3s ease;
}
.aide:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,153,42,0.4); }
.aide__name {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  font-weight: 500;
}
.aide__amt {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.aide__amt strong { color: var(--gold-2); font-weight: 400; font-style: italic; }
.aide p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ───────── PROCESSUS ───────── */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  counter-reset: step;
}
.step {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); background: white; }
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: -22px;
  font-size: 32px;
  color: var(--border);
  font-weight: 300;
  z-index: 1;
}
.step__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 8px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--navy);
}
.step p {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.step__time {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

/* ───────── REVIEWS ───────── */
.reviews { background: var(--cream-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.review {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--border-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.review__stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.review p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}
.review__sig {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--border-soft);
}
.review__sig strong { color: var(--navy); font-weight: 700; }
.reviews__more {
  display: block;
  text-align: center;
  font-weight: 700;
  color: var(--terracotta);
  font-size: 15px;
  padding: 14px;
  border: 2px solid var(--terracotta);
  border-radius: 10px;
  max-width: max-content;
  margin: 0 auto;
  transition: background .2s ease, color .2s ease;
}
.reviews__more:hover { background: var(--terracotta); color: white; }

/* ───────── CERTIFICATIONS ───────── */
.certif__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.garanties {
  list-style: none;
  margin: 28px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.garanties li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--cream-2);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--text-2);
  border-left: 3px solid var(--success);
}
.garanties li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.garanties li strong { color: var(--navy); font-weight: 700; }

.cert-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.cbadge {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .3s ease, transform .3s ease;
}
.cbadge:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.cbadge strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.cbadge span {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quote {
  background: var(--navy);
  color: white;
  padding: 28px;
  border-radius: var(--radius);
  margin: 0;
  position: relative;
  border-left: 4px solid var(--gold);
}
.quote::before {
  content: """;
  position: absolute;
  top: 0; right: 16px;
  font-size: 80px;
  color: rgba(255,255,255,0.08);
  font-family: var(--serif);
  line-height: 1;
}
.quote p {
  margin: 0 0 14px;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}
.quote footer {
  font-size: 13.5px;
  color: var(--gold-2);
}
.quote footer strong { color: white; font-weight: 700; }

/* ───────── FAQ ───────── */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  max-width: 880px;
}
.qa {
  border-bottom: 1px solid var(--border);
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
  transition: color .25s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--terracotta); }
.qa__plus {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.qa[open] .qa__plus {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.qa p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 70ch;
  padding-right: 44px;
}
.qa p strong { color: var(--navy); font-weight: 700; }
.qa p a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* ───────── ZONE ───────── */
.zone { background: var(--cream-2); }
.pills {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0; padding: 0;
}
.pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.pill:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.pill--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  font-weight: 700;
}
.pill--primary:hover { background: var(--terracotta); border-color: var(--terracotta); color: white; }

/* ───────── FINAL CTA ───────── */
.final {
  background: var(--navy-dark);
  color: white;
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(192,80,28,0.18), transparent 60%);
}
.final__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.final__head { text-align: center; margin-bottom: 40px; }
.final__cta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.ctile {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.ctile:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}
.ctile--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.ctile--primary:hover { background: var(--terra-2); border-color: var(--terra-2); }
.ctile--whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: white;
}
.ctile--whatsapp:hover { background: #1ebd5a; }
.ctile__icon { font-size: 28px; margin-bottom: 6px; }
.ctile__k {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ctile--primary .ctile__k, .ctile--whatsapp .ctile__k { color: rgba(255,255,255,0.85); }
.ctile__v {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: white;
}
.ctile__hint {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.ctile--primary .ctile__hint, .ctile--whatsapp .ctile__hint { color: rgba(255,255,255,0.85); }

.final__reassure {
  list-style: none;
  display: flex; gap: 28px; flex-wrap: wrap;
  justify-content: center;
  margin: 36px 0 0; padding: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.final__reassure li { font-weight: 500; }

/* ───────── FOOTER ───────── */
.foot {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  font-size: 14px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot__col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  font-weight: 500;
  margin: 0 0 16px;
}
.foot__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.foot__col a:hover { color: white; }
.foot__logo {
  display: inline-block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--terra-2);
  background: rgba(192,80,28,0.15);
  padding: 6px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.foot__name {
  margin: 0 0 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.foot__name strong { color: white; font-weight: 700; }
.foot__contact { margin: 0; line-height: 1.7; }
.foot__contact a { color: var(--gold-2); }
.foot__contact a:hover { color: white; }
.foot__bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.foot__certs { letter-spacing: 0.04em; }

/* ───────── FLOATING WHATSAPP ───────── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 80;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.65);
  animation: wa-bob 3s ease-in-out infinite;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.06); }
@keyframes wa-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ───────── MOBILE STICKY CTA ───────── */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  background: white;
  border-top: 1px solid var(--border);
  padding: 8px;
  gap: 8px;
  box-shadow: 0 -10px 30px -10px rgba(20,37,52,0.18);
}
.mobile-cta__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background .2s ease;
}
.mobile-cta__btn--call {
  background: var(--navy);
  color: white;
}
.mobile-cta__btn--wa {
  background: #25D366;
  color: white;
}
.mobile-cta__btn--devis {
  background: var(--terracotta);
  color: white;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .svc-grid, .price-table, .aides-grid, .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .certif__grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .price--accent::before { left: 50%; transform: translateX(-50%); }
  .foot__top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hdr__nav, .hdr__phone span { display: none; }
  .hdr__inner { grid-template-columns: auto 1fr auto; }
  .hdr__burger { display: flex; }
  .hdr__cta .btn { padding: 10px 16px; font-size: 13px; }
  .hdr__phone { padding: 8px; }

  .urgency { font-size: 13px; padding: 8px var(--pad); }

  body { padding-bottom: 70px; }
  .mobile-cta { display: flex; }
  .wa-float { display: none; }

  .hero__trust { grid-template-columns: 1fr; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px var(--pad); }
  .trustbar__cell { border-right: 0; }
  .trustbar__cell:nth-child(1), .trustbar__cell:nth-child(2) { border-bottom: 1px solid var(--border-soft); padding-bottom: 24px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .final__cta { grid-template-columns: 1fr; }
  .final__reassure { gap: 16px; font-size: 12.5px; }

  .foot__top { grid-template-columns: 1fr; gap: 28px; }
  .foot__bot { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .svc-grid, .price-table, .aides-grid, .steps, .cert-badges { grid-template-columns: 1fr; }
  .cert-badges { grid-template-columns: repeat(2, 1fr); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__form { padding: 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile menu open state (handled by JS class) */
.hdr.is-open .hdr__nav {
  display: flex;
  position: fixed;
  inset: 64px 0 auto 0;
  flex-direction: column;
  background: white;
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  box-shadow: var(--shadow);
}
