/* =============================================================================
   Reset
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* =============================================================================
   Design tokens
   Breakpoint: 768px (mobile-first, non-custom-property because @media rules
   cannot consume CSS variables).
   ============================================================================= */

:root {
  /* Typography */
  --font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-weight-base: 400;
  --font-weight-semibold: 600;
  --line-height-base: 24px;

  --font-size-xs: 14px;
  --font-size-sm: 15px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 19px;
  --font-size-2xl: 20px;
  --font-size-3xl: 22px;
  --font-size-4xl: 26px;

  /* Colors */
  --color-text-primary: #000000;
  --color-text-secondary: #52525b;
  --color-text-tertiary: #050505;

  --color-surface-muted: #ffffff;
  --color-surface-raised: #f5f5f5;
  --color-surface-strong: #f6f3f3;
  --color-surface-page: #f5f2f2;

  --color-border-default: #e5e7eb;
  --color-border-strong: #e4e4e7;
  --color-border-subtle: #f1f5f9;

  --color-text-muted: #64748b;

  --color-accent: #e0625a;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 10px;
  --space-4: 12px;
  --space-5: 16px;
  --space-6: 17px;
  --space-7: 20px;
  --space-8: 24px;

  /* Radius */
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 50px;
  --radius-xl: 100px;
  --radius-2xl: 9999px;

  /* Shadows */
  --shadow-1: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
  --shadow-2: rgba(0, 0, 0, 0.03) 0px -2px 16px -4px,
    rgba(0, 0, 0, 0.08) 0px 16px 40px -8px,
    rgba(0, 0, 0, 0.04) 0px 1px 3px 0px;
  --shadow-3: rgba(0, 0, 0, 0.06) 0px 4px 24px 0px,
    rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  --shadow-4: rgba(224, 98, 90, 0) 0px 0.0453508px 0.113377px -0.0226754px;

  /* Motion */
  --duration-instant: 150ms;
  --duration-fast: 200ms;
  --duration-normal: 250ms;
  --duration-slow: 300ms;
  --duration-slower: 700ms;

  /* Layout */
  --container-max-width: 960px;
  --container-padding-inline: var(--space-5);
}

/* =============================================================================
   Base typography & body
   ============================================================================= */

html {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-surface-page);
}

body {
  font-weight: var(--font-weight-base);
  position: relative;
  min-height: 100vh;
  background-color: var(--color-surface-page);
}

/* Halos d'accent aux 4 coins + bords (fixed, non bloquant).
   Mimique le fond de notionclub.fr : halos plus intenses aux coins, reflet
   plus doux sur les bords gauche/droit. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 99, 90, 0.28) 0%, transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(224, 99, 90, 0.24) 0%, transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(224, 99, 90, 0.22) 0%, transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(224, 99, 90, 0.26) 0%, transparent 35%),
    radial-gradient(ellipse at 0% 50%, rgba(224, 99, 90, 0.12) 0%, transparent 20%),
    radial-gradient(ellipse at 100% 50%, rgba(224, 99, 90, 0.12) 0%, transparent 20%);
}

main,
footer {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

p {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
}

/* =============================================================================
   Layout
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.section {
  padding-block: var(--space-8);
}

@media (min-width: 768px) {
  .section {
    padding-block: calc(var(--space-8) * 2);
  }
}

/* =============================================================================
   Utility: .section-title
   Taille et style uniforme pour tous les H2 de sections (référence : .nc-title
   de #inclusions). Applique clamp() pour une mise à l'échelle fluide.
   ============================================================================= */

.section-title {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 820px;
  margin-inline: auto;
  text-wrap: balance;
}

/* =============================================================================
   Utilities
   ============================================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-5);
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-text-primary);
  color: var(--color-surface-muted);
  border-radius: var(--radius-xs);
  z-index: 100;
  transition: top var(--duration-fast) ease;
}

.skip-link:focus-visible {
  top: var(--space-5);
}

/* =============================================================================
   Interactive states
   ============================================================================= */

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* =============================================================================
   Section: #hero
   ============================================================================= */

.hero {
  text-align: center;
  padding-block: calc(var(--space-8) * 2) var(--space-5);
}

@media (min-width: 768px) {
  .hero {
    padding-block: calc(var(--space-8) * 2.5) var(--space-7);
  }
}

.hero__title {
  max-width: 820px;
  margin-inline: auto;
  font-size: 38px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 52px;
    line-height: 1.15;
  }
}

/* Prénom : conteneur inline-block pour ancrer l'underline SVG */
.hero__prenom {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero__prenom-text {
  position: relative;
  z-index: 1;
}

/* Underline hand-drawn animé : path SVG en stroke-dashoffset */
.hero__underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.32em;
  color: var(--color-accent);
  pointer-events: none;
  overflow: visible;
}

.hero__underline path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: hero-underline-draw 1100ms cubic-bezier(0.65, 0, 0.35, 1) 600ms forwards;
}

@keyframes hero-underline-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* =============================================================================
   Section: #intro
   ============================================================================= */

.intro {
  text-align: center;
  padding-block: var(--space-3) var(--space-5);
}

@media (min-width: 768px) {
  .intro {
    padding-block: var(--space-5) var(--space-8);
  }
}

.intro__container {
  max-width: 520px;
}

@media (min-width: 768px) {
  .intro__container {
    max-width: 720px;
  }
}

.intro__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .intro__text {
    font-size: var(--font-size-xl);
    line-height: 1.55;
  }
}

/* =============================================================================
   Composant : .closeur-pill — nom du closeur + photo ronde
   Utilisé par #intro (inline dans un paragraphe) et #cta (inline dans bouton).
   ============================================================================= */

.closeur-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 3px 3px 3px var(--space-4);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-2xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  vertical-align: middle;
  white-space: nowrap;
}

.closeur-pill__name {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  font-size: 0.95em;
  line-height: 1;
}

.closeur-pill__photo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* Mobile : pill inline réduite pour ne pas distordre la line-height
   du paragraphe d'intro (sinon la 1re ligne fait 36px vs 24px ailleurs). */
@media (max-width: 767px) {
  .closeur-pill--inline {
    padding: 2px 3px 2px var(--space-3);
  }
  .closeur-pill--inline .closeur-pill__photo {
    width: 20px;
    height: 20px;
  }
  .closeur-pill--inline .closeur-pill__name {
    font-size: 0.9em;
  }
}

.closeur-pill__photo[hidden] {
  display: none;
}

/* Variante sur fond accent (bouton CTA) : pill blanche un peu plus contrastée */
.closeur-pill--on-accent {
  background: var(--color-surface-muted);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* =============================================================================
   Utility: .shine-card — encadré avec brillance animée (conic-gradient +
   @property --shine-angle). Utilisée par #offre et #garantie.
   ============================================================================= */

@property --shine-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes shine-rotate {
  to {
    --shine-angle: 360deg;
  }
}

.shine-card {
  --shine-angle: 0deg;
  position: relative;
  border-radius: var(--radius-md);
  padding: 2px;
  background: conic-gradient(
    from var(--shine-angle),
    rgba(224, 98, 90, 0.08),
    rgba(224, 98, 90, 0.85) 25%,
    rgba(224, 98, 90, 0.08) 50%,
    rgba(224, 98, 90, 0.08) 100%
  );
  box-shadow: var(--shadow-2);
  animation: shine-rotate 4s linear infinite;
}

.shine-card--compact {
  max-width: 720px;
  margin-inline: auto;
}

.shine-card__inner {
  background: var(--color-surface-muted);
  border-radius: calc(var(--radius-md) - 2px);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}

.shine-card__inner--compact {
  grid-template-columns: 1fr auto;
  gap: calc(var(--space-8) + var(--space-4));
  padding: calc(var(--space-8) + var(--space-2)) calc(var(--space-8) + var(--space-4));
}

@media (min-width: 768px) {
  .shine-card__inner--compact {
    padding: calc(var(--space-8) + var(--space-5))
      calc(var(--space-8) * 1.5);
    gap: calc(var(--space-8) + var(--space-5));
  }
}

/* =============================================================================
   Section: #offre
   ============================================================================= */

.offre__title {
  color: var(--color-text-primary);
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-4) 0;
  text-align: left;
  text-wrap: balance;
}

/* Sous-pilule conditionnelle (acc / form) avec dot blinking */
.offre__sub-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px var(--space-4);
  background: rgba(224, 98, 90, 0.1);
  color: var(--color-accent);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-5);
  letter-spacing: 0.01em;
  align-self: flex-start;
}

.offre__sub-pill[hidden] {
  display: none;
}

.offre__sub-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(224, 98, 90, 0.6);
  animation: offre-pill-blink 1.4s ease-in-out infinite;
}

@keyframes offre-pill-blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(224, 98, 90, 0.6);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 0 5px rgba(224, 98, 90, 0);
  }
}

.offre__bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.offre__bullet {
  position: relative;
  padding-left: var(--space-7);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.35;
  font-weight: 400;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

@media (min-width: 768px) {
  .offre__bullet {
    font-size: var(--font-size-md);
    line-height: 1.45;
  }
}

.offre__bullet strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

/* Mobile : on garantit que le texte après ⎜ ne hérite d'aucun gras.
   Le <strong> ne concerne que le label avant le séparateur. */
@media (max-width: 767px) {
  .offre__bullet {
    font-weight: 400;
  }
  .offre__bullet-sep ~ * {
    font-weight: 400;
  }
}

.offre__bullet-sep {
  color: var(--color-accent);
  margin: 0 2px;
  font-weight: 400;
}

.offre__bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-2xl);
  background: var(--color-accent);
}

.offre__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.offre__image {
  width: 88px;
  height: 88px;
}

@media (min-width: 768px) {
  .offre__image {
    width: 120px;
    height: 120px;
  }
}

.offre__image[hidden] {
  display: none;
}

/* Mobile : image au-dessus du texte */
@media (max-width: 767px) {
  .shine-card__inner--compact {
    grid-template-columns: 1fr;
  }
  .offre__visual {
    order: -1;
  }
}

/* =============================================================================
   Section: #inclusions — stacking cards scroll-driven
   Scope: .nc-root et tous les sélecteurs .nc-*
   Les hex "UI chrome animation" (slate-xxx, roses pastel, gris checkpoints)
   sont conservés tels quels — spécifiques aux widgets, hors design system.
   ============================================================================= */

/* ── Root & layout ─────────────────────────────────────────────────────────── */
.inclusions.nc-root {
  background: transparent;
  padding: 0;
}

.nc-scroll {
  position: relative;
}

.nc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

/* Single-card mode: no sticky, no tall scroll area */
.nc-root[data-single="true"] .nc-scroll {
  height: auto !important;
}
.nc-root[data-single="true"] .nc-sticky {
  position: static;
  height: auto;
  padding-bottom: calc(var(--space-8) * 2);
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.nc-header {
  flex-shrink: 0;
  text-align: center;
  padding: calc(var(--space-8) * 2) var(--space-7) var(--space-7);
}

@media (min-width: 768px) {
  .nc-header {
    padding: calc(var(--space-8) * 3) var(--space-8) calc(var(--space-7) + var(--space-2));
  }
}

.nc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1) var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--color-accent);
  color: var(--color-surface-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-7);
}

@media (min-width: 768px) {
  .nc-badge {
    margin-bottom: calc(var(--space-7) + var(--space-2));
  }
}

.nc-title {
  font-size: clamp(var(--font-size-4xl), 4.5vw, 48px);
  font-weight: 700;
  color: #1e293b; /* slate-900 — chrome section heading */
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 680px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ── Cards deck ────────────────────────────────────────────────────────────── */
.nc-cards-area {
  position: relative;
  flex: 1;
  width: calc(100% - (var(--space-5) * 2));
  max-width: 892px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nc-cards-area {
    width: calc(100% - (var(--space-8) * 2));
  }
}

/* ── Card base ─────────────────────────────────────────────────────────────── */
.nc-card {
  width: 100%;
  border-radius: var(--radius-md);
  background: var(--color-surface-muted);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-2);
}

.nc-card--base {
  position: relative;
  z-index: 1;
}

.nc-card--stack {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  will-change: transform;
  contain: layout style paint;
}

/* ── Card grid ─────────────────────────────────────────────────────────────── */
.nc-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nc-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .nc-card-grid {
    grid-template-rows: auto 1fr;
  }
}

/* ── Card left content ─────────────────────────────────────────────────────── */
.nc-card-content {
  display: flex;
  flex-direction: column;
  padding: var(--space-5) var(--space-5) var(--space-3);
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nc-card-content {
    padding: calc(var(--space-8) + var(--space-4)) calc(var(--space-8) + var(--space-5));
  }
}

.nc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .nc-pills {
    margin-bottom: calc(var(--space-7) + var(--space-2));
    gap: var(--space-2);
  }
}

.nc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px var(--space-4);
  border-radius: var(--radius-2xl);
  background: var(--color-surface-muted);
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .nc-pill {
    padding: 6px var(--space-5);
    font-size: 12px;
    gap: var(--space-2);
  }
}

.nc-pill svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 768px) {
  .nc-pill svg {
    width: 14px;
    height: 14px;
  }
}

.nc-quote-block {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .nc-quote-block {
    gap: var(--space-7);
    margin-bottom: var(--space-2);
  }
}

.nc-accent-bar {
  width: 3px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 6px;
  height: 36px;
}

.nc-accent-bar--accent {
  background: var(--color-accent);
}

.nc-accent-bar--dark {
  background: #0f172a; /* slate-950 — chrome */
}

@media (min-width: 768px) {
  .nc-accent-bar {
    height: 48px;
  }
}

.nc-quote-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .nc-quote-title {
    font-size: 23px;
    margin-bottom: var(--space-4);
  }
}

.nc-quote-desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nc-quote-desc strong,
.nc-quote-desc b {
  font-weight: 400;
}

@media (min-width: 768px) {
  .nc-quote-desc {
    font-size: var(--font-size-sm);
    line-height: 1.6;
  }
}

/* ── Card right visual ─────────────────────────────────────────────────────── */
.nc-card-visual {
  background: rgba(248, 250, 252, 0.5); /* slate-50/50 */
  padding: var(--space-7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-border-subtle);
  min-height: 170px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nc-card-visual {
    padding: calc(var(--space-8) + var(--space-1));
    border-top: none;
    border-left: 1px solid var(--color-border-subtle);
    min-height: 0;
  }
}

/* ═══ Card — formation : Progress animation ═══ */
.nc-prog-root {
  width: 100%;
  max-width: 340px;
  height: 100%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .nc-prog-root {
    min-height: 80px;
    transform: scale(0.85);
    transform-origin: center center;
  }
}

.nc-prog-track {
  position: absolute;
  top: 50%;
  left: var(--space-7);
  right: var(--space-7);
  height: 3px;
  background: #f1f1f3;
  border-radius: 3px;
  transform: translateY(-50%);
}

.nc-prog-fill {
  position: absolute;
  top: 50%;
  left: var(--space-7);
  height: 3px;
  width: 0;
  border-radius: 3px;
  transform: translateY(-50%);
  background: var(--color-accent);
  -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  z-index: 2;
}

.nc-prog-checkpoints {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-7);
  z-index: 5;
}

.nc-prog-cp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nc-prog-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-surface-muted);
  border: 2px solid #e8e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
  position: relative;
  z-index: 2;
}

.nc-prog-circle svg {
  width: 19px;
  height: 19px;
  color: #c4c4cc; /* chrome inactive icon */
  transition: color var(--duration-fast) ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nc-prog-cp.nc-prog-active .nc-prog-circle {
  border-color: var(--color-accent);
  transform: scale(1.18);
  box-shadow: 0 0 0 5px rgba(224, 98, 90, 0.1),
    0 4px 10px -2px rgba(224, 98, 90, 0.2);
}

.nc-prog-cp.nc-prog-active .nc-prog-circle svg {
  color: var(--color-accent);
}

.nc-prog-cp.nc-prog-done .nc-prog-circle {
  border-color: var(--color-accent);
  transform: scale(1);
  box-shadow: none;
}

.nc-prog-cp.nc-prog-done .nc-prog-circle svg {
  color: var(--color-accent);
}

.nc-prog-confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 10;
  pointer-events: none;
}

.nc-prog-particle {
  position: absolute;
  opacity: 0;
}

/* ═══ Card — suivi : iMessage + Meet animation ═══ */
.nc-anim-root {
  width: 100%;
  max-width: 340px;
  height: 100%;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  --nc-anim-state: paused;
}

@media (max-width: 767px) {
  .nc-anim-root {
    min-height: 140px;
    transform: scale(0.85);
    transform-origin: center center;
  }
}

.nc-anim-imessage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-5) var(--space-4);
  gap: 5px;
  opacity: 0;
  animation: nc-anim-scene-msg 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-bubble {
  max-width: 88%;
  padding: 11px 15px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  position: relative;
}

.nc-anim-bubble-in {
  align-self: flex-start;
  background: #f1f1f3;
  color: #1a1a1a;
  border-radius: 18px 18px 18px 5px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: nc-anim-bub-left 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-out-wrap {
  align-self: flex-end;
  position: relative;
  max-width: 88%;
}

.nc-anim-bubble-out {
  background: var(--color-accent);
  color: var(--color-surface-muted);
  border-radius: 18px 18px 5px 18px;
  padding: 11px 15px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: nc-anim-bub-right 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-heart {
  position: absolute;
  bottom: -7px;
  left: -7px;
  width: 28px;
  height: 28px;
  background: var(--color-surface-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12), 0 0 0 0.5px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: scale(0);
  animation: nc-anim-heart-pop 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
  z-index: 10;
}

.nc-anim-heart svg {
  width: 15px;
  height: 15px;
  fill: var(--color-accent);
  opacity: 0;
  transform: scale(0);
  animation: nc-anim-heart-icon 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-heart::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0;
  transform: scale(0.8);
  animation: nc-anim-heart-ping 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-meet {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  opacity: 0;
  animation: nc-anim-scene-meet 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-meet-win {
  width: 100%;
  height: 100%;
  background: var(--color-surface-muted);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(14px);
  opacity: 0;
  animation: nc-anim-meet-win 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: var(--nc-anim-state);
}

.nc-anim-meet-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.nc-anim-meet-user {
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-muted);
  position: relative;
  overflow: hidden;
}

.nc-anim-meet-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.nc-anim-meet-user-main .nc-anim-meet-avatar {
  width: 52px;
  height: 52px;
}

.nc-anim-meet-avatar svg {
  width: 22px;
  height: 22px;
  color: #94a3b8; /* chrome icon */
}

.nc-anim-meet-user-main .nc-anim-meet-avatar svg {
  width: 26px;
  height: 26px;
  color: #1a1a1a;
  opacity: 0.5;
}

.nc-anim-meet-user-self .nc-anim-meet-avatar svg {
  color: var(--color-accent);
  opacity: 0.6;
}

.nc-anim-meet-name {
  font-size: 10px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.nc-anim-meet-user-main .nc-anim-meet-name {
  font-size: 11px;
}

.nc-anim-meet-bar {
  background: var(--color-surface-muted);
  padding: var(--space-2) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-top: 1px solid #f1f1f3;
}

.nc-anim-meet-bar-label {
  font-size: 9px;
  font-weight: 500;
  color: #94a3b8;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.nc-anim-meet-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: default;
}

.nc-anim-meet-btn-g {
  background: var(--color-border-subtle);
}

.nc-anim-meet-btn-r {
  background: var(--color-accent);
}

.nc-anim-meet-btn-g svg {
  width: 12px;
  height: 12px;
  color: var(--color-text-muted);
}

.nc-anim-meet-btn-r svg {
  width: 12px;
  height: 12px;
  color: var(--color-surface-muted);
}

/* iMessage/Meet keyframes */
@keyframes nc-anim-scene-msg {
  0%, 38% { opacity: 1; }
  43%, 91% { opacity: 0; }
  95%, 100% { opacity: 1; }
}
@keyframes nc-anim-bub-left {
  0%, 38% { opacity: 1; transform: translateY(0) scale(1); }
  43% { opacity: 0; transform: translateY(-5px) scale(0.98); }
  91% { opacity: 0; transform: translateY(0) scale(1); }
  95%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes nc-anim-bub-right {
  0%, 8% { opacity: 0; transform: translateY(14px) scale(0.96); }
  13%, 38% { opacity: 1; transform: translateY(0) scale(1); }
  43% { opacity: 0; transform: translateY(-5px) scale(0.98); }
  100% { opacity: 0; transform: translateY(14px) scale(0.96); }
}
@keyframes nc-anim-heart-pop {
  0%, 17% { opacity: 0; transform: scale(0); }
  19% { opacity: 1; transform: scale(1.4); }
  21% { opacity: 1; transform: scale(0.9); }
  23% { opacity: 1; transform: scale(1.05); }
  24%, 38% { opacity: 1; transform: scale(1); }
  43% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes nc-anim-heart-icon {
  0%, 20% { opacity: 0; transform: scale(0); }
  22% { opacity: 1; transform: scale(1.25); }
  24%, 38% { opacity: 1; transform: scale(1); }
  43% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes nc-anim-heart-ping {
  0%, 19% { opacity: 0; transform: scale(0.8); }
  21% { opacity: 0.6; transform: scale(1.1); }
  26% { opacity: 0; transform: scale(1.6); }
  100% { opacity: 0; transform: scale(0.8); }
}
@keyframes nc-anim-scene-meet {
  0%, 42% { opacity: 0; }
  46%, 86% { opacity: 1; }
  91%, 100% { opacity: 0; }
}
@keyframes nc-anim-meet-win {
  0%, 42% { opacity: 0; transform: scale(0.92) translateY(14px); }
  48%, 84% { opacity: 1; transform: scale(1) translateY(0); }
  91% { opacity: 0; transform: scale(0.96) translateY(8px); }
  100% { opacity: 0; transform: scale(0.92) translateY(14px); }
}

/* ═══ Card — communaute : Slack animation ═══ */
.nc-sl-root {
  width: 100%;
  max-width: 380px;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-sl-msg {
  background: var(--color-surface-muted);
  border-radius: var(--radius-xs);
  padding: var(--space-5);
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nc-sl-msg.nc-sl-vis {
  opacity: 1;
  transform: translateY(0);
}

.nc-sl-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.nc-sl-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--space-2);
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nc-sl-avatar svg {
  width: 16px;
  height: 16px;
  color: var(--color-surface-muted);
}

.nc-sl-name {
  font-size: 13px;
  font-weight: 700;
  color: #1d1c1d;
}

.nc-sl-time {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.nc-sl-text {
  font-size: 12px;
  color: #1d1c1d;
  line-height: 1.5;
  margin-bottom: var(--space-2);
  min-height: 20px;
}

.nc-sl-text span {
  opacity: 0;
  transition: opacity 0.08s ease;
}

.nc-sl-text span.nc-sl-shown {
  opacity: 1;
}

.nc-sl-reactions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-3);
  min-height: 28px;
}

.nc-sl-react {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px var(--space-2);
  border-radius: 12px;
  background: #f8f8f8;
  border: 1px solid #e8e8ec;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nc-sl-react.nc-sl-vis {
  opacity: 1;
  transform: scale(1);
}

.nc-sl-react-emoji {
  font-size: 12px;
  line-height: 1;
}

.nc-sl-react-count {
  font-size: 10px;
  font-weight: 600;
  color: #616061;
  min-width: 8px;
  text-align: center;
}

.nc-sl-replies {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nc-sl-replies.nc-sl-vis {
  opacity: 1;
  transform: translateY(0);
}

.nc-sl-rep-av {
  display: flex;
}

.nc-sl-rep-av div {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--color-surface-muted);
  margin-left: -4px;
}

.nc-sl-rep-av div:first-child {
  margin-left: 0;
}

.nc-sl-rep-text {
  font-size: 10px;
  color: #1264a3; /* Slack blue — chrome */
  font-weight: 600;
}

.nc-sl-rep-label {
  font-size: 10px;
  color: var(--color-text-secondary);
  font-weight: 400;
  margin-left: 2px;
}

@media (min-width: 768px) {
  .nc-sl-msg {
    padding: var(--space-7);
  }
  .nc-sl-text {
    font-size: 13px;
    margin-bottom: var(--space-4);
  }
  .nc-sl-react-emoji {
    font-size: 14px;
  }
  .nc-sl-react-count {
    font-size: 11px;
  }
  .nc-sl-rep-text,
  .nc-sl-rep-label {
    font-size: 11px;
  }
}

/* ═══ Card — templates : Folder animation ═══ */
.nc-fd-root {
  width: 100%;
  max-width: 380px;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .nc-fd-root {
    min-height: 140px;
    transform: scale(0.82);
    transform-origin: center center;
  }
}

.nc-fd-folder {
  position: relative;
  width: 120px;
  height: 96px;
  margin: 0 auto;
}

.nc-fd-back {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 80px;
  background: linear-gradient(180deg, #d4544d 0%, #c44a43 100%);
  border-radius: 4px 4px var(--space-2) var(--space-2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nc-fd-tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 20px;
  background: linear-gradient(180deg, #e8837c 0%, #d4544d 100%);
  border-radius: 6px 6px 0 0;
}

.nc-fd-front {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 74px;
  background: linear-gradient(180deg, #f0a09c 0%, #e8837c 100%);
  border-radius: 4px 4px var(--space-2) var(--space-2);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nc-fd-folder.nc-fd-open .nc-fd-front {
  transform: translateY(var(--space-2)) scaleY(0.92);
}

.nc-fd-folder.nc-fd-open .nc-fd-back {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
    inset 0 12px 20px -8px rgba(0, 0, 0, 0.06);
}

.nc-fd-cursor {
  position: absolute;
  z-index: 20;
  width: 18px;
  height: 22px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: opacity 0.3s ease;
}

.nc-fd-cursor.nc-fd-vis {
  opacity: 1;
}

.nc-fd-cursor svg {
  width: 100%;
  height: 100%;
}

.nc-fd-files {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 3;
  pointer-events: none;
}

.nc-fd-file {
  position: relative;
  width: 44px;
  height: 52px;
  border-radius: 6px;
  background: var(--color-surface-muted);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(30px) scale(0.6);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nc-fd-file.nc-fd-shown {
  opacity: 1;
  transform: translateY(-64px) scale(1);
}

.nc-fd-file.nc-fd-gather {
  opacity: 0;
  transform: translateY(10px) scale(0.3);
}

.nc-fd-file-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-fd-file-icon svg {
  width: 11px;
  height: 11px;
}

.nc-fd-file-ext {
  font-size: 6px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nc-fd-file::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(
    225deg,
    #f1f5f9 45%,
    #e2e8f0 50%,
    transparent 50%
  );
  border-radius: 0 6px 0 0;
}

/* =============================================================================
   Section: #timeline — guide vertical + progress bar + dots concentriques
   Fade-in des cards via IntersectionObserver, rolling numbers sur les
   period labels, confetti canvas sur la dernière card.
   ============================================================================= */

.timeline {
  padding-block: calc(var(--space-8) * 2) calc(var(--space-8) * 3);
  position: relative;
}

.timeline__container {
  max-width: 820px;
}

.timeline__title {
  text-align: center;
  margin-bottom: calc(var(--space-8) * 2);
}

.timeline__wrap {
  position: relative;
  padding-left: 50px;
}

@media (min-width: 768px) {
  .timeline__wrap {
    padding-left: 72px;
  }
}

/* Guide line + progress bar : alignées avec le centre du dot
   Mobile : padding-left wrap = 50px, dot-group left = -37px, group width = 30px
            → centre du dot à wrap-left + 50 - 37 + 15 = 28px → bar à 26.5px
   Desktop : padding-left wrap = 72px, dot-group left = -57px, group width = 30px
             → centre du dot à 72 - 57 + 15 = 30px → bar à 28.5px */
.timeline__guide,
.timeline__progress {
  position: absolute;
  top: 0;
  left: 26.5px;
  width: 3px;
  border-radius: 3px;
}

.timeline__guide {
  bottom: 0;
  background: var(--color-border-subtle);
}

.timeline__progress {
  height: 0%;
  background: linear-gradient(
    to bottom,
    rgba(224, 98, 90, 0.5),
    rgba(224, 98, 90, 1)
  );
  transition: height 120ms ease-out;
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline__guide,
  .timeline__progress {
    left: 28.5px;
  }
}

.timeline__phases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-8) + var(--space-4));
}

@media (min-width: 768px) {
  .timeline__phases {
    gap: calc(var(--space-8) * 2);
  }
}

.timeline__phase {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0.5;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline__phase--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot group with concentric rings */
.timeline__dot-group {
  position: absolute;
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline__dot-group {
    left: -57px;
  }
}

.timeline__dot-ring-xl,
.timeline__dot-ring-l,
.timeline__dot {
  position: absolute;
  border-radius: 50%;
}

.timeline__dot-ring-xl {
  width: 60px;
  height: 60px;
  background: rgba(224, 98, 90, 0.05);
}

.timeline__dot-ring-l {
  width: 36px;
  height: 36px;
  background: rgba(224, 98, 90, 0.2);
}

.timeline__dot {
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  box-shadow: 0 1px 2px rgba(224, 98, 90, 0.4);
  transition: transform var(--duration-slow) ease;
}

.timeline__phase:hover .timeline__dot {
  transform: scale(1.1);
}

/* Card */
.timeline__card {
  flex: 1;
  position: relative;
  padding: var(--space-7);
  background: var(--color-surface-muted);
  border: 1px solid rgba(224, 98, 90, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--duration-slow) ease,
    transform var(--duration-slow) ease;
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline__card {
    padding: var(--space-8);
  }
}

.timeline__card:hover {
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Horizontal connector between dot and card */
.timeline__card::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: var(--color-border-default);
}

.timeline__period {
  display: inline-block;
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.timeline__roll {
  display: inline-block;
  min-width: 1.5em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.timeline__phase-title {
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .timeline__phase-title {
    font-size: var(--font-size-2xl);
  }
}

.timeline__phase-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

.timeline__phase-desc strong,
.timeline__phase-desc b {
  font-weight: 400;
}

@media (min-width: 768px) {
  .timeline__phase-desc {
    font-size: var(--font-size-md);
  }
}

/* =============================================================================
   Section: #temoignages — carrousel infini (vidéos / photos / texte)
   Scope : .nc-ts-*
   ============================================================================= */

.temoignages {
  padding-block: calc(var(--space-8) * 1.5) calc(var(--space-8) * 1.5);
}

.temoignages__header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.temoignages__title {
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .temoignages__title {
    font-size: 48px;
  }
}

.nc-ts-section {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: var(--space-5) 0 calc(var(--space-8) + var(--space-5));
}

@media (max-width: 640px) {
  .nc-ts-section {
    padding: var(--space-4) 0 var(--space-8);
  }
}

.nc-ts-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  position: relative;
}

@media (max-width: 640px) {
  .nc-ts-wrapper {
    gap: 0;
  }
}

.nc-ts-container {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: var(--space-7);
  padding-bottom: calc(var(--space-8) + var(--space-4));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nc-ts-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 640px) {
  .nc-ts-container {
    padding-top: var(--space-5);
    padding-bottom: var(--space-8);
  }
}

.nc-ts-track {
  display: flex;
  gap: var(--space-5);
  padding-left: 0;
  padding-right: calc(var(--space-8) * 2.5);
}

@media (max-width: 640px) {
  .nc-ts-track {
    gap: var(--space-4);
    padding-right: calc(var(--space-8) + var(--space-5));
  }
}

/* ── Flèche de navigation ──────────────────────────────────────────────── */

.nc-ts-nav {
  position: relative;
  z-index: 20;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .nc-ts-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
    z-index: 30;
  }
  .nc-ts-nav .nc-ts-nav-svg {
    width: 32px;
    height: 32px;
  }
}

.nc-ts-nav-svg {
  display: block;
  animation: nc-ts-arrow-slide 2s ease-in-out infinite;
}

@keyframes nc-ts-arrow-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}

.nc-ts-nav:hover .nc-ts-nav-svg,
.nc-ts-nav:active .nc-ts-nav-svg {
  animation: none;
  transform: none;
}

@media (max-width: 640px) {
  @keyframes nc-ts-arrow-slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
  }
}

/* ── Carte — dimensions partagées ──────────────────────────────────────── */

.nc-ts-card {
  flex-shrink: 0;
  height: 340px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  position: relative;
  cursor: pointer;
}

.nc-ts-card--small { width: 220px; }
.nc-ts-card--large { width: 480px; }
.nc-ts-card--video-large { width: 605px; }

.nc-ts-card--photo.nc-ts-ratio-wide { width: 635px; }
.nc-ts-card--photo.nc-ts-ratio-square { width: 512px; }
.nc-ts-card--photo.nc-ts-ratio-portrait { width: 340px; }
.nc-ts-card--photo.nc-ts-ratio-standard { width: 420px; }

@media (max-width: 640px) {
  .nc-ts-card { height: 280px; }
  .nc-ts-card--small { width: 180px; }
  .nc-ts-card--large { width: 300px; }
  .nc-ts-card--video-large { width: 500px; }
  .nc-ts-card--photo.nc-ts-ratio-wide { width: 520px; }
  .nc-ts-card--photo.nc-ts-ratio-square { width: 420px; }
  .nc-ts-card--photo.nc-ts-ratio-portrait { width: 280px; }
  .nc-ts-card--photo.nc-ts-ratio-standard { width: 345px; }
}

/* ── Carte vidéo verticale ─────────────────────────────────────────────── */

.nc-ts-card--video-vertical {
  background: #000; /* chrome player bg */
}

.nc-ts-card--video-vertical .nc-ts-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nc-ts-card--video-vertical .nc-ts-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.nc-ts-card--video-vertical .nc-ts-video iframe {
  height: 100%;
  aspect-ratio: 9/16;
}

/* ── Carte vidéo horizontale ───────────────────────────────────────────── */

.nc-ts-card--video-horizontal {
  background: #e8e8e8; /* chrome player bg */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nc-ts-card--video-horizontal .nc-ts-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.nc-ts-card--video-horizontal .nc-ts-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.nc-ts-card--video-horizontal .nc-ts-video iframe {
  width: 100%;
  height: 100%;
}

/* ── Carte texte ───────────────────────────────────────────────────────── */

.nc-ts-card--text {
  background: var(--color-surface-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  text-align: center;
}

.nc-ts-card--text .nc-ts-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-4);
  border: 2px solid rgba(224, 98, 90, 0.2);
}

.nc-ts-card--text .nc-ts-name {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-md);
  margin-bottom: 6px;
}

.nc-ts-card--text .nc-ts-quote {
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .nc-ts-card--text {
    padding: var(--space-5);
  }
  .nc-ts-card--text .nc-ts-avatar {
    width: 44px;
    height: 44px;
  }
  .nc-ts-card--text .nc-ts-name {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-1);
  }
  .nc-ts-card--text .nc-ts-quote {
    font-size: 13px;
  }
}

/* ── Carte photo ───────────────────────────────────────────────────────── */

.nc-ts-card--photo {
  background: var(--color-surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nc-ts-card--photo .nc-ts-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Boutons play / close ──────────────────────────────────────────────── */

.nc-ts-play,
.nc-ts-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--duration-slow);
  z-index: 5;
}

.nc-ts-play:hover,
.nc-ts-yt-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.nc-ts-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: var(--color-surface-muted);
  font-size: var(--font-size-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-slow);
  z-index: 10;
}

.nc-ts-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.nc-ts-hidden {
  display: none !important;
}

/* =============================================================================
   Section: #garantie
   Card blanche (même style que #prix) avec médaille qui pend depuis le bord
   haut intérieur — pas d'effet wave/shine, juste une ombre noire classique.
   ============================================================================= */

.garantie {
  padding-block: calc(var(--space-8) * 2);
}

.garantie__card.shine-card {
  padding: 0;
  background: var(--color-surface-muted);
  animation: none;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px -15px rgba(0, 0, 0, 0.18),
    0 4px 12px -4px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 560px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

/* Médaille à ras du bord haut. top négatif + overflow hidden sur la card →
   effet "accrochée" sans débordement visible au-dessus. Pas de drop-shadow
   pour éviter un calque visible qui teinte le texte derrière. */
.garantie__medal {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  z-index: 3;
  pointer-events: none;
}

@media (min-width: 768px) {
  .garantie__medal {
    width: 150px;
    height: 150px;
    top: -24px;
  }
}

.garantie__medal[hidden] {
  display: none;
}

/* Inner : bg transparent pour laisser voir la médaille qui est en absolute
   derrière, et pas de position:relative pour ne pas créer de stacking
   context qui masquerait la médaille. */
.garantie__inner {
  display: block;
  text-align: center;
  padding: 110px var(--space-7) var(--space-7);
  background: transparent;
}

@media (min-width: 768px) {
  .garantie__inner {
    padding: 130px calc(var(--space-8) + var(--space-4)) var(--space-8);
  }
}

.garantie__title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.garantie__text {
  font-size: var(--font-size-md);
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.4;
  max-width: 340px;
  margin-inline: auto;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .garantie__text {
    font-size: var(--font-size-lg);
    line-height: 1.4;
    max-width: 400px;
  }
}

/* =============================================================================
   Section: #prix
   Toujours affichée. 2 états :
   - Montant affiché : texte shimmer sur le prix (gradient accent animé).
   - Montant masqué : "encre invisible" (blur + shimmer) + pilule bleue premium.
   ============================================================================= */

.prix {
  padding-block: calc(var(--space-8) * 1.5) calc(var(--space-8) * 2);
}

.prix__card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-surface-muted);
  border-radius: var(--radius-md);
  padding: calc(var(--space-8) + var(--space-4))
    calc(var(--space-7) + var(--space-2));
  text-align: center;
  box-shadow: 0 18px 45px -15px rgba(0, 0, 0, 0.18),
    0 4px 12px -4px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .prix__card {
    padding: calc(var(--space-8) * 1.5) calc(var(--space-8) + var(--space-5));
  }
}

.prix__title {
  font-size: clamp(26px, 4.5vw, 48px);
  color: var(--color-text-primary);
  margin-bottom: var(--space-7);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* ── État 1 : montant shimmer ─────────────────────────────────────────── */

.prix__amount {
  font-size: 44px;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .prix__amount {
    font-size: 64px;
  }
}

.prix__amount--shimmer {
  background: linear-gradient(
      90deg,
      var(--color-accent) 0%,
      var(--color-accent) 35%,
      #f8a69f 50%,
      var(--color-accent) 65%,
      var(--color-accent) 100%
    )
    0% 0% / 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: prix-shimmer 3.5s linear infinite;
}

@keyframes prix-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.prix__amount[hidden] {
  display: none;
}

/* ── État 2 : encre invisible + pilule bleue ─────────────────────────── */

.prix__hidden {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.prix__hidden[hidden] {
  display: none;
}

/* Wrap qui empile texte flouté + canvas particules (effet Telegram spoiler) */
.prix__ink-wrap {
  position: relative;
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
}

.prix__ink {
  position: relative;
  z-index: 1;
  font-size: 44px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text-primary);
  filter: blur(8px);
  opacity: 0.45;
  user-select: none;
  animation: prix-ink-pulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .prix__ink {
    font-size: 64px;
    filter: blur(12px);
  }
}

@keyframes prix-ink-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.prix__ink-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.prix__reveal-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(
      135deg,
      rgba(224, 98, 90, 0.1) 0%,
      rgba(224, 98, 90, 0.2) 50%,
      rgba(224, 98, 90, 0.1) 100%
    )
    0% 0% / 200% 100%;
  color: var(--color-text-primary);
  border: 1px solid rgba(224, 98, 90, 0.25);
  border-radius: var(--radius-md);
  max-width: 460px;
  animation: prix-pill-wave 5s ease-in-out infinite;
}

@keyframes prix-pill-wave {
  0%, 100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

.prix__reveal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(224, 98, 90, 0.6);
  flex-shrink: 0;
  animation: prix-reveal-blink 1.6s ease-in-out infinite;
}

@keyframes prix-reveal-blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(224, 98, 90, 0.6);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 0 8px rgba(224, 98, 90, 0);
  }
}

.prix__reveal-text {
  font-size: var(--font-size-md);
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
}

@media (min-width: 768px) {
  .prix__reveal-text {
    font-size: var(--font-size-lg);
  }
}

.prix__legal {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.prix__legal[hidden] {
  display: none;
}

/* =============================================================================
   Section: #faq — accordéon
   Une seule question ouverte à la fois, animation height via Web Animations API
   (sous PRM : snap open/close sans animation).
   ============================================================================= */

.faq__container {
  max-width: 768px;
}

.faq__title {
  text-align: center;
  margin-bottom: calc(var(--space-8) + var(--space-2));
}

.nc-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nc-faq__item {
  position: relative;
  border-radius: var(--radius-sm);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border-default);
  overflow: hidden;
  transition: border-color var(--duration-slow) cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow var(--duration-slow) cubic-bezier(0.25, 1, 0.5, 1),
    transform var(--duration-slow) cubic-bezier(0.25, 1, 0.5, 1);
}

.nc-faq__item:hover {
  border-color: #cbd5e1; /* slate-300 — chrome hover */
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.nc-faq__trigger {
  width: 100%;
  cursor: pointer;
  padding: var(--space-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  background: var(--color-surface-muted);
  border: none;
  text-align: left;
  position: relative;
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
}

.nc-faq__question {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  transition: color var(--duration-normal) ease;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .nc-faq__question {
    font-size: var(--font-size-lg);
  }
}

.nc-faq__item:hover .nc-faq__question {
  color: var(--color-accent);
}

.nc-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 6px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9); /* chrome */
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-muted);
  transition: transform var(--duration-slow) cubic-bezier(0.33, 1, 0.68, 1),
    background var(--duration-slow), border-color var(--duration-slow),
    color var(--duration-slow), box-shadow var(--duration-slow);
}

.nc-faq__trigger[aria-expanded="true"] .nc-faq__icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface-muted);
  box-shadow: 0 4px 12px rgba(224, 98, 90, 0.25);
}

.nc-faq__wrap {
  overflow: hidden;
  height: 0;
}

.nc-faq__body {
  padding: var(--space-1) var(--space-7) var(--space-8);
  color: var(--color-text-secondary);
  font-weight: 400;
  line-height: 1.65;
  font-size: var(--font-size-sm);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@media (min-width: 768px) {
  .nc-faq__body {
    font-size: var(--font-size-md);
  }
}

.nc-faq__body--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   Section: #cta
   ============================================================================= */

.cta {
  background: transparent;
  text-align: center;
  padding-block: calc(var(--space-8) * 3);
}

.cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--space-8) + var(--space-2));
}

.cta__title {
  color: var(--color-text-primary);
}

/* Stack qui contient le bouton principal + la grille IA.
   Largeur fixée par max-width → CTA et grille alignés au pixel. */
.cta__stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--color-accent);
  color: var(--color-surface-muted);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  padding: 8px var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px -6px rgba(224, 98, 90, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(224, 98, 90, 0.55),
    0 4px 8px rgba(0, 0, 0, 0.08);
}

.cta__button:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px -6px rgba(224, 98, 90, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.06);
}

.cta__button[hidden] {
  display: none;
}

/* Grille IA — 2 colonnes, reste côte à côte même sur mobile */
.cta__ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  width: 100%;
}

.cta__ai-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 8px var(--space-4);
  background: var(--color-surface-muted);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  min-width: 0;
  transition: transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    background-color var(--duration-fast) ease;
}

.cta__ai-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(224, 98, 90, 0.18);
  background-color: rgba(224, 98, 90, 0.04);
}

.cta__ai-pill-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta__ai-pill-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* Viewports étroits : typo + padding + logo encore plus compacts pour
   que "Demander à ChatGPT/Claude" + logo tiennent sur une ligne. */
@media (max-width: 440px) {
  .cta__ai-pill {
    padding: 7px 10px;
    font-size: 12px;
    gap: 6px;
  }
  .cta__ai-pill-logo {
    height: 15px;
  }
}

@media (max-width: 360px) {
  .cta__ai-pill {
    padding: 6px 8px;
    font-size: 11px;
    gap: 4px;
  }
  .cta__ai-pill-logo {
    height: 13px;
  }
}

.cta__button-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.cta__button-prefix {
  white-space: nowrap;
}

/* Effet glimmer : reflet qui traverse le bouton en diagonale */
.cta__button-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
  animation: cta-shine 3.5s ease-in-out infinite;
}

@keyframes cta-shine {
  0% {
    left: -50%;
  }
  60%, 100% {
    left: 120%;
  }
}

/* =============================================================================
   Section: #footer — 2 colonnes (brand / liens), bg gris franc
   z-index: 2 pour passer au-dessus de body::before (halos accent), assurant
   qu'aucun rouge ne se voit dans la zone footer.
   ============================================================================= */

.footer {
  background: #ffffff;
  padding-block: calc(var(--space-8) * 2);
  position: relative;
  z-index: 2;
}

/* Dégradé qui démarre au-dessus du footer (top négatif) pour que la
   progression vers le blanc commence plus tôt dans la hauteur de page,
   dans la zone de la section précédente. Du transparent en haut (révèle
   le gris de la page) au blanc en bas (raccord avec le footer blanc). */
.footer::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #ffffff 100%
  );
  pointer-events: none;
}

.footer__container {
  display: block;
  text-align: left;
}

.footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-8) + var(--space-5));
  align-items: flex-start;
}

@media (max-width: 767px) {
  .footer__columns {
    gap: calc(var(--space-8) + var(--space-4));
  }
}

/* ── Colonne gauche : brand + mentions ─────────────────────────────── */

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 380px;
  flex: 0 1 380px;
}

.footer__logo {
  width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .footer__logo {
    width: 120px;
  }
}

.footer__legal {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.footer__legal strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

.footer__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ── Colonne droite : socials + card pages ─────────────────────────── */

/* Socials alignés sur le bord GAUCHE de l'encadré (align-items flex-start
   côté col). Le card porte la largeur, les logos s'y alignent. */
.footer__col--links {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-fast) ease,
    opacity var(--duration-fast) ease;
  opacity: 0.85;
}

.footer__social:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer__social img {
  height: 24px;
  width: auto;
  display: block;
}

.footer__pages-card {
  background: var(--color-surface-muted);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  max-width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border-default);
}

.footer__page-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
  gap: var(--space-5);
  white-space: nowrap;
  transition: color var(--duration-fast) ease,
    background-color var(--duration-fast) ease;
}

.footer__page-link:hover {
  color: var(--color-text-primary);
  background: rgba(0, 0, 0, 0.03);
}

@media (max-width: 540px) {
  .footer__page-link {
    white-space: normal;
    font-size: var(--font-size-xs);
  }
}

.footer__page-arrow {
  color: var(--color-accent);
  font-size: var(--font-size-md);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--duration-fast) ease,
    transform var(--duration-fast) ease;
  flex-shrink: 0;
}

.footer__page-link:hover .footer__page-arrow,
.footer__page-link:focus-visible .footer__page-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Halos accent : fade quand le footer entre dans le viewport. Le toggle
   .body--footer-visible est ajouté/retiré par main.js via IntersectionObserver. */
body::before {
  transition: opacity 0.45s ease;
}

body.body--footer-visible::before {
  opacity: 0;
}

/* =============================================================================
   Reduced motion — global + overrides pour #inclusions
   - Stacking désactivé (cartes en flux normal empilé)
   - Animations JS (Progress, Slack, Folder) rendues en "état final"
     (géré côté JS, voir main.js)
   - Animations CSS (iMessage/Meet) figées sur la scène iMessage
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .shine-card {
    animation: none;
    background: var(--color-border-default);
  }

  /* Stacking off : cartes en flux normal */
  .nc-scroll {
    height: auto !important;
  }
  .nc-sticky {
    position: static !important;
    height: auto !important;
    padding-bottom: calc(var(--space-8) * 2);
  }
  .nc-card--stack {
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    margin-top: var(--space-5);
  }

  /* iMessage scène fixée visible, Meet masquée */
  .nc-anim-imessage,
  .nc-anim-bubble-in,
  .nc-anim-bubble-out,
  .nc-anim-heart,
  .nc-anim-heart svg {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .nc-anim-heart::before {
    animation: none !important;
  }
  .nc-anim-meet,
  .nc-anim-meet-win {
    opacity: 0 !important;
    animation: none !important;
  }

  /* #timeline : pas de pulse sur le dot actif */
  .timeline__phase--active .timeline__phase-dot::before {
    display: none !important;
  }

  /* #prix : shimmer text désactivé → couleur pleine accent */
  .prix__amount--shimmer {
    background: none !important;
    -webkit-text-fill-color: var(--color-accent) !important;
    color: var(--color-accent) !important;
    animation: none !important;
  }
  .prix__ink {
    animation: none !important;
  }
  .prix__reveal-dot {
    animation: none !important;
  }

  /* #cta : glimmer désactivé */
  .cta__button-shine {
    display: none !important;
  }
}
