/* ============================================================
   code-promo-metricsbooster.fr — feuille de style maison
   Aucun framework. Namespace .tkt-* (BEM). Variables --tkt-*.
   Registre « deal / coupon » — DARK MODE.
   Charte : primaire #33D3ED (cyan) · secondaire #A05DF7 (violet).
   Mobile-first.
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --tkt-bg: #0A0E14;        /* near-black cool */
  --tkt-bg-soft: #0F141C;
  --tkt-surface: #141C28;
  --tkt-surface-2: #1B2636;
  --tkt-line: rgba(51, 211, 237, 0.16);
  --tkt-line-strong: rgba(51, 211, 237, 0.42);

  --tkt-accent: #33D3ED;    /* primaire — cyan */
  --tkt-accent-2: #A05DF7;  /* secondaire — violet */
  --tkt-green: #37D67A;     /* validation / économie */

  --tkt-ink: #EAF3F7;       /* titres */
  --tkt-body: #AFC0CE;      /* corps */
  --tkt-muted: #71808F;     /* secondaire */

  --tkt-radius: 16px;
  --tkt-radius-lg: 22px;
  --tkt-shell: 1080px;

  --tkt-font-title: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;
  --tkt-font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --tkt-font-mono: ui-monospace, 'SFMono-Regular', 'Menlo', 'Cascadia Code', 'Consolas', monospace;

  --tkt-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.75);
  --tkt-glow: 0 0 60px -10px rgba(51, 211, 237, 0.45);
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--tkt-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--tkt-body);
  background: var(--tkt-bg);
  background-image:
    radial-gradient(1100px 560px at 50% -12%, rgba(51, 211, 237, 0.12), transparent 60%),
    radial-gradient(900px 520px at 90% 8%, rgba(160, 93, 247, 0.10), transparent 60%),
    linear-gradient(180deg, #0A0E14 0%, #0F141C 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--tkt-font-title); color: var(--tkt-ink); line-height: 1.18; letter-spacing: -0.015em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: var(--tkt-accent); }
strong { color: var(--tkt-ink); font-weight: 600; }
:focus-visible { outline: 3px solid var(--tkt-accent); outline-offset: 2px; border-radius: 6px; }

/* ---------- Coquilles de mise en page ---------- */
.tkt-shell { width: 100%; max-width: var(--tkt-shell); margin: 0 auto; padding-left: 18px; padding-right: 18px; }
.tkt-band { padding: 54px 0; }
.tkt-band--tight { padding: 38px 0; }
.tkt-band__eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tkt-accent); margin-bottom: 10px;
}
.tkt-band__title { font-size: clamp(1.5rem, 5vw, 2.1rem); margin-bottom: .6em; }
.tkt-band__lead { color: var(--tkt-body); max-width: 70ch; }

/* ---------- Boutons / actions ---------- */
.tkt-action {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 0 22px;
  font-family: var(--tkt-font-title); font-size: 1rem; font-weight: 700; text-decoration: none;
  border: 1px solid transparent; border-radius: 999px; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.tkt-action--solid {
  color: #06121A; background: linear-gradient(110deg, var(--tkt-accent), var(--tkt-accent-2));
  box-shadow: 0 10px 26px -10px rgba(51, 211, 237, 0.75);
}
.tkt-action--solid:hover { transform: translateY(-1px); filter: brightness(1.06); }
.tkt-action--ghost {
  color: var(--tkt-ink); background: transparent; border-color: var(--tkt-line-strong);
}
.tkt-action--ghost:hover { background: rgba(51, 211, 237, 0.10); }
.tkt-action--block { width: 100%; }

/* ---------- Header / masthead (sticky) ---------- */
.tkt-masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 20, 0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tkt-line);
}
.tkt-masthead__inner { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.tkt-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.tkt-brand__logo { height: 30px; width: 30px; }
.tkt-brand__name { font-family: var(--tkt-font-title); font-weight: 700; font-size: .98rem; color: var(--tkt-ink); white-space: nowrap; }
.tkt-brand__name b { color: var(--tkt-accent); font-weight: 800; }
.tkt-nav { display: none; margin-left: auto; gap: 22px; }
.tkt-nav__link { color: var(--tkt-body); text-decoration: none; font-size: .92rem; font-weight: 500; }
.tkt-nav__link:hover { color: var(--tkt-ink); }
.tkt-masthead__cta { margin-left: auto; min-height: 44px; padding: 0 16px; font-size: .9rem; }

@media (min-width: 900px) {
  .tkt-nav { display: flex; }
  .tkt-masthead__cta { margin-left: 0; }
}

/* ============================================================
   HERO — coupon centré, above the fold (visuel, peu de texte).
   Le bloc rédactionnel SEO « C'est quoi » est une section plus bas.
   ============================================================ */
.tkt-hero { position: relative; padding: 26px 0 18px; }
@media (min-width: 760px) { .tkt-hero { padding: 52px 0 32px; } }
.tkt-hero__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.tkt-hero__title { font-size: clamp(1.8rem, 7vw, 2.9rem); font-weight: 800; }
.tkt-hero__title b { background: linear-gradient(90deg, var(--tkt-accent), var(--tkt-accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tkt-hero__lede { font-size: clamp(1.05rem, 3.4vw, 1.22rem); color: var(--tkt-body); margin-bottom: 24px; }
.tkt-hero__lede b { color: var(--tkt-green); }

.tkt-hero__stage { position: relative; }
.tkt-hero__stage::before {
  content: ""; position: absolute; inset: -10% -6% -6%; z-index: 0;
  background:
    radial-gradient(closest-side at 35% 40%, rgba(51, 211, 237, 0.40), transparent 72%),
    radial-gradient(closest-side at 75% 70%, rgba(160, 93, 247, 0.34), transparent 72%);
  filter: blur(16px); pointer-events: none;
}

/* ---------- La carte COUPON / TICKET ---------- */
.tkt-coupon {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--tkt-surface-2), var(--tkt-surface));
  border: 1px solid var(--tkt-line-strong);
  border-radius: var(--tkt-radius-lg);
  box-shadow: var(--tkt-shadow), var(--tkt-glow);
  overflow: hidden;
}
.tkt-coupon__badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(55, 214, 122, 0.14); color: var(--tkt-green);
  border: 1px solid rgba(55, 214, 122, 0.45);
  font-family: var(--tkt-font-title); font-weight: 700; font-size: .76rem; letter-spacing: .06em;
  padding: 6px 11px; border-radius: 999px;
}
.tkt-coupon__top { padding: 28px 22px 22px; text-align: center; }
.tkt-coupon__label { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--tkt-muted); margin-bottom: 8px; }
.tkt-coupon__code {
  font-family: var(--tkt-font-mono); font-weight: 700;
  font-size: clamp(2.1rem, 11vw, 3.1rem); letter-spacing: .06em;
  background: linear-gradient(90deg, var(--tkt-accent), var(--tkt-accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  word-break: break-word; line-height: 1.1; margin: 4px 0 16px;
}
.tkt-coupon__copy {
  -webkit-appearance: none; appearance: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; width: 100%; max-width: 340px; padding: 0 18px;
  font-family: var(--tkt-font-title); font-weight: 700; font-size: 1rem;
  color: var(--tkt-ink); background: var(--tkt-bg-soft);
  border: 1px dashed var(--tkt-line-strong); border-radius: 12px; cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.tkt-coupon__copy:hover { border-color: var(--tkt-accent); color: var(--tkt-accent); }
.tkt-coupon__copy--done { color: var(--tkt-green); border-color: var(--tkt-green); border-style: solid; }

/* Perforation : ligne pointillée + encoches semi-circulaires (effet ticket) */
.tkt-coupon__perf { position: relative; height: 0; border-top: 2px dashed var(--tkt-line-strong); margin: 4px 24px; }
.tkt-coupon__perf::before,
.tkt-coupon__perf::after {
  content: ""; position: absolute; top: 50%; width: 30px; height: 30px;
  background: var(--tkt-bg); border-radius: 50%; transform: translateY(-50%);
}
.tkt-coupon__perf::before { left: -39px; }
.tkt-coupon__perf::after { right: -39px; }

.tkt-coupon__bottom { padding: 22px 22px 24px; text-align: center; }
.tkt-coupon__cta { width: 100%; max-width: 360px; }
.tkt-coupon__note { font-size: .82rem; color: var(--tkt-muted); margin: 14px 0 0; }
.tkt-coupon__note b { color: var(--tkt-body); }

/* Bandeau de réassurance sous le coupon */
.tkt-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 18px 0 0; padding: 0; list-style: none; }
.tkt-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--tkt-body);
  background: var(--tkt-surface); border: 1px solid var(--tkt-line);
  padding: 6px 11px; border-radius: 999px;
}
.tkt-badge i { color: var(--tkt-green); font-style: normal; }

/* ---------- Intro SEO (section sous la flottaison) ---------- */
.tkt-intro__title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
.tkt-intro__lead { font-size: 1.05rem; }
.tkt-intro p { max-width: 72ch; }
.tkt-intro__lead .tkt-mark { color: var(--tkt-accent); font-weight: 700; }
.tkt-intro__lead .tkt-mark--green { color: var(--tkt-green); }

/* ---------- Étapes ---------- */
.tkt-steps__grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .tkt-steps__grid { grid-template-columns: repeat(3, 1fr); } }
.tkt-step {
  background: var(--tkt-surface); border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius);
  padding: 22px 20px; position: relative;
}
.tkt-step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  font-family: var(--tkt-font-title); font-weight: 800; color: #06121A;
  background: linear-gradient(135deg, var(--tkt-accent), var(--tkt-accent-2)); border-radius: 12px; margin-bottom: 12px;
}
.tkt-step__title { font-size: 1.08rem; margin-bottom: .35em; }
.tkt-step__text { font-size: .96rem; margin: 0; color: var(--tkt-body); }
.tkt-step__text code { font-family: var(--tkt-font-mono); color: var(--tkt-accent); background: rgba(51, 211, 237, 0.12); padding: 1px 6px; border-radius: 6px; }

/* ---------- Tableau économies ---------- */
.tkt-save__wrap { overflow-x: auto; border-radius: var(--tkt-radius); border: 1px solid var(--tkt-line); }
.tkt-save__table { width: 100%; border-collapse: collapse; min-width: 460px; font-variant-numeric: tabular-nums; }
.tkt-save__table caption { text-align: left; padding: 14px 16px; color: var(--tkt-muted); font-size: .9rem; }
.tkt-save__table th, .tkt-save__table td { padding: 13px 16px; text-align: right; border-bottom: 1px solid var(--tkt-line); }
.tkt-save__table th:first-child, .tkt-save__table td:first-child { text-align: left; }
.tkt-save__table thead th { background: var(--tkt-surface-2); color: var(--tkt-ink); font-family: var(--tkt-font-title); font-size: .9rem; }
.tkt-save__table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.tkt-save__table tbody tr:last-child td { border-bottom: 0; }
.tkt-save__gift { color: var(--tkt-green); font-weight: 700; }
.tkt-callout {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; padding: 16px 18px;
  background: rgba(55, 214, 122, 0.08); border: 1px solid rgba(55, 214, 122, 0.30); border-radius: var(--tkt-radius);
}
.tkt-callout b { color: var(--tkt-green); }

/* ---------- Offres ---------- */
.tkt-offers__grid { display: grid; gap: 16px; }
@media (min-width: 820px) { .tkt-offers__grid { grid-template-columns: repeat(3, 1fr); } }
.tkt-deal {
  display: flex; flex-direction: column; background: var(--tkt-surface);
  border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius); padding: 22px 20px;
  position: relative; overflow: hidden;
}
.tkt-deal::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--tkt-accent), var(--tkt-accent-2)); }
.tkt-deal__tag { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--tkt-accent); }
.tkt-deal__name { font-size: 1.15rem; margin: 6px 0 4px; }
.tkt-deal__price { font-family: var(--tkt-font-title); font-weight: 700; color: var(--tkt-ink); font-size: 1.02rem; margin-bottom: 10px; }
.tkt-deal__price span { color: var(--tkt-muted); font-weight: 500; font-size: .85rem; }
.tkt-deal__desc { font-size: .94rem; color: var(--tkt-body); flex: 1 1 auto; margin-bottom: 16px; }
.tkt-deal__cta { width: 100%; }

/* ---------- Versus RD / TF ---------- */
.tkt-versus { display: grid; gap: 16px; }
@media (min-width: 760px) { .tkt-versus { grid-template-columns: 1fr 1fr; } }
.tkt-versus__col { background: var(--tkt-surface); border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius); padding: 22px 20px; }
.tkt-versus__col h3 { font-size: 1.1rem; }
.tkt-versus__kind { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tkt-versus__col--rd .tkt-versus__kind { color: var(--tkt-accent-2); }
.tkt-versus__col--tf .tkt-versus__kind { color: var(--tkt-accent); }

/* ---------- Listes de réassurance / valeur ---------- */
.tkt-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.tkt-list li { position: relative; padding-left: 30px; }
.tkt-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700;
  color: var(--tkt-green); background: rgba(55, 214, 122, 0.14); border-radius: 6px;
}

/* ---------- Preuves de résultats ---------- */
.tkt-proof__grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .tkt-proof__grid { grid-template-columns: repeat(3, 1fr); } }
.tkt-proof__item { text-align: center; background: var(--tkt-surface); border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius); padding: 24px 18px; }
.tkt-proof__metric { font-family: var(--tkt-font-title); font-weight: 800; font-size: 1.7rem; color: var(--tkt-green); }
.tkt-proof__metric span { color: var(--tkt-muted); font-weight: 600; }
.tkt-proof__caption { font-size: .92rem; color: var(--tkt-body); margin: 6px 0 0; }
.tkt-proof__source { font-size: .82rem; color: var(--tkt-muted); margin-top: 18px; font-style: italic; }

/* ---------- Médias / captures ---------- */
.tkt-shot { border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius); overflow: hidden; box-shadow: var(--tkt-shadow); }
.tkt-shot img { width: 100%; }
.tkt-figure { margin: 0; }
.tkt-figure__cap { font-size: .85rem; color: var(--tkt-muted); margin-top: 8px; text-align: center; }

/* ---------- FAQ (accordéon) ---------- */
.tkt-faq { display: grid; gap: 12px; }
.tkt-faq__item { background: var(--tkt-surface); border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius); overflow: hidden; }
.tkt-faq__q {
  -webkit-appearance: none; appearance: none; width: 100%; text-align: left;
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  min-height: 56px; padding: 16px 18px; cursor: pointer;
  font-family: var(--tkt-font-title); font-weight: 600; font-size: 1.02rem; color: var(--tkt-ink);
  background: transparent; border: 0;
}
.tkt-faq__q:hover { color: var(--tkt-accent); }
.tkt-faq__icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .2s ease; }
.tkt-faq__icon::before, .tkt-faq__icon::after { content: ""; position: absolute; background: var(--tkt-accent); border-radius: 2px; }
.tkt-faq__icon::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.tkt-faq__icon::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform .2s ease; }
.tkt-faq__q[aria-expanded="true"] .tkt-faq__icon::after { transform: scaleY(0); }
.tkt-faq__a { padding: 0 18px 18px; color: var(--tkt-body); font-size: .98rem; }
.tkt-faq__a p { margin: 0; }

/* ---------- Coupon final ---------- */
.tkt-finale { text-align: center; }
.tkt-finale__card {
  max-width: 560px; margin: 0 auto; background: linear-gradient(180deg, var(--tkt-surface-2), var(--tkt-surface));
  border: 1px solid var(--tkt-line-strong); border-radius: var(--tkt-radius-lg); padding: 30px 22px;
  box-shadow: var(--tkt-glow);
}
.tkt-finale__code { font-family: var(--tkt-font-mono); font-weight: 700; font-size: clamp(1.8rem, 9vw, 2.6rem); letter-spacing: .06em;
  background: linear-gradient(90deg, var(--tkt-accent), var(--tkt-accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 8px 0 18px; }

/* ---------- Bloc longue traîne + disclosure ---------- */
.tkt-longform { color: var(--tkt-body); }
.tkt-longform h2 { font-size: clamp(1.3rem, 4.5vw, 1.7rem); }
.tkt-longform h3 { font-size: 1.05rem; color: var(--tkt-ink); margin-top: 1.4em; }
.tkt-disclosure {
  margin-top: 24px; padding: 16px 18px; font-size: .9rem; color: var(--tkt-muted);
  background: var(--tkt-bg-soft); border: 1px solid var(--tkt-line); border-radius: var(--tkt-radius);
}
.tkt-disclosure b { color: var(--tkt-body); }

/* ---------- Footer ---------- */
.tkt-footer { border-top: 1px solid var(--tkt-line); padding: 36px 0; background: rgba(0, 0, 0, 0.25); }
.tkt-footer__top { display: flex; flex-direction: column; gap: 18px; }
.tkt-footer__brand { display: flex; align-items: center; gap: 10px; }
.tkt-footer__nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.tkt-footer__nav a { color: var(--tkt-body); text-decoration: none; font-size: .92rem; }
.tkt-footer__nav a:hover { color: var(--tkt-ink); }
.tkt-footer__legal { margin-top: 22px; font-size: .84rem; color: var(--tkt-muted); }
.tkt-footer__legal a { color: var(--tkt-accent); }
@media (min-width: 760px) {
  .tkt-footer__top { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Cartes entièrement cliquables (lien d'affiliation) ---------- */
a.tkt-step, a.tkt-versus__col, a.tkt-proof__item { display: block; }
a.tkt-step, a.tkt-deal, a.tkt-versus__col, a.tkt-proof__item {
  text-decoration: none; color: inherit; cursor: pointer;
  transition: transform .14s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
a.tkt-step:hover, a.tkt-deal:hover, a.tkt-versus__col:hover, a.tkt-proof__item:hover {
  transform: translateY(-3px);
  border-color: var(--tkt-line-strong);
  box-shadow: var(--tkt-shadow);
}
a.tkt-step:focus-visible, a.tkt-deal:focus-visible,
a.tkt-versus__col:focus-visible, a.tkt-proof__item:focus-visible { border-color: var(--tkt-accent); }
a.tkt-step:hover .tkt-step__title, a.tkt-deal:hover .tkt-deal__name { color: var(--tkt-accent); }
a.tkt-deal:hover .tkt-deal__cta { background: rgba(51, 211, 237, 0.12); border-color: var(--tkt-line-strong); }

/* ---------- Animations ---------- */
@keyframes tkt-shimmer { to { background-position: -200% center; } }
@keyframes tkt-glow-pulse {
  0%, 100% { box-shadow: var(--tkt-shadow), 0 0 48px -14px rgba(51, 211, 237, 0.45); }
  50%      { box-shadow: var(--tkt-shadow), 0 0 74px -10px rgba(160, 93, 247, 0.55); }
}
@keyframes tkt-badge-pop {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* Décoratif — activé seulement si le mouvement est autorisé (.tkt-js) */
.tkt-js .tkt-coupon,
.tkt-js .tkt-finale__card { animation: tkt-glow-pulse 5s ease-in-out infinite; }
.tkt-js .tkt-coupon__badge { animation: tkt-badge-pop 2.8s ease-in-out infinite; }
.tkt-js .tkt-coupon__code,
.tkt-js .tkt-finale__code {
  background-image: linear-gradient(90deg, var(--tkt-accent), var(--tkt-accent-2), var(--tkt-accent));
  background-size: 200% auto;
  animation: tkt-shimmer 7s linear infinite;
}

/* Zoom doux des captures au survol */
.tkt-shot img { transition: transform .5s ease; }
.tkt-shot:hover img { transform: scale(1.03); }

/* Apparition au scroll (reveal) — masqué uniquement si .tkt-js est présent */
.tkt-js .tkt-hero,
.tkt-js .tkt-intro,
.tkt-js .tkt-steps__grid > *,
.tkt-js .tkt-offers__grid > *,
.tkt-js .tkt-versus > *,
.tkt-js .tkt-proof__grid > *,
.tkt-js .tkt-faq > *,
.tkt-js .tkt-save__wrap,
.tkt-js .tkt-callout,
.tkt-js .tkt-figure,
.tkt-js .tkt-finale__card,
.tkt-js .tkt-longform > *,
.tkt-js .tkt-badges > *,
.tkt-js .tkt-list > li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}
.tkt-js .is-in { opacity: 1 !important; transform: none !important; }

/* Cascade dans les rangées */
.tkt-js .tkt-steps__grid > *:nth-child(2),
.tkt-js .tkt-offers__grid > *:nth-child(2),
.tkt-js .tkt-proof__grid > *:nth-child(2),
.tkt-js .tkt-versus > *:nth-child(2),
.tkt-js .tkt-badges > *:nth-child(2),
.tkt-js .tkt-list > li:nth-child(2) { transition-delay: .08s; }
.tkt-js .tkt-steps__grid > *:nth-child(3),
.tkt-js .tkt-offers__grid > *:nth-child(3),
.tkt-js .tkt-proof__grid > *:nth-child(3),
.tkt-js .tkt-badges > *:nth-child(3),
.tkt-js .tkt-list > li:nth-child(3) { transition-delay: .16s; }
.tkt-js .tkt-list > li:nth-child(4),
.tkt-js .tkt-badges > *:nth-child(4) { transition-delay: .24s; }

/* ---------- Accessibilité : préférences de mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
