/* ==========================================================================
   Millea. — site vitrine OF & CFA
   Charte reprise des guides Millea. : vert forêt, crème, ocre, terracotta,
   rose, prune ; Lora (titres) + Poppins (texte) ; cercles et arches.
   ========================================================================== */

:root {
  --vert: #1F4A3E;
  --vert-2: #255547;
  --vert-deep: #173A30;
  --creme: #FBF7EF;
  --blanc: #FFFDF9;
  --sable: #F4EDE1;
  --menthe: #E6EEE8;
  --or: #EDB64B;
  --ocre: #C9A04A;
  --ocre-t: #8A671E;
  --terra: #C4653C;
  --terra-t: #A64F2A;
  --rose: #C68670;
  --rose-pale: #F8E8E1;
  --prune: #7A4F80;
  --prune-t: #6A4270;
  --teal: #2B8A80;
  --teal-t: #1E6E66;
  --bleu: #2F5F8F;
  --encre: #1C2521;
  --texte: #3D4742;
  --gris: #66706A;
  --trait: #E8DFCF;
  --trait-vert: rgba(31, 74, 62, .14);

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r: 22px;
  --r-lg: 32px;
  --gutter: clamp(18px, 5vw, 56px);
  --sect: clamp(88px, 11vw, 156px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --shadow: 0 30px 60px -32px rgba(23, 58, 48, .38);
  --shadow-lg: 0 50px 90px -40px rgba(10, 30, 24, .55);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--texte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow: clip) { html, body { overflow-x: clip; } }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
sup { font-size: .6em; line-height: 0; }
::selection { background: var(--or); color: var(--vert-deep); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--or); color: var(--vert-deep); padding: 10px 18px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: top .2s; }
.skip:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1240px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.ic { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Typographie ---------- */
.eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--terra-t);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow--or { color: var(--or); }

.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.05rem, 4.3vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.018em;
  color: var(--vert);
  text-wrap: balance;
}
.h2 em, .h3 em { font-style: italic; font-weight: 500; color: var(--terra); }
.h2--light { color: var(--creme); }
.h2--light em { color: var(--or); }
.h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.15; color: var(--vert); letter-spacing: -.01em; }

.lead { font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.7; color: var(--gris); margin-top: 22px; max-width: 60ch; text-wrap: pretty; }
.lead--light { color: rgba(251, 247, 239, .78); }

.pill {
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--creme);
  color: var(--vert);
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.pill--or { background: var(--or); color: var(--vert-deep); margin-bottom: 26px; }

/* ---------- Boutons ---------- */
.btn {
  --bg: var(--vert); --fg: var(--creme);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg); color: var(--fg);
  font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: transform .35s var(--ease), background-color .3s, color .3s, border-color .3s, box-shadow .35s;
  white-space: nowrap;
}
.btn .ic { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ic { transform: translateX(3px); }
.btn--or { --bg: var(--or); --fg: var(--vert-deep); box-shadow: 0 14px 30px -14px rgba(237, 182, 75, .7); }
.btn--or:hover { --bg: #F3C466; box-shadow: 0 20px 36px -14px rgba(237, 182, 75, .8); }
.btn--ghost { --bg: transparent; --fg: var(--creme); border-color: rgba(251, 247, 239, .35); }
.btn--ghost:hover { border-color: var(--or); --fg: var(--or); }
.btn--vert { --bg: var(--vert); --fg: var(--creme); }
.btn--vert:hover { --bg: var(--vert-deep); }
.btn--line { --bg: transparent; --fg: var(--vert); border-color: var(--trait-vert); }
.btn--line:hover { --bg: var(--vert); --fg: var(--creme); border-color: var(--vert); }
.btn--sm { padding: 11px 20px; font-size: .86rem; }
.btn--lg { padding: 19px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; color: var(--vert); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--or); padding-bottom: 4px; }
.link-arrow .ic { transition: transform .35s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---------- Orbes (cercles des guides) ---------- */
.orb { position: absolute; border-radius: 50%; pointer-events: none; }

/* ==========================================================================
   EN-TÊTE
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  color: var(--creme);
  transition: background-color .4s, color .4s, box-shadow .4s, backdrop-filter .4s;
}
.header__inner { display: flex; align-items: center; gap: 28px; height: 84px; transition: height .4s var(--ease); }
.header.is-scrolled {
  background: rgba(251, 247, 239, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  color: var(--vert);
  box-shadow: 0 1px 0 var(--trait);
}
.header.is-scrolled .header__inner { height: 70px; }
.header__progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--or); transform-origin: left; transform: scaleX(0); }

.logo {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.75rem; letter-spacing: -.02em; line-height: 1;
  text-decoration: none; color: currentColor;
  margin-right: auto;
}
.logo span { color: var(--or); }
.header.is-scrolled .logo span { color: var(--ocre); }

.nav ul { display: flex; gap: 30px; }
.nav a { position: relative; text-decoration: none; font-size: .9rem; font-weight: 400; opacity: .88; transition: opacity .3s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--or); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav a:hover, .nav a.is-active { opacity: 1; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid currentColor; background: transparent; cursor: pointer; position: relative; opacity: .9; }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), top .35s var(--ease); }
.burger span:first-child { top: 18px; }
.burger span:last-child { top: 26px; }
.burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--vert);
  color: var(--creme);
  padding: 110px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 36px;
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu ul { display: grid; gap: 6px; }
.menu a:not(.btn) { font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 2.4rem); text-decoration: none; line-height: 1.35; }
.menu .btn { align-self: flex-start; }
.menu__foot { margin-top: auto; font-size: .85rem; opacity: .6; font-style: italic; }
body.menu-open .header { color: var(--creme); background: transparent; box-shadow: none; backdrop-filter: none; }
body.menu-open .header .logo span { color: var(--or); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding-top: clamp(118px, 15vh, 160px);
  background:
    radial-gradient(900px 620px at 78% 30%, rgba(52, 110, 92, .55), transparent 65%),
    radial-gradient(700px 500px at 0% 100%, rgba(12, 36, 29, .6), transparent 70%),
    var(--vert);
  color: var(--creme);
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
}
.hero::after { /* grain */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__arc {
  position: absolute; z-index: -1;
  left: -22vw; bottom: -46vw;
  width: 62vw; height: 62vw; border-radius: 50%;
  border: 1.5px solid rgba(251, 247, 239, .12);
}
.hero__arc--2 { left: -12vw; bottom: -52vw; border-color: rgba(237, 182, 75, .14); }

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding-bottom: 40px;
}
.hero__text .pill { margin-bottom: 30px; animation: fadeUp 1s var(--ease) both; }

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.9rem, 6.3vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -.028em;
  color: var(--blanc);
}
.hero__title .line { display: block; overflow: hidden; padding: 0 .12em .1em 0; margin-bottom: -.1em; }
.hero__title .line > span { display: inline-block; animation: rise 1.15s var(--ease) both; animation-delay: calc(var(--i) * .12s + .1s); }
.hero__title em { font-style: italic; font-weight: 500; color: var(--or); }

.hero__lead {
  margin-top: 30px; max-width: 54ch;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem); font-weight: 300; line-height: 1.75;
  color: rgba(251, 247, 239, .82);
  animation: fadeUp 1s var(--ease) .5s both;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; animation: fadeUp 1s var(--ease) .62s both; }
.hero__facts {
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 0;
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid rgba(251, 247, 239, .14);
  animation: fadeUp 1s var(--ease) .75s both;
}
.hero__facts li { display: grid; gap: 4px; padding-right: 34px; margin-right: 34px; border-right: 1px solid rgba(251, 247, 239, .14); max-width: 190px; }
.hero__facts li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__facts strong { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--or); line-height: 1; }
.hero__facts span { font-size: .8rem; line-height: 1.45; color: rgba(251, 247, 239, .66); }

/* Visuel */
.hero__visual {
  position: relative;
  width: 100%; max-width: 520px; justify-self: end;
  aspect-ratio: 5 / 6.1;
  animation: fadeIn 1.4s var(--ease) .2s both;
}
.hero__visual .orb { transition: transform .9s var(--ease); will-change: transform; }
.orb--rose { width: 82%; aspect-ratio: 1; top: -16%; right: -34%; background: var(--rose); }
.orb--ocre { width: 50%; aspect-ratio: 1; bottom: -2%; left: -20%; background: var(--ocre); }
.orb--terra { width: 21%; aspect-ratio: 1; top: 50%; right: -15%; background: var(--terra); }

.hero__arch {
  position: absolute; inset: 0 6% 4% 6%;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  outline: 1px solid rgba(237, 182, 75, .55);
  outline-offset: 12px;
}
.hero__arch img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 50%; transform: scale(1.06); animation: settle 2.4s var(--ease) both; }

.hero__chip {
  position: absolute; top: 12%; left: -6%;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px 11px 14px;
  background: var(--creme); color: var(--vert);
  border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow);
  animation: fadeUp 1s var(--ease) 1s both, float 7s ease-in-out 2s infinite;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(43, 138, 128, .5); animation: pulse 2.4s infinite; }

.recap {
  position: absolute; left: -17%; bottom: -5%;
  width: min(300px, 70%);
  padding: 18px 18px 14px;
  background: rgba(255, 253, 249, .97);
  color: var(--encre);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  animation: fadeUp 1s var(--ease) 1.15s both, float 8s ease-in-out 2.4s infinite reverse;
}
.recap__head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid var(--trait); }
.recap__title { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--vert); }
.recap__month { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gris); }
.recap li { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; padding: 7px 0; }
.recap li i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.recap li span { color: var(--texte); }
.recap li b { font-weight: 500; font-size: .68rem; padding: 3px 8px; border-radius: 999px; background: var(--menthe); color: var(--teal-t); }
.recap .is-wip i { background: var(--ocre); }
.recap .is-wip b { background: #FBF0D8; color: var(--ocre-t); }
.recap .is-miss i { background: var(--terra); }
.recap .is-miss b { background: var(--rose-pale); color: var(--terra-t); }
.recap__foot { display: flex; justify-content: space-between; gap: 8px; margin-top: 8px; padding-top: 11px; border-top: 1px dashed var(--trait); font-size: .72rem; color: var(--gris); }
.recap__foot strong { color: var(--vert); font-weight: 600; }

/* Bandeau défilant */
.marquee {
  position: relative;
  border-top: 1px solid rgba(251, 247, 239, .12);
  padding: 22px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 36px; padding-right: 36px;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(251, 247, 239, .72); white-space: nowrap;
}
.marquee__track span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--or); }

/* ==========================================================================
   SECTIONS — commun
   ========================================================================== */
.section { position: relative; padding: var(--sect) 0; overflow-x: clip; }
.section__head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 80px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.section__head--center .lead { margin-inline: auto; }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: end; }
.section__head--split .lead { margin-top: 0; }

.arch { border-radius: 999px 999px 24px 24px; overflow: hidden; box-shadow: var(--shadow); }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* Callouts (style « Côté assistante » des guides) */
.callout { position: relative; padding: 28px 32px 28px 40px; border-radius: 22px; margin-top: 48px; overflow: hidden; }
.callout::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: var(--terra); }
.callout--rose { background: var(--rose-pale); }
.callout__label { display: flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terra-t); margin-bottom: 10px; }
.callout__label::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--terra); }
.callout p:last-child { color: var(--encre); font-size: 1.04rem; max-width: 92ch; }

/* Accordéons : cartes ouvertes sur ordinateur, repliables sur mobile */
.acc > summary { list-style: none; }
.acc > summary::-webkit-details-marker { display: none; }
@media (min-width: 721px) { .acc > summary { cursor: default; } }

/* Onglets : visibles seulement quand les colonnes s'empilent */
.tabs__list { display: none; }
.tabs__list button { flex: none; padding: 10px 18px; border: 0; border-radius: 999px; background: transparent; font-size: .88rem; font-weight: 500; color: var(--gris); cursor: pointer; white-space: nowrap; transition: background-color .3s, color .3s; }
.tabs__list button[aria-selected="true"] { background: var(--vert); color: var(--creme); }
.tabs__list--light button { color: rgba(251, 247, 239, .75); }
.tabs__list--light button[aria-selected="true"] { background: var(--creme); color: var(--vert); }

/* ==========================================================================
   LE CONSTAT
   ========================================================================== */
.constat__intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 7vw, 110px); align-items: center; margin-bottom: clamp(64px, 8vw, 104px); }
.constat__media { position: relative; max-width: 400px; justify-self: end; width: 100%; }
.constat__media .arch { aspect-ratio: 4 / 5; position: relative; z-index: 1; }
.constat__media .arch img { object-position: 52% 40%; }
.orb--ocre-s { width: 64%; aspect-ratio: 1; background: var(--ocre); right: -18%; top: -9%; z-index: 0; }
.constat__note {
  position: absolute; z-index: 2; left: -14%; bottom: 10%;
  display: flex; align-items: center; gap: 12px;
  background: var(--blanc); padding: 12px 18px 12px 12px; border-radius: 999px; box-shadow: var(--shadow);
  font-size: .85rem; color: var(--texte);
}
.constat__note span { font-family: var(--serif); font-weight: 600; font-size: .95rem; color: var(--creme); background: var(--vert); border-radius: 999px; padding: 6px 12px; }

.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain {
  position: relative;
  padding: 34px 30px 28px;
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pain::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; background: var(--c); }
.pain:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pain > summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; column-gap: 14px; }
.pain__tag { grid-column: 1; justify-self: start; font-size: .7rem; font-weight: 600; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; background: var(--c); color: #fff; margin-bottom: 18px; }
.pain h3 { grid-column: 1; font-family: var(--sans); font-weight: 600; font-size: 1.2rem; line-height: 1.35; color: var(--t); }
.pain .acc__body { padding-top: 12px; }
.pain .acc__body > p:not([class]) { font-size: .95rem; line-height: 1.7; color: var(--texte); }
.pain__cost { margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--trait); font-size: .88rem; font-style: italic; color: var(--encre); }
.pain__cost span { display: block; font-style: normal; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gris); margin-bottom: 4px; }

/* ==========================================================================
   LES 10 ERREURS
   ========================================================================== */
.erreurs { background: var(--sable); }
.errors { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: e; }
.errors li {
  position: relative; background: var(--blanc);
  border-radius: 20px; padding: 30px 22px 24px;
  border: 1px solid var(--trait);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.errors li::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 7px; background: var(--c); }
.errors li:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.errors summary { display: block; }
.errors .num { display: inline-block; font-size: .72rem; font-weight: 600; padding: 3px 11px; border-radius: 999px; background: var(--c); color: #fff; margin-bottom: 16px; }
.errors h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1.38; color: var(--t); margin-bottom: 10px; }
.errors p { font-size: .87rem; line-height: 1.62; color: var(--texte); }

/* ==========================================================================
   QUALIOPI 2026
   ========================================================================== */
.qualiopi { background: var(--vert); color: var(--creme); overflow: hidden; isolation: isolate; }
.orb--prune-q { width: 560px; aspect-ratio: 1; background: var(--prune); top: -260px; right: -200px; z-index: -1; }
.orb--ocre-q { width: 300px; aspect-ratio: 1; background: var(--ocre); top: 120px; right: 140px; z-index: -1; opacity: .95; }
.orb--terra-q { width: 150px; aspect-ratio: 1; background: var(--terra); top: 330px; right: -50px; z-index: -1; }

.qualiopi__top { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(40px, 6vw, 90px); align-items: end; }
.countdown {
  padding: 32px 32px 30px;
  background: rgba(23, 58, 48, .72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 182, 75, .3);
  border-radius: 26px;
}
.countdown__label { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or); }
.countdown__num { display: flex; align-items: baseline; gap: 12px; margin: 10px 0 4px; font-family: var(--serif); font-weight: 600; font-size: clamp(4.2rem, 8vw, 6.4rem); line-height: 1; color: var(--blanc); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.countdown__num.is-past { font-size: clamp(2.4rem, 4vw, 3.2rem); }
.countdown__num small { font-family: var(--sans); font-size: 1rem; font-weight: 400; letter-spacing: 0; color: rgba(251, 247, 239, .7); }
.countdown__sub { font-size: .9rem; color: rgba(251, 247, 239, .72); }
.countdown__bar { display: block; height: 3px; border-radius: 3px; background: rgba(251, 247, 239, .14); margin-top: 22px; overflow: hidden; }
.countdown__bar span { display: block; height: 100%; width: 0; background: var(--or); border-radius: 3px; transition: width 1.6s var(--ease); }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(56px, 7vw, 88px); border-top: 1px solid rgba(251, 247, 239, .16); border-bottom: 1px solid rgba(251, 247, 239, .16); }
.kpis li { padding: 30px 28px 30px 0; display: grid; gap: 8px; align-content: start; }
.kpis li + li { padding-left: 28px; border-left: 1px solid rgba(251, 247, 239, .16); }
.kpis strong { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 4.5vw, 3.6rem); line-height: 1; color: var(--or); font-variant-numeric: tabular-nums; }
.kpis span { font-size: .9rem; line-height: 1.5; color: rgba(251, 247, 239, .76); max-width: 22ch; }

.shift { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; margin-top: clamp(56px, 7vw, 88px); }
.shift__col { border-radius: 24px; padding: 32px 34px; }
.shift__label { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.shift__col li { position: relative; padding-left: 26px; margin-bottom: 12px; line-height: 1.55; }
.shift__col li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 3px; }
.shift__col--before { background: rgba(251, 247, 239, .06); border: 1px solid rgba(251, 247, 239, .12); color: rgba(251, 247, 239, .7); }
.shift__col--before .shift__label { color: rgba(251, 247, 239, .55); }
.shift__col--before li::before { background: rgba(251, 247, 239, .3); }
.shift__col--before li { text-decoration: line-through; text-decoration-color: rgba(251, 247, 239, .25); text-decoration-thickness: 1px; }
.shift__col--after { background: var(--creme); color: var(--encre); box-shadow: var(--shadow-lg); }
.shift__col--after .shift__label { color: var(--vert); }
.shift__col--after li::before { background: var(--vert); }
.shift__arrow { align-self: center; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--or); color: var(--vert-deep); }
.shift__arrow .ic { width: 22px; height: 22px; }

.auditor { margin-top: 30px; padding: 34px 40px; border-radius: 24px; background: var(--vert-deep); border: 1px solid rgba(237, 182, 75, .22); }
.auditor__label { font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or); margin-bottom: 12px; }
.auditor__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.4; color: var(--blanc); }

.qualiopi__foot { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-top: clamp(48px, 6vw, 72px); }
.qualiopi__foot p { font-size: 1.08rem; color: rgba(251, 247, 239, .82); max-width: 62ch; }
.qualiopi__foot strong { color: var(--or); font-weight: 500; }
.qualiopi__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ==========================================================================
   AUTODIAGNOSTIC
   ========================================================================== */
.diag { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(20px, 3vw, 32px); align-items: stretch; }
.quiz { display: flex; flex-direction: column; min-height: 440px; padding: clamp(26px, 4vw, 48px); background: var(--blanc); border: 1px solid var(--trait); border-radius: 28px; box-shadow: var(--shadow); }
.quiz__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.quiz__count { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gris); }
.quiz__count b { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0; color: var(--vert); }
.quiz__ind { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--terra-t); padding: 5px 12px; border-radius: 999px; background: var(--rose-pale); white-space: nowrap; }
.quiz__ind:empty { display: none; }
.quiz__bar { height: 4px; border-radius: 4px; background: var(--sable); margin: 18px 0 clamp(26px, 4vw, 40px); overflow: hidden; }
.quiz__bar span { display: block; height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg, var(--or), var(--terra)); transition: width .6s var(--ease); }
.quiz__q { font-family: var(--serif); font-weight: 500; font-size: clamp(1.35rem, 2.3vw, 1.9rem); line-height: 1.3; letter-spacing: -.01em; color: var(--vert); text-wrap: balance; }
.quiz__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(24px, 3.5vw, 36px); }
.quiz__btn { min-width: 140px; padding: 15px 30px; border-radius: 999px; border: 1px solid var(--trait-vert); background: var(--creme); font-size: 1rem; font-weight: 500; color: var(--vert); cursor: pointer; transition: background-color .25s, color .25s, border-color .25s, transform .3s var(--ease); }
.quiz__btn:hover { transform: translateY(-2px); }
.quiz__btn--oui:hover, .quiz__btn--oui.is-picked { background: var(--teal); border-color: var(--teal); color: #fff; }
.quiz__btn--non:hover, .quiz__btn--non.is-picked { background: var(--terra); border-color: var(--terra); color: #fff; }
.quiz__body.is-swap { animation: fadeUp .45s var(--ease); }
.quiz__foot { display: flex; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 30px; }
.quiz__link { background: none; border: 0; padding: 0; font-size: .85rem; color: var(--gris); cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.quiz__link:hover:not(:disabled) { color: var(--vert); }
.quiz__link:disabled { opacity: .35; cursor: default; text-decoration: none; }
.quiz__done-title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.25; color: var(--vert); }
.quiz__done-sub { margin-top: 8px; font-size: .95rem; color: var(--gris); }
.todo-list { display: grid; gap: 12px; margin-top: 22px; }
.todo-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; font-size: .95rem; line-height: 1.5; color: var(--encre); }
.todo-list li::before { content: ""; width: 18px; height: 18px; margin-top: 3px; border-radius: 5px; border: 1.5px solid var(--terra); }
.todo-list small { display: block; margin-top: 2px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); }

.diag__result {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 34px 30px 26px;
  background: var(--vert); color: var(--creme);
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden; isolation: isolate;
}
.diag__result::before { content: ""; position: absolute; z-index: -1; width: 220px; height: 220px; border-radius: 50%; background: var(--prune); opacity: .55; top: -120px; right: -90px; }
.ring { position: relative; width: 150px; height: 150px; margin: 0 auto 14px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 7; }
.ring__track { stroke: rgba(251, 247, 239, .14); }
.ring__value.is-empty { opacity: 0; }
.ring__value { stroke: var(--or); stroke-linecap: round; stroke-dasharray: 326.73; stroke-dashoffset: 326.73; transition: stroke-dashoffset .8s var(--ease), stroke .4s; }
.ring__label { position: absolute; inset: 0; display: grid; place-content: center; line-height: 1; }
.ring__label strong { font-family: var(--serif); font-weight: 600; font-size: 3rem; color: var(--blanc); }
.ring__label span { font-size: .78rem; color: rgba(251, 247, 239, .7); margin-top: 6px; }
.diag__progress { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--or); margin-bottom: 14px; }
.diag__title { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; line-height: 1.2; color: var(--blanc); margin-bottom: 10px; }
.diag__text { font-size: .92rem; line-height: 1.6; color: rgba(251, 247, 239, .8); margin-bottom: 24px; }
.diag__legal { margin-top: 16px; font-size: .72rem; line-height: 1.55; color: rgba(251, 247, 239, .55); }

/* ==========================================================================
   PROMESSE
   ========================================================================== */
.promise { position: relative; min-height: clamp(400px, 54vh, 560px); display: flex; align-items: flex-end; overflow: hidden; color: var(--creme); isolation: isolate; }
.promise > img { position: absolute; inset: 0; width: 100%; height: 115%; object-fit: cover; object-position: 50% 30%; z-index: -2; will-change: transform; }
.promise::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(23, 58, 48, .15) 0%, rgba(23, 58, 48, .55) 45%, rgba(23, 58, 48, .94) 100%); }
.promise__inner { padding: 80px 0 clamp(56px, 7vw, 88px); }
.promise__text { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.2; letter-spacing: -.015em; max-width: 24ch; color: var(--blanc); text-wrap: balance; }
.promise__text em { font-style: italic; color: var(--or); }
.link-arrow--light { margin-top: 28px; color: var(--creme); }

/* ==========================================================================
   LE PÔLE
   ========================================================================== */
.pole { background: var(--sable); }
.pole__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px, 7vw, 110px); align-items: start; }
.pole__media { position: sticky; top: 110px; }
.pole__img { aspect-ratio: 4 / 5; border-radius: 999px 999px 26px 26px; overflow: hidden; box-shadow: var(--shadow); }
.pole__img img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; }
.pole__quote { position: relative; margin: -70px 24px 0 -24px; padding: 26px 28px; background: var(--vert); color: var(--creme); border-radius: 22px; box-shadow: var(--shadow-lg); }
.pole__quote p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.45; }
.pole__quote em { color: var(--or); }

.domains { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.domains li { padding: 24px 24px 26px; background: var(--blanc); border-radius: 20px; border: 1px solid var(--trait); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.domains li:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.domains__ic { flex: none; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--menthe); color: var(--vert); }
.domains__ic .ic { width: 24px; height: 24px; stroke-width: 1.5; }
.domains li:nth-child(2) .domains__ic { background: #FBF0D8; color: var(--ocre-t); }
.domains li:nth-child(3) .domains__ic { background: #EFE6F1; color: var(--prune-t); }
.domains li:nth-child(4) .domains__ic { background: var(--rose-pale); color: var(--terra-t); }
.domains li:nth-child(5) .domains__ic { background: #E3F0EE; color: var(--teal-t); }
.domains li:nth-child(6) .domains__ic { background: #E6EDF5; color: var(--bleu); }
.domains summary { display: flex; align-items: center; gap: 16px; }
.domains h3 { flex: 1; font-family: var(--serif); font-weight: 600; font-size: 1.22rem; color: var(--vert); }
.domains p { padding-left: 66px; margin-top: 2px; font-size: .92rem; line-height: 1.62; color: var(--texte); }

/* ==========================================================================
   JOUR J
   ========================================================================== */
.jourj { background: var(--menthe); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px; background: repeating-linear-gradient(90deg, var(--vert) 0 6px, transparent 6px 12px); opacity: .3; }
.phase { position: relative; padding: 30px 30px 32px; background: var(--blanc); border-radius: 24px; border: 1px solid rgba(31, 74, 62, .1); }
.phase--day { background: var(--vert); color: var(--creme); border-color: transparent; box-shadow: var(--shadow-lg); }
.phase__time { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px; background: var(--sable); color: var(--vert); font-size: .8rem; font-weight: 500; margin-bottom: 22px; }
.phase--day .phase__time { background: var(--or); color: var(--vert-deep); }
.phase h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--vert); margin-bottom: 18px; }
.phase--day h3 { color: var(--blanc); }
.phase ol { counter-reset: s; display: grid; gap: 12px; }
.phase li { counter-increment: s; display: grid; grid-template-columns: 28px 1fr; gap: 12px; font-size: .94rem; line-height: 1.55; }
.phase li::before { content: counter(s); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .74rem; font-weight: 600; background: var(--terra); color: #fff; margin-top: -1px; }
.phase--day li::before { background: rgba(251, 247, 239, .16); color: var(--or); }
.phase--day li { color: rgba(251, 247, 239, .86); }

.reflexe { display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; margin-top: 48px; background: var(--blanc); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.reflexe__img { min-height: 340px; }
.reflexe__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.reflexe__text { padding: clamp(32px, 5vw, 60px); align-self: center; }
.reflexe__text .h3 { margin-bottom: 16px; }
.reflexe__text p:last-child { color: var(--texte); }

/* ==========================================================================
   OFFRES
   ========================================================================== */
.plans { display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 22px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 42px 32px 32px;
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: 28px;
  overflow: hidden;
}
.plan::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; background: var(--c); }
.plan__level { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t); margin-bottom: 10px; }
.plan__name { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; line-height: 1.15; color: var(--vert); margin-bottom: 20px; }
.plan__price { font-family: var(--serif); font-weight: 600; font-size: 2.5rem; line-height: 1; color: var(--vert); letter-spacing: -.02em; }
.plan__from { font-family: var(--sans); font-size: .9rem; font-weight: 400; color: var(--gris); letter-spacing: 0; }
.plan__unit { font-size: .85rem; color: var(--gris); margin-top: 8px; }
.plan__desc { font-size: .95rem; line-height: 1.65; color: var(--texte); margin: 20px 0 24px; padding-top: 20px; border-top: 1px solid var(--trait); }
.plan .btn { margin-top: auto; }
.plan__table { width: 100%; border-collapse: collapse; font-size: .84rem; margin-bottom: 28px; }
.plan__table th, .plan__table td { padding: 10px 6px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--trait); }
.plan__table thead th { font-weight: 600; color: var(--vert); font-size: .82rem; }
.plan__table small { display: block; font-size: .7rem; font-weight: 400; color: var(--gris); }
.plan__table tbody th { font-weight: 500; color: var(--encre); }
.plan__table td { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--teal-t); white-space: nowrap; }
.plan__table td small { font-family: var(--sans); }

.plan--feature { background: var(--vert); color: var(--creme); border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-18px); padding-top: 34px; }
.plan--feature::before { background: linear-gradient(90deg, var(--or), var(--terra)); }
.plan--feature .plan__level { color: var(--or); }
.plan--feature .plan__name, .plan--feature .plan__price { color: var(--blanc); }
.plan--feature .plan__unit { color: rgba(251, 247, 239, .72); }
.plan--feature .plan__desc { color: rgba(251, 247, 239, .82); border-top-color: rgba(251, 247, 239, .16); margin-bottom: 20px; }
.plan__badge { align-self: flex-start; margin-bottom: 16px; padding: 6px 13px; border-radius: 999px; background: var(--or); color: var(--vert-deep); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.prices { display: grid; gap: 10px; margin-bottom: 14px; }
.prices__row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(251, 247, 239, .16); }
.prices__row--main { background: rgba(251, 247, 239, .07); border-color: rgba(237, 182, 75, .6); }
.prices__label { font-size: .84rem; line-height: 1.35; color: rgba(251, 247, 239, .82); }
.prices__label b { display: block; margin-bottom: 3px; font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--or); }
.prices__row:not(.prices__row--main) .prices__label b { color: rgba(251, 247, 239, .55); }
.prices__val { font-family: var(--serif); font-weight: 600; font-size: 2rem; line-height: 1; color: var(--blanc); white-space: nowrap; font-variant-numeric: tabular-nums; }
.prices__row:not(.prices__row--main) .prices__val { font-size: 1.5rem; color: rgba(251, 247, 239, .88); }
.prices__val small { font-family: var(--sans); font-size: .78rem; font-weight: 400; color: rgba(251, 247, 239, .62); margin-left: 5px; }
.plan__fine { text-align: center; font-size: .78rem; color: rgba(251, 247, 239, .6); margin-top: 12px; }

.switch { display: inline-flex; padding: 4px; margin-bottom: 22px; border-radius: 999px; background: rgba(251, 247, 239, .1); border: 1px solid rgba(251, 247, 239, .14); align-self: flex-start; }
.switch button { padding: 8px 20px; border-radius: 999px; border: 0; background: transparent; color: rgba(251, 247, 239, .75); font-size: .86rem; font-weight: 500; cursor: pointer; transition: background-color .3s, color .3s; }
.switch button.is-on { background: var(--creme); color: var(--vert); }

.checks { display: grid; gap: 11px; margin-bottom: 28px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: .9rem; line-height: 1.5; color: rgba(251, 247, 239, .82); }
.checks .ic { color: var(--or); width: 20px; height: 20px; margin-top: 1px; stroke-width: 2; }
.checks b { font-weight: 600; color: var(--blanc); }

.peaks { display: grid; gap: 0; margin-bottom: 28px; }
.peaks li { padding: 12px 0; border-bottom: 1px solid var(--trait); font-size: .9rem; line-height: 1.5; color: var(--texte); }
.peaks li:first-child { padding-top: 0; }
.peaks span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--prune-t); margin-bottom: 3px; }

.plan__more { align-self: flex-start; margin: -12px 0 24px; font-size: .86rem; font-weight: 500; color: var(--teal-t); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.plan__more:hover { color: var(--vert); }
.checks a { color: inherit; text-decoration: underline; text-decoration-color: var(--or); text-underline-offset: 3px; }
.checks a:hover { color: var(--or); }

/* Détail des formules Session */
.formules { margin-top: 48px; padding: clamp(28px, 4vw, 48px); background: var(--blanc); border: 1px solid var(--trait); border-radius: 28px; scroll-margin-top: 90px; }
.formules__head { max-width: 720px; margin-bottom: 28px; }
.formules__eyebrow { margin-bottom: 8px; font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-t); }
.formules__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.2; color: var(--vert); }
.formules__title em { font-style: italic; font-weight: 500; color: var(--terra); }
.formules__sub { margin-top: 10px; font-size: .92rem; color: var(--gris); }
.formules__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.formule { padding: 24px 26px; border-radius: 20px; background: var(--creme); border: 1px solid var(--trait); }
.formule--plus { background: var(--menthe); border-color: rgba(43, 138, 128, .25); }
.formule > summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; column-gap: 14px; }
.formule__name { grid-column: 1; font-family: var(--serif); font-weight: 600; font-size: 1.35rem; line-height: 1.2; color: var(--vert); }
.formule__tag { grid-column: 1; margin-top: 2px; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-t); }
.formule__price { margin-top: 10px; font-size: .86rem; color: var(--gris); }
.formule__price b { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--teal-t); }
.formule__intro { margin-top: 14px; font-style: italic; font-size: .9rem; color: var(--vert); }
.formule__list { display: grid; gap: 9px; margin-top: 14px; }
.formule__list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: .9rem; line-height: 1.5; color: var(--encre); }
.formule__list .ic { width: 18px; height: 18px; margin-top: 2px; color: var(--teal); stroke-width: 2.2; }
.formule__list em { font-style: normal; font-size: .82rem; color: var(--gris); }
.part { width: 14px; height: 14px; margin: 4px 0 0 2px; border-radius: 50%; border: 1.5px solid var(--ocre); background: linear-gradient(90deg, var(--ocre) 50%, transparent 50%); }
.formules__note { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--trait); font-size: .9rem; line-height: 1.6; color: var(--texte); }
.formules__note b { color: var(--vert); }

.rules { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--trait-vert); }
.rules div { padding: 26px 26px 0 0; }
.rules div + div { padding-left: 26px; border-left: 1px solid var(--trait-vert); }
.rules dt { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--vert); margin-bottom: 6px; }
.rules dd { font-size: .88rem; line-height: 1.6; color: var(--gris); }

.journey { margin-top: clamp(80px, 10vw, 128px); }
.journey__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--vert); text-align: center; margin-bottom: 40px; }
.journey__title em { font-style: italic; font-weight: 500; color: var(--terra); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps li { position: relative; padding: 36px 26px 30px; background: var(--blanc); border-radius: 22px; border: 1px solid var(--trait); overflow: hidden; }
.steps li::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 7px; background: var(--terra); }
.steps__n { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--terra); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin-bottom: 20px; }
.steps h4 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--terra-t); margin-bottom: 8px; }
.steps p { font-size: .92rem; line-height: 1.62; color: var(--texte); }

/* ==========================================================================
   LE CADRE
   ========================================================================== */
.cadre { background: var(--vert); color: var(--creme); overflow: hidden; isolation: isolate; }
.orb--terra-c { width: 180px; aspect-ratio: 1; background: var(--terra); top: 70px; right: -60px; z-index: -1; }
.cadre__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px, 7vw, 110px); align-items: center; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 44px; border-top: 1px solid rgba(251, 247, 239, .16); }
.facts li { padding: 24px 22px 24px 0; border-bottom: 1px solid rgba(251, 247, 239, .16); display: grid; gap: 6px; }
.facts li:nth-child(even) { padding-left: 22px; border-left: 1px solid rgba(251, 247, 239, .16); }
.facts strong { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.05; color: var(--or); }
.facts span { font-size: .88rem; line-height: 1.5; color: rgba(251, 247, 239, .74); }
.cadre__fine { margin-top: 20px; font-size: .8rem; color: rgba(251, 247, 239, .55); }
.cadre__media { position: relative; }
.cadre__img { aspect-ratio: 5 / 4; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.cadre__img img { width: 100%; height: 100%; object-fit: cover; }
.cadre__card { position: relative; margin: -64px -18px 0 36px; padding: 26px 28px; border-radius: 22px; background: var(--creme); color: var(--encre); box-shadow: var(--shadow-lg); }
.cadre__card-label { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--vert); margin-bottom: 6px; }
.cadre__card p:last-child { font-size: .92rem; line-height: 1.6; color: var(--texte); }

/* ==========================================================================
   PÉRIMÈTRE
   ========================================================================== */
.scope { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.scope__col { border-radius: 28px; padding: clamp(30px, 4vw, 46px); }
.scope__col h3 { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; margin-bottom: 24px; }
.scope__col--in { background: var(--menthe); }
.scope__col--in h3 { color: var(--vert); }
.scope__col--in ul { display: grid; gap: 18px; }
.scope__col--in li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; font-size: .98rem; line-height: 1.55; color: var(--texte); }
.scope__col--in .ic { width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--vert); color: var(--creme); stroke-width: 2.2; }
.scope__col--in b { color: var(--vert); font-weight: 600; }
.scope__col--in { display: flex; flex-direction: column; }
.scope__note { margin-top: auto; padding-top: 28px; font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--vert); }
.scope__note::before { content: ""; display: block; width: 40px; height: 1px; background: var(--ocre); margin-bottom: 16px; }
.scope__col--out { background: var(--blanc); border: 1px solid var(--trait); }
.scope__col--out h3 { color: var(--terra-t); }
.scope__list .acc { border-top: 1px solid var(--trait); padding: 15px 0; }
.scope__list summary { font-weight: 600; font-size: .95rem; color: var(--encre); }
.scope__list p { margin-top: 4px; font-size: .92rem; line-height: 1.6; color: var(--gris); font-style: italic; }

/* ==========================================================================
   À PROPOS
   ========================================================================== */
.camille { background: var(--sable); }
.camille__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
.camille__media { position: relative; max-width: 440px; width: 100%; }
.arch--portrait { aspect-ratio: 4 / 5; position: relative; z-index: 1; box-shadow: var(--shadow-lg); }
.arch--portrait img { object-position: 50% 20%; }
.orb--rose-a { width: 70%; aspect-ratio: 1; background: var(--rose); left: -22%; bottom: -8%; z-index: 0; }
.orb--ocre-a { width: 34%; aspect-ratio: 1; background: var(--ocre); right: -10%; top: 6%; z-index: 0; }
.camille__sign { position: relative; z-index: 2; margin: -40px 0 0 auto; width: max-content; max-width: 90%; padding: 16px 24px; background: var(--vert); color: var(--creme); border-radius: 18px; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; box-shadow: var(--shadow); }
.camille__sign span { display: block; font-family: var(--sans); font-weight: 400; font-size: .78rem; color: var(--or); margin-top: 2px; }
.camille__text .lead { color: var(--encre); }
.camille__text p:not(.eyebrow):not(.lead) { margin-top: 16px; color: var(--texte); max-width: 64ch; }

.charter { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--trait-vert); counter-reset: c; }
.charter li { counter-increment: c; display: grid; grid-template-columns: 28px 1fr; gap: 6px; font-size: .93rem; line-height: 1.55; color: var(--encre); }
.charter li::before { content: counter(c) "."; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--ocre-t); line-height: 1.35; }

.bigquote { margin-top: clamp(80px, 10vw, 130px); text-align: center; max-width: 960px; margin-inline: auto; }
.bigquote p { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.2; letter-spacing: -.015em; color: var(--vert); text-wrap: balance; }
.bigquote em { font-style: italic; color: var(--terra); }
.bigquote figcaption { margin-top: 22px; font-size: .88rem; color: var(--gris); }
.bigquote figcaption::before { content: ""; display: block; width: 44px; height: 1px; background: var(--ocre); margin: 0 auto 18px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 7vw, 110px); align-items: start; }
.faq__aside { position: sticky; top: 110px; }
.faq__aside .btn { margin-top: 30px; }
.faq__img { margin-top: 44px; aspect-ratio: 3 / 2; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.faq__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.faq__list { border-top: 1px solid var(--trait-vert); }
.faq details { border-bottom: 1px solid var(--trait-vert); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px;
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.35; color: var(--vert);
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--trait-vert);
  background:
    linear-gradient(var(--vert), var(--vert)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--vert), var(--vert)) center / 1.5px 12px no-repeat;
  transition: transform .4s var(--ease), background-color .3s, border-color .3s;
}
.faq summary:hover { color: var(--terra-t); }
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--or); border-color: var(--or); }
.faq details > div { padding: 0 60px 28px 4px; }
.faq details p { color: var(--texte); line-height: 1.75; }
.faq details[open] > div { animation: fadeUp .5s var(--ease); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--vert); color: var(--creme); overflow: hidden; isolation: isolate; }
.orb--rose-k { width: 520px; aspect-ratio: 1; background: var(--rose); bottom: -300px; left: -220px; z-index: -1; opacity: .9; }
.orb--ocre-k { width: 240px; aspect-ratio: 1; background: var(--ocre); bottom: -60px; left: 200px; z-index: -1; }
.orb--terra-k { width: 120px; aspect-ratio: 1; background: var(--terra); top: 80px; right: 38%; z-index: -1; }
.contact__grid { display: grid; grid-template-columns: 1fr minmax(0, 520px); gap: clamp(44px, 7vw, 100px); align-items: start; }
.contact__text .btn { margin-top: 36px; }
.contact__slots { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: .9rem; color: rgba(251, 247, 239, .72); }
.contact__slots .ic { color: var(--or); }
.prep { margin-top: 44px; padding: 26px 28px; border-radius: 22px; background: rgba(23, 58, 48, .7); border: 1px solid rgba(251, 247, 239, .12); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); max-width: 520px; }
.prep__label { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or); }
.prep ul { margin-top: 14px; }
.prep li { position: relative; padding: 7px 0 7px 26px; font-size: .94rem; color: rgba(251, 247, 239, .86); border-bottom: 1px solid rgba(251, 247, 239, .08); }
.prep li:last-child { border-bottom: 0; }
.prep li::before { content: ""; position: absolute; left: 0; top: 50%; width: 12px; height: 1px; background: var(--or); }

.form { padding: clamp(28px, 4vw, 44px); background: var(--creme); color: var(--encre); border-radius: 30px; box-shadow: var(--shadow-lg); display: grid; gap: 16px; }
.form__title { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--vert); line-height: 1.1; }
.form__sub { font-size: .9rem; color: var(--gris); margin-top: -8px; margin-bottom: 6px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field span { font-size: .78rem; font-weight: 500; letter-spacing: .04em; color: var(--vert); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--trait); border-radius: 14px;
  background: var(--blanc); font-size: .95rem; color: var(--encre);
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--vert) 50%), linear-gradient(135deg, var(--vert) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--vert); box-shadow: 0 0 0 4px rgba(31, 74, 62, .1); }
.field.is-error input { border-color: var(--terra); box-shadow: 0 0 0 4px rgba(196, 101, 60, .12); }
.chips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.chips legend { padding: 0; margin-bottom: 7px; font-size: .78rem; font-weight: 500; letter-spacing: .04em; color: var(--vert); }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: inline-block; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--trait); background: var(--blanc); font-size: .84rem; color: var(--texte); transition: background-color .25s, color .25s, border-color .25s; }
.chips label:hover span { border-color: var(--vert); }
.chips input:checked + span { background: var(--vert); border-color: var(--vert); color: var(--creme); }
.chips input:focus-visible + span { outline: 2px solid var(--or); outline-offset: 2px; }
.form .btn { margin-top: 6px; }
.form__status { font-size: .88rem; color: var(--teal-t); min-height: 0; }
.form__status:empty { display: none; }
.form__status.is-error { color: var(--terra-t); }
.form__legal { font-size: .76rem; color: var(--gris); }
.form__legal a { color: var(--vert); }

/* ==========================================================================
   PIED DE PAGE
   ========================================================================== */
.footer { background: var(--vert-deep); color: rgba(251, 247, 239, .75); padding: clamp(64px, 8vw, 96px) 0 32px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(251, 247, 239, .12); }
.logo--light { color: var(--blanc); font-size: 2.2rem; }
.footer__tagline { margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--or); }
.footer__desc { margin-top: 8px; max-width: 32ch; font-size: .88rem; }
.footer__label { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blanc); margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; transition: color .3s; word-break: break-word; }
.footer__col a:hover { color: var(--or); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: .8rem; color: rgba(251, 247, 239, .5); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes rise { from { transform: translateY(108%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes settle { from { transform: scale(1.18); } to { transform: scale(1.06); } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(43, 138, 128, .55); } 70% { box-shadow: 0 0 0 10px rgba(43, 138, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 138, 128, 0); } }
@keyframes marquee { to { transform: translateX(-50%); } }

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .errors { grid-template-columns: repeat(3, 1fr); }
  .nav ul { gap: 22px; }
}

@media (max-width: 1060px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }

  .hero__grid { grid-template-columns: 1fr; gap: 72px; padding-bottom: 72px; }
  .hero__visual { justify-self: center; max-width: 440px; margin: 30px auto 40px; }
  .orb--rose { top: -8%; right: -26%; }
  .constat__intro, .qualiopi__top, .pole__grid, .cadre__grid, .camille__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .constat__media { justify-self: center; }
  .pains { grid-template-columns: repeat(2, 1fr); }
  .section__head--split { grid-template-columns: 1fr; gap: 0; }
  .section__head--split .lead { margin-top: 22px; }
  .diag { grid-template-columns: 1fr; }
  .diag__result { max-width: 560px; width: 100%; margin-inline: auto; }
  .js .diag:not(.is-done) .diag__result { display: none; }
  .pole__media { position: relative; top: 0; max-width: 480px; margin-inline: auto; width: 100%; }
  .timeline { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .timeline::before { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan--feature { transform: none; }
  .rules { grid-template-columns: 1fr 1fr; }
  .rules div:nth-child(3) { padding-left: 0; border-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cadre__media { max-width: 600px; }
  .camille__media { margin-inline: auto; }
  .faq__aside { position: relative; top: 0; }
  .faq__img { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .qualiopi__foot { grid-template-columns: 1fr; gap: 26px; }
  .shift { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .shift__arrow { justify-self: center; transform: rotate(90deg); }
  .kpis { grid-template-columns: 1fr 1fr; }
  .kpis li:nth-child(3) { padding-left: 0; border-left: 0; }
  .kpis li:nth-child(n+3) { border-top: 1px solid rgba(251, 247, 239, .16); }

  /* onglets */
  .js .tabs__list { display: flex; gap: 4px; width: fit-content; max-width: 100%; margin: 0 auto 22px; padding: 5px; border-radius: 999px; background: var(--sable); overflow-x: auto; scrollbar-width: none; }
  .js .tabs__list--light { background: rgba(251, 247, 239, .1); border: 1px solid rgba(251, 247, 239, .14); }
  .js .jourj .tabs__list { background: var(--blanc); }
  .js [data-tabs] .tab-panel:not(.is-active) { display: none; }
  .js [data-tabs] .shift__arrow { display: none; }
  .js .shift { margin-top: 0; }
  .js .qualiopi [data-tabs] { margin-top: clamp(48px, 7vw, 72px); }
}

@media (max-width: 720px) {
  :root { --sect: 68px; }
  body { font-size: 1rem; }
  .header__inner { height: 72px; }
  .logo { font-size: 1.55rem; }
  .section__head { margin-bottom: 34px; }
  .h2 { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .lead { margin-top: 16px; font-size: 1rem; }
  .eyebrow { margin-bottom: 14px; }

  /* Accordéons */
  .acc > summary { cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .acc > summary::after {
    content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--trait-vert);
    background:
      linear-gradient(var(--vert), var(--vert)) center / 10px 1.5px no-repeat,
      linear-gradient(var(--vert), var(--vert)) center / 1.5px 10px no-repeat;
    transition: transform .35s var(--ease), background-color .3s, border-color .3s;
  }
  .acc[open] > summary::after { transform: rotate(45deg); background-color: var(--or); border-color: var(--or); }
  .acc[open] > summary ~ * { animation: fadeUp .4s var(--ease); }

  /* Hero */
  .hero { padding-top: 100px; }
  .hero__grid { gap: 40px; padding-bottom: 44px; }
  .hero__text .pill { margin-bottom: 22px; padding: 8px 16px; font-size: .64rem; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero__lead { margin-top: 20px; font-size: 1rem; line-height: 1.65; }
  .hero__ctas { margin-top: 28px; gap: 10px; }
  .hero__ctas .btn { width: 100%; }
  .hero__ctas .btn--ghost { padding: 13px 24px; }
  .hero__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 32px; padding-top: 20px; }
  .hero__facts li { gap: 6px; padding-right: 10px; margin-right: 10px; max-width: none; }
  .hero__facts strong { font-size: 1.28rem; white-space: nowrap; }
  .hero__facts span { font-size: .7rem; line-height: 1.4; }
  .hero__visual { max-width: 290px; margin: 0 auto 40px; }
  .hero__chip { left: -6%; top: 5%; padding: 8px 14px 8px 11px; font-size: .72rem; }
  .recap { left: -12%; bottom: -10%; width: 252px; padding: 12px 12px 8px; border-radius: 16px; font-size: .68rem; }
  .recap li span { white-space: nowrap; }
  .recap__head { padding-bottom: 8px; margin-bottom: 4px; }
  .recap__title { font-size: .86rem; }
  .recap__month { display: none; }
  .recap li { gap: 8px; padding: 4px 0; }
  .recap li b { padding: 2px 7px; font-size: .6rem; }
  .recap__foot { margin-top: 4px; padding-top: 8px; font-size: .62rem; }
  .orb--rose { right: -22%; }
  .orb--ocre { left: -14%; }
  .orb--terra { right: -10%; }
  .marquee { padding: 16px 0; }

  /* Constat */
  .constat__intro { gap: 34px; margin-bottom: 36px; }
  .constat__media { max-width: 230px; }
  .constat__note { left: -10%; padding: 9px 14px 9px 9px; font-size: .76rem; }
  .pains { grid-template-columns: 1fr; gap: 10px; }
  .pain { padding: 16px 16px 16px 22px; border-radius: 18px; }
  .pain::before { inset: 0 auto 0 0; width: 6px; height: auto; }
  .pain:hover { transform: none; box-shadow: none; }
  .pain > summary::after { grid-column: 2; grid-row: 1 / span 2; }
  .pain__tag { margin-bottom: 8px; padding: 4px 10px; font-size: .62rem; }
  .pain h3 { font-size: 1.02rem; }
  .pain .acc__body { padding-top: 10px; }
  .pain .acc__body > p:not([class]) { font-size: .92rem; }
  .pain__cost { margin-top: 14px; padding-top: 12px; }

  /* Promesse */
  .promise { min-height: 340px; }
  .promise__inner { padding: 56px 0 42px; }

  /* Pôle */
  .pole__img { aspect-ratio: 16 / 11; border-radius: 24px; }
  .pole__quote { margin: -44px 12px 0; padding: 20px 22px; }
  .pole__quote p { font-size: 1.05rem; }
  .domains { grid-template-columns: 1fr; gap: 8px; margin-top: 30px; }
  .domains li { padding: 12px 14px; border-radius: 16px; }
  .domains li:hover { transform: none; box-shadow: none; border-color: var(--trait); }
  .domains__ic { width: 40px; height: 40px; }
  .domains__ic .ic { width: 20px; height: 20px; }
  .domains h3 { font-size: 1.08rem; }
  .domains p { padding: 8px 4px 4px 56px; margin: 0; }

  /* Offres */
  .plan { padding: 30px 22px 24px; border-radius: 24px; }
  .plan--feature { padding-top: 28px; }
  .prices__row { padding: 12px 14px; }
  .prices__val { font-size: 1.7rem; }
  .prices__row:not(.prices__row--main) .prices__val { font-size: 1.3rem; }
  .formules { margin-top: 28px; padding: 24px 18px; border-radius: 22px; }
  .formules__head { margin-bottom: 20px; }
  .formules__grid { grid-template-columns: 1fr; gap: 10px; }
  .formule { padding: 16px 16px 16px 18px; border-radius: 16px; }
  .formule > summary::after { grid-column: 2; grid-row: 1 / span 2; }
  .formule__name { font-size: 1.15rem; }
  .formules__note { font-size: .85rem; }
  .rules { grid-template-columns: 1fr 1fr; margin-top: 34px; }
  .rules div, .rules div + div { padding: 16px 12px 16px 0; border-left: 0; border-bottom: 1px solid var(--trait-vert); }
  .rules div:nth-child(even) { padding-left: 12px; border-left: 1px solid var(--trait-vert); }
  .rules dt { font-size: .98rem; }
  .rules dd { font-size: .8rem; }
  .journey { margin-top: 56px; }
  .journey__title { margin-bottom: 22px; }
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .steps li { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; padding: 16px 16px 16px 20px; border-radius: 16px; }
  .steps li::before { inset: 0 auto 0 0; width: 5px; height: auto; }
  .steps__n { grid-row: span 2; width: 44px; height: 44px; margin: 0; border-radius: 12px; font-size: 1.3rem; }
  .steps h4 { font-size: 1rem; margin-bottom: 2px; }
  .steps p { font-size: .88rem; }

  /* Jour J */
  .phase { padding: 24px 22px 26px; }
  .reflexe { grid-template-columns: 1fr; margin-top: 26px; }
  .reflexe__img { min-height: 0; height: 200px; }
  .reflexe__text { padding: 26px 22px 28px; }

  /* Qualiopi */
  .kpis { grid-template-columns: 1fr 1fr; margin-top: 44px; }
  .kpis li { padding: 20px 14px 20px 0; }
  .kpis li + li { padding-left: 14px; }
  .kpis li:nth-child(3) { padding-left: 0; }
  .kpis strong { font-size: 2.3rem; }
  .kpis span { font-size: .8rem; }
  .shift__col { padding: 24px 22px; }
  .auditor { margin-top: 22px; padding: 24px 22px; }
  .qualiopi__ctas .btn, .contact__text .btn { width: 100%; white-space: normal; }
  .orb--prune-q { width: 340px; top: -180px; right: -180px; }
  .orb--ocre-q { width: 160px; top: 60px; right: -40px; }
  .orb--terra-q { display: none; }

  /* Autodiagnostic */
  .quiz { min-height: 0; padding: 24px 20px 20px; border-radius: 22px; }
  .quiz__bar { margin-bottom: 24px; }
  .quiz__btns { gap: 10px; }
  .quiz__btn { flex: 1; min-width: 0; padding: 14px 16px; }
  .quiz__foot { padding-top: 22px; }
  .diag__result { padding: 26px 22px 22px; border-radius: 22px; }
  .ring { width: 120px; height: 120px; }
  .ring__label strong { font-size: 2.4rem; }

  /* Erreurs */
  .errors { grid-template-columns: 1fr; gap: 8px; }
  .errors li { padding: 12px 14px 12px 20px; border-radius: 16px; }
  .errors li::before { inset: 0 auto 0 0; width: 5px; height: auto; }
  .errors li:hover { transform: none; box-shadow: none; }
  .errors summary { display: flex; align-items: center; gap: 12px; }
  .errors .num { flex: none; margin: 0; }
  .errors h3 { flex: 1; margin: 0; font-size: .95rem; }
  .errors p { padding: 8px 4px 4px 48px; }
  .callout { margin-top: 28px; padding: 22px 20px 22px 28px; }

  /* Cadre */
  .facts { grid-template-columns: 1fr 1fr; margin-top: 30px; }
  .facts li { padding: 18px 12px 18px 0; }
  .facts li:nth-child(even) { padding-left: 12px; }
  .facts strong { font-size: 1.35rem; }
  .facts span { font-size: .78rem; }
  .cadre__img { aspect-ratio: 16 / 10; border-radius: 22px; }
  .cadre__card { margin: -40px 10px 0; padding: 20px 22px; }

  /* Périmètre */
  .scope { grid-template-columns: 1fr; gap: 14px; }
  .scope__col { padding: 26px 22px; border-radius: 22px; }
  .scope__col h3 { margin-bottom: 16px; font-size: 1.3rem; }
  .scope__col--in ul { gap: 12px; }
  .scope__note { padding-top: 20px; font-size: 1rem; }
  .scope__list .acc { padding: 12px 0; }
  .scope__list summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

  /* À propos, FAQ, contact */
  .camille__media { max-width: 290px; }
  .charter { grid-template-columns: 1fr; }
  .bigquote { margin-top: 60px; }
  .faq summary { padding: 20px 2px; }
  .faq details > div { padding-right: 4px; }
  .form__row { grid-template-columns: 1fr; }
  .orb--terra-k { display: none; }
  .prep { margin-top: 32px; padding: 18px 20px; }
  .prep > summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .prep > summary::after { border-color: rgba(251, 247, 239, .3); background:
      linear-gradient(var(--creme), var(--creme)) center / 10px 1.5px no-repeat,
      linear-gradient(var(--creme), var(--creme)) center / 1.5px 10px no-repeat; }
  .footer { padding-top: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding-bottom: 36px; }
  .footer__brand, .footer__col:last-child { grid-column: 1 / -1; }
}
