/* =====================================================
   JÉRÉMIE GAROD ASSISTANCE — style.css
   Version V5 — Design modernisé
===================================================== */

/* =====================================================
   1. RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: #fff;
  color: #14110d;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* =====================================================
   2. TOKENS
===================================================== */
:root {
  --o: #e85c0d;
  --o-dk: #c44d0a;
  --o-lt: #fff2e9;
  --o-mid: rgba(232, 92, 13, 0.14);
  --o-glow: rgba(232, 92, 13, 0.22);

  --white: #ffffff;

  --ink: #14110d;
  --ink-soft: rgba(20, 17, 13, 0.68);
  --ink-muted: rgba(20, 17, 13, 0.42);

  --light-bg: #ffffff;
  --light-bg-2: #f7f3ed;
  --light-bg-3: #f0ebe3;
  --light-card: rgba(255, 255, 255, 0.88);
  --light-line: rgba(20, 17, 13, 0.07);

  --dark-bg: #080604;
  --dark-bg-2: #0f0b07;
  --dark-bg-3: #181109;
  --dark-card: rgba(255, 255, 255, 0.04);
  --dark-card-2: rgba(255, 255, 255, 0.065);
  --dark-line: rgba(255, 255, 255, 0.07);
  --dark-text: #ffffff;
  --dark-text-soft: rgba(255, 255, 255, 0.62);
  --dark-text-muted: rgba(255, 255, 255, 0.38);

  --wa: #22c55e;

  --max: 1160px;
  --pad: clamp(20px, 4.5vw, 64px);

  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t: .18s;
  --t-md: .28s;
  --t-lg: .45s;

  --shadow-soft: 0 8px 28px rgba(15, 14, 12, .06);
  --shadow-md: 0 16px 44px rgba(15, 14, 12, .10);
  --shadow-dark: 0 24px 72px rgba(0, 0, 0, .36);

  --grad-accent: linear-gradient(135deg, #ffb07a 0%, #ff8a3d 48%, #e85c0d 100%);
}

/* =====================================================
   3. KEYFRAMES
===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 92, 13, .5); }
  60%       { box-shadow: 0 0 0 9px rgba(232, 92, 13, 0); }
}

@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .4); }
  70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-9px) rotate(2deg); }
}

@keyframes lineExpand {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* =====================================================
   4. LAYOUT
===================================================== */
.container {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  min-width: 0;
  max-width: 100%;
}

/* =====================================================
   5. SECTION SYSTEM
===================================================== */
.section-light,
.section-dark {
  position: relative;
  overflow: hidden;
}

.section-light { color: var(--ink); }
.section-dark  { color: var(--dark-text); }

.section-light p,
.section-light li,
.section-light .faq-sub,
.section-light .distance-intro,
.section-light .tr-detail,
.section-light .zone-cta-txt,
.section-light .about-siret,
.section-light .contact-sub,
.section-light .contact-meta,
.section-light .cl-val {
  color: var(--ink-soft);
}

.section-dark p,
.section-dark li,
.section-dark .faq-sub,
.section-dark .distance-intro,
.section-dark .tr-detail,
.section-dark .zone-cta-txt,
.section-dark .about-siret,
.section-dark .contact-sub,
.section-dark .contact-meta,
.section-dark .cl-val {
  color: var(--dark-text-soft);
}

/* =====================================================
   6. REVEAL
===================================================== */
.rev {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.rev-l {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.rev-r {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.rev.vis,
.rev-l.vis,
.rev-r.vis {
  opacity: 1;
  transform: none;
}

/* =====================================================
   7. TYPOGRAPHY
===================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-dark  .eyebrow,
.section-dark  .eyebrow-light { color: rgba(255,255,255,.42); }
.section-light .eyebrow,
.section-light .eyebrow-light { color: var(--o); }

.section-h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .95;
  margin-bottom: 28px;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}

.section-light .section-h2 { color: var(--ink); }
.section-dark  .section-h2 { color: #fff; }

.section-h2 em {
  font-style: normal;
  background: var(--grad-accent);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 7s linear infinite;
}

/* =====================================================
   8. BUTTONS
===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r);
  background: var(--o);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.16),
    0 4px 18px rgba(232,92,13,.28),
    0 1px 3px rgba(232,92,13,.2);
  transition:
    background var(--t),
    transform var(--t-md) var(--ease-spring),
    box-shadow var(--t-md);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.16) 50%, transparent 62%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}

.btn-primary:hover::after  { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--o-dk);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 12px 32px rgba(232,92,13,.38),
    0 3px 7px rgba(232,92,13,.2);
}

.btn-primary.btn-sm {
  padding: 10px 20px;
  font-size: .78rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r);
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  backdrop-filter: blur(10px);
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t-md) var(--ease-spring);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* =====================================================
   9. NAV
===================================================== */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 0 20px;
  pointer-events: none;
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 74px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(13, 9, 6, .72);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 10px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  pointer-events: auto;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.nav.scrolled .nav-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    rgba(10, 7, 4, .9);
  box-shadow:
    0 14px 40px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  transition: transform .25s ease;
}

.nav-logo:hover { transform: translateY(-1px); }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
}

.nav-brand-text small {
  margin-top: 4px;
  font-size: .68rem;
  color: rgba(255,255,255,.56);
  letter-spacing: .03em;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--o) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
  opacity: .95;
}

.nav-link:hover::after { transform: scaleX(1); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-wa {
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.nav-wa:hover {
  transform: translateY(-2px);
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.35);
}

.nav-tel {
  height: 46px;
  padding: 0 18px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff8b38 0%, #e85c0d 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 10px 24px rgba(232,92,13,.28),
    inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-tel:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(232,92,13,.34),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* =====================================================
   10. BURGER
===================================================== */
.nav-burger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 24px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .26s var(--ease-spring), border-color .26s, background .26s;
}

.nav-burger:hover {
  transform: translateY(-2px);
  border-color: rgba(232,92,13,.3);
  background: rgba(232,92,13,.08);
}

.nav-burger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 99px;
  transform: translateX(-50%);
  transition: transform .34s var(--ease), opacity .2s ease, width .28s ease;
}

.nav-burger span:nth-child(1) { top: 17px; }
.nav-burger span:nth-child(2) { top: 23px; width: 14px; }
.nav-burger span:nth-child(3) { top: 29px; }

.nav-burger:hover span:nth-child(2) { width: 18px; }

.nav-burger[aria-expanded="true"] {
  border-color: rgba(232,92,13,.3);
  background: rgba(232,92,13,.12);
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(.2);
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =====================================================
   11. MOBILE MENU
===================================================== */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  align-items: flex-start;
  justify-items: stretch;
  padding: 76px 12px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.mob-menu[hidden]  { display: none !important; }
.mob-menu.is-open  { opacity: 1; pointer-events: auto; }

.mob-menu-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at top right, rgba(232,92,13,.15), transparent 24%),
    linear-gradient(180deg, rgba(6,4,2,.9), rgba(6,4,2,.97));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mob-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  max-height: calc(100svh - 88px);
  overflow-y: auto;
  min-height: min(78vh, 760px);
  border-radius: 24px;
  padding: 20px 20px 24px;
  background: linear-gradient(180deg, rgba(14,10,6,.96), rgba(8,6,4,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(232,92,13,.2);
  box-shadow:
    0 40px 120px rgba(0,0,0,.5),
    0 8px 32px rgba(232,92,13,.1),
    inset 0 1px 0 rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .36s var(--ease), opacity .36s var(--ease);
}

.mob-menu.is-open .mob-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mob-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.mob-brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
}

.mob-brand-text small {
  margin-top: 4px;
  font-size: .64rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .04em;
}

.mob-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s var(--ease-spring), background .22s, color .22s;
}

.mob-close:hover {
  transform: rotate(90deg);
  background: rgba(232,92,13,.12);
  color: #fff;
}

.mob-nav { display: flex; flex-direction: column; }

.mob-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.58);
  transition: color .22s ease, padding-left .26s var(--ease);
}

.mob-nav a::after {
  content: "↗";
  font-size: .75rem;
  font-weight: 400;
  color: rgba(232,92,13,.5);
  opacity: 0;
  transform: translate(-6px, 4px);
  transition: opacity .22s ease, transform .22s ease;
}

.mob-nav a:hover          { color: #fff; padding-left: 10px; }
.mob-nav a:hover::after   { opacity: 1; transform: translate(0,0); }

.mob-ctas {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
}

.mob-cta-main,
.mob-cta-wa {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-family: "Sora", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .22s var(--ease-spring), box-shadow .22s, background .22s;
}

.mob-cta-main {
  background: var(--o);
  color: #fff;
  box-shadow: 0 10px 28px rgba(232,92,13,.22);
}

.mob-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(232,92,13,.32);
}

.mob-cta-wa {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}

.mob-cta-wa:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}

.mob-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.mob-chip {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  font-family: "Sora", sans-serif;
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.42);
  letter-spacing: .04em;
}

body.menu-open .wa-fab { display: none; }

/* =====================================================
   12. HERO
===================================================== */
.hero {
  position: relative;
  min-height: max(780px, 100svh);
  display: grid;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(232,92,13,.08), transparent 28%),
    var(--dark-bg-2);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06) translateZ(0);
  filter: saturate(.82) contrast(1.06) brightness(.78);
}

.hero-ink {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 33%, rgba(232,92,13,.16), transparent 48%),
    linear-gradient(155deg, rgba(4,2,1,.8) 0%, rgba(4,2,1,.28) 40%, rgba(232,92,13,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 20%, rgba(6,4,2,.82) 94%);
}

/* Angled bottom edge */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--light-bg-2);
  clip-path: polygon(0 70%, 100% 0%, 100% 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: clamp(130px, 18vh, 170px) 0 210px;
  animation: fadeUp 1.1s var(--ease) both;
}

/* Accent line below hero content */
.hero-body::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 155px;
  width: min(380px, 60vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(232,92,13,.6), transparent);
  opacity: .65;
  animation: lineExpand .9s var(--ease) .8s both;
  transform-origin: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 99px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.72);
  font-family: "Sora", sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: statusPulse 2s ease infinite;
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.8rem, 9.5vw, 8rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .88;
  color: #fff;
  margin-bottom: 32px;
  text-wrap: balance;
}

.h1-l1,
.h1-l2 { display: block; }

.h1-l2 {
  background: linear-gradient(100deg, #ffb07a 0%, #ff8a3d 48%, #e85c0d 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
  padding-left: clamp(44px, 7.5vw, 110px);
}

.hero-sub {
  font-size: clamp(.94rem, 1.6vw, 1.08rem);
  font-weight: 300;
  color: rgba(255,255,255,.64);
  max-width: 52ch;
  line-height: 1.95;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions > * {
  min-height: 50px;
  min-width: 180px;
  justify-content: center;
}

.hero-callout {
  margin-top: 20px;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.48);
  max-width: 50ch;
  padding-left: 14px;
  border-left: 1px solid rgba(232,92,13,.38);
}

/* Hero stats — floating card */
.hero-overlap {
  position: absolute;
  bottom: 40px;
  right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  z-index: 10;
  display: flex;
  align-items: stretch;
  background: rgba(7,5,2,.97);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid rgba(232,92,13,.5);
  border-radius: var(--r-lg);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.03);
  overflow: hidden;
  max-width: min(100%, 500px);
  animation: fadeUp 1.1s var(--ease) .5s both;
}

.ho-stat {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 108px;
  position: relative;
  transition: background var(--t);
}

.ho-stat:hover { background: rgba(255,255,255,.04); }

/* Bottom accent per stat */
.ho-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--o);
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity var(--t);
}

.ho-stat:hover::after { opacity: .6; }

.ho-num {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.075em;
  color: #fff;
  line-height: 1;
}

.ho-lbl {
  font-family: "Sora", sans-serif;
  font-size: .58rem;
  font-weight: 700;
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
  line-height: 1.5;
}

.ho-div {
  width: 1px;
  background: rgba(255,255,255,.06);
  align-self: stretch;
  margin: 10px 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 168px;
  left: var(--pad);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .32;
}

.hero-scroll-hint span {
  font-family: "Sora", sans-serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.36);
  border-radius: 1px;
  animation: scrollLine 2s var(--ease) infinite;
}

/* =====================================================
   13. SITUATIONS
===================================================== */
.sec-situations {
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-2) 100%);
  padding: clamp(96px, 11vw, 136px) 0 clamp(80px, 10vw, 120px);
  position: relative;
}

.sit-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 96px;
  align-items: start;
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

.sit-left {
  position: sticky;
  top: 100px;
}

.sit-list { list-style: none; }

.sit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-line);
  transition: transform var(--t-md) var(--ease);
  position: relative;
}

.sit-item:first-child { border-top: 1px solid var(--light-line); }

.sit-item:hover { transform: translateX(8px); }

.sit-n {
  font-family: "Sora", sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--o);
  flex-shrink: 0;
  padding-top: 5px;
  min-width: 28px;
  opacity: .7;
  transition: opacity var(--t);
}

.sit-item:hover .sit-n { opacity: 1; }

.sit-item p {
  font-size: .96rem;
  color: var(--ink-soft);
  line-height: 1.9;
  max-width: 60ch;
}

.sit-deco {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  padding: 0 var(--pad);
  transform: skewX(-5deg);
}

.sit-deco span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: rgba(0,0,0,.04);
  white-space: nowrap;
  letter-spacing: -.04em;
  transition: color .35s, transform .35s var(--ease);
  pointer-events: auto;
}

.sit-deco span.hov {
  color: rgba(232,92,13,.07);
  transform: scale(1.06);
}

/* =====================================================
   14. SERVICES
===================================================== */
.sec-services {
  background:
    radial-gradient(ellipse at top right, rgba(232,92,13,.12), transparent 32%),
    linear-gradient(180deg, var(--dark-bg-3) 0%, var(--dark-bg) 100%);
  padding: clamp(100px, 12vw, 140px) 0 0;
  clip-path: polygon(0 3.5%, 100% 0%, 100% 100%, 0 100%);
  margin-top: -70px;
  position: relative;
}

.svc-header {
  margin-bottom: clamp(52px, 7vw, 84px);
}

.svc-strips { display: flex; flex-direction: column; }

.svc-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 52vw, 580px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
}

.svc-strip:last-child {
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.svc-strip--rev { direction: rtl; }
.svc-strip--rev > * { direction: ltr; }

.svc-strip-img {
  position: relative;
  overflow: hidden;
}

.svc-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) brightness(.68);
  transition: transform .9s var(--ease), filter .55s;
  transform: scale(1.05) translateZ(0);
}

.svc-strip:hover .svc-strip-img img {
  transform: scale(1.10) translateZ(0);
  filter: saturate(.92) brightness(.8);
}

.svc-strip:not(.svc-strip--rev) .svc-strip-img {
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.svc-strip--rev .svc-strip-img {
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.svc-strip-txt {
  background: linear-gradient(160deg, rgba(12,9,6,.95) 0%, rgba(7,5,3,.99) 100%);
  padding: clamp(44px, 5.5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle corner grain */
.svc-strip-txt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(232,92,13,.04), transparent 55%);
  pointer-events: none;
}

.svc-big-n {
  position: absolute;
  top: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.03);
  line-height: 1;
}

.svc-label {
  font-family: "Sora", sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(232,92,13,.6);
  margin-bottom: 14px;
  display: block;
}

.svc-strip-txt h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 16px;
  max-width: 14ch;
}

.svc-strip-txt p {
  font-size: .91rem;
  color: rgba(255,255,255,.44);
  line-height: 1.9;
  margin-bottom: 26px;
  max-width: 48ch;
}

.svc-strip-txt ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-strip-txt li {
  font-size: .82rem;
  color: rgba(255,255,255,.44);
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-strip-txt li::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--o);
  flex-shrink: 0;
  opacity: .55;
}

/* =====================================================
   15. ABOUT
===================================================== */
.sec-about {
  background: linear-gradient(160deg, var(--light-bg-2) 0%, var(--light-bg-3) 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
  position: relative;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 96px;
  align-items: center;
}

.about-img-col { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 32px 84px rgba(15,14,12,.14),
    inset 0 2px 0 rgba(255,255,255,.55);
}

.about-img-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  transition: transform .9s var(--ease);
}

.about-img-frame:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  border-radius: 99px;
  background: rgba(255,255,255,.96);
  font-family: "Sora", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  z-index: 2;
}

.about-dot,
.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8b8b8b;
  flex-shrink: 0;
}

[data-status="open"]   .about-dot,
[data-status="open"]   .cs-dot   { background: #22c55e; animation: statusPulse 1.9s infinite; }
[data-status="soon"]   .about-dot,
[data-status="soon"]   .cs-dot   { background: #f59e0b; }
[data-status="closed"] .about-dot,
[data-status="closed"] .cs-dot   { background: #ef4444; }

.about-float {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--o);
  color: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow:
    0 16px 40px rgba(232,92,13,.32),
    inset 0 1px 0 rgba(255,255,255,.14);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}

.af-num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.af-lbl {
  display: block;
  font-size: .56rem;
  font-weight: 600;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about-txt-col p {
  font-size: .96rem;
  color: var(--ink-soft);
  line-height: 1.92;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0;
}

.av-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Sora", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
}

.av-dash {
  color: var(--o);
  font-size: 1rem;
}

.about-siret {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(20,17,13,.38);
  letter-spacing: .07em;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px solid var(--light-line);
}

/* =====================================================
   16. WHY
===================================================== */
.sec-manifesto {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(232,92,13,.1), transparent 32%),
    linear-gradient(180deg, var(--dark-bg-2) 0%, var(--dark-bg) 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  position: relative;
}

.manifesto-lines {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.manifesto-line {
  display: grid;
  grid-template-columns: 72px 1fr 1.2fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: transform var(--t-md) var(--ease);
}

.manifesto-line:hover { transform: translateX(6px); }
.manifesto-line:hover .ml-n { color: #ffb07a; }

.ml-n {
  font-family: "Sora", sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(232,92,13,.6);
  padding-top: 6px;
  transition: color var(--t);
}

.manifesto-line h3 {
  font-family: "Sora", sans-serif;
  font-size: .98rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.manifesto-line p {
  font-size: .9rem;
  color: rgba(255,255,255,.52);
  line-height: 1.88;
}

/* =====================================================
   17. PROCESS
===================================================== */
.sec-process {
  background: linear-gradient(180deg, var(--light-bg) 0%, #fbf8f4 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  margin-top: -50px;
}

.process-track {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: clamp(52px, 7vw, 80px);
  max-width: 880px;
}

.process-line {
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--o) 0%, rgba(232,92,13,.05) 100%);
}

.process-step {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid var(--light-line);
}

.ps-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--o-lt);
  border: 1.5px solid rgba(232,92,13,.32);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    background var(--t),
    transform var(--t-md) var(--ease-spring),
    box-shadow var(--t-md),
    border-color var(--t);
}

.process-step:hover .ps-dot {
  background: var(--o);
  transform: scale(1.14);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(232,92,13,.1), 0 8px 22px rgba(232,92,13,.22);
}

.ps-dot span {
  font-family: "Sora", sans-serif;
  font-size: .64rem;
  font-weight: 800;
  color: var(--o);
  transition: color var(--t);
}

.process-step:hover .ps-dot span { color: #fff; }

.ps-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.ps-content p {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* =====================================================
   18. TARIFS + ZONE
===================================================== */
.sec-tarifs {
  background:
    radial-gradient(ellipse at 88% 10%, rgba(232,92,13,.16), transparent 32%),
    linear-gradient(180deg, var(--dark-bg-3) 0%, var(--dark-bg-2) 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
  margin-top: -50px;
  overflow: hidden;
}

.tarifs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.tarif-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0 24px;
}

.tarif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t-md) var(--ease),
    box-shadow var(--t-md);
}

/* Left accent bar */
.tarif-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(232,92,13,.55), transparent);
  opacity: 0;
  transition: opacity var(--t-md);
}

.tarif-row:hover::before { opacity: 1; }

.tarif-row:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(232,92,13,.24);
  transform: translateX(6px);
}

.tarif-row--main {
  background: linear-gradient(135deg, rgba(232,92,13,.14) 0%, rgba(232,92,13,.03) 100%);
  border-color: rgba(232,92,13,.22);
}

.tarif-row--main::before { opacity: 1; }

.tr-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tr-name {
  font-family: "Sora", sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
}

.tr-detail {
  font-size: .74rem;
  color: rgba(255,255,255,.38);
  line-height: 1.62;
}

.tr-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.tr-price strong {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.07em;
  color: #fff;
}

.tr-price span {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 500;
}

.tarifs-paiement {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.tp-item {
  font-size: .82rem;
  color: rgba(255,255,255,.52);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.06);
}

.tarifs-notes {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.025);
}

.tarifs-notes p {
  margin: 0 0 9px;
  color: rgba(255,255,255,.7);
  line-height: 1.62;
  font-size: .86rem;
}

.tarifs-notes p:last-child { margin-bottom: 0; }

.zone-col { padding-top: 10px; }

.zone-h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
}

.zone-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.05);
  transition: transform var(--t-md) var(--ease), box-shadow var(--t-md);
}

.zone-map:hover {
  transform: translateY(-5px);
  box-shadow:
    0 42px 84px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.07);
}

.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.zone-cities span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.065);
  font-family: "Sora", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.52);
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t),
    transform .22s var(--ease-spring),
    box-shadow var(--t-md);
}

.zone-cities span:hover {
  background: rgba(232,92,13,.12);
  color: #ffb07a;
  border-color: rgba(232,92,13,.24);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232,92,13,.1);
}

.zone-cta-txt {
  font-size: .84rem;
  color: rgba(255,255,255,.44);
}

.zone-cta-txt a {
  color: rgba(255,255,255,.88);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color var(--t), border-color var(--t);
}

.zone-cta-txt a:hover {
  color: #ffb07a;
  border-color: rgba(232,92,13,.4);
}

/* =====================================================
   19. DISTANCE
===================================================== */
.sec-distance {
  background: linear-gradient(160deg, var(--light-bg-2) 0%, var(--light-bg-3) 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%);
  margin-top: -40px;
}

.distance-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.distance-intro {
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.92;
  max-width: 50ch;
}

.distance-right { display: grid; gap: 12px; }

.distance-card {
  position: relative;
  padding: 26px 28px 24px 30px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(20,17,13,.055);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--t-md) var(--ease),
    box-shadow var(--t-md),
    border-color var(--t-md);
  overflow: hidden;
}

.distance-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(232,92,13,0) 0%,
    rgba(232,92,13,.6) 50%,
    rgba(232,92,13,0) 100%);
}

.distance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,92,13,.16);
}

.distance-n {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--o);
  opacity: .8;
}

.distance-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.distance-card p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.82;
}

.distance-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.distance-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.distance-card li::before {
  content: "";
  width: 14px;
  height: 1px;
  margin-top: .82em;
  background: var(--o);
  flex-shrink: 0;
  opacity: .65;
}

/* =====================================================
   20. PAIEMENT
===================================================== */
.sec-cesu {
  background:
    radial-gradient(ellipse at 12% 18%, rgba(232,92,13,.12), transparent 28%),
    linear-gradient(180deg, var(--dark-bg-2) 0%, var(--dark-bg) 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%);
  margin-top: -40px;
}

.cesu-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 96px;
  align-items: start;
}

.cesu-intro {
  font-size: .96rem;
  color: rgba(255,255,255,.56);
  line-height: 1.88;
  margin-top: 10px;
}

.cesu-right { display: flex; flex-direction: column; }

.cesu-bloc {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: transform var(--t-md) var(--ease);
}

.cesu-bloc:last-child { border-bottom: none; }
.cesu-bloc:hover { transform: translateX(5px); }

.cesu-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
}

.cesu-b-n {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .88;
  color: rgba(232,92,13,.14);
  flex-shrink: 0;
  transition: color var(--t-md);
}

.cesu-bloc:hover .cesu-b-n { color: rgba(232,92,13,.22); }

.cesu-bloc h4 {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.cesu-bloc p {
  font-size: .9rem;
  color: rgba(255,255,255,.52);
  line-height: 1.86;
}

.cesu-bloc strong { color: #fff; }
.cesu-bloc--highlight h4 { color: #ffb07a; }

/* =====================================================
   21. SÉCURITÉ
===================================================== */
.sec-security {
  background: linear-gradient(160deg, var(--light-bg) 0%, #f5f0e8 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
  margin-top: -40px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.security-item {
  padding: 40px 34px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(20,17,13,.07);
  position: relative;
  overflow: hidden;
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t-md) var(--ease),
    box-shadow var(--t-md);
}

/* Angled accent bottom-right decoration */
.security-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at bottom right, rgba(232,92,13,.06), transparent 70%);
  pointer-events: none;
  transition: opacity var(--t-md);
  opacity: 0;
}

.security-item:hover::after { opacity: 1; }

.security-item:nth-child(1) { border-radius: var(--r-lg) 0 0 0; }
.security-item:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
.security-item:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
.security-item:nth-child(4) { border-radius: 0 0 var(--r-lg) 0; }

.security-item:hover {
  background: #fff;
  border-color: rgba(232,92,13,.18);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.sec-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232,92,13,.1);
  border: 1px solid rgba(232,92,13,.18);
  font-family: "Sora", sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--o);
  margin-bottom: 20px;
  transition: background var(--t), border-color var(--t);
}

.security-item:hover .sec-n {
  background: rgba(232,92,13,.16);
  border-color: rgba(232,92,13,.28);
}

.security-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.security-item p {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.86;
}

/* =====================================================
   22. FAMILLES
===================================================== */
.sec-famille {
  background:
    radial-gradient(ellipse at 85% 18%, rgba(232,92,13,.1), transparent 32%),
    linear-gradient(180deg, var(--dark-bg-3) 0%, var(--dark-bg) 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0 100%);
  margin-top: -50px;
}

.famille-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.famille-txt p {
  font-size: .95rem;
  color: rgba(255,255,255,.56);
  line-height: 1.92;
  margin-bottom: 14px;
}

.famille-steps { display: flex; flex-direction: column; }

.fs-item {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: transform var(--t-md) var(--ease);
}

.fs-item:last-child { border-bottom: none; }
.fs-item:hover { transform: translateX(8px); }

.fs-n {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.07em;
  color: rgba(232,92,13,.14);
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--t-md);
}

.fs-item:hover .fs-n { color: rgba(232,92,13,.22); }

.fs-item h4 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
}

.fs-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.44);
  line-height: 1.84;
}

/* =====================================================
   23. FAQ
===================================================== */
.sec-faq {
  background: linear-gradient(160deg, var(--light-bg) 0%, #f3eee7 100%);
  padding: clamp(96px, 11vw, 136px) 0;
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
  margin-top: -40px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 96px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-sub {
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 14px 0 32px;
  max-width: 34ch;
}

.faq-right { border-top: 1px solid rgba(20,17,13,.07); }

.faq-item {
  border-bottom: 1px solid rgba(20,17,13,.06);
  transition: background var(--t), border-color var(--t);
}

.faq-item.open {
  background: linear-gradient(90deg, rgba(232,92,13,.04) 0%, transparent 100%);
  border-bottom-color: rgba(232,92,13,.16);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: padding-left .28s var(--ease);
}

.faq-q span:first-child {
  font-family: "Sora", sans-serif;
  font-size: .91rem;
  font-weight: 700;
  color: rgba(20,17,13,.78);
  line-height: 1.5;
}

.faq-q:hover,
.faq-item.open .faq-q { padding-left: 12px; }

.faq-arr {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .98rem;
  line-height: 1;
  color: var(--o);
  background: rgba(20,17,13,.03);
  border: 1px solid rgba(20,17,13,.07);
  transition:
    transform .3s var(--ease),
    background var(--t),
    border-color var(--t),
    color var(--t);
}

.faq-item.open .faq-arr {
  transform: rotate(45deg);
  background: rgba(232,92,13,.12);
  border-color: rgba(232,92,13,.24);
}

.faq-a { display: none; overflow: hidden; }
.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.86;
  padding: 0 8px 22px;
  max-width: 60ch;
}

/* =====================================================
   24. CONTACT
===================================================== */
.sec-contact {
  background: linear-gradient(160deg, var(--light-bg) 0%, #f9f5ef 100%);
  padding: clamp(96px, 11vw, 136px) 0 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
  margin-top: -40px;
}

.contact-wrap {
  padding-bottom: clamp(80px, 10vw, 120px);
  position: relative;
}

.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Sora", sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.22);
  margin-bottom: 28px;
}

.contact-h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .86;
  color: var(--ink);
  margin-bottom: 18px;
}

.contact-h2 em {
  font-style: normal;
  color: var(--o);
}

.contact-sub {
  font-family: "Sora", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.2);
  margin-bottom: 60px;
}

/* Contact links */
.contact-links {
  border-top: 1px solid rgba(0,0,0,.055);
}

.cl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px;
  margin-bottom: 2px;
  border-radius: var(--r);
  border: 1px solid transparent;
  color: var(--ink);
  transition:
    background var(--t),
    border-color var(--t),
    padding-left .3s var(--ease);
}

.cl-item:hover {
  background: rgba(232,92,13,.03);
  border-color: rgba(232,92,13,.12);
  padding-left: 28px;
}

.cl-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cl-n {
  font-family: "Sora", sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(0,0,0,.12);
  width: 26px;
  flex-shrink: 0;
  transition: color var(--t), opacity var(--t);
}

.cl-item:hover .cl-n {
  color: var(--o);
  opacity: 1;
}

.cl-label {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--ink);
}

.cl-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cl-val {
  font-size: clamp(.76rem, 1.3vw, .9rem);
  font-weight: 500;
  color: rgba(0,0,0,.24);
}

.cl-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.22);
  font-size: .85rem;
  flex-shrink: 0;
  transition: background var(--t), color var(--t), transform .28s var(--ease);
}

.cl-item:hover .cl-arrow {
  background: var(--o);
  color: #fff;
  transform: rotate(-45deg);
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.05);
  flex-wrap: wrap;
  gap: 22px;
}

.contact-meta {
  font-size: .74rem;
  color: rgba(0,0,0,.3);
  line-height: 1.98;
  max-width: 70ch;
}

.contact-meta strong {
  color: rgba(0,0,0,.52);
  font-weight: 600;
}

/* =====================================================
   25. FOOTER
===================================================== */
.footer {
  background: linear-gradient(180deg, #0c0906 0%, #060503 100%);
  padding: 64px 0 0;
}

.footer-inner {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand p {
  font-size: .76rem;
  line-height: 1.72;
  color: rgba(255,255,255,.44);
  max-width: 260px;
  margin-top: 10px;
}

.footer-brand strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col-title {
  font-family: "Sora", sans-serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.16);
  margin-bottom: 5px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-col a,
.footer-col span {
  font-size: .78rem;
  color: rgba(255,255,255,.32);
  transition: color var(--t);
  overflow-wrap: anywhere;
  width: fit-content;
}

.footer-col a:hover { color: var(--o); }

.footer-bottom {
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .7rem;
  color: rgba(255,255,255,.16);
}

/* =====================================================
   26. WA FAB
===================================================== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 10px 28px rgba(34,197,94,.34),
    inset 0 2px 0 rgba(255,255,255,.1);
  transition: transform var(--t-md) var(--ease-spring), box-shadow var(--t-md);
}

.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 38px rgba(34,197,94,.54);
}

/* =====================================================
   27. FOCUS
===================================================== */
:focus-visible {
  outline: 2px solid var(--o);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================
   28. RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .nav-main,
  .nav-ctas {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-brand-text small {
    display: none;
  }
}

@media (min-width: 1101px) {
  .mob-menu {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .about-wrap,
  .famille-inner,
  .tarifs-layout,
  .distance-layout,
  .cesu-layout,
  .faq-layout {
    gap: 48px;
  }

  .sit-layout { gap: 52px; }

  .contact-h2 {
    font-size: clamp(3.2rem, 10vw, 7rem);
  }

  .security-item {
    padding: 32px 26px;
  }
}

@media (max-width: 900px) {
  .section-h2 {
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .hero {
    min-height: auto;
    align-items: center;
  }

  .hero-body {
    width: min(var(--max), calc(100% - 2 * var(--pad)));
    padding: clamp(110px, 15vh, 140px) 0 40px;
  }

  .hero-body::after { display: none; }

  .hero-h1 {
    font-size: clamp(3.2rem, 10vw, 5.5rem);
  }

  .h1-l2 {
    padding-left: clamp(24px, 5vw, 60px);
  }

  .hero-overlap {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin: 22px 0 0;
    border-radius: var(--r-lg);
    justify-content: center;
    animation: none;
    background: rgba(10,8,6,.94);
    box-shadow: 0 20px 48px rgba(0,0,0,.28);
  }

  .hero-scroll-hint { display: none; }

  .sit-layout,
  .about-wrap,
  .famille-inner,
  .tarifs-layout,
  .distance-layout,
  .cesu-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sit-left,
  .faq-left {
    position: static;
  }

  .sit-deco { display: none; }

  .svc-strip,
  .svc-strip--rev {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 16px;
  }

  .svc-strip-img {
    min-height: 260px;
    clip-path: none !important;
  }

  .manifesto-line {
    grid-template-columns: 56px 1fr;
    gap: 14px 18px;
  }

  .manifesto-line p { grid-column: 2 / -1; }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .security-item:nth-child(1),
  .security-item:nth-child(2),
  .security-item:nth-child(3),
  .security-item:nth-child(4) {
    border-radius: var(--r-lg);
  }

  .about-img-frame img { aspect-ratio: 4 / 3; }
  .about-float { top: -14px; right: -8px; }

  .contact-h2 {
    font-size: clamp(3rem, 12vw, 5.5rem);
  }

  .cl-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
    border: 1px solid rgba(232,92,13,.09);
    background: rgba(232,92,13,.012);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 24px rgba(15,14,12,.04);
  }

  .cl-item:hover { padding-left: 16px; }

  .cl-label {
    font-size: clamp(1.3rem, 5.5vw, 1.9rem);
  }

  .cl-right {
    width: 100%;
    padding-left: 48px;
    justify-content: space-between;
  }

  .cl-arrow {
    background: var(--o);
    color: #fff;
  }

  .contact-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-bottom .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 16px;
    --r: 10px;
    --r-lg: 14px;
    --r-xl: 18px;
  }

  .hero::after,
  .sec-services,
  .sec-process,
  .sec-about,
  .sec-famille,
  .sec-tarifs,
  .sec-distance,
  .sec-cesu,
  .sec-security,
  .sec-faq,
  .sec-contact {
    clip-path: none;
    margin-top: 0;
  }

  .sec-services,
  .sec-process,
  .sec-about,
  .sec-famille,
  .sec-tarifs,
  .sec-distance,
  .sec-cesu,
  .sec-security,
  .sec-faq,
  .sec-contact {
    border-radius: 20px 20px 0 0;
    margin-top: -16px;
  }

  .nav { top: 12px; padding: 0 12px; }

  .nav-shell {
    min-height: 66px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .hero-body {
    padding-top: 92px;
    padding-bottom: 16px;
  }

  .hero-h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    line-height: .92;
  }

  .h1-l2 {
    padding-left: clamp(14px, 3.5vw, 28px);
  }

  .hero-sub {
    font-size: .9rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    min-width: unset;
  }

  .hero-overlap {
    display: grid;
    grid-template-columns: 1fr;
    margin: 14px 0 0;
    border-radius: var(--r-lg);
  }

  .ho-stat {
    padding: 18px 22px;
    min-width: 100%;
  }

  .ho-num { font-size: 1.7rem; }
  .ho-div { display: none; }

  .section-h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .sit-item { padding: 22px 0; }

  .sit-item p,
  .svc-strip-txt p,
  .distance-card p,
  .distance-card li,
  .manifesto-line p,
  .faq-a p {
    font-size: .86rem;
  }

  .svc-strip-img { min-height: 200px; }

  .svc-strip-txt {
    padding: 22px 18px;
  }

  .svc-strip-txt h3 { font-size: 1.35rem; }

  .manifesto-line {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 22px 0;
  }

  .manifesto-line p { grid-column: auto; }

  .about-img-frame img { aspect-ratio: 1 / 1; }
  .about-float { display: none; }

  .fs-item,
  .process-step,
  .cesu-bloc { gap: 14px; }

  .tarif-row {
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: var(--r-lg);
  }

  .tr-price {
    align-items: flex-start;
    text-align: left;
  }

  .tr-price strong {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .distance-card {
    padding: 22px 18px 20px 22px;
    border-radius: var(--r-lg);
  }

  .cesu-b-n { font-size: 2.4rem; }

  .contact-h2 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .contact-sub { font-size: .64rem; }

  .cl-right { padding-left: 36px; }

  .footer-cols { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: .7rem;
  }

  .wa-fab {
    width: 48px;
    height: 48px;
    bottom: 14px;
    right: 14px;
  }

  .mob-menu { padding: 72px 10px 10px; }

  .mob-inner {
    min-height: auto;
    max-height: calc(100svh - 82px);
    border-radius: 20px;
    padding: 16px 14px 18px;
  }

  .mob-nav a {
    font-size: 1.15rem;
    padding: 13px 0;
  }

  .contact-wrap { padding-bottom: 88px; }
}
