/* =============================================================
   RÉNOVATION LABRIE v2 — main.css
   Aesthetic : Épuré moderne · Blanc dominant · Orange accent
   Fonts     : Sora (display) + Inter (body)
   ============================================================= */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --orange:        #D95F2B;
  --orange-lt:     #E87347;
  --orange-dk:     #B84E22;
  --orange-tint:   #FDF1EB;
  --orange-border: rgba(217,95,43,.18);

  /* Surface */
  --white:         #FFFFFF;
  --off-white:     #F9F8F6;
  --gray-50:       #F5F4F2;
  --gray-100:      #EDECE9;
  --gray-200:      #E0DED9;
  --gray-300:      #C8C5BF;
  --gray-400:      #9E9A93;
  --gray-500:      #6E6A63;
  --gray-700:      #3A3834;
  --gray-900:      #1C1A17;

  /* Text */
  --text-primary:  #1C1A17;
  --text-secondary:#6E6A63;
  --text-muted:    #9E9A93;
  --text-faint:    #C8C5BF;

  /* Border */
  --border:        #E8E6E1;
  --border-dark:   #D4D0C9;

  /* Typography */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --nav-h:         72px;
  --container:     1200px;
  --pad-x:         clamp(20px, 4.5vw, 64px);
  --section-y:     clamp(48px, 6vw, 72px);
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     16px;

  /* Motion */
  --ease:          cubic-bezier(.25, 1, .5, 1);
  --ease-io:       cubic-bezier(.65, 0, .35, 1);
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--section-y); }
.section + .section { padding-top: calc(var(--section-y) * 0.6); }
.section--white  { background: var(--white); }
.section--offwhite { background: var(--off-white); }
.section--gray   { background: var(--gray-50); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── HEADINGS ── */
.h-display {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
.h-display em { font-style: normal; color: var(--orange); }

.h-section {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.018em;
  color: var(--text-primary);
}
.h-section em { font-style: normal; color: var(--orange); }

.h-card {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--text-primary);
}

.lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
}

/* ── DIVIDER ── */
.divider {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin-block: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg  { padding: 16px 32px; font-size: .95rem; }
.btn-md  { padding: 12px 24px; }
.btn-sm  { padding: 9px 18px; font-size: .8rem; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(217,95,43,.22);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,95,43,.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-tint);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding-inline: 0;
  gap: 6px;
}
.btn-ghost:hover { gap: 12px; }

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); }

/* ── TAG ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gray-500);
}
.tag-orange {
  background: var(--orange-tint);
  color: var(--orange);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--pad-x);
  gap: 36px;
  background: rgba(20,18,15,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s, transform .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(28,26,23,.07);
}
.navbar.hidden { transform: translateY(-100%); }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--border);
}
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: #fff;
  transition: color .3s;
}
.nav-logo__name span { display: block; color: var(--orange-lt); font-weight: 800; }
.navbar.scrolled .nav-logo__name { color: var(--text-primary); }
.navbar.scrolled .nav-logo__name span { color: var(--orange); }

/* Nav links — centered via absolute */
.navbar [aria-label="Navigation principale"] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.82);
  padding-block: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; border-bottom-color: var(--orange); }

.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--text-primary); }

/* Nav phone */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
  transition: color .2s;
  flex-shrink: 0;
  margin-inline-start: auto;
}
.nav-phone i { color: var(--orange-lt); font-size: .82rem; }
.nav-phone:hover { color: #fff; }
.navbar.scrolled .nav-phone { color: var(--text-primary); }
.navbar.scrolled .nav-phone i { color: var(--orange); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-inline-start: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.navbar.scrolled .nav-burger span { background: var(--text-primary); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  z-index: 850;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad-x) 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-108%);
  transition: transform .38s var(--ease);
  box-shadow: 0 12px 40px rgba(28,26,23,.08);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-secondary);
  padding-block: 10px;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
  letter-spacing: -.01em;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--orange); padding-left: 6px; }
.nav-drawer .drawer-phone {
  margin-top: 20px;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: none;
}

/* =====================================================
   PAGE HERO (pages internes)
   ===================================================== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--gray-50);
}
.page-hero__img {
  position: absolute;
  inset: 0;
}
.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(.35) saturate(.5);
  mix-blend-mode: multiply;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(249,248,246,.97) 38%, rgba(249,248,246,.6) 75%, transparent 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 40px var(--pad-x) 32px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: .6rem; }

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--gray-900);
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  gap: 36px;
  padding-inline: var(--pad-x);
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.trust-bar__track::-webkit-scrollbar { display: none; }
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar__item i { color: var(--orange-lt); font-size: .82rem; }
.trust-bar__sep { color: rgba(255,255,255,.2); flex-shrink: 0; font-size: .85rem; }

/* =====================================================
   CONTACT LINKS
   ===================================================== */
.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: .95rem;
  transition: color .2s;
}
.contact-link:hover { color: var(--orange); }
.contact-link__icon {
  width: 42px;
  height: 42px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .92rem;
  flex-shrink: 0;
  transition: background .2s;
}
.contact-link:hover .contact-link__icon { background: rgba(217,95,43,.14); }
.contact-link strong { display: block; font-weight: 600; color: var(--text-primary); font-size: .97rem; }
.contact-link small  { font-size: .8rem; color: var(--text-muted); }

/* =====================================================
   WHY CARDS
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.why-card:hover {
  border-color: var(--orange-border);
  box-shadow: 0 8px 32px rgba(217,95,43,.08);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 9px;
  color: var(--text-primary);
}
.why-card__text { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; }

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 32px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, var(--orange), var(--orange-border));
  z-index: 0;
}
.process-step {
  padding: 0 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 auto 18px;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.process-step__desc { font-size: .84rem; color: var(--text-secondary); line-height: 1.65; }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: var(--orange);
  padding-block: 40px;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1;
}
.cta-band__sub {
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  margin-top: 5px;
}

/* =====================================================
   FORM SHARED
   ===================================================== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M.5 1l5 5 5-5' stroke='%239E9A93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,95,43,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error {
  display: block;
  color: #C0392B;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 5px;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #C0392B; }
.form-note {
  font-size: .76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-note i { color: var(--orange); }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 60px;
  height: 60px;
  background: var(--orange-tint);
  border: 2px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0 auto 18px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p { font-size: .9rem; color: var(--text-secondary); }

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28,26,23,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(.94);
  transition: transform .3s var(--ease);
}
.lightbox.active .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 20px; right: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 1.2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }

/* =====================================================
   STICKY CTA
   ===================================================== */
.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.sticky-cta.show {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 6px 24px rgba(217,95,43,.38);
  transition: all .2s;
}
.sticky-cta a:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.72);
  padding-block: 48px 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__logo img {
  width: 38px; height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 4px;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.footer__logo-name span { display: block; color: var(--orange-lt); font-weight: 800; }
.footer__tagline {
  font-size: .85rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.5);
}
.footer__rbq {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__rbq i { color: var(--orange-lt); }
.footer__col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__links a:hover { color: var(--orange-lt); }
.footer__links li { display: flex; align-items: center; gap: 9px; }
.footer__links li i { color: var(--orange-lt); font-size: .78rem; width: 14px; flex-shrink: 0; }
.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
}
.footer__bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer__bottom a:hover { color: var(--orange-lt); }

/* =====================================================
   RESPONSIVE — shared
   ===================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
}

@media (max-width: 960px) {
  .nav-links, .nav-phone, .navbar .btn { display: none; }
  .nav-burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section-y: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .sticky-cta { bottom: 14px; right: 14px; }

  /* Trust bar — wrap sur mobile pour ne pas couper le texte */
  .trust-bar__track {
    flex-wrap: wrap;
    height: auto;
    padding-block: 10px;
    justify-content: center;
    gap: 6px 20px;
  }
  .trust-bar__sep { display: none; }
  .trust-bar__item { font-size: .65rem; }

  /* Page hero — responsive mobile */
  .page-hero { min-height: 220px; }
  .page-hero__content { padding: 24px var(--pad-x) 20px; }
  .page-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(249,248,246,.96) 25%,
      rgba(249,248,246,.8) 100%
    );
  }
  .page-hero .h-display { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .page-hero .lead { font-size: .88rem; }
}
