/* ==========================================================================
   CCB CleanCare — site public (WEB11)
   Concept : révéler la propreté. Matière + précision + espace + rythme.
   ========================================================================== */

:root {
  --blue: #1E3560;
  --blue-700: #2B4A80;
  --night: #0E1B33;
  --ink: #0B1830;
  --green: #2ECC8F;
  --green-cta: #249E73;
  --green-ink: #1E7A58;

  --text: #0E1B33;
  --text-2: #4E5B75;
  --text-3: #6F7C95;
  --on-dark: #FFFFFF;
  --on-dark-2: #AEBBD3;

  --white: #FFFFFF;
  --mist: #EEF1F5;
  --mist-2: #E3E8EF;
  --veil: #C9D0DB;
  --line: #D6DCE5;
  --line-dark: rgba(255, 255, 255, .16);

  --f-display: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --f-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --wrap: 1320px;
  --gut: clamp(20px, 4.2vw, 56px);
  --sec: clamp(80px, 10vw, 148px);
  --sec-s: clamp(64px, 8vw, 112px);
  --r: 2px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --header-h: 76px;
}

/* ---------- langues : FR/DE co-localisés ---------- */
html:not([data-lang="de"]) [lang="de"],
html[data-lang="de"] [lang="fr"] { display: none !important; }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--white); color: var(--text);
  font: 400 17px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
p, h1, h2, h3, h4, figure, ul, ol, dl, dd, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--green); color: var(--ink); }
:focus-visible { outline: 3px solid var(--green-cta); outline-offset: 3px; }
.on-dark :focus-visible, .is-dark :focus-visible { outline-color: var(--green); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 900px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 12px; top: -80px; z-index: 1000; background: var(--ink); color: #fff; padding: 12px 18px; font-weight: 600; }
.skip:focus { top: 12px; }

/* ---------- typographie ---------- */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font: 700 .72rem/1.3 var(--f-display); letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-ink);
}
.is-dark .label, .on-dark .label { color: var(--green); }
.label::before { content: ""; width: 28px; height: 2px; background: var(--green); flex: none; }
.label--plain::before { display: none; }
.d-xxl { font-size: clamp(3.1rem, 8.4vw, 8.6rem); line-height: .92; letter-spacing: -.045em; }
.d-xl { font-size: clamp(2.6rem, 6.4vw, 6.4rem); line-height: .94; letter-spacing: -.042em; }
.d-l { font-size: clamp(2.2rem, 4.6vw, 4.4rem); line-height: .98; letter-spacing: -.035em; }
.d-m { font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.04; letter-spacing: -.03em; }
h1, h2, h3 { overflow-wrap: break-word; }
@media (max-width: 760px) { h1, h2, .d-xl, .d-xxl, .d-l { hyphens: auto; -webkit-hyphens: auto; } }
.d-s { font-size: clamp(1.3rem, 1.8vw, 1.6rem); line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
.lead { font-size: clamp(1.15rem, 1.7vw, 1.42rem); line-height: 1.5; color: var(--text-2); max-width: 44ch; }
.is-dark .lead, .on-dark .lead { color: var(--on-dark-2); }
.muted { color: var(--text-2); }
.is-dark .muted { color: var(--on-dark-2); }
.small { font-size: .9rem; line-height: 1.55; }
.accent { color: var(--green-ink); }
.is-dark .accent { color: var(--green); }
.num { font-family: var(--f-display); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -.04em; }
.prose p + p { margin-top: 1em; }
.prose { max-width: 62ch; }

/* ---------- boutons & liens ---------- */
.btn {
  --h: 58px;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 22px;
  min-height: var(--h); padding: 0 22px 0 26px; border: 0; border-radius: var(--r);
  font: 700 1rem/1.2 var(--f-display); letter-spacing: .005em; text-decoration: none; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--cta { background: var(--green-cta); color: var(--ink); }
.btn--cta:hover { background: var(--green); }
.btn--ink { background: var(--blue); color: #fff; }
.btn--ink:hover { background: var(--night); }
.btn--line { background: transparent; color: var(--blue); box-shadow: inset 0 0 0 1.5px var(--blue); }
.btn--line:hover { background: var(--blue); color: #fff; }
.is-dark .btn--line { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.is-dark .btn--line:hover { background: #fff; color: var(--blue); }
.btn--sm { --h: 46px; padding: 0 16px 0 18px; font-size: .92rem; gap: 14px; white-space: nowrap; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

.tlink {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  font: 600 1rem/1.3 var(--f-display); color: var(--blue); text-decoration: none;
  background: linear-gradient(var(--green), var(--green)) left calc(100% - 8px) / 100% 2px no-repeat;
  transition: background-size .35s var(--ease);
}
.tlink:hover { background-size: 35% 2px; }
.tlink svg { width: 18px; height: 18px; }
.is-dark .tlink { color: #fff; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }


/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 80; height: var(--header-h);
  background: #fff; border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--line); }
.header__in { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; flex: none; min-height: 44px; }
.brand img { width: 196px; height: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px;
  font: 600 .9rem/1 var(--f-display); color: var(--blue); text-decoration: none; white-space: nowrap;
}
.nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 8px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.tools { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: var(--r); }
.lang button {
  min-width: 44px; min-height: 44px; padding: 0 10px; border: 0; background: transparent; cursor: pointer;
  font: 700 .74rem/1 var(--f-display); letter-spacing: .12em; color: var(--text-2);
}
.lang button[aria-pressed="true"] { background: var(--blue); color: #fff; }
.header .offer-link { font: 600 .9rem/1 var(--f-display); color: var(--blue); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; padding: 0 4px; white-space: nowrap; }
.header .offer-link:hover { text-decoration: underline; text-decoration-color: var(--green); text-underline-offset: 6px; text-decoration-thickness: 2px; }
.burger { display: none; width: 48px; height: 48px; border: 0; background: transparent; cursor: pointer; position: relative; margin-right: -10px; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--blue); transition: transform .35s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 28px; right: 20px; }

@media (max-width: 1340px) { .header .offer-link { display: none; } }
@media (max-width: 1180px) {
  .nav, .header .offer-link, .tools .lang, .header .btn { display: none; }
  .burger { display: block; }
  .tools { margin-left: auto; }
}

/* menu plein écran */
.menu {
  position: fixed; inset: 0; z-index: 120; background: var(--night); color: #fff;
  display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain;
  visibility: hidden; opacity: 0; transition: opacity .35s var(--ease), visibility 0s .35s;
}
.menu.is-open { visibility: visible; opacity: 1; transition: opacity .35s var(--ease); }
.menu__top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; flex: none; }
.menu__top img { width: 170px; }
.menu__close { width: 48px; height: 48px; border: 0; background: transparent; color: #fff; cursor: pointer; margin-right: -10px; }
.menu__close svg { width: 26px; height: 26px; margin: auto; }
.menu__nav { padding-block: 18px 28px; }
.menu__nav a {
  display: flex; align-items: baseline; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line-dark);
  font: 800 clamp(1.7rem, 8vw, 2.6rem)/1.05 var(--f-display); letter-spacing: -.035em; color: #fff; text-decoration: none;
}
.menu__nav a small { font: 700 .72rem/1 var(--f-display); letter-spacing: .14em; color: var(--green); min-width: 26px; }
.menu__nav a[aria-current="page"] { color: var(--green); }
.menu__foot { margin-top: auto; padding-block: 20px 32px; display: grid; gap: 18px; }
.menu__foot .lang { border-color: var(--line-dark); width: max-content; }
.menu__foot .lang button { color: var(--on-dark-2); }
.menu__foot .lang button[aria-pressed="true"] { background: #fff; color: var(--blue); }
.menu__contact { font-size: .95rem; color: var(--on-dark-2); display: grid; gap: 4px; }
.menu__contact a { color: #fff; text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; }
body.menu-open { overflow: hidden; }

/* ---------- barre CTA mobile ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.98); border-top: 1px solid var(--line);
  display: none; gap: 10px; transform: translateY(110%); transition: transform .35s var(--ease);
}
.mbar.is-on { transform: none; }
.mbar .btn { flex: 1; --h: 52px; }
.mbar .tlink { flex: none; padding-inline: 6px; font-size: .9rem; }
@media (max-width: 760px) { .mbar { display: flex; } }

/* ---------- ligne CCB & reveals ---------- */
.cline { display: block; height: 2px; background: var(--green); transform-origin: left; }
.js .rv-line { transform: scaleX(0); transition: transform 1.1s var(--ease); }
.js .rv-line.is-in { transform: scaleX(1); }

.js .rv-type .ln { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.js .rv-type .ln > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.js .rv-type.is-in .ln > span { transform: none; }
.rv-type .ln { display: block; }

.js .rv-up { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.js .rv-up.is-in { opacity: 1; transform: none; }

/* Reveal CCB : voilé → net */
.reveal { position: relative; overflow: hidden; background: var(--mist-2); aspect-ratio: var(--ar, 4 / 3); }
.reveal img { width: 100%; height: 100%; object-fit: cover; }
.reveal .reveal__veil { position: absolute; inset: 0; filter: blur(8px) saturate(.3) brightness(1.08) contrast(.85); transform: scale(1.04); }
.reveal .reveal__net { position: absolute; inset: 0; }
.reveal .reveal__edge { position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: var(--green); opacity: 0; pointer-events: none; }
.reveal .reveal__veil, .reveal .reveal__edge { display: none; }
.js .reveal .reveal__veil, .js .reveal .reveal__edge { display: block; }
.js .reveal .reveal__net { clip-path: inset(0 100% 0 0); transition: clip-path 1.3s var(--ease); }
.js .reveal .reveal__edge { transition: left 1.3s var(--ease), opacity .3s; }
.js .reveal.is-in .reveal__net { clip-path: inset(0 0 0 0); }
.js .reveal.is-in .reveal__edge { left: calc(100% - 2px); opacity: 1; }
.js .reveal.is-done .reveal__edge { opacity: 0; }
.js .reveal.is-done .reveal__veil { visibility: hidden; }
.reveal--static .reveal__net { position: relative; }

/* Énoncé : gris → bleu derrière la ligne */
.wipe-text {
  color: var(--blue);
}
.js .wipe-text {
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--green) 48% 49.2%, var(--veil) 49.2% 100%) 100% 0 / 210% 100% no-repeat;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: background-position 1.8s var(--ease);
}
.js .wipe-text.is-in { background-position: 0 0; }
.js .is-dark .wipe-text { background-image: linear-gradient(90deg, #fff 0 48%, var(--green) 48% 49.2%, rgba(255,255,255,.22) 49.2% 100%); }

[data-depth] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .js .rv-line, .js .rv-type .ln > span, .js .rv-up, .js .reveal .reveal__net, .js .wipe-text { transition: none !important; }
  .js .rv-line { transform: none; }
  .js .rv-type .ln > span, .js .rv-up { transform: none; opacity: 1; }
  .js .reveal .reveal__net { clip-path: none; }
  .js .reveal .reveal__veil, .js .reveal .reveal__edge { display: none; }
  .js .wipe-text { background-position: 0 0; }
  [data-depth] { transform: none !important; }
  .btn svg, .tlink, .nav a::after { transition: none; }
}

/* ---------- emplacement photo (shooting à venir) ---------- */
.shoot {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  padding: 22px; min-height: 240px; height: 100%;
  background:
    linear-gradient(var(--line), var(--line)) 14px 14px / 22px 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 14px 14px / 1px 22px no-repeat,
    linear-gradient(var(--line), var(--line)) calc(100% - 14px) 14px / 22px 1px no-repeat,
    linear-gradient(var(--line), var(--line)) calc(100% - 14px) 14px / 1px 22px no-repeat,
    linear-gradient(var(--line), var(--line)) 14px calc(100% - 14px) / 22px 1px no-repeat,
    linear-gradient(var(--line), var(--line)) 14px calc(100% - 14px) / 1px 22px no-repeat,
    linear-gradient(var(--line), var(--line)) calc(100% - 14px) calc(100% - 14px) / 22px 1px no-repeat,
    linear-gradient(var(--line), var(--line)) calc(100% - 14px) calc(100% - 14px) / 1px 22px no-repeat,
    var(--mist);
  color: var(--text-2);
}
.shoot[style], .sheet__d .shoot, .todo-grid .shoot { height: auto; width: 100%; }
.shoot__tag { font: 700 .66rem/1.3 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.shoot__title { font: 700 1.05rem/1.25 var(--f-display); color: var(--blue); letter-spacing: -.01em; }
.shoot__brief { font-size: .86rem; line-height: 1.5; max-width: 42ch; }
.shoot__icon { position: absolute; top: 26px; right: 30px; width: 34px; height: 34px; color: var(--blue); opacity: .5; }
.is-dark .shoot, .shoot--dark {
  background-color: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.3);
  color: var(--on-dark-2);
}
.is-dark .shoot__tag, .is-dark .shoot__title, .is-dark .shoot__icon, .shoot--dark .shoot__tag, .shoot--dark .shoot__title { color: #fff; }

/* ---------- légendes ---------- */
.cap { display: flex; gap: 10px; margin-top: 12px; font-size: .82rem; line-height: 1.45; color: var(--text-2); }
.cap::before { content: ""; width: 14px; height: 1px; background: currentColor; margin-top: .72em; flex: none; }
.is-dark .cap { color: var(--on-dark-2); }
.cap b { font-weight: 600; color: var(--text); }
.is-dark .cap b { color: #fff; }

/* ---------- sections ---------- */
.sec { padding-block: var(--sec); }
.sec--s { padding-block: var(--sec-s); }
.is-dark { background: var(--night); color: #fff; }
.is-mist { background: var(--mist); }
.is-blue { background: var(--blue); color: #fff; }

/* ===================== HOME ===================== */
.hero { position: relative; padding-top: clamp(28px, 5vw, 64px); padding-bottom: clamp(56px, 8vw, 120px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); align-items: start; }
.hero__kicker { grid-column: 1 / 9; margin-bottom: clamp(22px, 3.4vw, 44px); }
.hero__title { grid-column: 1 / 9; grid-row: 2; color: var(--blue); font-size: clamp(3rem, 6.9vw, 7.4rem); line-height: .92; letter-spacing: -.05em; position: relative; z-index: 2; }
.hero__title .ln { white-space: nowrap; }
.hero__title .ln--in { padding-left: .55em; }
.hero__title .ln--in2 { padding-left: 1.1em; }
.hero__title .accent { color: var(--green-ink); }
.hero__media { grid-column: 9 / 13; grid-row: 1 / 4; margin-top: clamp(-8px, -1vw, 0px); position: relative; }
.hero__media .reveal { aspect-ratio: 3 / 4; }
.hero__act { grid-column: 1 / 8; grid-row: 3; margin-top: clamp(30px, 4vw, 56px); display: grid; gap: 26px; justify-items: start; }
.hero__act .lead { color: var(--text); max-width: 40ch; }
.hero__rule { grid-column: 1 / -1; grid-row: 4; margin-top: clamp(48px, 6vw, 88px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.hero__rule li { position: relative; padding: 16px 12px 0 0; font: 700 .72rem/1.35 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.hero__rule li::before { content: ""; position: absolute; top: -1px; left: 0; width: 1px; height: 12px; background: var(--blue); }
.hero__rule li .d { display: block; font: 400 .88rem/1.4 var(--f-body); letter-spacing: 0; text-transform: none; color: var(--text-2); margin-top: 6px; max-width: 24ch; }
.hero__line { position: absolute; left: 0; right: 0; height: 2px; top: auto; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hero__kicker { grid-column: 1 / -1; }
  .hero__title { grid-column: 1 / -1; font-size: clamp(2.9rem, 13.4vw, 6rem); }
  .hero__title .ln { white-space: normal; }
  .hero__title .ln--in, .hero__title .ln--in2 { padding-left: 0; }
  .hero__media { grid-column: 2 / -1; grid-row: 3; margin: 28px calc(var(--gut) * -1) 0 0; }
  .hero__media .reveal { aspect-ratio: 4 / 5; }
  .hero__act { grid-column: 1 / -1; grid-row: 4; }
  .hero__act .btn { width: 100%; }
  .hero__rule { grid-row: 5; grid-template-columns: 1fr 1fr; row-gap: 22px; }
}

/* énoncé */
.statement { padding-block: clamp(40px, 6vw, 96px) clamp(72px, 10vw, 150px); }
.statement__text { font: 800 clamp(2rem, 4.9vw, 4.6rem)/1.02 var(--f-display); letter-spacing: -.04em; max-width: 20ch; }
.statement__sig { margin-top: 34px; display: flex; align-items: center; gap: 16px; font-size: .95rem; color: var(--text-2); }
.statement__sig .num { font-size: 1.1rem; color: var(--green-ink); }

/* chapitre B2B */
.shift { background: var(--white); color: var(--text); transition: background-color 1s var(--ease), color 1s var(--ease); }
.shift.is-dark { background: var(--night); color: #fff; }
@media (prefers-reduced-motion: reduce) { .shift { transition: none; } }
.chap-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); align-items: end; }
.chap-head .label { grid-column: 1 / -1; margin-bottom: 26px; }
.chap-head h2 { grid-column: 1 / 11; }
.chap-no { font: 800 clamp(5rem, 16vw, 15rem)/.8 var(--f-display); letter-spacing: -.04em; opacity: .1; }
.b2b { padding-block: var(--sec); overflow: hidden; }
.b2b h2 .accent { color: var(--green-ink); transition: color 1s; }
.b2b.is-dark h2 .accent { color: var(--green); }
.b2b__grid { margin-top: clamp(48px, 7vw, 100px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 56px; }
.b2b__photos { grid-column: 1 / 6; position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.b2b__photos .p1 { width: 78%; }
.b2b__photos .p1 .reveal { aspect-ratio: 495 / 698; }
.b2b__photos .p2 { position: relative; margin: -34% 0 0 auto; width: 52%; box-shadow: 0 0 0 10px var(--night); transition: box-shadow 1s var(--ease); }
.shift:not(.is-dark) .b2b__photos .p2 { box-shadow: 0 0 0 10px var(--white); }
.b2b__photos .p2 .reveal { aspect-ratio: 495 / 705; }
.b2b__body { grid-column: 7 / 13; display: grid; gap: 48px; align-content: start; }
.b2b__body .lead { max-width: 46ch; }
.qual { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); }
.shift:not(.is-dark) .qual, .shift:not(.is-dark) .qual li { border-color: var(--line); }
.qual li { padding: 22px 22px 22px 0; border-bottom: 1px solid var(--line-dark); }
.qual li:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.qual li:nth-child(even) { padding-left: 22px; }
.qual h3 { font: 700 1.05rem/1.25 var(--f-display); letter-spacing: -.01em; display: flex; gap: 10px; align-items: baseline; }
.qual h3 small { font: 700 .7rem/1 var(--f-display); letter-spacing: .1em; color: var(--green); }
.qual p { margin-top: 8px; font-size: .95rem; line-height: 1.5; opacity: .82; }
.who { display: flex; flex-wrap: wrap; gap: 6px 0; font: 700 clamp(1rem, 1.4vw, 1.2rem)/1.3 var(--f-display); letter-spacing: -.01em; }
.who li:not(:last-child)::after { content: "/"; margin: 0 12px; color: var(--green); font-weight: 400; }

/* règle horaire */
.dayrule { display: grid; gap: 12px; }
.dayrule__bar { position: relative; height: 54px; border: 1px solid var(--line-dark); }
.shift:not(.is-dark) .dayrule__bar { border-color: var(--line); }
.dayrule__open { position: absolute; top: 0; bottom: 0; left: 33.33%; width: 41.67%; background: repeating-linear-gradient(135deg, rgba(174,187,211,.18) 0 6px, transparent 6px 12px); display: flex; align-items: center; justify-content: center; font: 600 .78rem/1.2 var(--f-display); letter-spacing: .02em; color: var(--on-dark-2); text-align: center; padding: 0 6px; }
.shift:not(.is-dark) .dayrule__open { color: var(--text-2); background: repeating-linear-gradient(135deg, rgba(30,53,96,.08) 0 6px, transparent 6px 12px); }
.dayrule__ccb { position: absolute; top: -1px; bottom: -1px; background: var(--green); }
.dayrule__ccb--a { left: 22%; width: 8%; }
.dayrule__ccb--b { left: 78%; width: 8%; }
.dayrule__ticks { display: flex; justify-content: space-between; font: 600 .7rem/1 var(--f-display); letter-spacing: .06em; opacity: .7; font-variant-numeric: tabular-nums; }
.dayrule__legend { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .84rem; opacity: .85; }
.dayrule__legend span { display: inline-flex; align-items: center; gap: 8px; }
.dayrule__legend i { width: 18px; height: 10px; background: var(--green); display: inline-block; }
.dayrule__legend i.o { background: repeating-linear-gradient(135deg, rgba(174,187,211,.5) 0 3px, transparent 3px 6px); border: 1px solid rgba(174,187,211,.6); }

@media (max-width: 900px) {
  .chap-head h2 { grid-column: 1 / -1; }
  .b2b__photos { grid-column: 1 / -1; position: relative; top: 0; }
  .b2b__photos .p1 { width: 74%; }
  .b2b__photos .p2 { width: 48%; margin-top: -30%; }
  .b2b__body { grid-column: 1 / -1; margin-top: 20px; }
  .qual { grid-template-columns: 1fr; }
  .qual li:nth-child(odd) { border-right: 0; }
  .qual li:nth-child(even) { padding-left: 0; }
}

/* chapitre fin de bail */
.keys { padding-block: var(--sec); position: relative; }
.keys__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }
.keys__head .label { grid-column: 1 / -1; margin-bottom: 26px; }
.keys__head h2 { grid-column: 1 / -1; color: var(--blue); font-size: clamp(2.6rem, 5.6vw, 5.8rem); }
.keys__head .lead { grid-column: 7 / 13; margin-top: 30px; }
.sheet { margin-top: clamp(56px, 7vw, 104px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: clamp(28px, 4vw, 48px); align-items: start; }
.sheet__a { grid-column: 1 / 6; }
.sheet__a .reveal { aspect-ratio: 3 / 4; }
.sheet__b { grid-column: 7 / 13; margin-top: clamp(40px, 10vw, 160px); }
.sheet__b .reveal { aspect-ratio: 4 / 3; }
.sheet__c { grid-column: 7 / 10; }
.sheet__c .reveal { aspect-ratio: 3 / 4; }
.sheet__d { grid-column: 10 / 13; margin-top: 80px; }
.sheet__d .shoot { aspect-ratio: 3 / 4; min-height: 0; }
.spot { position: relative; }
.spot__tag { position: absolute; left: -1px; top: 18px; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 9px 12px 9px 0; background: var(--white); font: 700 .72rem/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.spot__tag b { display: inline-grid; place-items: center; width: 30px; height: 30px; background: var(--blue); color: #fff; letter-spacing: 0; font-size: .74rem; }
.checks { grid-column: 1 / 6; display: grid; align-content: start; border-top: 2px solid var(--blue); }
.checks li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.checks .num { font-size: 1.1rem; color: var(--green-ink); }
.checks h3 { font: 700 1.05rem/1.25 var(--f-display); color: var(--blue); letter-spacing: -.01em; }
.checks p { font-size: .95rem; color: var(--text-2); margin-top: 4px; }
.case-line { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 40px; }
.case-line .label { white-space: nowrap; }
.case-line p { font: 600 1.05rem/1.45 var(--f-display); color: var(--blue); letter-spacing: -.01em; }

.guarantee { margin-top: clamp(72px, 9vw, 128px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 36px; padding-top: 40px; border-top: 2px solid var(--blue); }
.guarantee__t { grid-column: 1 / 5; }
.guarantee__t h3 { color: var(--blue); }
.guarantee__facts { grid-column: 5 / 13; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 28px; }
.guarantee__facts li { border-left: 1px solid var(--line); padding-left: 18px; }
.guarantee__facts .num { display: block; font-size: clamp(2.6rem, 4.6vw, 4.2rem); line-height: .9; color: var(--blue); }
.guarantee__facts .num small { font-size: .38em; letter-spacing: -.01em; margin-left: 4px; }
.guarantee__facts p { margin-top: 12px; font-size: .95rem; color: var(--text-2); }
.guarantee__ex { grid-column: 5 / 13; font-size: .95rem; color: var(--text-2); padding: 18px 20px; background: var(--mist); }
.guarantee__ex strong { color: var(--text); font-weight: 600; }

@media (max-width: 900px) {
  .keys__head h2, .keys__head .lead { grid-column: 1 / -1; }
  .sheet__a { grid-column: 1 / 11; }
  .sheet__b { grid-column: 3 / -1; margin: 0 calc(var(--gut) * -1) 0 0; }
  .sheet__c { grid-column: 1 / 7; }
  .sheet__d { grid-column: 7 / -1; margin-top: 60px; }
  .checks { grid-column: 1 / -1; }
  .guarantee__t, .guarantee__facts, .guarantee__ex { grid-column: 1 / -1; }
  .guarantee__facts { grid-template-columns: 1fr; row-gap: 26px; }
  .case-line { grid-template-columns: 1fr; gap: 10px; }
}

/* diptyque avant / après */
.dip { position: relative; --pos: 50%; user-select: none; }
.dip__frame { position: relative; display: grid; grid-template-columns: var(--pos) calc(100% - var(--pos)); grid-template-rows: 100%; aspect-ratio: var(--ar, 4 / 3); min-height: 0; height: auto; background: var(--mist-2); overflow: hidden; }
.dip__side { position: relative; overflow: hidden; min-width: 0; }
.dip__side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dip__lab { position: absolute; top: 12px; z-index: 2; padding: 7px 10px; background: var(--white); color: var(--blue); font: 700 .66rem/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; }
.dip__side--a .dip__lab { left: 12px; }
.dip__side--b .dip__lab { right: 12px; background: var(--blue); color: #fff; }
.dip__bar { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--green); z-index: 3; pointer-events: none; }
.dip__grip { position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%); background: var(--green); display: grid; place-items: center; }
.dip__grip svg { width: 22px; height: 22px; color: var(--ink); }
.dip__range { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; touch-action: pan-y; }
.dip__range:focus-visible + .dip__bar .dip__grip { outline: 3px solid var(--ink); outline-offset: 2px; }
.no-js .dip__range, .no-js .dip__bar .dip__grip { display: none; }

/* méthode */
.method { padding-block: var(--sec); }
.method__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }
.method__aside { grid-column: 1 / 5; }
.method__aside > div { position: sticky; top: calc(var(--header-h) + 40px); display: grid; gap: 26px; }
.method__list { grid-column: 6 / 13; counter-reset: p; }
.princ { display: grid; grid-template-columns: minmax(120px, 34%) 1fr; column-gap: 24px; align-items: start; padding-block: 30px 38px; border-top: 1px solid var(--line-dark); }
.princ:last-child { border-bottom: 1px solid var(--line-dark); }
.princ__n { font: 800 clamp(4.6rem, 9vw, 8.4rem)/.8 var(--f-display); letter-spacing: -.05em; color: var(--green); }
.princ h3 { font: 800 clamp(1.4rem, 2.3vw, 2.1rem)/1.06 var(--f-display); letter-spacing: -.03em; }
.princ p { margin-top: 14px; color: var(--on-dark-2); font-size: 1.05rem; max-width: 40ch; }
@media (max-width: 900px) {
  .method__aside { grid-column: 1 / -1; margin-bottom: 40px; }
  .method__aside > div { position: static; }
  .method__list { grid-column: 1 / -1; }
  .princ { grid-template-columns: 1fr; }
  .princ__n { font-size: clamp(5.2rem, 30vw, 8rem); margin-bottom: -.12em; margin-left: -.04em; }
}

/* parcours */
.route { padding-block: var(--sec); }
.route__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }
.route__head .label { grid-column: 1 / -1; margin-bottom: 24px; }
.route__head h2 { grid-column: 1 / 10; color: var(--blue); }
.stations { position: relative; margin-top: clamp(56px, 7vw, 96px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }
.stations--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stations::before { content: ""; position: absolute; top: 11px; left: 0; right: 0; height: 1px; background: var(--line); }
.stations > .cline { position: absolute; top: 10px; left: 0; right: 0; }
.station { position: relative; padding-top: 44px; }
.station::before { content: ""; position: absolute; top: 4px; left: 0; width: 15px; height: 15px; background: var(--white); border: 2px solid var(--blue); }
.station--ccb::before { background: var(--blue); }
.station__k { font: 700 .7rem/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--green-ink); }
.station h3 { margin-top: 12px; font: 800 clamp(1.3rem, 2vw, 1.8rem)/1.05 var(--f-display); letter-spacing: -.03em; color: var(--blue); }
.station p { margin-top: 12px; color: var(--text-2); font-size: .98rem; max-width: 28ch; }
.route__note { margin-top: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }
.route__note p { grid-column: 1 / 8; font: 600 clamp(1.1rem, 1.7vw, 1.4rem)/1.4 var(--f-display); letter-spacing: -.015em; color: var(--blue); }
.route__note .actions { grid-column: 9 / 13; align-self: end; justify-content: flex-end; }
@media (max-width: 900px) {
  .route__head h2 { grid-column: 1 / -1; }
  .stations { grid-template-columns: 1fr; row-gap: 34px; padding-left: 36px; }
  .stations::before { top: 0; bottom: 0; left: 7px; right: auto; width: 1px; height: auto; }
  .stations > .cline { top: 0; bottom: 0; left: 6px; right: auto; width: 2px; height: auto; transform-origin: top; }
  .js .stations > .rv-line { transform: scaleY(0); }
  .js .stations > .rv-line.is-in { transform: scaleY(1); }
  .station { padding-top: 0; }
  .station::before { left: -36px; top: 2px; }
  .route__note p, .route__note .actions { grid-column: 1 / -1; justify-content: flex-start; }
  .route__note .actions { margin-top: 24px; }
}

/* index des autres missions */
.idx { padding-block: var(--sec-s) var(--sec); }
.idx__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: clamp(36px, 5vw, 64px); }
.idx__head h2 { color: var(--blue); max-width: 16ch; }
.idx__list { border-top: 2px solid var(--blue); }
.idx__row { position: relative; display: grid; grid-template-columns: 80px minmax(0, 1.1fr) minmax(0, 1fr) 56px; gap: 24px; align-items: center; min-height: 128px; padding-block: 24px; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.idx__row .num { font-size: 1rem; color: var(--green-ink); }
.idx__row h3 { font: 800 clamp(1.6rem, 3.4vw, 3rem)/1 var(--f-display); letter-spacing: -.04em; color: var(--blue); transition: transform .45s var(--ease); }
.idx__row p { color: var(--text-2); max-width: 40ch; }
.idx__go { width: 48px; height: 48px; display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); transition: background .3s, color .3s; }
.idx__go svg { width: 20px; height: 20px; }
.idx__row:hover h3 { transform: translateX(10px); }
.idx__row:hover .idx__go { background: var(--green-cta); color: var(--ink); box-shadow: none; }
.idx__prev { position: absolute; right: 120px; top: 50%; width: 220px; aspect-ratio: 4 / 3; transform: translateY(-50%) scale(.96); opacity: 0; pointer-events: none; transition: opacity .35s, transform .45s var(--ease); z-index: 2; }
.idx__prev img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: hover) and (min-width: 1100px) { .idx__row:hover .idx__prev { opacity: 1; transform: translateY(-50%) scale(1); } }
@media (max-width: 760px) {
  .idx__row { grid-template-columns: 1fr 48px; gap: 8px 16px; min-height: 0; padding-block: 22px; }
  .idx__row .num { grid-column: 1 / -1; }
  .idx__row p { grid-column: 1 / 2; }
  .idx__go { grid-column: 2; grid-row: 2 / 4; align-self: center; }
  .idx__prev { display: none; }
}

/* preuves */
.proof { padding-block: var(--sec); }
.proof__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 56px; align-items: start; }
.proof__head { grid-column: 1 / -1; }
.proof__head h2 { color: var(--blue); max-width: 18ch; }
.proof__dip { grid-column: 1 / 8; }
.proof__team { grid-column: 9 / 13; display: grid; gap: 28px; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.duo figure .reveal { aspect-ratio: 4 / 5; }
.duo figcaption { margin-top: 12px; }
.duo figcaption b { display: block; font: 700 1rem/1.2 var(--f-display); color: var(--blue); letter-spacing: -.01em; }
.duo figcaption span { display: block; margin-top: 4px; font-size: .86rem; color: var(--text-2); line-height: 1.4; }
.facts { border-top: 1px solid var(--line); }
.facts li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.facts li::before { content: ""; width: 10px; height: 10px; margin-top: .45em; background: var(--green); flex: none; }
@media (max-width: 900px) {
  .proof__dip, .proof__team { grid-column: 1 / -1; }
}

/* zone */
.zone { padding-block: var(--sec); overflow: hidden; }
.zone__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 48px; align-items: center; }
.zone__txt { grid-column: 1 / 6; display: grid; gap: 28px; }
.zone__list { border-top: 1px solid var(--line-dark); }
.zone__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); font: 800 clamp(1.4rem, 2.6vw, 2.2rem)/1.05 var(--f-display); letter-spacing: -.035em; }
.zone__list li span { font: 500 .8rem/1.3 var(--f-body); letter-spacing: 0; color: var(--on-dark-2); text-align: right; }
.zone__map { grid-column: 7 / 13; }
.zone__map svg { width: 100%; height: auto; overflow: visible; }
.zone__map text { font-family: var(--f-display); font-weight: 700; fill: #fff; }
@media (max-width: 900px) { .zone__txt, .zone__map { grid-column: 1 / -1; } }

/* action calme */
.calm { padding-block: var(--sec); text-align: left; }
.calm__in { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 36px; align-items: end; }
.calm h2 { grid-column: 1 / 9; color: var(--blue); }
.calm__side { grid-column: 9 / 13; display: grid; gap: 22px; }
@media (max-width: 900px) { .calm h2, .calm__side { grid-column: 1 / -1; } .calm__side .btn { width: 100%; } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #fff; padding-top: clamp(64px, 8vw, 112px); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px 32px; }
.footer__brand img { width: 220px; }
.footer__brand p { margin-top: 20px; color: var(--on-dark-2); font-size: .95rem; max-width: 34ch; }
.footer h2 { font: 700 .7rem/1 var(--f-display); letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.footer ul { display: grid; gap: 2px; }
.footer a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; min-height: 36px; font-size: .95rem; }
.footer a:hover { text-decoration: underline; text-decoration-color: var(--green); text-underline-offset: 5px; }
.footer address { font-style: normal; color: var(--on-dark-2); font-size: .95rem; line-height: 1.6; }
.footer address a { min-height: 32px; }
.footer__bar { margin-top: 56px; padding-block: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; font-size: .84rem; color: var(--on-dark-2); }
.footer__bar ul { display: flex; flex-wrap: wrap; }
.footer__bar .lang { border-color: var(--line-dark); }
.footer__bar .lang button { color: var(--on-dark-2); }
.footer__bar .lang button[aria-pressed="true"] { background: #fff; color: var(--blue); }
.footer__mark { margin-top: 24px; font: 800 clamp(4rem, 17.5vw, 17rem)/.74 var(--f-display); letter-spacing: -.05em; white-space: nowrap; color: rgba(255,255,255,.07); transform: translateY(12%); user-select: none; }
.footer__mark span { color: var(--green); }
.social { display: inline-flex; align-items: center; gap: 10px; }
.social svg { width: 20px; height: 20px; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } .footer__mark { font-size: 21vw; } }
@media (max-width: 760px) { .footer { padding-bottom: 76px; } }

/* ===================== PAGES INTÉRIEURES ===================== */
.phero { padding-top: clamp(40px, 7vw, 104px); padding-bottom: clamp(56px, 8vw, 112px); position: relative; overflow: hidden; }
.phero__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 28px; align-items: end; }
.phero .label { grid-column: 1 / -1; }
.phero h1 { grid-column: 1 / 11; color: var(--blue); }
.phero.is-dark h1 { color: #fff; }
.phero .lead { grid-column: 1 / 7; }
.phero__side { grid-column: 8 / 13; }
.phero .cline { margin-top: clamp(40px, 6vw, 80px); }
@media (max-width: 900px) { .phero h1, .phero .lead, .phero__side { grid-column: 1 / -1; } }

.crumb { font-size: .84rem; color: var(--text-2); }

/* sous-navigation de page */
.subnav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(255,255,255,.97); border-block: 1px solid var(--line); }
.subnav ol { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.subnav ol::-webkit-scrollbar { display: none; }
.subnav a { display: inline-flex; align-items: center; gap: 8px; min-height: 52px; padding: 0 14px; white-space: nowrap; text-decoration: none; font: 600 .88rem/1 var(--f-display); color: var(--blue); border-bottom: 2px solid transparent; }
.subnav a small { font-weight: 700; font-size: .68rem; color: var(--green-ink); letter-spacing: .08em; }
.subnav a.is-cur { border-color: var(--green); }
.subnav__sep { align-self: center; width: 1px; height: 22px; background: var(--line); margin-inline: 10px; flex: none; }

/* services */
.svc { padding-block: var(--sec); scroll-margin-top: calc(var(--header-h) + 60px); }
.svc__top { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 28px; align-items: end; }
.svc__n { grid-column: 1 / 4; font: 800 clamp(5rem, 14vw, 13rem)/.78 var(--f-display); letter-spacing: -.05em; color: var(--green-ink); }
.is-dark .svc__n { color: var(--green); }
.svc__t { grid-column: 4 / 13; }
.svc__t h2 { margin-top: 18px; }
.svc__body { margin-top: clamp(48px, 6vw, 88px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 48px; }
.svc__media { grid-column: 1 / 6; }
.svc__col { grid-column: 7 / 13; display: grid; gap: 40px; align-content: start; }
.svc__body .svc__media--r { grid-column: 8 / 13; grid-row: 1; }
.svc__body .svc__col--l { grid-column: 1 / 7; grid-row: 1; }
.ticks li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); }
.is-dark .ticks li { border-color: var(--line-dark); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 1.25em; width: 16px; height: 2px; background: var(--green); }
.ticks--x li::before { background: var(--text-3); width: 10px; left: 3px; }
.blk h3 { font: 700 .72rem/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--green-ink); margin-bottom: 14px; }
.is-dark .blk h3 { color: var(--green); }
.steps-inline { counter-reset: s; display: grid; gap: 0; border-top: 1px solid var(--line); }
.is-dark .steps-inline { border-color: var(--line-dark); }
.steps-inline li { counter-increment: s; display: grid; grid-template-columns: 40px 1fr; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.is-dark .steps-inline li { border-color: var(--line-dark); }
.steps-inline li::before { content: counter(s, decimal-leading-zero); font: 800 .95rem/1.5 var(--f-display); color: var(--green-ink); }
.is-dark .steps-inline li::before { color: var(--green); }
.part { padding-block: clamp(56px, 7vw, 96px) 0; }
.part__h { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 2px solid var(--blue); }
.part__h h2 { color: var(--blue); }
.minis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.mini { padding: 40px 28px 44px 0; display: grid; gap: 18px; align-content: start; scroll-margin-top: calc(var(--header-h) + 60px); }
.mini + .mini { padding-left: 28px; border-left: 1px solid var(--line); }
.mini .num { font-size: 3.2rem; line-height: .8; color: var(--blue); }
.mini h3 { font: 800 clamp(1.4rem, 2.2vw, 1.9rem)/1.05 var(--f-display); letter-spacing: -.03em; color: var(--blue); }
.mini .lead { font-size: 1.08rem; color: var(--text); }
.mini .dip__frame { aspect-ratio: 4 / 3; }
@media (max-width: 900px) {
  .svc__n { grid-column: 1 / -1; font-size: clamp(5rem, 30vw, 9rem); margin-bottom: -.1em; }
  .svc__t, .svc__body .svc__media, .svc__body .svc__col, .svc__body .svc__media--r, .svc__body .svc__col--l { grid-column: 1 / -1; grid-row: auto; }
  .minis { grid-template-columns: 1fr; }
  .mini { padding: 36px 0; }
  .mini + .mini { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

/* bandeau CTA de fin de page */
.endcta { padding-block: var(--sec-s); }
.endcta__in { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 28px; align-items: end; padding-top: 40px; border-top: 2px solid currentColor; }
.endcta h2 { grid-column: 1 / 8; }
.endcta .actions { grid-column: 8 / 13; justify-content: flex-end; }
@media (max-width: 900px) { .endcta h2, .endcta .actions { grid-column: 1 / -1; justify-content: flex-start; } .endcta .btn { width: 100%; } }

/* ===================== ACTION : estimation, offre, formulaires ===================== */
.act { background: var(--mist); padding-block: clamp(32px, 5vw, 72px) var(--sec-s); }
.act__head { max-width: 760px; margin-inline: auto; padding-bottom: 28px; }
.act__head h1 { color: var(--blue); }
.act__head .lead { margin-top: 18px; }
.assure { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 20px; font-size: .9rem; color: var(--text-2); }
.assure li { display: inline-flex; align-items: center; gap: 8px; }
.assure li::before { content: ""; width: 12px; height: 2px; background: var(--green-cta); }

.calc { max-width: 760px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 12px); }
.calc__prog { display: flex; gap: 4px; padding: 0; }
.calc__prog span { flex: 1; height: 4px; background: var(--mist-2); }
.calc__prog span.is-done { background: var(--green-cta); }
.calc__in { padding: clamp(22px, 4vw, 44px); }
.calc__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; font: 700 .72rem/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); }
.calc__q { margin-top: 18px; font: 800 clamp(1.55rem, 3.2vw, 2.25rem)/1.1 var(--f-display); letter-spacing: -.03em; color: var(--blue); outline: none; }
.calc__help { margin-top: 10px; color: var(--text-2); font-size: .98rem; }
.calc__body { margin-top: 28px; display: grid; gap: 26px; }
.calc__foot { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding: 18px clamp(22px, 4vw, 44px); border-top: 1px solid var(--line); background: #FBFCFD; }
.calc__foot .grow { flex: 1; }
.calc__foot .btn--cta { margin-left: auto; }
.ghost { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 12px; border: 0; background: transparent; cursor: pointer; font: 600 .95rem/1 var(--f-display); color: var(--blue); }
.ghost svg { width: 18px; height: 18px; }
.ghost:hover { text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--green); text-decoration-thickness: 2px; }

.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choices--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choices--1 { grid-template-columns: 1fr; }
.choice { position: relative; display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; min-height: 64px; padding: 16px 16px; text-align: left; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; border-radius: var(--r); transition: border-color .2s, background-color .2s; }
.choice:hover { border-color: var(--blue); }
.choice[aria-pressed="true"], .choice[aria-checked="true"] { border-color: var(--blue); background: #F5F8FC; box-shadow: inset 4px 0 0 var(--green-cta); }
.choice__mk { width: 22px; height: 22px; border: 1.5px solid var(--text-3); display: grid; place-items: center; margin-top: 1px; }
.choice__mk--r { border-radius: 50%; }
.choice[aria-pressed="true"] .choice__mk, .choice[aria-checked="true"] .choice__mk { background: var(--blue); border-color: var(--blue); }
.choice__mk svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.choice[aria-pressed="true"] .choice__mk svg, .choice[aria-checked="true"] .choice__mk svg { opacity: 1; }
.choice strong { display: block; font: 700 1rem/1.25 var(--f-display); color: var(--blue); letter-spacing: -.005em; }
.choice small { display: block; margin-top: 4px; font-size: .88rem; line-height: 1.4; color: var(--text-2); }
.choice__tag { display: inline-block; margin-top: 8px; font: 700 .64rem/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: var(--green-ink); }
.group-t { font: 700 .72rem/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }
@media (max-width: 620px) { .choices, .choices--3 { grid-template-columns: 1fr; } }

.surface { display: grid; gap: 14px; }
.surface__row { display: grid; grid-template-columns: 1fr 150px; gap: 16px; align-items: center; }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 44px; background: transparent; cursor: pointer; }
.range::-webkit-slider-runnable-track { height: 4px; background: linear-gradient(var(--blue), var(--blue)) 0 0 / var(--fill, 50%) 100% no-repeat, var(--mist-2); }
.range::-moz-range-track { height: 4px; background: var(--mist-2); }
.range::-moz-range-progress { height: 4px; background: var(--blue); }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; margin-top: -12px; background: var(--green-cta); border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--blue); border-radius: 50%; }
.range::-moz-range-thumb { width: 24px; height: 24px; background: var(--green-cta); border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--blue); border-radius: 50%; }
.unit { position: relative; }
.unit input { width: 100%; padding-right: 48px; }
.unit span { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-2); font-weight: 600; pointer-events: none; }
.stepper { display: inline-grid; grid-template-columns: 56px 80px 56px; border: 1.5px solid var(--line); background: #fff; }
.stepper button { height: 56px; border: 0; background: transparent; font: 600 1.5rem/1 var(--f-display); color: var(--blue); cursor: pointer; }
.stepper button:disabled { color: var(--veil); cursor: not-allowed; }
.stepper output { display: grid; place-items: center; font: 800 1.5rem/1 var(--f-display); color: var(--blue); border-inline: 1.5px solid var(--line); }

/* résultat */
.res { display: grid; gap: 26px; }
.res__amount { padding: 26px 24px; background: var(--night); color: #fff; }
.res__amount .label { color: var(--green); }
.res__val { margin-top: 14px; font: 800 clamp(2rem, 5.4vw, 3.4rem)/1 var(--f-display); letter-spacing: -.04em; }
.res__val small { display: block; margin-top: 10px; font: 500 .95rem/1.4 var(--f-body); letter-spacing: 0; color: var(--on-dark-2); }
.res__note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-dark); font-size: .9rem; color: var(--on-dark-2); }
.recap { border-top: 1px solid var(--line); }
.recap li { display: grid; grid-template-columns: minmax(110px, 36%) 1fr auto; gap: 12px; align-items: center; min-height: 56px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.recap span { font-size: .9rem; color: var(--text-2); }
.recap strong { font-weight: 600; color: var(--text); overflow-wrap: break-word; hyphens: manual; min-width: 0; }
@media (max-width: 620px) {
  .recap li { grid-template-columns: 1fr auto; row-gap: 2px; padding: 10px 0; }
  .recap li > span:first-child { grid-column: 1; font-size: .8rem; }
  .recap li > strong { grid-column: 1; grid-row: 2; }
  .recap li > :last-child { grid-column: 2; grid-row: 1 / 3; }
}
.recap .ghost { min-height: 44px; font-size: .88rem; padding: 0 6px; }
.demo-note { display: flex; gap: 10px; font-size: .84rem; color: var(--text-2); padding: 12px 14px; border-left: 3px solid var(--green-cta); background: var(--mist); }

/* formulaires */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field > label, .field > .flabel, fieldset > legend { font: 600 .95rem/1.3 var(--f-display); color: var(--blue); letter-spacing: -.005em; }
.opt { font: 400 .84rem var(--f-body); color: var(--text-2); margin-left: 6px; }
.req { color: var(--green-ink); font-weight: 700; margin-left: 2px; }
.input, .select, .textarea {
  width: 100%; min-height: 54px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r); background: #fff;
  font-size: 1rem; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.select { appearance: none; -webkit-appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3560' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat; padding-right: 44px; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--text-3); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36, 158, 115, .35); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: #B42318; }
.hint { font-size: .84rem; color: var(--text-2); }
.err { font-size: .88rem; color: #B42318; font-weight: 500; display: flex; gap: 6px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 620px) { .row2 { grid-template-columns: 1fr; } .row3 { grid-template-columns: 1fr 1fr; } }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.checks-inline { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.cbx { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 14px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; border-radius: var(--r); }
.cbx input { width: 20px; height: 20px; accent-color: var(--blue); margin: 0; }
.cbx:has(input:checked) { border-color: var(--blue); }
.consent { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: .92rem; color: var(--text-2); }
.consent input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--blue); }
.consent a { color: var(--blue); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-sum { padding: 14px 16px; border-left: 3px solid #B42318; background: #FEF3F2; color: #7A271A; font-size: .95rem; }
.form-sum[hidden] { display: none; }
.filebox { display: grid; gap: 8px; padding: 16px; border: 1.5px dashed var(--line); background: #fff; }
.filebox input { font-size: .95rem; max-width: 100%; min-width: 0; width: 100%; }
.form, .form > *, .row2 > *, .row3 > *, .field { min-width: 0; }
.input, .select, .textarea { min-width: 0; max-width: 100%; }
input[type="date"].input { -webkit-appearance: none; appearance: none; display: block; }

.offer { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: clamp(24px, 4vw, 56px); align-items: start; max-width: 1180px; margin-inline: auto; }
.panel { background: #fff; border: 1px solid var(--line); padding: clamp(22px, 4vw, 40px); }
.panel h2 { font: 800 clamp(1.3rem, 2.2vw, 1.7rem)/1.1 var(--f-display); letter-spacing: -.025em; color: var(--blue); }
.aside-stick { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 18px; }
.est-card .res__amount { padding: 20px; }
.est-card .res__val { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.next-steps { counter-reset: n; display: grid; }
.next-steps li { counter-increment: n; display: grid; grid-template-columns: 36px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .95rem; }
.next-steps li::before { content: counter(n, decimal-leading-zero); font: 800 .9rem/1.5 var(--f-display); color: var(--green-ink); }
@media (max-width: 960px) { .offer { grid-template-columns: 1fr; } .aside-stick { position: static; } .offer__aside { order: -1; } }

/* confirmation d’envoi */
.sim { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.sim__band { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--ink); color: #fff; font: 700 .74rem/1.3 var(--f-display); letter-spacing: .14em; text-transform: uppercase; }
.sim__band::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: none; }
.sim__in { padding: clamp(24px, 4vw, 44px); display: grid; gap: 20px; }
.sim__in h2 { font: 800 clamp(1.6rem, 3.4vw, 2.4rem)/1.08 var(--f-display); letter-spacing: -.035em; color: var(--blue); outline: none; }
.sim__warn { padding: 16px 18px; background: #FFF8E6; border-left: 3px solid #B7791F; color: #5C3D0A; font-size: .98rem; }
.sim__warn strong { font-weight: 700; }

/* ===================== RÉALISATIONS ===================== */
.filters { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--line); }
.filters button { min-height: 52px; padding: 0 18px; border: 0; background: transparent; cursor: pointer; font: 600 .92rem/1 var(--f-display); color: var(--text-2); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.filters button[aria-pressed="true"] { color: var(--blue); border-color: var(--green); }
.case { padding-block: clamp(64px, 8vw, 120px); border-bottom: 1px solid var(--line); scroll-margin-top: var(--header-h); }
.case[hidden] { display: none; }
.case__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 24px; }
.case__head h2 { grid-column: 1 / 8; color: var(--blue); }
.case__meta { grid-column: 9 / 13; border-top: 2px solid var(--blue); }
.case__meta div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.case__meta dt { color: var(--text-2); }
.case__meta dd { font-weight: 600; text-align: right; }
.case__story { grid-column: 1 / 8; display: grid; gap: 16px; color: var(--text-2); }
.case__story strong { color: var(--text); font-weight: 600; }
.case__grid { margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: clamp(36px, 4vw, 56px); }
.g-7 { grid-column: span 7; } .g-5 { grid-column: span 5; } .g-6 { grid-column: span 6; } .g-4 { grid-column: span 4; } .g-8 { grid-column: span 8; } .g-12 { grid-column: 1 / -1; }
.g-off { margin-top: clamp(0px, 8vw, 120px); }
.honest { margin-top: 14px; font-size: .84rem; color: var(--text-2); display: flex; gap: 8px; }
@media (max-width: 900px) {
  .case__head h2, .case__meta, .case__story { grid-column: 1 / -1; }
  .g-7, .g-5, .g-6, .g-4, .g-8 { grid-column: 1 / -1; }
  .g-off { margin-top: 0; }
}
.todo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.todo-grid .shoot { aspect-ratio: 3 / 4; min-height: 0; }
@media (max-width: 1000px) { .todo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .todo-grid { grid-template-columns: 1fr; } .todo-grid .shoot { aspect-ratio: 4 / 3; } }

/* ===================== À PROPOS ===================== */
.quote { font: 800 clamp(1.9rem, 4.4vw, 4.1rem)/1.05 var(--f-display); letter-spacing: -.04em; color: var(--blue); max-width: 22ch; }
.quote::before { content: "«\00a0"; color: var(--green-ink); }
.quote::after { content: "\00a0»"; color: var(--green-ink); }
html[data-lang="de"] .quote::before { content: "«"; }
html[data-lang="de"] .quote::after { content: "»"; }
.people { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 64px; }
.person { grid-column: span 6; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: end; }
.person:nth-child(2) { margin-top: clamp(0px, 10vw, 140px); }
.person .reveal { aspect-ratio: 4 / 5; }
.person h3 { font: 800 clamp(1.5rem, 2.4vw, 2.2rem)/1 var(--f-display); letter-spacing: -.035em; }
.person .role { margin-top: 10px; font: 700 .72rem/1.35 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.person p { margin-top: 16px; color: var(--on-dark-2); font-size: .98rem; }
@media (max-width: 1000px) { .person { grid-column: 1 / -1; } .person:nth-child(2) { margin-top: 0; } }
@media (max-width: 560px) { .person { grid-template-columns: 1fr; } .person .reveal { aspect-ratio: 1 / 1; } .person figure { max-width: 78%; } }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--blue); }
.pillar { padding: 30px 28px 34px 0; display: grid; gap: 14px; align-content: start; }
.pillar + .pillar { padding-left: 28px; border-left: 1px solid var(--line); }
.pillar h3 { font: 800 clamp(1.3rem, 2vw, 1.7rem)/1.1 var(--f-display); letter-spacing: -.03em; color: var(--blue); }
.pillar p { color: var(--text-2); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } .pillar, .pillar + .pillar { padding: 26px 0; border-left: 0; } .pillar + .pillar { border-top: 1px solid var(--line); } }
.ptable { border-top: 1px solid var(--line); }
.ptable li { display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1.2fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ptable .num { font-size: 2.6rem; line-height: .9; color: var(--green-ink); }
.ptable h3 { font: 800 clamp(1.2rem, 1.9vw, 1.6rem)/1.1 var(--f-display); letter-spacing: -.025em; color: var(--blue); }
.ptable p { color: var(--text-2); }
@media (max-width: 760px) { .ptable li { grid-template-columns: 56px 1fr; gap: 6px 16px; } .ptable p { grid-column: 2; } .ptable .num { font-size: 1.8rem; } }

/* ===================== CARRIÈRE ===================== */
.values { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); }
.value { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 28px 0; border-top: 1px solid var(--line-dark); }
.value:nth-child(1) { grid-column: 1 / 7; } .value:nth-child(2) { grid-column: 7 / 13; }
.value:nth-child(3) { grid-column: 1 / 5; } .value:nth-child(4) { grid-column: 5 / 9; } .value:nth-child(5) { grid-column: 9 / 13; }
.value h3 { font: 800 clamp(1.5rem, 2.6vw, 2.3rem)/1 var(--f-display); letter-spacing: -.035em; }
.value p { color: var(--on-dark-2); max-width: 44ch; }
.value .num { font-size: .9rem; color: var(--green); }
@media (max-width: 900px) { .value:nth-child(n) { grid-column: 1 / -1; } }

/* ===================== LÉGAL ===================== */
.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.legal__toc { position: sticky; top: calc(var(--header-h) + 24px); border-top: 2px solid var(--blue); }
.legal__toc a { display: flex; align-items: center; min-height: 40px; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--text-2); text-decoration: none; }
.legal__toc a:hover { color: var(--blue); }
.legal__body { max-width: 760px; }
.legal__body h2 { font: 800 clamp(1.3rem, 2.2vw, 1.8rem)/1.15 var(--f-display); letter-spacing: -.025em; color: var(--blue); margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 24px); }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font: 700 1.05rem/1.3 var(--f-display); color: var(--blue); margin-top: 28px; letter-spacing: -.01em; }
.legal__body p, .legal__body li { color: var(--text-2); }
.legal__body p { margin-top: 12px; }
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__body a { color: var(--blue); }
.version { margin-top: 32px; font-size: .88rem; color: var(--text-3); }
.notice { display: flex; gap: 12px; padding: 16px 18px; border-left: 3px solid var(--green-cta); background: var(--mist); font-size: .95rem; color: var(--text); }
.todo { display: inline-block; padding: 2px 8px; background: #FFF1C2; color: #5C3D0A; font-weight: 600; font-size: .88em; }
.kv { border-top: 2px solid var(--blue); }
.kv div { display: grid; grid-template-columns: minmax(140px, 34%) 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.kv dt { color: var(--text-2); font-size: .95rem; }
.kv dd { color: var(--text); font-weight: 500; }
@media (max-width: 860px) { .legal { grid-template-columns: 1fr; } .legal__toc { position: static; } .kv div { grid-template-columns: 1fr; gap: 4px; } }

/* FAQ */
.faq { border-top: 2px solid var(--blue); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 68px; padding: 14px 0; cursor: pointer; list-style: none; font: 700 clamp(1.02rem, 1.6vw, 1.2rem)/1.3 var(--f-display); color: var(--blue); letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 14px; height: 14px; flex: none; background: linear-gradient(var(--blue), var(--blue)) center / 14px 2px no-repeat, linear-gradient(var(--blue), var(--blue)) center / 2px 14px no-repeat; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 22px; color: var(--text-2); max-width: 70ch; }

/* tableau repères */
.ref { border-top: 2px solid var(--blue); }
.ref li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ref li span { color: var(--text-2); }
.ref li strong { font: 800 1.15rem/1.15 var(--f-display); color: var(--blue); letter-spacing: -.02em; text-align: right; }

.two { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(12px, 2vw, 28px); row-gap: 48px; }
.two > :first-child { grid-column: 1 / 6; }
.two > :last-child { grid-column: 7 / 13; }
@media (max-width: 900px) { .two > :first-child, .two > :last-child { grid-column: 1 / -1; } }

/* 404 */
.nf { min-height: 70vh; display: grid; align-content: center; padding-block: 80px; }
.nf__n { font: 800 clamp(8rem, 34vw, 26rem)/.78 var(--f-display); letter-spacing: -.05em; color: var(--mist-2); }

/* utilitaires */
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; } .mt-xl { margin-top: clamp(64px, 8vw, 112px); }
.center { text-align: center; }
[hidden] { display: none !important; }

/* ---------- passe de corrections visuelles groupées (contrôle de Jeorge, 2026-09-16) ---------- */

/* #02 — graphique des horaires B2B : lecture immédiate (concept graphique inchangé) */
.dayrule { gap: 10px; }
.dayrule__title { font: 700 clamp(1rem, 1.3vw, 1.14rem)/1.35 var(--f-display); letter-spacing: -.005em; max-width: 48ch; }
.dayrule__graph { display: grid; gap: 7px; }
.dayrule__marks { display: grid; grid-template-columns: 33.33% 41.67% 25%; align-items: end; font: 700 .76rem/1.2 var(--f-display); color: var(--green); }
.shift:not(.is-dark) .dayrule__marks { color: var(--green-ink); }
.dayrule__mark--a { justify-self: end; margin-right: 10%; text-align: right; }
.dayrule__mark--b { justify-self: start; margin-left: 12%; text-align: left; }
.dayrule__legend .dayrule__note { flex-basis: 100%; font-size: .8rem; opacity: .85; }
@media (max-width: 420px) {
  .dayrule__marks { font-size: .68rem; }
  .dayrule__mark--a { margin-right: 5%; }
  .dayrule__mark--b { margin-left: 4%; }
}

/* #04 — parcours CCB : progression lente (≈ 7 s), étapes activées une à une */
.js .route .stations > .rv-line { transition-duration: 7s; transition-timing-function: cubic-bezier(.4, .1, .6, .9); }
@supports selector(:has(*)) {
  .js .route .stations:has(> .rv-line) > .station { opacity: .28; transition: opacity 1.1s var(--ease); }
  .js .route .stations:has(> .rv-line) > .station::before { transform: scale(.7); transition: transform 1.1s var(--ease); }
  .js .route .stations:has(> .rv-line.is-in) > .station { opacity: 1; }
  .js .route .stations:has(> .rv-line.is-in) > .station::before { transform: none; }
  .js .route .stations:has(> .rv-line.is-in) > .station:nth-child(3),
  .js .route .stations:has(> .rv-line.is-in) > .station:nth-child(3)::before { transition-delay: 1.8s; }
  .js .route .stations:has(> .rv-line.is-in) > .station:nth-child(4),
  .js .route .stations:has(> .rv-line.is-in) > .station:nth-child(4)::before { transition-delay: 3.5s; }
  .js .route .stations:has(> .rv-line.is-in) > .station:nth-child(5),
  .js .route .stations:has(> .rv-line.is-in) > .station:nth-child(5)::before { transition-delay: 5.2s; }
}
@media (prefers-reduced-motion: reduce) {
  .js .route .stations > .station, .js .route .stations > .station::before { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Finition — Carrière « Trois étapes » : ligne dessinée lentement (≈ 6 s, gauche → droite ; haut → bas sur mobile).
   Déclenchée une seule fois à l'entrée dans l'écran ; marqueurs et contenu fixes. */
.js .stations--3 > .rv-line { transition-duration: 6s; transition-timing-function: cubic-bezier(.4, .1, .6, .9); }

/* Finition — À propos « Cinq principes appliqués » : 01 → 05 apparaissent un par un (≈ 1 s d'écart).
   Seul le contenu de chaque ligne s'anime (opacité + 8 px) ; séparateurs, grille et hauteurs inchangés. */
.js .rv-seq > li > * { opacity: 0; transform: translateY(8px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .rv-seq.is-in > li > * { opacity: 1; transform: none; }
.js .rv-seq.is-in > li:nth-child(2) > * { transition-delay: 1s; }
.js .rv-seq.is-in > li:nth-child(3) > * { transition-delay: 2s; }
.js .rv-seq.is-in > li:nth-child(4) > * { transition-delay: 3s; }
.js .rv-seq.is-in > li:nth-child(5) > * { transition-delay: 4s; }
@media (prefers-reduced-motion: reduce) {
  .js .rv-seq > li > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* #05 — navigation des services : centrée, un peu plus lisible et présente */
.subnav { background: #fff; box-shadow: 0 10px 22px -20px rgba(14, 27, 51, .45); }
.subnav ol { width: max-content; max-width: 100%; margin-inline: auto; gap: 6px; }
.subnav a { min-height: 56px; padding: 0 16px; font-size: .96rem; }
.subnav a small { font-size: .72rem; }
.subnav a:hover { border-color: var(--line); }
.subnav a.is-cur { border-color: var(--green); }

/* #06 — page Estimation : le questionnaire visible dès l'ouverture */
@media (min-width: 761px) {
  .act--estimate { padding-top: clamp(18px, 2.2vw, 32px); }
  .act--estimate .act__head { padding-bottom: 16px; }
  .act--estimate .act__head h1 { margin-top: 6px; font-size: clamp(2.1rem, 3.3vw, 3rem); }
  .act--estimate .act__head .lead { margin-top: 8px; font-size: clamp(1.02rem, 1.2vw, 1.14rem); max-width: 64ch; }
  .act--estimate .assure { margin-top: 10px; gap: 4px 20px; font-size: .86rem; }
  .act--estimate .calc__in { padding: clamp(20px, 2.4vw, 30px) clamp(20px, 3.2vw, 36px); }
  .act--estimate .calc__q { margin-top: 10px; font-size: clamp(1.4rem, 2.1vw, 1.8rem); }
  .act--estimate .calc__help { margin-top: 6px; }
  .act--estimate .calc__body { margin-top: 18px; gap: 18px; }
  .act--estimate .choice { min-height: 56px; padding: 12px 14px; gap: 12px; }
  .act--estimate .choice small { margin-top: 2px; font-size: .85rem; }
  .act--estimate .choice__tag { margin-top: 5px; }
  .act--estimate .calc__foot { padding-block: 12px; }
}
@media (max-width: 760px) {
  .act--estimate { padding-top: 14px; }
  .act--estimate .act__head { padding-bottom: 12px; }
  .act--estimate .act__head h1 { margin-top: 6px; font-size: clamp(1.9rem, 8.4vw, 2.2rem); }
  .act--estimate .act__head .lead { margin-top: 8px; font-size: 1rem; }
  .act--estimate .assure { margin-top: 8px; gap: 2px 14px; font-size: .84rem; }
}

/* #07 — À propos : chaque texte rapproché de son portrait, duo séparé plus nettement (portraits de même taille) */
@media (min-width: 1001px) {
  .person { gap: 18px; }
  .person:first-child { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding-right: clamp(20px, 2.3vw, 32px); }
  .person:nth-child(2) { grid-template-columns: minmax(0, 1.063fr) minmax(0, 1fr); padding-left: clamp(28px, 3.4vw, 48px); }
  /* dernière correction : titre « Deux noms. Deux rôles. » rapproché des deux profils (alignement conservé) */
  .people.mt-xl { margin-top: clamp(48px, 5vw, 72px); }
  .person:nth-child(2) { margin-top: 0; }
}

/* ---------- environnements hors production (bandeau généré par build.py --env test) ---------- */
.env-banner { margin: 0; padding: 6px var(--gut); background: #B7791F; color: #fff; font: 700 .72rem/1.35 var(--f-display); letter-spacing: .06em; text-align: center; }
.env-banner[data-env="test-connecte"] { background: #B42318; }
.test-notice { margin-top: 12px; border-left-color: #B7791F; }

/* ---------- densité mobile (décisions des tests réels sur smartphone, WEB11_FUSION 2026-09-16) ----------
   Téléphones uniquement (≤ 760 px) : tablette et desktop inchangés. Cibles tactiles ≥ 44 px conservées. */
@media (max-width: 760px) {
  :root { --header-h: 60px; }
  .header__in { gap: 12px; }
  .brand img { width: clamp(132px, 40vw, 164px); }
  .tools { gap: 6px; }
  .header .tools .lang { display: inline-flex; }
  .header .lang button { min-width: 44px; min-height: 44px; padding: 0 8px; font-size: .7rem; }
  .burger { width: 44px; height: 44px; margin-right: -8px; }
  .burger span { left: 11px; right: 11px; }
  .burger span:nth-child(1) { top: 16px; }
  .burger span:nth-child(2) { top: 26px; right: 18px; }
  .menu__top img { width: clamp(132px, 40vw, 164px); }

  .hero { padding-top: 18px; padding-bottom: 44px; }
  .hero__kicker { margin-bottom: 14px; }
  .hero__title { font-size: clamp(2.6rem, 12.2vw, 3.4rem); }
  .hero__media { margin-top: 18px; }
  .hero__act { margin-top: 22px; gap: 18px; }
  .hero__rule { margin-top: 32px; row-gap: 16px; }

  .btn { --h: 52px; padding: 0 18px 0 20px; gap: 14px; font-size: .96rem; }
  .btn svg { width: 18px; height: 18px; }
  .mbar { padding-block: 8px calc(8px + env(safe-area-inset-bottom)); }
  .mbar .btn { --h: 48px; }

  .act { padding-block: 22px var(--sec-s); }
  .act__head { padding-bottom: 18px; }
  .calc__in { padding: 20px 18px; }
  .calc__q { margin-top: 12px; font-size: clamp(1.35rem, 6vw, 1.55rem); }
  .calc__help { margin-top: 6px; font-size: .92rem; }
  .calc__body { margin-top: 18px; gap: 18px; }
  .choices { gap: 8px; }
  .choice { min-height: 52px; padding: 11px 12px; gap: 10px; grid-template-columns: 22px 1fr; }
  .choice__mk { width: 20px; height: 20px; }
  .choice strong { font-size: .95rem; }
  .choice small { margin-top: 2px; font-size: .82rem; line-height: 1.35; }
  .choice__tag { margin-top: 4px; font-size: .6rem; }
  .stepper { grid-template-columns: 48px 64px 48px; }
  .stepper button { height: 48px; }
  .calc__foot { padding: 10px 18px; gap: 6px 8px; }
  .calc__foot .ghost { min-height: 44px; padding: 0 8px; font-size: .9rem; }
  .calc__foot .btn--cta { --h: 48px; }
  .calc__foot .actions { gap: 4px 8px; }
  /* « Recevoir une offre exacte » : CTA prioritaire compact sur une ligne, pleine largeur, au lieu du bloc massif sur deux lignes */
  .calc__foot [data-act="offer"] { order: -1; flex: 1 1 100%; margin-left: 0; white-space: nowrap; font-size: .95rem; }
  .res { gap: 18px; }
  .res__amount { padding: 20px 18px; }
  .res__val { margin-top: 10px; font-size: clamp(1.7rem, 7.6vw, 2rem); }
  .res__val small { margin-top: 8px; font-size: .88rem; }
  .res__note { margin-top: 14px; padding-top: 12px; font-size: .84rem; }
  .recap li { min-height: 48px; padding: 6px 0; }
}

/* ---------- validation mobile finale avant déploiement TEST (WEB11_FUSION 2026-09-16) ----------
   Téléphones uniquement (≤ 760 px) : tablette et desktop validés inchangés. Identité Web11 conservée, aucune miniaturisation globale. */
@media (max-width: 760px) {
  /* Respirations entre sections : 80 + 80 px de padding laissaient 170–200 px de vide entre deux blocs */
  :root { --sec: 60px; --sec-s: 48px; }

  /* Services : barre 01–06 défilable bord à bord, fondu à droite = indice de défilement, texte lisible */
  .subnav .wrap { padding-inline: 0; }
  .subnav ol { padding-inline: var(--gut); scroll-padding-inline: var(--gut); -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent); }
  .subnav a { min-height: 52px; padding: 0 12px; font-size: .92rem; }

  /* Accueil › méthode : grands numéros conservés, sans chevauchement du titre (lisibilité sur téléphone) */
  .princ__n { margin-bottom: 10px; }

  /* Estimation : étiquette « Cœur de métier CCB » moins minuscule */
  .choice__tag { font-size: .66rem; }

  /* Offre exacte : estimation compacte avant le formulaire, « Ensuite » après le formulaire */
  .offer { gap: 20px; }
  .offer__aside, .offer__aside .aside-stick { display: contents; }
  .offer__aside .panel { order: 1; }
  .offer__aside [data-est-card], .offer__aside [data-est-empty] { order: -1; }
  .est-card { padding: 18px; }
  .est-card .res__amount { padding: 16px 18px; }
  .est-card .recap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 16px; }
  .est-card .recap li { min-height: 0; padding: 8px 0; }
  .est-card .recap li > :last-child { display: none; }
  .est-card .actions { gap: 4px 8px; }
  .est-card .hint { font-size: .84rem; }
  .next-steps + .small { text-wrap: balance; }

  /* Carrière : sélection du CV avec une vraie cible tactile */
  .filebox input[type="file"] { min-height: 44px; }
  .filebox input[type="file"]::file-selector-button { min-height: 44px; margin-right: 12px; padding: 0 14px; }
}

@media print {
  .header, .footer, .mbar, .menu { display: none !important; }
}
