/* =====================================================================
   DIMENSION SOI — Direction artistique éditoriale
   Lieu d'accompagnement humain, chaleureux, lumineux. Pas un SaaS,
   pas un template wellness. Magazine de soin premium : grand air,
   filets fins plutôt que boîtes, lumière naturelle, silences visuels.
   Palette inchangée : crème / bleu roi / jaune / noir doux.
   Mobile-first. Accessibilité = design. prefers-reduced-motion pilier.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. TOKENS                                                          */
/* ------------------------------------------------------------------ */
:root {
  /* Palette — jaune principal, encre en accent (sans bleu roi) */
  --color-primary:        #1A1A1A;   /* encre : titres, accents, wordmark */
  --color-primary-deep:   #000000;
  --color-anthracite:     #2A2D33;   /* anthracite foncé : fond des cartes sombres */
  --color-secondary:      #FFCF63;   /* jaune : couleur d'action principale */
  --color-secondary-deep: #f2bd3f;
  --color-accent-blue:    #3b3d9b;   /* indigo : mise en avant (cartes flip, accents) */
  --color-bg:             #F6F6F6; /* gris neutre clair — fond de section */
  --color-bg-alt:         #F6F6F6;
  --color-bg-warm:        #EFEFEF;
  --color-bg-yellow:      #FFFFFF;
  --color-surface:        #FFFDF9;
  --color-text:           #1A1A1A;
  --color-text-muted:     #6A6258;
  --color-line:           rgba(26, 26, 26, .12);
  --color-line-soft:      rgba(26, 26, 26, .09);

  /* Voiles chauds (ex-bleus) — touches jaune / encre */
  --veil-blue:    rgba(26, 26, 26, .035);
  --veil-blue-8:  rgba(255, 207, 99, .16);
  --veil-yellow:  rgba(255, 207, 99, .10);

  /* Typographie */
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-display: clamp(2.7rem, 5.6vw, 4.6rem);  /* hero */
  --fs-h2:      clamp(2rem, 3.6vw, 3rem);
  --fs-h3:      1.4rem;
  --fs-body:    1.15rem;
  --lh-body:    1.7;
  --measure:    62ch;

  /* Rayons (tout arrondi, doux) */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Ombres : présence quasi nulle, teintées chaud */
  --shadow-soft: 0 24px 60px -40px rgba(40, 33, 20, .20);
  --shadow-card: 0 18px 48px -38px rgba(40, 33, 20, .22);

  /* Layout — grand air */
  --container:        1180px;
  --container-narrow: 880px;
  --container-wide:   1320px;
  --header-h: 74px;
  --gutter:   clamp(1.25rem, 5vw, 2rem);

  --ease: cubic-bezier(.2, .8, .25, 1);
  --t:    .5s var(--ease);

  /* Grain organique subtil */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ */
/* 2. RESET / BASE                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grain organique fixe, très discret (perf : pseudo fixe, pointer-events none) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  background-size: 160px 160px;
  opacity: .035;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--color-primary);
  text-wrap: balance;
}

p { text-wrap: pretty; }
sup { font-size: .66em; line-height: 0; position: relative; vertical-align: baseline; top: -.5em; }

:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 6px;
}
::selection { background: rgba(255, 207, 99, .38); color: var(--color-text); }

/* ------------------------------------------------------------------ */
/* 3. LAYOUT — container, sections, surfaces                          */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Surfaces : alternance douce, jamais de bloc plein */
.surface-cream  { background: var(--color-bg); }
.surface-alt    { background: #FFFFFF; }
.surface-white  { background: #FFFFFF; }
/* Illustrations à fond transparent : jamais d encadré derrière elles */
.figure, .split__media, .diff-panel__media, .dmob-media { background: transparent; }
.surface-warm   { background: var(--color-bg-yellow); }
.surface-blue   { background: var(--color-bg); }  /* ex-bleu → crème (plus de bleu) */
.surface-yellow { background: var(--veil-yellow); }
/* Fond figuratif (vagues jaunes de marque) en parallaxe fixe */
.surface-figure { background: linear-gradient(rgba(253,248,240,.14), rgba(253,248,240,.14)), url("../img/bg-figure.svg") center / cover fixed, var(--color-secondary); }
@supports (-webkit-touch-callout: none) { .surface-figure { background-attachment: scroll; } }
@media (prefers-reduced-motion: reduce) { .surface-figure { background-attachment: scroll; } }
/* Lisibilité sur le fond jaune : contraste renforcé des éléments */
.surface-figure .section__head p, .surface-figure .step p, .surface-figure .prose p, .surface-figure .lead { color: #3a3122; }
.surface-figure .eyebrow, .surface-figure .section__kicker { color: #1A1A1A; }
.surface-figure .hl { background-image: linear-gradient(transparent 60%, #FFFDF9 60%, #FFFDF9 92%, transparent 92%); }
.surface-figure .btn--primary { --_bg: #1A1A1A; --_fg: #fff; }
.surface-figure .btn--primary:hover { --_bg: #000; }
.surface-figure .btn--ghost { --_fg: #1A1A1A; border-color: rgba(26,26,26,.45); }

/* En-tête de section, éditorial */
.section__head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head.is-center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.section__head p { color: var(--color-text-muted); font-size: 1.2rem; max-width: 52ch; }
.section__head.is-center p { margin-inline: auto; }

/* Eyebrow éditorial (remplace les anciens « kicker pill ») */
.section__kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.4rem;
  background: none;
  padding: 0;
}
.section__kicker::before, .eyebrow::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--color-secondary-deep);
}
.is-center .section__kicker, .is-center .eyebrow { justify-content: center; }

.lead { font-size: 1.25rem; color: var(--color-text-muted); }

/* ------------------------------------------------------------------ */
/* 4. ICÔNES                                                          */
/* ------------------------------------------------------------------ */
.icon {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle;
}
.icon--fill { fill: currentColor; stroke: none; }
.icon--32 { width: 30px; height: 30px; }

/* ------------------------------------------------------------------ */
/* 5. BOUTONS                                                         */
/* ------------------------------------------------------------------ */
.btn {
  --_bg: var(--color-secondary); --_fg: #2a2308;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 54px; padding: .85em 1.7em;
  border: 0; border-radius: var(--r-pill);
  background: var(--_bg); color: var(--_fg);
  font-weight: 700; font-size: 1rem; line-height: 1.1; text-align: center;
  cursor: pointer;
  transition: transform var(--t), background-color var(--t), box-shadow var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--primary { box-shadow: var(--shadow-soft); }
.btn--primary:hover { --_bg: var(--color-secondary-deep); }
.btn--secondary { --_bg: #1A1A1A; --_fg: #fff; }
.btn--secondary:hover { --_bg: #000; }
.btn--ghost { --_bg: transparent; --_fg: var(--color-primary); border: 1.5px solid rgba(26, 26, 26, .28); }
.btn--ghost:hover { --_bg: var(--veil-blue-8); border-color: var(--color-primary); }
.btn--lg { min-height: 60px; padding: 1em 2.1em; font-size: 1.06rem; }
.btn--block { width: 100%; }
.cta-duo { display: flex; flex-wrap: wrap; gap: .85rem; }
.section-cta { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: .85rem; }
.section-cta--center { justify-content: center; }

/* Lien éditorial souligné */
.link-underline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--color-primary);
  padding-bottom: 2px;
  background: linear-gradient(var(--color-secondary), var(--color-secondary)) left bottom / 100% 2px no-repeat;
  transition: gap var(--t);
}
.link-underline:hover { gap: .85rem; }
.link-underline .icon { width: 20px; height: 20px; transition: transform var(--t); }
.link-underline:hover .icon { transform: translateX(3px); }

/* ------------------------------------------------------------------ */
/* 6. HEADER                                                          */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background-color var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.site-header.is-scrolled {
  background: rgba(253, 248, 240, .94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-line-soft);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.32rem;
  letter-spacing: -.02em; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: .6rem;
}
.brand__mark {
  width: 34px; height: 34px; border-radius: 12px 14px 11px 15px;
  background: var(--color-primary); color: var(--color-secondary);
  display: grid; place-items: center; font-size: .9rem; font-weight: 700;
}
.brand__logo { height: 34px; width: auto; display: block; }
.site-header .brand__logo { height: 58px; }
@media (max-width: 560px) { .brand__logo { height: 30px; } .site-header .brand__logo { height: 50px; } }

.nav { display: none; } /* menu horizontal remplacé par le burger à toutes les tailles */
@media (min-width: 1024px) {
  .nav__link { padding: .5rem .85rem; border-radius: var(--r-pill); font-weight: 600; color: var(--color-text); transition: color var(--t), background-color var(--t); }
  .nav__link:hover { color: var(--color-primary); background: var(--veil-blue-8); }
  .nav__link[aria-current="page"] { color: var(--color-primary); }
}

.has-menu { position: relative; }
.has-menu > .nav__link { display: inline-flex; align-items: center; gap: .3rem; }
.has-menu > .nav__link .icon { width: 16px; height: 16px; transition: transform var(--t); }
.has-menu[data-open="true"] > .nav__link .icon { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(580px, 86vw);
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  padding: .85rem; display: grid; grid-template-columns: 1fr 1fr; gap: .1rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.has-menu[data-open="true"] .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__item { display: flex; gap: .8rem; align-items: flex-start; padding: .8rem .9rem; border-radius: var(--r); transition: background-color var(--t); }
.mega__item:hover { background: var(--veil-yellow); }
.mega__item .icon { color: var(--color-primary); margin-top: 2px; }
.mega__item b { display: block; font-weight: 700; color: var(--color-text); }
.mega__item span { font-size: .9rem; color: var(--color-text-muted); }

/* Réservation toujours visible dans la navbar (mobile inclus), à côté du burger */
.header__right { display: flex; align-items: center; gap: .55rem; }
.header__actions { display: flex; align-items: center; gap: .5rem; }
.header__actions .btn { min-height: 42px; padding: .5em 1.05em; font-size: .9rem; }
.header__actions .btn--secondary { display: none; } /* navbar épurée : « Échanger » reste dans le menu burger */
@media (max-width: 1023px) { .header__actions { display: none; } } /* mobile/tablette : RDV via le menu burger */
@media (min-width: 1024px) {
  .header__actions { gap: .6rem; }
  .header__actions .btn { min-height: 44px; padding: .55em 1.15em; font-size: .92rem; }
}
/* Sous 560px : on garde le monogramme « DS », on masque le mot-logo pour gagner de la place */
@media (max-width: 560px) { .site-header .brand__name { display: none; } }

.burger {
  display: inline-flex; flex-direction: row; align-items: center; gap: 8px;
  height: 48px; padding: 0 14px;
  background: var(--veil-blue-8); border: 0; border-radius: var(--r-pill); cursor: pointer;
}
.burger__lines { display: flex; flex-direction: column; gap: 5px; }
.burger__lines span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--color-primary); transition: transform var(--t), opacity var(--t); }
.burger[aria-expanded="true"] .burger__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger__label { display: none; font-weight: 700; font-size: .95rem; color: var(--color-primary); }
@media (min-width: 1024px) { .burger__label { display: inline; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--color-bg);
  padding: calc(var(--header-h) + 2.2rem) var(--gutter) 2rem;
  overflow-y: auto; display: flex; flex-direction: column; gap: .1rem;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.mobile-menu[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
/* Menu mobile ouvert : header opaque pour masquer les items qui défilent dessous */
body.menu-open .site-header { background: var(--color-bg); border-bottom: 1px solid var(--color-line-soft); }
.mobile-menu a.m-link { padding: .9rem .25rem; font-size: 1.25rem; font-weight: 600; font-family: var(--font-display); color: var(--color-primary); border-bottom: 1px solid var(--color-line-soft); }
.m-sub { display: flex; flex-direction: column; }
.m-sub > summary { list-style: none; cursor: pointer; padding: .9rem .25rem; font-size: 1.25rem; font-weight: 600; font-family: var(--font-display); color: var(--color-primary); border-bottom: 1px solid var(--color-line-soft); display: flex; align-items: center; justify-content: space-between; }
.m-sub > summary::-webkit-details-marker { display: none; }
.m-sub > summary .icon { transition: transform var(--t); }
.m-sub[open] > summary .icon { transform: rotate(180deg); }
.m-sub__items { padding: .4rem 0 .8rem; display: flex; flex-direction: column; }
.m-sub__items a { padding: .6rem .9rem; color: var(--color-text-muted); border-radius: var(--r); font-weight: 600; }
.m-sub__items a:hover { background: var(--veil-yellow); color: var(--color-primary); }
.mobile-menu__cta { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
/* Menu plein écran soigné sur desktop : colonne centrée, plus d'air */
@media (min-width: 1024px) {
  .mobile-menu { padding-block: calc(var(--header-h) + 3rem) 3rem; gap: .2rem; }
  .mobile-menu > * { width: 100%; max-width: 520px; margin-inline: auto; }
}

/* ------------------------------------------------------------------ */
/* 7. BANDEAU STICKY CTA (discret)                                    */
/* ------------------------------------------------------------------ */
.sticky-cta { z-index: 90; background: rgba(255, 253, 249, .92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-top: 1px solid var(--color-line-soft); }
.sticky-cta__inner { display: flex; align-items: center; gap: .8rem; padding-block: .6rem; }
.sticky-cta__price { display: none; }
.sticky-cta__price b { color: var(--color-primary); font-weight: 800; }
.sticky-cta .cta-duo { flex: 1; }
.sticky-cta .btn { flex: 1; min-height: 48px; padding: .6em .8em; font-size: .92rem; }
@media (max-width: 1023px) {
  .sticky-cta { position: fixed; inset: auto 0 0 0; box-shadow: 0 -12px 30px -24px rgba(40, 33, 20, .4); }
  body { padding-bottom: 86px; }
}
@media (min-width: 1024px) {
  .sticky-cta { display: none; } /* masquée sur desktop : la réservation est déjà dans la navbar */
  .sticky-cta__price { display: block; font-weight: 600; color: var(--color-text-muted); white-space: nowrap; }
  .sticky-cta .cta-duo { flex: 0 0 auto; margin-left: auto; }
  .sticky-cta .btn { flex: 0 0 auto; min-height: 44px; }
}

/* ------------------------------------------------------------------ */
/* 8. PLAQUES PHOTO (lumière naturelle diffuse + grain)               */
/* ------------------------------------------------------------------ */
.figure { margin: 0; }
.figure figcaption { margin-top: 1rem; font-size: .95rem; color: var(--color-text-muted); font-style: italic; }
.photo {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 90% at 72% 12%, rgba(255, 207, 99, .34), transparent 58%),
    radial-gradient(90% 70% at 18% 95%, rgba(40, 33, 20, .06), transparent 60%),
    linear-gradient(155deg, #EFEFEF 0%, #F6F6F6 55%, #EAEAEA 100%);
  isolation: isolate;
}
.photo::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); background-size: 150px 150px; opacity: .06; mix-blend-mode: multiply; }
.photo__placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: .5rem;
  color: var(--color-primary); text-align: center; padding: 1.5rem;
}
.photo__placeholder .icon { width: 40px; height: 40px; opacity: .6; }
.photo__placeholder span { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; opacity: .55; }
.photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; z-index: 1; }
.photo__img--contain { object-fit: contain; padding: 6%; }
/* lumière diffuse animée très lente (désactivée si reduced-motion) */
.photo--glow::before {
  content: ""; position: absolute; width: 60%; aspect-ratio: 1; top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, .55), transparent 70%);
  filter: blur(10px); opacity: .7; pointer-events: none;
}
.photo--hero { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 11; }
.photo--tall { aspect-ratio: 3 / 4; }

/* ------------------------------------------------------------------ */
/* 9. HERO ÉDITORIAL                                                  */
/* ------------------------------------------------------------------ */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); }
.hero__grid { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.05fr 1fr; } }
.hero__title { font-size: var(--fs-display); margin-bottom: 1.6rem; max-width: 14ch; }
/* Surlignage jaune d'un mot-clé (titres) */
.hl { color: var(--color-text); background-image: linear-gradient(transparent 62%, var(--color-secondary) 62%, var(--color-secondary) 93%, transparent 93%); background-repeat: no-repeat; background-size: 100% 100%; padding-inline: .08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
/* Surlignage animé à l'entrée — le trait se "dessine" de gauche à droite quand le bloc devient visible */
html:not(.no-js) .reveal .hl { background-size: 0% 100%; transition: background-size .85s cubic-bezier(.22, 1, .36, 1) .12s; }
html:not(.no-js) .reveal.is-in .hl { background-size: 100% 100%; }
@media (prefers-reduced-motion: reduce) { html:not(.no-js) .reveal .hl, html:not(.no-js) .reveal.is-in .hl { background-size: 100% 100%; transition: none; } }
.hero__promise { font-size: 1.28rem; line-height: 1.65; color: var(--color-text-muted); max-width: 46ch; margin-bottom: 2rem; }
.hero .cta-duo { margin-bottom: 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.1rem; color: var(--color-text-muted); font-weight: 600; font-size: .98rem; }
.hero__meta li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta li:not(:last-child)::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--color-secondary-deep); margin-left: 1.1rem; }
.hero__meta .icon { width: 18px; height: 18px; color: var(--color-primary); }
.hero__media { position: relative; }
.hero__media .photo { box-shadow: var(--shadow-soft); }
/* léger débord éditorial du visuel sur grand écran */
@media (min-width: 1180px) { .hero__media { margin-right: calc((100vw - var(--container)) / -2 + var(--gutter)); } }

/* ------------------------------------------------------------------ */
/* 10. INDEX ÉDITORIAL DES PROBLÉMATIQUES (remplace les cartes)       */
/* ------------------------------------------------------------------ */
.axes { border-top: 1px solid var(--color-line); }
@media (min-width: 780px) { .axes { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(2.5rem, 5vw, 5rem); } }
.axis {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.7rem .4rem;
  border-bottom: 1px solid var(--color-line);
  transition: padding var(--t), background-color var(--t);
}
.axis:hover { background: linear-gradient(90deg, var(--veil-yellow), transparent); padding-left: 1rem; }
.axis__num { font-family: var(--font-display); font-size: .95rem; color: var(--color-primary); opacity: .5; width: 1.6em; flex: none; }
.axis__icon { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--color-line); display: grid; place-items: center; color: var(--color-primary); flex: none; transition: background-color var(--t), border-color var(--t); }
.axis:hover .axis__icon { background: var(--color-secondary); border-color: transparent; }
.axis__body { flex: 1; min-width: 0; }
.axis__body h3 { font-size: 1.35rem; margin-bottom: .15rem; }
.axis__body p { color: var(--color-text-muted); font-size: 1rem; }
.axis__arrow { color: var(--color-primary); opacity: .35; transition: transform var(--t), opacity var(--t); flex: none; }
.axis:hover .axis__arrow { opacity: 1; transform: translateX(5px); }
.axes-note { margin-top: 2.2rem; color: var(--color-text-muted); font-size: 1.1rem; font-style: italic; max-width: 60ch; }

/* ------------------------------------------------------------------ */
/* 11. SPLIT ÉDITORIAL (texte + visuel, asymétrique)                  */
/* ------------------------------------------------------------------ */
.split { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
@media (min-width: 1100px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--text-lead { grid-template-columns: 1.1fr .9fr; }
  .split--media-lead { grid-template-columns: .85fr 1.15fr; }
  .split--reverse .split__media { order: -1; }
}
.split h2 { font-size: var(--fs-h2); margin-bottom: 1.2rem; }
.split__body > p { color: var(--color-text-muted); margin-bottom: 1.1rem; max-width: var(--measure); font-size: 1.18rem; }
.split__links { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.6rem; }
/* Tablette/mobile (split en colonne unique) : illustrations bornées et centrées */
@media (max-width: 1099px) {
  .split__media img, .split__media svg { display: block; width: 100%; max-width: 340px; margin-inline: auto; }
}

/* Texte long, mesure confortable */
.prose { max-width: var(--measure); }
.prose p { color: var(--color-text-muted); margin-bottom: 1.1rem; font-size: 1.18rem; }

/* Liste à puces douce */
.checklist { display: grid; gap: 1rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1.1rem; }
.checklist .icon { width: 26px; height: 26px; flex: none; box-sizing: border-box; padding: 5px; border-radius: 50%; background: var(--color-secondary); color: #1A1A1A; stroke-width: 2.4; margin-top: 1px; }
.surface-yellow .checklist .icon { background: var(--color-primary); color: var(--color-secondary); }
.checklist--grid { gap: 1.05rem 2rem; }
@media (min-width: 680px) { .checklist--grid { grid-template-columns: 1fr 1fr; } }

/* ------------------------------------------------------------------ */
/* 12. PARCOURS — étapes reliées par un filet (sans cartes)           */
/* ------------------------------------------------------------------ */
.steps { display: grid; gap: 2.2rem; counter-reset: step; position: relative; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); } }
.step { position: relative; padding-top: 2.2rem; }
.step::before {
  content: "0" counter(step); counter-increment: step;
  font-family: var(--font-display); font-weight: 500; font-size: 2.6rem;
  color: var(--color-primary); line-height: 1; display: block; margin-bottom: 1rem;
}
.step::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1.5px; background: var(--color-line); }
.step__line { display: none; }
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { color: var(--color-text-muted); font-size: 1.05rem; }
.step__icon { position: absolute; top: 1.9rem; right: 0; color: var(--color-secondary-deep); }

/* ------------------------------------------------------------------ */
/* 13. COMPARATIF — table éditoriale, filets (sans boîte flottante)   */
/* ------------------------------------------------------------------ */
.compare-full { display: none; }
@media (min-width: 880px) {
  .compare-full { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: repeat(7, auto); max-width: 980px; margin-inline: auto; }
  .compare__col { display: grid; grid-template-rows: subgrid; grid-row: 1 / -1; }
  .compare__cell { padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--color-line); display: flex; align-items: center; gap: .55rem; min-height: 66px; font-size: 1.02rem; }
  .compare__head { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--color-primary); border-bottom: 1.5px solid var(--color-line); }
  .compare__crit { font-weight: 700; color: var(--color-text); }
  .compare__col--ds { background: var(--veil-yellow); border-radius: var(--r-lg); }
  .compare__col--ds .compare__head { color: var(--color-primary); }
  .compare__col--ds .compare__cell { border-bottom-color: rgba(26,26,26,.10); }
  .compare__col--ds .compare__cell:last-child { border-bottom: 0; }
  .compare__cell .icon { flex: none; }
  .compare__col--ds .compare__cell .icon { color: var(--color-primary); }
  .compare__col--neutral .compare__cell .icon { color: var(--color-text-muted); opacity: .6; }
}
.compare-mini { display: grid; gap: 1rem; max-width: 620px; margin-inline: auto; }
@media (min-width: 880px) { .compare-mini { display: none; } }
.compare-row { border-bottom: 1px solid var(--color-line); padding-bottom: 1rem; }
.compare-row b { display: block; color: var(--color-primary); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: .6rem; }
.compare-row dl { display: grid; gap: .4rem; margin: 0; }
.compare-row .ds { color: var(--color-text); font-weight: 700; display: flex; gap: .5rem; align-items: center; }
.compare-row .ds .icon { color: var(--color-primary); width: 18px; height: 18px; flex: none; }
.compare-row .other { color: var(--color-text-muted); display: flex; gap: .5rem; align-items: center; }
.compare-row .other .icon { width: 18px; height: 18px; flex: none; opacity: .6; }
.compare__cap { text-align: center; color: var(--color-text-muted); margin-top: 2.2rem; max-width: 62ch; margin-inline: auto; font-size: 1.1rem; }

/* Comparatif « chiffres » — face-à-face Dimension Soi vs ailleurs */
.cstats { display: grid; gap: 1.3rem; }
@media (min-width: 620px) { .cstats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .cstats { grid-template-columns: repeat(4, 1fr); } }
.cstat {
  position: relative; overflow: hidden; text-align: center;
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--r-lg); padding: 1.8rem 1.4rem 1.5rem; box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.cstat::after { content: ""; position: absolute; inset: auto -28% -55% auto; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 207, 99, .42), transparent 70%); transition: transform .5s var(--ease); pointer-events: none; }
.cstat:hover { transform: translateY(-7px); border-color: var(--color-secondary-deep); box-shadow: 0 30px 60px -34px rgba(40, 33, 20, .4); }
.cstat:hover::after { transform: scale(1.3); }
.cstat > * { position: relative; z-index: 1; }
.cstat__pic { width: 48px; height: 48px; border-radius: 50%; background: var(--color-secondary); color: var(--color-text); display: grid; place-items: center; margin: 0 auto 1rem; }
.cstat__pic .icon { width: 24px; height: 24px; }
.cstat__crit { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 700; margin-bottom: .5rem; }
.cstat__num { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; line-height: 1; color: var(--color-text); letter-spacing: -.02em; }
.cstat__num sup { font-size: .5em; }
.cstat__num--sm { font-size: 2rem; }
.cstat__u { font-size: 1.1rem; font-weight: 600; color: var(--color-text-muted); }
.cstat__ours { font-weight: 700; color: var(--color-text); margin-top: .35rem; }
.cstat__vs { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px dashed var(--color-line); display: flex; align-items: center; justify-content: center; gap: .45rem; font-size: .92rem; color: var(--color-text-muted); }
.cstat__vs .icon { width: 18px; height: 18px; color: #b0a89a; flex: none; }
.cstat__vs s { text-decoration-color: #c3baa9; }
/* Carrousel mobile */
@media (max-width: 619px) {
  .cstats { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding: .4rem var(--gutter) 1rem; }
  .cstats::-webkit-scrollbar { display: none; }
  .cstat { flex: 0 0 78%; scroll-snap-align: center; }
}

/* ── Comparatif (index) : tableau lignes zébrées (desktop) + bascule Dimension Soi / Ailleurs (mobile) ── */
.ctable__toggle { display: none; }
.ctable__grid { border: 1px solid var(--color-line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.ctable__head, .crow { display: grid; align-items: center; }
.cc { padding: .92rem 1.1rem; display: flex; align-items: center; gap: .55rem; min-width: 0; }
.cc--crit { font-weight: 600; }
.cc--crit .icon { width: 21px; height: 21px; flex: none; color: var(--color-text); }
.cc--other { color: var(--color-text-muted); }
.ctable__head { font-family: var(--font-display); font-weight: 700; }
.ctable__head .cc--ds { color: #7a5e12; }
.cc__badge { font-family: var(--font-display); font-weight: 700; }
.ctable-logo { display: block; height: 44px; width: auto; }
.ctoggle .ctable-logo { height: 17px; margin-inline: auto; }
.cpill { width: 24px; height: 24px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; }
.cpill .icon { width: 15px; height: 15px; stroke-width: 2.4; }
.cpill--ok { background: #2FA86A; color: #fff; }
.cpill--no { background: #E0524E; color: #fff; }
@media (min-width: 620px) {
  .ctable__head, .crow { grid-template-columns: 1.5fr 1.15fr 1.15fr; }
  .crow .cc--crit, .crow .cc--other { border-top: 1px solid var(--color-line); }
  .crow:nth-child(even) .cc--crit, .crow:nth-child(even) .cc--other { background: #faf7f1; }
  /* colonne Dimension Soi mise en avant : bloc noir arrondi */
  .ctable__head .cc--ds, .crow .cc--ds { background: var(--color-accent-blue); color: #fff; }
  .ctable__head .cc--ds { border-radius: 18px 18px 0 0; padding-top: 1.15rem; }
  /* en-tête : logo et « Neurofeedback classique » centrés dans leur colonne */
  .ctable__head .cc--ds, .ctable__head .cc--other { justify-content: center; text-align: center; }
  .crow:last-child .cc--ds { border-radius: 0 0 18px 18px; padding-bottom: 1.15rem; }
  .cc--ds b, .cc--ds sup { color: #fff; }
  .ctable__head, .crow { min-height: 66px; }
}
@media (max-width: 619px) {
  .ctable__toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; background: var(--color-bg); border: 1px solid var(--color-line); border-radius: 999px; padding: .3rem; margin: 0 auto 1.3rem; max-width: 340px; }
  .ctoggle { border: 0; background: transparent; font-family: var(--font-display); font-weight: 700; font-size: .95rem; padding: .6rem .4rem; border-radius: 999px; cursor: pointer; color: var(--color-text-muted); transition: background-color .3s var(--ease), color .3s var(--ease); }
  .ctoggle.is-active { background: var(--color-secondary); color: #2a2308; }
  .ctable__grid { border: 0; border-radius: 0; background: transparent; }
  .ctable__head { display: none; }
  .crow { grid-template-columns: 1fr; gap: .3rem; padding: .95rem 0; border-top: 1px solid var(--color-line); }
  .crow:first-of-type { border-top: 0; padding-top: 0; }
  .cc { padding: 0; }
  .cc--crit { font-size: 1.02rem; }
  .cc--ds, .cc--other { align-items: flex-start; padding-left: 1.75rem; }
  .cc--ds b, .cc--other span { line-height: 1.4; }
  .cc .cpill { margin-top: 1px; }
  .ctable.is-ds .cc--other { display: none; }
  .ctable.is-other .cc--ds { display: none; }
}

/* ------------------------------------------------------------------ */
/* 14. VERBATIM — moment de silence immersif                          */
/* ------------------------------------------------------------------ */
.silence { text-align: center; max-width: 24ch; margin-inline: auto; }
.silence__eyebrow { display: block; font-weight: 700; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 2.5rem; }
.silence__title { font-size: var(--fs-h2); line-height: 1.1; margin-bottom: 2.4rem; }
.silence blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 3.1rem); line-height: 1.22;
  color: var(--color-primary); letter-spacing: -.015em;
}
.silence blockquote .accent { color: var(--color-text); position: relative; }
.silence blockquote .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .28em; background: var(--color-secondary); opacity: .8; z-index: -1; }
.silence figcaption { margin-top: 2.2rem; font-size: 1rem; color: var(--color-text-muted); }
.silence__intro { max-width: 56ch; margin: 0 auto 3.5rem; color: var(--color-text-muted); font-size: 1.2rem; }

/* ------------------------------------------------------------------ */
/* 15. CAS — témoignages éditoriaux (filets, pas de cartes lourdes)   */
/* ------------------------------------------------------------------ */
.cases { display: grid; gap: 2.5rem 3rem; }
@media (min-width: 760px) { .cases { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case { display: flex; flex-direction: column; gap: .8rem; padding-top: 1.6rem; border-top: 1.5px solid var(--color-line); }
.case__who { display: flex; align-items: center; gap: .85rem; }
.case__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--color-bg-warm); border: 1px solid var(--color-line); color: var(--color-primary); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; flex: none; }
.case__name { font-weight: 800; color: var(--color-text); }
.case__meta { color: var(--color-text-muted); font-size: .9rem; }
.case__sit { color: var(--color-text-muted); font-size: 1.05rem; }
.case__res { margin-top: auto; font-weight: 600; color: var(--color-text); display: flex; gap: .55rem; align-items: flex-start; padding-top: .4rem; }
.case__res .icon { color: var(--color-primary); margin-top: 4px; flex: none; }
.todo-flag { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-text-muted); font-size: .9rem; font-weight: 600; font-style: italic; margin-bottom: 2rem; }

/* ── Témoignages « mini-parcours avant → après » en carrousel (mobile-first) ── */
.eqcarousel { margin-top: 1.6rem; }
.eqtrack { display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: .5rem var(--gutter) .8rem; margin-inline: calc(var(--gutter) * -1); }
.eqtrack::-webkit-scrollbar { display: none; }
.eqcard { flex: 0 0 84%; scroll-snap-align: center; background: #fff; border: 1px solid var(--color-line); border-radius: 24px; box-shadow: var(--shadow-card); padding: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; text-align: left; }
@media (min-width: 620px) { .eqcard { flex-basis: calc((100% - 1.2rem) / 2); } }
@media (min-width: 1000px) { .eqcard { flex-basis: calc((100% - 2.4rem) / 3); } }
.eqcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; }
.eqwho { display: flex; align-items: center; gap: .7rem; }
.eqwho__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex: none; object-fit: cover; background: var(--color-bg); }
.eqwho__name { display: block; font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
.eqwho__meta { display: block; font-size: .84rem; color: var(--color-text-muted); }
.eqmetric { text-align: right; line-height: 1; flex: none; }
.eqmetric .eqmetric__pre { display: block; font-family: var(--font-display); font-weight: 700; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: .25rem; }
.eqmetric b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; }
.eqmetric span { font-size: .8rem; color: var(--color-text-muted); }
.eqlbl { font-family: var(--font-display); font-weight: 700; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-text-muted); }
.eqtl { display: flex; flex-direction: column; }
.eqtl__step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: .85rem; }
.eqtl__rail { position: relative; display: flex; justify-content: center; }
.eqtl__dot { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; flex: none; margin-top: 2px; z-index: 1; }
.eqtl__dot--pb { background: #fff; border: 2px solid var(--color-line); }
.eqtl__dot--pb::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #c7bfb2; }
.eqtl__dot--ok { background: var(--color-secondary); color: #1a1a1a; }
.eqtl__dot--ok .icon { width: 13px; height: 13px; stroke-width: 2.6; }
.eqtl__step--pb { padding-bottom: 1.1rem; }
.eqtl__step--pb .eqtl__rail::after { content: ""; position: absolute; top: 18px; bottom: -14px; width: 2px; background: var(--color-line); }
.eqtl__body p { margin-top: .15rem; }
.eqtl__step--pb .eqtl__body p { color: var(--color-text-muted); }
.eqtl__step--ok .eqtl__body p { font-weight: 600; }
.eqnav { display: flex; justify-content: center; gap: .6rem; margin-top: 1.4rem; }
.eqnav__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--color-line); background: #fff; color: var(--color-text); font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.eqnav__btn:hover { background: var(--color-bg); border-color: var(--color-text); transform: translateY(-2px); }
/* Avis Google : cartes (partagé par l'accueil, anxiété et les pages problématiques) */
.reviews-embed { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; min-height: 80px; }
.reviews-embed .elfsight-app-lazy, .reviews-embed > div[class*="elfsight-app"] { width: 100%; }
.greviews { width: 100%; display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.greviews__summary { display: flex; align-items: center; gap: 1rem; }
.greviews__score { display: flex; flex-direction: column; gap: .2rem; text-align: left; }
.greviews__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stars { color: #FBBC04; letter-spacing: 2px; font-size: 1.05rem; line-height: 1; display: inline-block; }
.stars--lg { font-size: 1.45rem; letter-spacing: 3px; }
.greviews__count { color: var(--color-text-muted); font-size: .95rem; }
.glogo { display: inline-block; width: 20px; height: 20px; vertical-align: middle; }
.glogo--lg { width: 46px; height: 46px; }
.glogo--corner { width: 22px; height: 22px; flex: none; }
.greviews__marquee { width: 100%; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; cursor: grab; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.greviews__marquee::-webkit-scrollbar { display: none; }
.greviews__marquee.is-grabbing { cursor: grabbing; user-select: none; }
.greviews__track { list-style: none; padding: .4rem 0; margin: 0; display: flex; gap: 1.2rem; width: max-content; }
.greview { flex: 0 0 clamp(270px, 25vw, 320px); background: #fff; border: 1px solid var(--color-line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; text-align: left; }
.greview__head { display: flex; align-items: center; gap: .7rem; }
.greview__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--font-display); flex: none; }
.greview__id { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.greview__id b { font-weight: 600; }
.greview__id span { font-size: .82rem; color: var(--color-text-muted); }
.greview p { color: var(--color-text); font-size: .97rem; line-height: 1.55; margin: 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 7; overflow: hidden; }
.greview.is-expanded p { -webkit-line-clamp: unset; overflow: visible; }
.greview__more { align-self: flex-start; background: none; border: 0; padding: 0; margin-top: -.1rem; color: var(--color-secondary-deep); font-family: var(--font-display); font-weight: 600; font-size: .88rem; cursor: pointer; letter-spacing: .01em; }
.greview__more:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .greviews__marquee { -webkit-mask-image: none; mask-image: none; scroll-snap-type: x mandatory; }
  .greview { scroll-snap-align: center; }
}
/* Avis Google : flèches de navigation, desktop uniquement */
.greviews__nav { display: flex; }
.todo-flag .icon { color: var(--color-secondary-deep); width: 18px; height: 18px; }

/* ------------------------------------------------------------------ */
/* 16. ATOUTS CABINET (liste douce, sans cartes)                      */
/* ------------------------------------------------------------------ */
.amenities { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-top: 1.8rem; }
.amenity { flex: 1 1 240px; max-width: 340px; }
@media (min-width: 540px) { .amenities { gap: 1.6rem 2.2rem; } }

/* ── « Un cabinet chaleureux » : flip cards (carrousel mobile, flip exclusif) ── */
.cflips { display: flex; flex-wrap: nowrap; justify-content: center; gap: 1.1rem; margin-top: 1.8rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: .4rem .2rem .8rem; }
.cflips::-webkit-scrollbar { display: none; }
@media (max-width: 619px) {
  .cflips { justify-content: flex-start; align-items: stretch; margin-inline: calc(var(--gutter) * -1); padding: .4rem var(--gutter) .7rem; }
}
.cflip { flex: 0 0 300px; max-width: 320px; perspective: 1500px; cursor: pointer; border-radius: 22px; outline: none; scroll-snap-align: center; }
@media (max-width: 619px) { .cflip { flex: 0 0 82%; max-width: none; } .cflip__inner { height: 100%; } }
.cflip:focus-visible { box-shadow: 0 0 0 3px var(--color-secondary-deep); }
.cflip__inner { position: relative; display: grid; min-height: 232px; transition: transform .6s var(--ease); transform-style: preserve-3d; }
.cflip__face { grid-area: 1 / 1; -webkit-backface-visibility: hidden; backface-visibility: hidden; border: 1px solid var(--color-line); border-radius: 22px; padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; text-align: left; }
.cflip__front { background: #fff; box-shadow: var(--shadow-card); }
.cflip__ic { width: 52px; height: 52px; border-radius: 15px; background: var(--color-bg); display: grid; place-items: center; color: var(--color-text); flex: none; }
.cflip__ic .icon { width: 27px; height: 27px; }
.cflip__front h3 { font-size: 1.15rem; margin-top: .2rem; }
.cflip__fill { flex: 1; }
.cflip__hint { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 700; font-size: .78rem; color: var(--color-text-muted); margin-top: auto; }
.cflip__hint .icon { width: 15px; height: 15px; }
.cflip__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: .3rem; font-family: var(--font-display); font-weight: 700; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; background: var(--color-secondary); color: #2a2308; padding: .28rem .6rem; border-radius: 999px; }
.cflip__badge .icon { width: 13px; height: 13px; }
.cflip--key .cflip__front { border-top: 4px solid var(--color-secondary); }
.cflip__back { background: var(--color-accent-blue); color: #fff; transform: rotateY(180deg); }
.cflip__back h3 { font-size: 1.05rem; color: #fff; }
.cflip__list { list-style: none; padding: 0; display: grid; gap: .5rem; margin: .2rem 0 auto; }
.cflip__list li { display: flex; gap: .5rem; align-items: flex-start; font-size: .92rem; line-height: 1.4; }
.cflip__list .icon { width: 20px; height: 20px; padding: 4px; border-radius: 50%; background: var(--color-secondary); color: #1A1A1A; box-sizing: border-box; stroke-width: 2.4; margin-top: 1px; flex: none; }
.cflip__back .cflip__hint { color: rgba(255, 255, 255, .6); }
.cflip.is-flipped .cflip__inner { transform: rotateY(180deg); }
/* affordance « retournable » */
.cflip__front { position: relative; }
.cflip__front::after { content: "\21BB"; position: absolute; top: .85rem; right: .9rem; width: 33px; height: 33px; border-radius: 50%; background: var(--color-secondary); color: #2a2308; display: grid; place-items: center; font-size: 1.15rem; font-weight: 700; box-shadow: 0 8px 18px -8px rgba(40, 33, 20, .55); animation: cflipPulse 2.6s var(--ease) infinite; }
@keyframes cflipPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.13); } }
.cflip__front .cflip__hint { background: var(--color-bg); padding: .42rem .75rem; border-radius: 999px; align-self: flex-start; }
@media (hover: hover) {
  .cflip:not(.is-flipped):hover .cflip__inner { transform: rotateY(-11deg) translateY(-4px); }
  .cflip:not(.is-flipped):hover .cflip__front { box-shadow: 0 32px 62px -34px rgba(40, 33, 20, .55); }
  .cflip:not(.is-flipped):hover .cflip__front::after { animation: none; transform: scale(1.12) rotate(-25deg); }
}
@media (prefers-reduced-motion: reduce) { .cflip__inner { transition: none; } .cflip__front::after { animation: none; } }
.amenity { display: flex; gap: .9rem; align-items: center; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.amenity:hover { transform: translateY(-4px); border-color: var(--color-secondary-deep); box-shadow: 0 24px 50px -34px rgba(40, 33, 20, .4); }
.amenity__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-secondary); color: var(--color-text); display: grid; place-items: center; flex: none; }
.amenity p { margin: 0; color: var(--color-text); font-weight: 600; font-size: 1.05rem; }

/* ------------------------------------------------------------------ */
/* 17. INVITATION (CTA final, posé, sans boîte)                       */
/* ------------------------------------------------------------------ */
.invite { text-align: center; max-width: 40ch; margin-inline: auto; }
.invite h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.invite p { color: var(--color-text-muted); font-size: 1.25rem; margin-bottom: 2rem; max-width: 44ch; margin-inline: auto; }
.invite .cta-duo { justify-content: center; }
.invite__reassure, .cta-block__reassure { margin-top: 1.6rem; font-size: .98rem; color: var(--color-text-muted); display: inline-flex; gap: .5rem; align-items: center; }
.invite__reassure .icon, .cta-block__reassure .icon { width: 18px; height: 18px; color: var(--color-primary); }

/* (compat anxiété) ancien bloc CTA centré, allégé */
.cta-block { text-align: center; }
.cta-block__inner { max-width: 720px; margin-inline: auto; }
.cta-block h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.cta-block p { color: var(--color-text-muted); font-size: 1.2rem; margin-bottom: 1.8rem; }
.cta-block .cta-duo { justify-content: center; }

/* ------------------------------------------------------------------ */
/* 18. COMPOSANTS PAGE PROBLÈME (anxiété) — alignés à la nouvelle DA  */
/* ------------------------------------------------------------------ */
.note-callout { margin-top: 2rem; padding-left: 1.4rem; border-left: 2.5px solid var(--color-secondary); color: var(--color-text); font-size: 1.18rem; max-width: 60ch; font-style: italic; }
.note-callout--center { padding-left: 0; border-left: 0; text-align: center; max-width: 56ch; margin-inline: auto; }

.approfondir { margin-top: 1.8rem; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); max-width: var(--measure); }
.approfondir > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: .6rem; padding: 1.2rem 0; font-weight: 700; color: var(--color-primary); }
.approfondir > summary::-webkit-details-marker { display: none; }
.approfondir > summary .icon { margin-left: auto; transition: transform var(--t); flex: none; }
.approfondir[open] > summary .icon { transform: rotate(180deg); }
.approfondir__body { padding-bottom: 1.3rem; color: var(--color-text-muted); font-size: 1.1rem; }

.reassure-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding-block: 1.4rem; }
.reassure-bar span { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--color-text); }
.reassure-bar .icon { color: var(--color-primary); flex: none; }

.action-form { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: start; }
@media (min-width: 1100px) { .action-form { grid-template-columns: 1fr 1.05fr; } }
.action-form__intro h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.action-form__intro p { color: var(--color-text-muted); font-size: 1.18rem; margin-bottom: 1.6rem; }

/* Contact rapide */
.quickcontact { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .7rem; }
.quickcontact li { margin: 0; }
.quickcontact a, .quickcontact .qc { display: flex; align-items: center; gap: .85rem; color: var(--color-text); text-decoration: none; padding: .5rem; border-radius: 14px; transition: background-color .3s var(--ease); }
.quickcontact a:hover { background: var(--color-bg); }
.quickcontact .qc__ic { width: 44px; height: 44px; border-radius: 13px; background: var(--color-secondary); color: #2a2308; display: grid; place-items: center; flex: none; }
.quickcontact .qc__ic .icon { width: 21px; height: 21px; }
.quickcontact .qc__txt { display: flex; flex-direction: column; line-height: 1.25; font-weight: 600; }
.quickcontact .qc__txt b { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--color-text-muted); }
.contact-map { display: block; width: 100%; height: clamp(230px, 42vw, 320px); border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-card); margin-top: 1.7rem; }
.map-access { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.1rem; color: var(--color-text-muted); font-size: 1rem; line-height: 1.55; max-width: 62ch; }
.map-access .icon { flex: none; width: 22px; height: 22px; color: var(--color-primary); margin-top: 2px; }

/* Agenda OneDoc intégré (remplace la fenêtre pop-up) */
.onedoc-embed { max-width: 940px; margin: 0 auto; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.onedoc-embed iframe { display: block; width: 100%; min-height: 780px; border: 0; }
.onedoc-embed__ph { min-height: 320px; display: grid; place-items: center; text-align: center; padding: 2.4rem 1.5rem; color: var(--color-text-muted); }
.onedoc-embed__ph b { color: var(--color-primary); }

/* Grille de réassurance (4 piliers) */
.trust-grid { display: grid; gap: 1rem; margin-top: clamp(1.6rem, 4vw, 2.6rem); }
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-grid { align-items: start; }
.trust-card { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: 1.2rem 1.25rem; box-shadow: var(--shadow-card); }
.trust-card__ic { width: 44px; height: 44px; border-radius: 13px; background: var(--color-secondary); color: var(--color-primary); display: grid; place-items: center; margin-bottom: .7rem; }
.trust-card__ic .icon { width: 23px; height: 23px; }
.trust-card h3 { font-size: 1.08rem; margin-bottom: .55rem; line-height: 1.2; }
.trust-card p { color: var(--color-text-muted); font-size: .98rem; line-height: 1.5; margin: 0; }
/* Desktop : cartes repliées de même hauteur (titre sur 2 lignes réservées) */
@media (min-width: 600px) { .trust-card h3 { min-height: 2.4em; } }
/* accordéon : texte replié, déplié au clic (un seul ouvert à la fois) */
.trust-card__toggle { display: inline-flex; align-items: center; gap: .35rem; background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--color-primary); }
.trust-card__toggle:hover .trust-card__lbl { text-decoration: underline; text-underline-offset: 3px; }
.trust-card__car { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.trust-card.is-open .trust-card__car { transform: rotate(180deg); }
.trust-card__body { margin-top: .7rem; }
.no-js .trust-card__toggle { display: none; }

/* ------------------------------------------------------------------ */
/* PARCOURS — frise horizontale 2 étapes (sur fond jaune parallaxe)   */
/* ------------------------------------------------------------------ */
.parc-flow { display: grid; gap: 1.1rem; grid-template-columns: 1fr; align-items: stretch; max-width: 940px; margin: 0 auto; }
@media (min-width: 860px) { .parc-flow { grid-template-columns: 1fr auto 1fr; } }
.parc-card { position: relative; background: #fff; border-radius: 24px; padding: 1.8rem 1.7rem; box-shadow: 0 18px 44px -30px rgba(70, 52, 0, .6); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.parc-card:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -30px rgba(70, 52, 0, .65); }
.parc-card--feat { background: var(--color-anthracite); color: #fff; }
.parc-tag { align-self: flex-start; font-family: var(--font-display); font-weight: 700; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; background: var(--color-secondary); color: #2a2308; border-radius: var(--r-pill); padding: .32rem .75rem; margin-bottom: .9rem; }
.parc-num { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; background: var(--color-primary); color: var(--color-secondary); margin-bottom: 1rem; }
.parc-card--feat .parc-num { background: var(--color-secondary); color: #2a2308; }
.parc-card h3 { font-size: 1.24rem; margin-bottom: .5rem; }
.parc-card--feat h3 { color: #fff; }
.parc-card p { color: var(--color-text-muted); font-size: .98rem; margin-bottom: .9rem; }
.parc-card--feat p { color: rgba(255, 255, 255, .78); }
.parc-card p:last-child { margin-bottom: 0; }
.parc-note { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; margin-top: auto; }
.parc-note .icon { width: 18px; height: 18px; flex: none; margin-top: .12rem; color: var(--color-secondary-deep); }
.parc-card--feat .parc-note { color: rgba(255, 255, 255, .9); }
.parc-card--feat .parc-note .icon { color: var(--color-secondary); }
.parc-arrow { display: grid; place-items: center; color: var(--color-primary); }
.parc-arrow .icon { width: 36px; height: 36px; }
@media (max-width: 859px) { .parc-arrow { height: 34px; } .parc-arrow .icon { transform: rotate(90deg); } }
.parc-foot { margin-top: clamp(1.6rem, 4vw, 2.4rem); display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.parc-pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.parc-pills li { display: inline-flex; align-items: center; gap: .45rem; background: #fff; border-radius: var(--r-pill); padding: .5rem 1rem; font-size: .9rem; font-weight: 600; box-shadow: 0 10px 26px -22px rgba(70, 52, 0, .5); }
.parc-pills .icon { width: 16px; height: 16px; color: var(--color-secondary-deep); stroke-width: 2.4; flex: none; }

/* Animation d'entrée : carte 01 → carte 02 → pop des pastilles */
.parc[data-anim] .parc-card { opacity: 0; transform: translateY(26px); }
.parc[data-anim] .parc-arrow { opacity: 0; transform: translateY(10px); }
.parc[data-anim] .parc-pills li { opacity: 0; transform: scale(.5); }
.parc[data-anim].in .parc-card { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.parc[data-anim].in .parc-flow > .parc-card--feat { transition-delay: .05s; }
.parc[data-anim].in .parc-arrow { opacity: 1; transform: none; transition: opacity .45s var(--ease) .3s, transform .45s var(--ease) .3s; }
.parc[data-anim].in .parc-flow > .parc-card:last-child { transition-delay: .48s; }
.parc[data-anim].in .parc-pills li { opacity: 1; transform: none; transition: opacity .35s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1); }
.parc[data-anim].in .parc-pills li:nth-child(1) { transition-delay: .82s; }
.parc[data-anim].in .parc-pills li:nth-child(2) { transition-delay: .94s; }
.parc[data-anim].in .parc-pills li:nth-child(3) { transition-delay: 1.06s; }
@media (prefers-reduced-motion: reduce) {
  .parc[data-anim] .parc-card, .parc[data-anim] .parc-arrow, .parc[data-anim] .parc-pills li { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.no-js .parc[data-anim] .parc-card, .no-js .parc[data-anim] .parc-arrow, .no-js .parc[data-anim] .parc-pills li { opacity: 1; transform: none; }

/* Bandeau « Une autre façon de vous accompagner » — fond jaune */
.trust-banner { border-radius: clamp(20px, 4vw, 34px); padding: clamp(2rem, 5vw, 3.6rem) clamp(1.2rem, 4vw, 2.6rem); background: var(--color-secondary); color: var(--color-text); box-shadow: var(--shadow-card); }
.trust-banner .section__head { margin-bottom: clamp(1.6rem, 4vw, 2.4rem); }
.trust-banner .section__head h2 { color: var(--color-primary); }
.trust-banner .section__head p { color: #5b4a12; }
.trust-banner .eyebrow { color: #7a5e12; }
.trust-banner .hl { background-image: linear-gradient(transparent 62%, #fff 62%, #fff 93%, transparent 93%); }
.trust-banner .trust-grid { margin-top: 0; }
.trust-banner .trust-card { background: #fff; border-color: rgba(26, 26, 26, .06); box-shadow: 0 16px 40px -30px rgba(70, 52, 0, .55); }
.trust-banner .trust-card h3 { color: var(--color-primary); }
.trust-banner .trust-card__ic { background: var(--color-primary); color: var(--color-secondary); }
.trust-banner .section-cta { margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.trust-banner .btn--primary { background: var(--color-primary); color: #fff; }
.trust-banner .btn--primary:hover { background: #000; }

/* « Comment on intervient pour vous transformer » */
.interv { display: grid; gap: 1.1rem; margin-top: clamp(1.6rem, 4vw, 2.4rem); }
@media (min-width: 760px) { .interv { grid-template-columns: repeat(3, 1fr); } }
.interv__step { position: relative; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 1.6rem 1.4rem; }
.interv__n { font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-secondary-deep); }
.interv__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--color-secondary); color: var(--color-primary); display: grid; place-items: center; margin: .55rem 0 .85rem; }
.interv__ic .icon { width: 26px; height: 26px; }
.interv__step h3 { font-size: 1.14rem; margin-bottom: .35rem; }
.interv__step p { color: var(--color-text-muted); font-size: 1rem; margin: 0; line-height: 1.5; }

.form { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-card); }
.form__intro { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.2rem; }
.field > label { font-weight: 700; }
.field .req { color: var(--color-primary); }
.field input, .field select, .field textarea { width: 100%; background: var(--color-bg); border: 1.5px solid var(--color-line); border-radius: var(--r-sm); padding: .85rem 1rem; font-size: 1.05rem; transition: border-color var(--t), box-shadow var(--t); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--veil-blue-8); }
.field textarea { resize: vertical; min-height: 120px; }
.field--key input { border-color: var(--color-secondary); background: #fffdf4; }
.field__hint { font-size: .9rem; color: var(--color-text-muted); }
.field__error { display: none; align-items: center; gap: .4rem; color: #a8262c; font-size: .92rem; font-weight: 700; }
.field__error .icon { width: 18px; height: 18px; color: #a8262c; }
.field.is-invalid input, .field.is-invalid select { border-color: #a8262c; }
.field.is-invalid .field__error { display: flex; }
.segmented { display: flex; gap: .6rem; flex-wrap: wrap; }
.segmented label { flex: 1; min-width: 150px; display: flex; align-items: center; justify-content: center; gap: .5rem; border: 1.5px solid var(--color-line); border-radius: var(--r-pill); padding: .7rem 1rem; cursor: pointer; font-weight: 600; transition: border-color var(--t), background-color var(--t), color var(--t); }
.segmented input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.segmented label:has(input:checked) { border-color: var(--color-primary); background: var(--veil-blue-8); color: var(--color-primary); }
.segmented label:focus-within { box-shadow: 0 0 0 3px var(--veil-blue-8); }
.form__success { display: none; background: var(--veil-yellow); border-radius: var(--r); padding: 1.7rem; text-align: center; }
.form__success .icon { width: 42px; height: 42px; color: var(--color-primary); margin: 0 auto .6rem; }
.form.is-sent .form__success { display: block; }
.form.is-sent .form__fields { display: none; }
.form__error { margin-top: 1rem; background: #fdecec; border: 1px solid #e9a3a6; color: #a8262c; border-radius: var(--r); padding: .85rem 1.1rem; font-size: .95rem; font-weight: 600; }

.accordion { display: grid; gap: 0; max-width: 780px; margin-inline: auto; border-top: 1px solid var(--color-line); }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-item > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.4rem .2rem; font-weight: 700; font-size: 1.15rem; color: var(--color-text); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .icon { margin-left: auto; color: var(--color-primary); transition: transform var(--t); flex: none; }
.faq-item[open] > summary .icon { transform: rotate(180deg); }
.faq-item__body { padding: 0 .2rem 1.4rem; color: var(--color-text-muted); font-size: 1.08rem; max-width: 68ch; }

/* ------------------------------------------------------------------ */
/* 19. FOOTER                                                         */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--color-bg-warm); border-top: 1px solid var(--color-line-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; } }
.footer h4 { color: var(--color-primary); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 800; }
.footer__brand .brand { font-size: 1.5rem; margin-bottom: .9rem; }
.footer__brand .brand__logo { height: 68px; }
@media (max-width: 560px) { .footer__brand .brand__logo { height: 60px; } }
.footer__brand p { color: var(--color-text-muted); font-size: 1rem; max-width: 34ch; }
.footer__col a, .footer__col p { color: var(--color-text-muted); display: flex; gap: .55rem; align-items: flex-start; padding-block: .4rem; }
.footer__col a:hover { color: var(--color-primary); }
.footer__col .icon { width: 20px; height: 20px; color: var(--color-primary); margin-top: 2px; flex: none; }
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--color-surface); border: 1px solid var(--color-line); display: grid; place-items: center; color: var(--color-primary); transition: transform var(--t), background-color var(--t); }
.socials a:hover { transform: translateY(-2px); background: var(--color-secondary); }
.footer__bottom { margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid var(--color-line-soft); display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; color: var(--color-text-muted); font-size: .9rem; }
.footer__reassure { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.footer__reassure span { display: inline-flex; gap: .45rem; align-items: center; }
.footer__reassure .icon { width: 16px; height: 16px; color: var(--color-primary); }
.footer a.link-underline, .footer__bottom a { color: var(--color-primary); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* 20. BULLE WHATSAPP + EMAIL                                         */
/* ------------------------------------------------------------------ */
.floating { position: fixed; right: 18px; z-index: 95; display: flex; flex-direction: column; gap: .65rem; bottom: 98px; }
@media (min-width: 1024px) { .floating { bottom: 26px; } }
.floating a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-soft); transition: transform var(--t); }
.floating a:hover { transform: translateY(-3px) scale(1.04); }
.floating__wa { background: #25D366; color: #fff; }
.floating__mail { background: var(--color-primary); color: #fff; }
.floating a .icon { width: 27px; height: 27px; }

/* ------------------------------------------------------------------ */
/* 20bis. AVANTAGES — split éditorial sticky                          */
/* ------------------------------------------------------------------ */
.adv-grid { display: grid; gap: clamp(2rem, 5vw, 2.6rem); }
.advantages .eyebrow { margin-bottom: .9rem; }
.adv-aside h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.adv-aside > p { color: var(--color-text-muted); font-size: 1.15rem; max-width: 46ch; margin-bottom: 1.6rem; }
.adv-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.adv-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.35rem 0; border-bottom: 1px solid var(--color-line); }
.adv-item:first-child { border-top: 1px solid var(--color-line); }
.adv-k { font-family: "Outfit", system-ui, sans-serif; font-weight: 700; font-size: 1.5rem; line-height: 1; color: var(--color-secondary-deep); flex: none; width: 2.4rem; letter-spacing: -.02em; }
.adv-body h3 { display: flex; align-items: center; gap: .6rem; font-family: "Outfit", system-ui, sans-serif; font-weight: 600; font-size: 1.18rem; margin: 0 0 .3rem; line-height: 1.2; }
.adv-body h3 .icon { width: 22px; height: 22px; flex: none; color: var(--color-primary); }
.adv-body p { color: var(--color-text-muted); font-size: 1rem; margin: 0; }

/* Liste « Ce qui différencie » — regroupée par thème, lignes bordées (esthétique V4) */
.adv-groups { display: flex; flex-direction: column; gap: 1.7rem; }
.adv-group__h { font-family: "Outfit", system-ui, sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--color-secondary-deep); margin: 0 0 .55rem; }
/* une couleur par thème : jaune (1) / bleu (2) / noir (3) — titres + coches */
.adv-group:nth-child(2) .adv-group__h { color: #3b3d9b; }
.adv-group:nth-child(2) .adv-checklist .icon { background: #3b3d9b; color: #fff; }
.adv-group:nth-child(3) .adv-group__h { color: var(--color-primary); }
.adv-group:nth-child(3) .adv-checklist .icon { background: var(--color-primary); color: var(--color-secondary); }
.adv-checklist { gap: 0; }
.adv-checklist li { padding: .82rem 0; border-bottom: 1px solid var(--color-line); font-size: 1.04rem; line-height: 1.4; align-items: center; }
.adv-checklist li:first-child { border-top: 1px solid var(--color-line); }

/* Tablette : aside centré (titre, texte, CTA) */
@media (max-width: 1099px) {
  .adv-aside { text-align: center; }
  .adv-aside > p { margin-inline: auto; }
  .adv-aside .section-cta { justify-content: center; }
}
@media (min-width: 1100px) {
  .section.advantages { min-height: 0; display: block; }
  .adv-grid { grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 6vw, 5.5rem); align-items: start; }
  .adv-aside { position: sticky; top: calc(var(--header-h) + clamp(1.5rem, 4vh, 3rem)); text-align: left; }
  .adv-aside > p { margin-inline: 0; }
  .adv-aside .section-cta { margin-top: clamp(1.5rem, 3vh, 2.25rem); justify-content: flex-start; }
}

/* ------------------------------------------------------------------ */
/* 21. RÉVÉLATION AU SCROLL (douce, subtle)                           */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.no-js .reveal { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ */
/* 22. PREFERS-REDUCED-MOTION (pilier)                                */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Skip link */
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--color-primary); color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-pill); z-index: 200; transition: top var(--t); }
.skip-link:focus { top: 12px; }

/* ============ Demandes UI (lot) ============ */

/* « Pour quelle difficulté » — description au survol (desktop) / au clic (mobile) */
.axis__body p { max-height: 0; opacity: 0; overflow: hidden; margin: 0; transition: max-height .4s var(--ease), opacity .35s var(--ease), margin-top .35s var(--ease); }
@media (hover: hover) { .axis:hover .axis__body p, .axis:focus-visible .axis__body p { max-height: 3em; opacity: 1; margin-top: .15rem; } }
.axis.is-open .axis__body p { max-height: 3em; opacity: 1; margin-top: .15rem; }

/* Témoignages — cartes en carrousel (tout le site) */
.cases { display: flex; gap: 1.2rem; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: .5rem var(--gutter) 1.3rem; margin-inline: calc(var(--gutter) * -1); }
.cases::-webkit-scrollbar { display: none; }
.case { flex: 0 0 min(340px, 82%); scroll-snap-align: center; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.case:hover { transform: translateY(-6px); border-color: var(--color-secondary-deep); box-shadow: 0 28px 56px -34px rgba(40, 33, 20, .42); }

/* « Au quotidien » — carrousel sur mobile */
@media (max-width: 679px) {
  .checklist--hover { display: flex; gap: .9rem; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: .4rem var(--gutter) 1rem; margin-inline: calc(var(--gutter) * -1); }
  .checklist--hover::-webkit-scrollbar { display: none; }
  .checklist--hover li { flex: 0 0 80%; scroll-snap-align: center; margin: 0; }
}

/* « 3 étapes » sur fond jaune — pictogrammes blancs */
.surface-figure .step__icon { color: #fff; }

/* « Ce que vous retrouvez » — bullets en cartes + pictos */
.retr-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: .5rem; }
.retr-cards .retr-card { flex: 0 1 300px; }
.retr-card { display: flex; gap: .9rem; align-items: center; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: 1.25rem 1.4rem; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.retr-card:hover { transform: translateY(-5px); border-color: var(--color-secondary-deep); box-shadow: 0 26px 54px -34px rgba(40, 33, 20, .4); }
.retr-card__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--color-secondary); color: var(--color-text); display: grid; place-items: center; flex: none; }
.retr-card__ic .icon { width: 24px; height: 24px; }
.retr-card p { margin: 0; font-weight: 600; font-size: 1.05rem; }

/* « À qui s'adresse » — illustration + texte */
.aqui-split { display: grid; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 880px) { .aqui-split { grid-template-columns: 1.15fr .85fr; } }
.aqui-split__media img { display: block; width: 100%; max-width: 320px; margin-inline: auto; }

/* Réassurance — alignée à gauche sur mobile */
@media (max-width: 679px) {
  .reassure-bar { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: .8rem; }
  .reassure-bar span { text-align: left; }
}

/* « Au quotidien » — illustration qui pointe + bullets */
.quoti-split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 880px) { .quoti-split { grid-template-columns: .8fr 1.2fr; } }
.quoti-split__media img { display: block; width: 100%; max-width: 300px; margin-inline: auto; }

/* Desktop : CTA centrés sur le bloc texte (et non sur la pleine section) */
@media (min-width: 1024px) {
  .section-cta--center { max-width: 56ch; margin-inline: 0; justify-content: center; }
  .section__head.is-center ~ .section-cta--center, .silence ~ .section-cta--center { max-width: none; margin-inline: auto; }
}
/* Mobile/tablette : tous les CTA centrés à l'écran */
@media (max-width: 1023px) {
  .section-cta, .cta-duo, .split__links, .hero-bloom__cta, .section-cta--center,
  .diff-panel__cta, .dmob-cta, .action-form__intro .cta-duo, .invite .cta-duo { justify-content: center; max-width: none; margin-inline: auto; }
}

/* « Au quotidien » — scène : le bonhomme représente le bullet survolé */
.quoti-stage { position: relative; width: 100%; max-width: 300px; aspect-ratio: 1; margin-inline: auto; }
.quoti-fig { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transform: scale(.94) translateY(6px); transition: opacity .35s var(--ease), transform .45s var(--ease); }
.quoti-fig.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .quoti-fig { transition: none; } }

/* ── « Pour quelle difficulté » — sélecteur interactif (onglets) ── */
.diffs { display: grid; gap: 1.1rem; margin-top: .5rem; }
@media (min-width: 880px) { .diffs { grid-template-columns: minmax(240px, .82fr) 1.18fr; gap: clamp(1.4rem, 3vw, 2.8rem); align-items: stretch; } }
@media (min-width: 880px) { #problematiques .section__head { max-width: none; } #pb-title { white-space: nowrap; } }
.diffs__list { display: flex; flex-direction: column; gap: .5rem; }
@media (max-width: 879px) { .diffs__list { flex-direction: row; overflow-x: auto; gap: .4rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; } .diffs__list::-webkit-scrollbar { display: none; } }
.diff-tab { position: relative; display: flex; align-items: center; gap: .85rem; width: 100%; text-align: left; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r); padding: .85rem 1.05rem; cursor: pointer; font-family: inherit; color: var(--color-text); overflow: hidden; transition: border-color .3s var(--ease), background-color .3s var(--ease); }
@media (max-width: 879px) { .diff-tab { width: auto; flex: 0 0 auto; } .diff-tab__txt { white-space: nowrap; } }
.diff-tab:hover { border-color: var(--color-secondary-deep); }
.diff-tab.is-active { border-color: var(--color-text); background: #fff; box-shadow: var(--shadow-card); }
.diff-tab__ic { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--color-bg); color: var(--color-text); transition: background-color .3s; }
.diff-tab.is-active .diff-tab__ic { background: var(--color-secondary); }
.diff-tab__ic .icon { width: 22px; height: 22px; }
.diff-tab__txt { font-weight: 600; font-size: 1rem; line-height: 1.2; }
.diff-tab__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--color-secondary-deep); border-radius: 0 3px 3px 0; }
.diffs.is-auto .diff-tab.is-active .diff-tab__bar { animation: diffbar 5.2s linear forwards; }
@keyframes diffbar { from { width: 0; } to { width: 100%; } }
.diffs__panels { background: #fff; border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: clamp(1.3rem, 3.2vw, 2rem); box-shadow: var(--shadow-card); }
@media (min-width: 880px) { .diffs__panels { display: flex; flex-direction: column; justify-content: center; } }
.diff-panel { display: none; }
.diff-panel.is-active { display: grid; gap: 1.2rem 1.6rem; animation: diffin .45s var(--ease); }
@media (min-width: 560px) { .diff-panel.is-active { grid-template-columns: minmax(0, 1fr) clamp(120px, 18vw, 170px); align-items: center; } .diff-panel__media { order: 2; } }
@keyframes diffin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.diff-panel__media { display: grid; place-items: center; }
.diff-panel__media img { display: block; width: 100%; height: 100%; max-width: 100%; object-fit: contain; margin-inline: auto; }
@media (min-width: 560px) { .diff-panel__media { width: clamp(140px, 18vw, 180px); aspect-ratio: 1 / 1; } }
.diff-panel__title { font-size: 1.4rem; margin-bottom: .55rem; }
.diff-panel__body > p { color: var(--color-text-muted); font-size: 1.08rem; line-height: 1.6; margin-bottom: 1rem; max-width: 50ch; }
.diff-panel__list { display: grid; gap: .5rem; margin-bottom: 1.4rem; }
.diff-panel__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1rem; }
.diff-panel__list .icon { width: 24px; height: 24px; padding: 5px; border-radius: 50%; background: var(--color-secondary); color: #1A1A1A; box-sizing: border-box; stroke-width: 2.4; margin-top: 1px; flex: none; }
.diff-panel__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.diff-panel__cta .btn { min-height: 48px; padding: .7em 1.3em; }

/* « À qui s'adresse » : liste d'onglets + illustration qui change (sans carte) */
.aqui-illus { display: grid; gap: 1.1rem; }
@media (min-width: 880px) { .aqui-illus { grid-template-columns: minmax(260px, 1.05fr) .95fr; gap: clamp(1.4rem, 3vw, 2.8rem); align-items: center; } }
.aqui-list { display: flex; flex-direction: column; gap: .5rem; }
.aqui-stage { position: relative; display: grid; place-items: center; min-height: 200px; }
.aqui-fig { display: none; width: 100%; max-width: 340px; height: auto; }
.aqui-fig.is-active { display: block; animation: diffin .45s var(--ease); }
.aqui-illus.is-auto .diff-tab.is-active .diff-tab__bar { animation: diffbar 5.2s linear forwards; }
@media (max-width: 879px) { .aqui-list .diff-tab { width: 100%; flex: 0 0 auto; } .aqui-list .diff-tab__txt { white-space: normal; } .aqui-stage { order: -1; min-height: 0; } .aqui-fig { max-width: 215px; } }
@media (prefers-reduced-motion: reduce) { .aqui-fig.is-active { animation: none; } }
@media (prefers-reduced-motion: reduce) { .diff-tab__bar { display: none; } .diff-panel.is-active { animation: none; } }

/* « Votre parcours en 3 étapes » — fil d'Ariane à nœuds (sur fond jaune) */
.surface-figure .steps { position: relative; }
.surface-figure .step { position: relative; z-index: 1; }
.surface-figure .step::after { display: none; }
.surface-figure .step::before { color: var(--color-text); }
.surface-figure .step__icon {
  display: block; box-sizing: border-box; width: 56px; height: 56px; padding: 15px;
  background: var(--color-text); color: #fff; border-radius: 50%;
  box-shadow: 0 0 0 5px var(--color-secondary); z-index: 2;
}
@media (min-width: 880px) {
  .surface-figure .step { text-align: center; padding-top: 5rem; }
  .surface-figure .step__icon { position: absolute; top: 0; left: 50%; transform: translateX(-50%); margin: 0; }
  .surface-figure .step::before { font-size: 1.05rem; opacity: .6; margin: 0 0 .3rem; }
  .surface-figure .step h3, .surface-figure .step p { text-align: center; }
  .surface-figure .steps::before { content: ""; position: absolute; top: 28px; left: 18%; right: 18%; border-top: 2px dashed #fff; z-index: 0; }
}
@media (max-width: 879px) {
  .surface-figure .step { padding-left: 4.8rem; padding-top: .2rem; min-height: 56px; }
  .surface-figure .step__icon { position: absolute; top: 0; left: 0; }
  .surface-figure .step::before { font-size: 1.4rem; }
  .surface-figure .steps::before { content: ""; position: absolute; top: 28px; bottom: 28px; left: 27px; border-left: 2px dashed #fff; z-index: 0; }
}

/* « Votre parcours » en cartes empilées (mobile + desktop) */
.steps--cards { display: flex; flex-direction: column; gap: 1rem; max-width: 760px; margin-inline: auto; }
.surface-figure .steps--cards::before { display: none; }
.surface-figure .steps--cards .step {
  position: sticky; z-index: 1; text-align: left; min-height: 0;
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-card);
  padding: 1.4rem 3.4rem 1.4rem 1.5rem;
}
.surface-figure .steps--cards .step:nth-child(1) { top: 80px; }
.surface-figure .steps--cards .step:nth-child(2) { top: 98px; }
.surface-figure .steps--cards .step:nth-child(3) { top: 116px; }
.surface-figure .steps--cards .step h3, .surface-figure .steps--cards .step p { text-align: left; }
.surface-figure .steps--cards .step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.surface-figure .steps--cards .step p { color: var(--color-text-muted); }
.surface-figure .steps--cards .step__icon { position: static; transform: none; margin: 0 0 .9rem; width: 50px; height: 50px; padding: 13px; }
.surface-figure .steps--cards .step::before { position: absolute; top: 1.3rem; right: 1.4rem; margin: 0; display: block; font-size: 1.5rem; font-weight: 700; color: var(--color-secondary-deep); opacity: .9; }

/* ── Bibliothèque de réassurance (sources) ───────────────────────────── */
/* Sources : grille paginée en slider (1 grille par slide, encadré noir sur chaque slide) */
.lib-slider { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.lib-slider::-webkit-scrollbar { display: none; }
.lib-track { display: flex; }
.lib-slide { flex: 0 0 100%; scroll-snap-align: center; padding-block: .3rem .5rem; }
.lib-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; max-width: 920px; margin-inline: auto; align-items: stretch; }
@media (min-width: 620px) { .lib-grid { grid-template-columns: 1fr 1fr; } }
.lib-nav { display: flex; justify-content: center; gap: .6rem; margin-top: 1.1rem; }
.libc { display: flex; gap: .9rem; align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: 14px; padding: 1rem 1.05rem; text-decoration: none; color: inherit; transition: transform .2s, border-color .2s, box-shadow .2s; }
.libc:hover { border-color: var(--color-secondary); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.libc:focus-visible { outline: 2px solid var(--color-accent-blue); outline-offset: 2px; }
.libc__pdf { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--color-bg); display: grid; place-items: center; color: var(--color-primary); }
.libc__pdf svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.libc__tx { flex: 1; min-width: 0; }
.libc__tx .src-badge { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: .66rem; letter-spacing: .04em; padding: 3px 9px; border-radius: 6px; background: var(--color-primary); color: #fff; text-transform: uppercase; }
.libc__tx b { font-family: var(--font-display); font-weight: 700; font-size: .95rem; display: block; margin-top: .45rem; line-height: 1.3; color: var(--color-primary); }
.libc__tx small { display: block; color: var(--color-text-muted); font-size: .8rem; margin-top: .2rem; }
.libc .dl { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--color-bg); display: grid; place-items: center; color: var(--color-primary); align-self: center; }
.libc .dl svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.libc--note { background: var(--color-anthracite); border-color: var(--color-anthracite); cursor: default; align-items: center; }
.libc--note:hover { transform: none; box-shadow: none; border-color: var(--color-anthracite); }
.libc--note .libc__pdf { background: rgba(255, 255, 255, .12); color: #fff; }
.libc--note p { margin: 0; font-size: .88rem; line-height: 1.45; color: rgba(255, 255, 255, .92); }

/* ── « Au quotidien » mobile : l'illustration ne doit JAMAIS chevaucher le texte ── */
@media (max-width: 879px) {
  .dmob-media { height: auto !important; max-height: none !important; display: flex !important;
    justify-content: center; align-items: center; margin: 0 auto .9rem !important; overflow: visible !important; }
  .dmob-media img { width: auto !important; height: auto !important;
    max-width: min(70vw, 220px) !important; max-height: 200px !important;
    object-fit: contain !important; margin: 0 !important; }
}

/* ── Mobile : sections dépliables (adv-groups & interv) ───────────────── */
@media (max-width: 859px) {
  /* « Ce qui différencie » : chaque groupe dépliable au tap sur son titre */
  .adv-group.is-collapsible { border-top: 1px solid var(--color-line); }
  .adv-groups .adv-group.is-collapsible:first-child { border-top: 0; }
  .adv-group.is-collapsible .adv-group__h { cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: .7rem; margin: 0; padding: .95rem 0; -webkit-tap-highlight-color: transparent; }
  .adv-group.is-collapsible .adv-group__h::after { content: ""; flex: none; width: 9px; height: 9px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px);
    transition: transform .25s var(--ease); }
  .adv-group.is-collapsible.is-open .adv-group__h::after { transform: rotate(-135deg) translateY(-2px); }
  .adv-group.is-collapsible .adv-checklist { display: none; }
  .adv-group.is-collapsible.is-open .adv-checklist { display: grid; padding-bottom: .9rem; }
  .adv-groups { gap: 0; }

  /* « Comment on intervient » : chaque étape dépliable au tap */
  .interv__step.is-collapsible { cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .interv__step.is-collapsible h3 { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-bottom: 0; }
  .interv__step.is-collapsible h3::after { content: ""; flex: none; width: 9px; height: 9px;
    border-right: 2px solid var(--color-text-muted); border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg) translateY(-2px); transition: transform .25s var(--ease); }
  .interv__step.is-collapsible.is-open h3::after { transform: rotate(-135deg) translateY(-2px); }
  .interv__step.is-collapsible p { display: none; }
  .interv__step.is-collapsible.is-open p { display: block; margin-top: .55rem; }
}

/* ── « Le neurofeedback seul ne suffit pas » : texte + photo Stéphanie + flèche manuscrite ── */
.seul-grid { display: grid; gap: 2.4rem; align-items: center; margin-top: clamp(1.4rem, 4vw, 2.4rem); }
.seul-text { text-align: left; }
.seul-text .section__head { text-align: left; margin-bottom: 1rem; }
.seul-text p { margin-bottom: 1rem; color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.6; }
.seul-text p strong { color: var(--color-text); }
.seul-text .section-cta { margin-top: 1.3rem; }
.seul-media { position: relative; margin: 0 auto; max-width: 400px; display: flex; flex-direction: column; align-items: center; }
.seul-photo { width: 100%; max-width: 380px; border-radius: 20px; box-shadow: var(--shadow-card); display: block; }
.seul-cap { margin-top: .75rem; font-family: var(--font-display); font-weight: 700; color: var(--color-primary); text-align: center; line-height: 1.2; }
.seul-cap span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--color-text-muted); margin-top: .15rem; }
.seul-arrow { position: absolute; color: var(--color-secondary-deep); z-index: 2; pointer-events: none; }
.seul-arrow svg { display: block; width: 100%; height: auto; overflow: visible; }
/* Tracé : caché par défaut, dessiné quand la section entre dans le viewport, effacé à la sortie */
.seul-arrow path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .8s cubic-bezier(.65, 0, .35, 1); }
.seul-arrow__head { transition-duration: .3s !important; }
.seul-sec.is-drawn .seul-arrow__shaft { stroke-dashoffset: 0; }
.seul-sec.is-drawn .seul-arrow__head { stroke-dashoffset: 0; transition-delay: .72s; }
@media (prefers-reduced-motion: reduce) { .seul-arrow path { stroke-dashoffset: 0 !important; transition: none !important; } }
@media (min-width: 880px) {
  .seul-grid { grid-template-columns: 1.02fr .98fr; gap: 3rem; }
  .seul-text .section-cta { justify-content: flex-start !important; max-width: none !important; margin-inline: 0 !important; }
  .seul-arrow { width: 152px; left: -94px; top: 36%; }
}
@media (max-width: 879px) {
  .seul-media { margin-top: 3rem; }
  .seul-arrow { width: 92px; top: -40px; left: 50%; transform: translateX(-56%) rotate(72deg); }
}
