/* ════════════════════════════════════════════════════════════════════
   YK Groupe — Formulaire fullscreen · Thème Électrique (light)
   Source de vérité : src/styles/globals.css (yk-groupe-com)
   Vanilla CSS — zéro build. Auto-hébergé, déployable tel quel.
   ════════════════════════════════════════════════════════════════════ */

/* ── Montserrat Variable — self-hosted subset Latin (couvre le français)
   URL statique dans formulaire/fonts/ → preload <link> dans index.html. */
@font-face {
  font-family: 'Montserrat Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/montserrat-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* Fallback calibré sur les métriques réelles de Montserrat Variable (UPM 1000) :
   ascender 952 → 95.2% · descender 256 → 25.6% · line-gap 0.
   Minimise le CLS pendant le swap (décalage vertical visible réduit). */
@font-face {
  font-family: 'Montserrat Fallback';
  src: local('Arial');
  size-adjust: 100%;
  ascent-override: 95.2%;
  descent-override: 25.6%;
  line-gap-override: 0%;
}

/* ══════════════════════════════════════════════════════════
   TOKENS — thème Électrique (verbatim spec §2 / globals.css :root)
   ══════════════════════════════════════════════════════════ */
:root {
  /* Fonds — Électrique */
  --yk-bg:        #F6F7FB;
  --yk-surface:   #FFFFFF;
  --yk-surface-2: #F0F2F8;
  --yk-surface-3: #F6F7FB;

  /* Bordures */
  --yk-border:    #E5E7EE;
  --yk-border-2:  #CBD0DC;

  /* Textes */
  --yk-text:      #0A0E27;
  --yk-text-2:    #3B4168;
  --yk-text-muted:#5E6480;
  --yk-text-dim:  #717A8F;

  /* Primary — bleu électrique */
  --yk-accent:    #0047FF;
  --yk-accent-rgb: 0, 71, 255;

  /* Accents signature */
  --yk-cyan:   #00D4FF;
  --yk-violet: #A78BFA;
  --yk-amber:  #FBBF24;

  /* États sémantiques */
  --yk-error:        #B91C1C;
  --yk-error-rgb:    185, 28, 28;
  --yk-error-bg:     rgba(185, 28, 28, 0.08);
  --yk-error-border: rgba(185, 28, 28, 0.30);
  --yk-success:      #16a34a;

  /* Gradients */
  --yk-grad-page: linear-gradient(180deg, #EEF2FF 0%, #F6F7FB 100%);
  --yk-grad-text: linear-gradient(135deg, var(--yk-accent) 0%, #A78BFA 60%, #FBBF24 100%);
  --yk-grad-progress: linear-gradient(90deg, var(--yk-accent) 0%, #0066FF 50%, var(--yk-violet) 100%);

  /* Shadows */
  --shadow-card:        0 4px 16px -2px rgba(10,14,39,.08), 0 2px 4px rgba(10,14,39,.04);
  --shadow-card-hover:  0 12px 32px -4px rgba(10,14,39,.14), 0 4px 8px rgba(10,14,39,.06);
  --shadow-btn:         0 8px 32px rgba(0,71,255,.28);
  --shadow-btn-hover:   0 12px 40px rgba(0,71,255,.42);
  --shadow-focus:       0 0 0 3px rgba(0,71,255,.18);
  --shadow-focus-error: 0 0 0 3px rgba(185,28,28,.12);

  /* Radii */
  --radius:        12px;
  --radius-btn:    12px;
  --radius-input:  8px;

  /* Layout */
  --maxw: 720px;
  --orb-opacity: 0.07;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════════════════
   BASE / RESET
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: 'Montserrat Variable', 'Montserrat Fallback', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--yk-grad-page);
  background-attachment: fixed;
  color: var(--yk-text);
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; }

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

::selection {
  background: rgba(var(--yk-accent-rgb), 0.30);
  color: var(--yk-text);
}

/* Visually-hidden (h1 de page masqué) */
.ff__vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════════════
   LAYOUT FULLSCREEN — .ff container
   ══════════════════════════════════════════════════════════ */
.ff {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

/* Dot-grid couvrant le viewport — points bleus 13% opacité, 28px */
.ff::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(var(--yk-accent-rgb), 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: center;
}

/* Aurora orb discret — bas-droite, desktop uniquement */
.ff::after {
  content: '';
  position: fixed;
  right: -10vw;
  bottom: -15vh;
  z-index: -1;
  width: 50vw;
  max-width: 640px;
  height: 50vw;
  max-height: 640px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--yk-accent-rgb), var(--orb-opacity)) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.9;
  animation: ff-orb-drift 22s ease-in-out infinite;
}

@keyframes ff-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-20px, -12px) scale(1.06); }
}

/* ── Top bar : logo + microcopy ── */
.ff__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem max(1rem, env(safe-area-inset-right)) 0.5rem max(1rem, env(safe-area-inset-left));
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.ff__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 6px;
}
.ff__brand img {
  height: clamp(40px, 5.5vw, 56px);
  width: auto;
  display: block;
}

.ff__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--yk-text-muted);
  white-space: nowrap;
}
.ff__hint svg { color: var(--yk-accent); flex-shrink: 0; }

/* ── Barre de progression ── */
.ff__progress {
  width: 100%;
  max-width: 1000px;
  margin: 0.25rem auto 0;
  padding: 0 max(1rem, env(safe-area-inset-left));
}

.ff__progress-track {
  width: 100%;
  height: 6px;
  background: var(--yk-border);
  border-radius: 9999px;
  overflow: hidden;
}

.ff__progress-fill {
  height: 100%;
  background: var(--yk-grad-progress);
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(var(--yk-accent-rgb), 0.35);
  transition: width 0.45s var(--ease);
  will-change: width;
}

.ff__progress-label {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yk-text-dim);
  text-align: right;
}

/* ── Scène — centre verticalement l'étape active ── */
.ff__stage {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 1rem 2rem;
}

.ff__steps {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   ÉTAPES — transitions sobres (fade pur, pas de translateY AI)
   ══════════════════════════════════════════════════════════ */
.ff__step {
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.ff__step.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* L'attribut [hidden] l'emporte toujours (UA + garde-fou) */
.ff__step[hidden] { display: none !important; }

.ff__step-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Branche masquée (parcours conditionnel) — display:none l'emporte sur flex */
.ff__step-inner[hidden] {
  display: none;
}

/* ── Eyebrow / section-label ── */
.ff__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yk-text-dim);
}

/* ── Question H2 — Montserrat 800 ── */
.ff__question {
  margin: 0;
  font-size: clamp(1.625rem, 4.5vw + 0.5rem, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--yk-text);
}

/* ── Gradient-text signature (accent → violet → ambre) ── */
.ff__grad {
  background: var(--yk-grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 800;
}

/* ── Sous-titre ── */
.ff__subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--yk-text-muted);
  max-width: 56ch;
}

/* ══════════════════════════════════════════════════════════
   OPTIONS — cartes cliquables (grille 1 col mobile / 2 col ≥768)
   ══════════════════════════════════════════════════════════ */
.ff__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .ff__options { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
}

.ff__option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  min-height: 44px;
  padding: 0.875rem 1rem;
  background: var(--yk-surface);
  border: 1.5px solid var(--yk-border);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--yk-text);
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.15s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Hover = yk-card-glow (bordure accent mix + soft shadow) */
.ff__option:hover {
  border-color: rgba(var(--yk-accent-rgb), 0.40);
  box-shadow:
    0 0 0 1px rgba(var(--yk-accent-rgb), 0.20),
    var(--shadow-card-hover);
  transform: translateY(-1px);
}

.ff__option:active { transform: scale(0.99); }

/* État sélectionné : bordure accent + fond accent pâle + glow */
.ff__option.is-selected,
.ff__option[aria-checked="true"] {
  border-color: var(--yk-accent);
  background: rgba(var(--yk-accent-rgb), 0.06);
  box-shadow:
    0 0 0 1px var(--yk-accent),
    var(--shadow-card-hover);
}

/* ── Badge icône circulaire ── */
.ff__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--yk-surface-2);
  color: var(--yk-text-muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.ff__option-icon svg { width: 20px; height: 20px; }

.ff__option.is-selected .ff__option-icon,
.ff__option[aria-checked="true"] .ff__option-icon {
  background: var(--yk-accent);
  color: #FFFFFF;
}

/* ── Corps : label + sub ── */
.ff__option-body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1 1 auto;
  min-width: 0;
}
.ff__option-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--yk-text);
  line-height: 1.3;
}
.ff__option-sub {
  font-size: 0.8125rem;
  color: var(--yk-text-muted);
  line-height: 1.35;
}

/* ── Coche de sélection ── */
.ff__option-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--yk-accent);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.ff__option.is-selected .ff__option-check,
.ff__option[aria-checked="true"] .ff__option-check {
  opacity: 1;
  transform: scale(1);
}

/* ══════════════════════════════════════════════════════════
   BOUTON « ← Retour » discret
   ══════════════════════════════════════════════════════════ */
.ff__back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.25rem;
  background: transparent;
  border: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yk-text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.ff__back:hover { color: var(--yk-accent); }
.ff__back:focus-visible { outline-offset: 4px; }

/* ══════════════════════════════════════════════════════════
   ÉTAPE 6 — FORMULAIRE DE CONTACT
   ══════════════════════════════════════════════════════════ */
.ff__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.ff__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ff__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--yk-text-2);
  letter-spacing: 0.01em;
}

.ff__input {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.875rem;
  background: var(--yk-surface-2);
  border: 1.5px solid var(--yk-border);
  border-radius: var(--radius-input);
  color: var(--yk-text);
  font: inherit;
  font-size: 16px; /* ≥16px — anti-zoom iOS */
  line-height: 1.4;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.ff__input::placeholder { color: var(--yk-text-dim); opacity: 1; }

.ff__input:hover { border-color: var(--yk-border-2); }

/* Focus = bordure accent + ring accent */
.ff__input:focus {
  outline: none;
  border-color: rgba(var(--yk-accent-rgb), 0.55);
  background: var(--yk-surface);
  box-shadow: var(--shadow-focus);
}

/* État invalide */
.ff__input.is-invalid,
.ff__input[aria-invalid="true"] {
  border-color: var(--yk-error);
  background: var(--yk-error-bg);
  box-shadow: var(--shadow-focus-error);
}
.ff__input.is-invalid:focus,
.ff__input[aria-invalid="true"]:focus {
  border-color: var(--yk-error);
  box-shadow: 0 0 0 3px rgba(var(--yk-error-rgb), 0.18);
}

/* Message d'erreur inline — caché par défaut */
.ff__error {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--yk-error);
  line-height: 1.4;
  display: none;
}
.ff__error:not(:empty) { display: block; }

/* ── Microcopy cadenas sous le submit ── */
.ff__microcopy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--yk-text-muted);
  text-align: center;
}
.ff__microcopy svg { color: var(--yk-text-dim); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   BOUTONS YK — primary (gradient bleu + glow) / outline
   ══════════════════════════════════════════════════════════ */
.ff__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-btn);
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.2s var(--ease),
    filter 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
  .ff__btn {
    width: auto;
    align-self: flex-start;
    min-height: 52px;
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}
.ff__btn svg { flex-shrink: 0; }

/* ── yk-btn-primary : gradient bleu signature ── */
.yk-btn-primary {
  background: linear-gradient(135deg, #0047FF 0%, #0036CC 100%);
  color: #FFFFFF;
  border: 0;
  box-shadow: var(--shadow-btn);
}
.yk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  filter: brightness(1.08);
  color: #FFFFFF;
}
.yk-btn-primary:active {
  transform: scale(0.98);
  filter: brightness(0.97);
}
.yk-btn-primary:focus-visible {
  outline: 2px solid var(--yk-accent);
  outline-offset: 3px;
}

/* ── yk-btn-outline : bordure accent, fond transparent ── */
.yk-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(var(--yk-accent-rgb), 0.55);
  color: var(--yk-accent);
}
.yk-btn-outline:hover {
  border-color: var(--yk-accent);
  background: rgba(var(--yk-accent-rgb), 0.08);
  color: var(--yk-accent);
  transform: translateY(-1px);
}
.yk-btn-outline:active { transform: scale(0.98); }
.yk-btn-outline:focus-visible {
  outline: 2px solid var(--yk-accent);
  outline-offset: 3px;
}

/* Le submit du formulaire reste full-width sur desktop aussi */
.ff__form .ff__btn.yk-btn-primary { width: 100%; align-self: stretch; }

/* ══════════════════════════════════════════════════════════
   CONFIRMATION — écran pleinement rempli, coche animée
   ══════════════════════════════════════════════════════════ */
.ff__confirmation {
  text-align: center;
}

.ff__confirm-inner {
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
}

/* Coche animée — stroke-draw + scale */
.ff__check {
  width: 84px;
  height: 84px;
  margin: 0 auto 0.5rem;
  transform: scale(0.85);
  opacity: 0;
}
.ff__check svg { width: 100%; height: 100%; }

@keyframes ff-check-pop {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ff-check-circle-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes ff-check-mark-draw {
  to { stroke-dashoffset: 0; }
}

.ff__step.is-active .ff__check {
  animation: ff-check-pop 0.5s var(--ease) 0.05s forwards;
}
.ff__step.is-active .ff__check circle {
  animation: ff-check-circle-draw 0.7s var(--ease) 0.15s forwards;
}
.ff__step.is-active .ff__check path {
  animation: ff-check-mark-draw 0.45s var(--ease) 0.65s forwards;
}

.ff__confirm-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--yk-text);
}

.ff__confirm-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--yk-text-muted);
  max-width: 48ch;
}

/* Le bouton outline de confirmation reste centré et full-width desktop */
.ff__confirmation .ff__btn.yk-btn-outline {
  width: 100%;
  align-self: stretch;
}
@media (min-width: 768px) {
  .ff__confirmation .ff__btn.yk-btn-outline {
    width: auto;
    align-self: center;
  }
}

.ff__confirm-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yk-text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s var(--ease);
}
.ff__confirm-link:hover { color: var(--yk-accent); }
.ff__confirm-link:focus-visible { outline-offset: 4px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — ajustements desktop
   ══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .ff__topbar { padding: 1.5rem 2rem 0.75rem; }
  .ff__progress { padding: 0 2rem; }
  .ff__stage { padding: 2rem 2rem 3rem; }
  .ff__step-inner { gap: 1.25rem; }
  .ff__eyebrow { font-size: 0.75rem; }
  .ff__option { padding: 1.125rem 1.25rem; gap: 1rem; min-height: 48px; }
  .ff__option-icon { width: 44px; height: 44px; }
  .ff__option-icon svg { width: 22px; height: 22px; }
  .ff__option-label { font-size: 1rem; }
  .ff__option-sub { font-size: 0.875rem; }
  .ff__label { font-size: 0.875rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE ≤ 767px — désactive orbes/aurora/shimmer, tap clean
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  html { scroll-behavior: auto; }

  /* Aurora orb : désactivé sur mobile (économies GPU) */
  .ff::after {
    display: none;
    animation: none;
  }

  /* Pas de transform au hover sur tactile (recomposite GPU coûteux) */
  .yk-btn-primary:hover  { transform: none; filter: none; }
  .yk-btn-outline:hover  { transform: none; }
  .ff__option:hover      { transform: none; }

  /* Supprime le flash bleu iOS au tap + élimine le délai 300ms */
  a, button, [role="button"], summary, input, label {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  /* Feedback visuel léger au tap */
  a:active, button:active { opacity: 0.85; }

  /* Surfaces plus compactes */
  .ff__question { line-height: 1.18; }
  .ff__option { padding: 0.75rem 0.875rem; }
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITÉ — prefers-reduced-motion
   Animations off, étapes visibles, coche affichée d'emblée.
   ══════════════════════════════════════════════════════════ */
@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;
  }

  /* Aurora figée */
  .ff::after { animation: none !important; }

  /* Toutes les étapes opaques (visibles immédiatement) */
  .ff__step { opacity: 1; }

  /* Coche dessinée d'emblée — pas de stroke-draw */
  .ff__check {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .ff__check circle,
  .ff__check path {
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }

  /* Pas de translateY hover */
  .yk-btn-primary:hover,
  .yk-btn-outline:hover,
  .ff__option:hover { transform: none !important; }

  /* Progress bar : transition width instantanée */
  .ff__progress-fill { transition: none !important; }
}
