:root {
  --ink: #1B1F26;
  --ink-2: #242933;
  --ink-3: #2C323D;
  --ink-4: #3A4150;
  --paper: #F3EFE3;
  --paper-2: #EAE5D6;
  --paper-3: #E1DBC8;
  --rule: #D5CFBC;
  --muted: #6B6E73;
  --lime: #9BD32A;
  --lime-deep: #6F981A;
  --bleu: #1853C8;
  --bleu-2: #2D6EE3;
  --stop: #E83928;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 1rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, ::before, ::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 .65rem;
  color: inherit;
}
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; }

p { margin: 0 0 1em; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

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

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--lime); padding: .75rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 1000; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink-3);
}
.topbar-in {
  padding: .9rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand {
  display: flex; align-items: center; gap: .8rem;
  color: var(--paper);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--lime);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 3px;
}
.brand-w { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem; }
.brand-sub { font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .1em; color: var(--paper-3); text-transform: uppercase; }
.status {
  display: flex; align-items: center; gap: .55rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .73rem;
  letter-spacing: .14em;
  color: var(--lime);
}
.status-dot {
  width: 9px; height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(155, 211, 42, .18);
}
.status-sep { color: var(--ink-4); }

/* Frame: sticky rail + content */
.frame {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  background: var(--paper);
}

/* Rail */
.rail {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 1.7rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column;
  border-right: 1px solid var(--ink-3);
}
.rail-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  color: var(--paper-3);
  border-bottom: 1px solid var(--ink-3);
  padding-bottom: .8rem;
}
.rail-h span { color: var(--lime); }
.rail-toc {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex; flex-direction: column;
  gap: .2rem;
}
.rail-toc a {
  display: flex; align-items: baseline; gap: .8rem;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
  padding: .5rem .25rem;
  border-bottom: 1px dashed transparent;
}
.rail-toc a:hover {
  text-decoration: none;
  color: var(--lime);
  border-bottom-color: var(--ink-4);
}
.rail-toc a span {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--lime);
  min-width: 22px;
}
.rail-cta {
  display: block;
  margin: 1.5rem 0 .8rem;
  padding: .7rem .85rem;
  background: var(--lime);
  color: var(--ink) !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
  border-radius: 3px;
}
.rail-cta:hover { text-decoration: none; background: #B0E440; }
.rail-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--paper-3);
  margin: 0;
  line-height: 1.6;
}

/* Content */
.content { min-width: 0; max-width: 1020px; }

/* Hero */
.hero {
  padding: 4rem 2.6rem 4.2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.hero-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 1.6rem;
}
.hero-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0 0 1.8rem;
  display: flex; flex-direction: column;
}
.hero-h span { display: block; }
.hero-h span:nth-child(2) { padding-left: 2.4em; color: var(--ink-4); }
.hero-stress { color: var(--bleu); }
.hero-mut {
  font-size: .42em !important;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--muted);
  padding-left: 1em;
  margin-top: .8rem !important;
}
.hero-lead {
  font-size: 1.12rem;
  max-width: 56ch;
  color: var(--ink-3);
  margin: 0 0 2rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .8rem;
}
.b-1, .b-2 {
  display: inline-block;
  padding: .9rem 1.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 3px;
  border: 2px solid var(--ink);
}
.b-1 {
  background: var(--ink);
  color: var(--paper) !important;
}
.b-1:hover { text-decoration: none; background: var(--bleu); border-color: var(--bleu); }
.b-2 {
  background: transparent;
  color: var(--ink) !important;
}
.b-2:hover { text-decoration: none; background: var(--ink); color: var(--paper) !important; }

/* Statband */
.statband {
  background: var(--ink);
  color: var(--paper);
  padding: 2.4rem 2.6rem;
}
.statband ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.statband li {
  padding: .4rem 1.6rem .4rem 0;
  border-right: 1px solid var(--ink-3);
}
.statband li:last-child { border-right: 0; }
.statband li + li { padding-left: 1.6rem; }
.s-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin: 0 0 .5rem;
}
.s-v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  margin: 0 0 .35rem;
}
.s-v span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--paper-3);
  margin-left: .25rem;
  letter-spacing: 0;
}
.s-sub {
  font-size: .82rem;
  color: var(--paper-3);
  margin: 0;
}

/* Bands */
.band {
  padding: 4rem 2.6rem;
  background: var(--paper);
}
.band-dark {
  background: var(--ink-2);
  color: var(--paper);
}
.band-dark .band-h { color: var(--paper); }
.band-light {
  background: var(--paper-2);
}
.band-signals {
  background: var(--ink);
  color: var(--paper);
  padding: 2.4rem 2.6rem;
}
.band-faq {
  background: var(--paper-2);
}

.lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: .73rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 1.2rem;
}
.lab-lime { color: var(--lime); }
.band-dark .lab { color: var(--lime); }
.band-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  max-width: 30ch;
}

/* Parcours */
.parcours {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: .4rem;
  counter-reset: pc;
}
.parcours li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--ink-3);
  align-items: start;
}
.parcours li:last-child { border-bottom: 1px solid var(--ink-3); }
.p-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--lime);
}
.parcours h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--paper);
  margin: 0 0 .35rem;
}
.parcours p {
  color: var(--paper-3);
  font-size: .98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 62ch;
}

/* Formations cards */
.form-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--bleu);
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  border-radius: 3px;
}
.form-card:nth-child(2) { border-top-color: var(--lime-deep); }
.form-card:nth-child(3) { border-top-color: var(--stop); }
.form-card:nth-child(4) { border-top-color: var(--bleu-2); }
.form-card:nth-child(5) { border-top-color: var(--ink); }
.form-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 .6rem;
}
.form-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 .7rem;
}
.form-card p {
  font-size: .95rem;
  color: var(--ink-3);
  margin: 0 0 .9rem;
}
.form-card ul {
  margin: 0 0 0 0;
  padding-left: 1.1rem;
  font-size: .9rem;
  color: var(--ink-3);
}
.form-card li { margin-bottom: .25rem; }

/* Tarifs table */
.tarifs {
  width: 100%;
  border-collapse: collapse;
  background: var(--ink);
  color: var(--paper);
  font-size: .96rem;
}
.tarifs thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  padding: 1rem 1.2rem;
  color: var(--lime);
  border-bottom: 1px solid var(--ink-3);
  background: var(--ink-2);
}
.tarifs tbody th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 1.05rem 1.2rem;
  color: var(--paper);
  width: 30%;
  border-bottom: 1px solid var(--ink-3);
}
.tarifs tbody td {
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--ink-3);
  color: var(--paper-3);
  vertical-align: top;
}
.tarifs tbody td:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
  color: var(--lime);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
  width: 22%;
}
.tarif-foot {
  margin-top: 1.2rem;
  font-size: .87rem;
  color: var(--paper-3);
  max-width: 70ch;
}

/* Creed (pedago) */
.creed {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 0;
}
.creed li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rule);
}
.creed li:last-child { border-bottom: 1px solid var(--rule); }
.cr-lt {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--bleu);
  line-height: 1;
}
.creed h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  margin: 0 0 .55rem;
  max-width: 50ch;
}
.creed p {
  color: var(--ink-3);
  font-size: 1rem;
  margin: 0;
  max-width: 64ch;
}

/* Avis */
.rate-block {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.rate-big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--bleu);
}
.rate-stars {
  color: var(--lime-deep);
  font-size: 1.4rem;
  letter-spacing: .15em;
}
.rate-cnt {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  color: var(--muted);
  margin-left: auto;
}
.avis-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.avis-list blockquote {
  background: var(--paper);
  border-left: 3px solid var(--lime);
  padding: 1.2rem 1.4rem;
  margin: 0;
  border-radius: 0 3px 3px 0;
}
.avis-list blockquote p {
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 .6rem;
}
.avis-list blockquote footer {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Signals */
.signals {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: .55rem;
}
.signals li {
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  letter-spacing: .12em;
  padding: .55rem .85rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 3px;
  font-weight: 500;
}
.signals li:nth-child(3n) {
  background: transparent;
  color: var(--lime);
  border: 1px solid var(--lime);
}
.signals li:nth-child(5n) {
  background: var(--bleu);
  color: var(--paper);
}

/* Contact dl */
.contact-dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.1rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  max-width: 70ch;
}
.contact-dl dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--lime-deep);
  padding-top: .2rem;
  text-transform: uppercase;
}
.contact-dl dd { margin: 0; color: var(--ink-2); }
.contact-dl dd a { color: var(--bleu); font-weight: 500; }

/* FAQ */
.band-faq details {
  border-top: 1px solid var(--rule);
  padding: 1.05rem 0;
}
.band-faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.band-faq summary {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
}
.band-faq summary::-webkit-details-marker { display: none; }
.band-faq summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  color: var(--bleu);
  transition: transform .2s;
}
.band-faq details[open] summary::after { content: '−'; }
.band-faq details p {
  margin: .9rem 0 0;
  color: var(--ink-3);
  font-size: .97rem;
  max-width: 70ch;
}

/* Big CTA */
.bigcta {
  padding: 5rem 2.6rem 5.6rem;
  background: var(--bleu);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bigcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,.03) 28px 29px);
  pointer-events: none;
}
.bigcta-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
  position: relative;
}
.bigcta-phone {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -0.03em;
  color: var(--paper) !important;
  margin: .4rem 0 1.2rem;
  position: relative;
}
.bigcta-phone:hover { text-decoration: none; color: var(--lime) !important; }
.bigcta-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--paper);
  margin: 0 0 .4rem;
  position: relative;
}
.bigcta-sub {
  font-size: .9rem;
  color: rgba(243, 239, 227, .82);
  margin: 0;
  position: relative;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--paper-3);
  padding: 2.6rem 2.6rem 3rem;
  font-size: .9rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.foot-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--paper);
  margin: 0 0 .35rem;
}
.footer a { color: var(--lime); }
.foot-credit { font-style: italic; color: var(--paper-3); }

/* Responsive */
@media (max-width: 900px) {
  .frame { grid-template-columns: 1fr; }
  .rail {
    position: static;
    height: auto;
    flex-direction: column;
    border-right: 0;
    border-bottom: 1px solid var(--ink-3);
    padding: 1.4rem;
  }
  .rail-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .1rem .8rem;
    margin-bottom: 1rem;
  }
  .rail-cta { margin-top: 1rem; }
  .hero, .band, .statband, .band-signals { padding-left: 1.4rem; padding-right: 1.4rem; }
  .hero { padding-top: 3rem; padding-bottom: 3rem; }
  .band { padding-top: 3rem; padding-bottom: 3rem; }
  .hero-h span:nth-child(2) { padding-left: 1.2em; }
  .statband ul { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0; }
  .statband li { border-right: 0; padding: 0 1rem; }
  .statband li:nth-child(2n) { border-right: 0; }
  .parcours li { grid-template-columns: 70px 1fr; gap: .8rem; }
  .creed li { grid-template-columns: 48px 1fr; gap: .8rem; }
  .contact-dl { grid-template-columns: 72px 1fr; }
  .tarifs tbody th, .tarifs tbody td { padding: .85rem .8rem; font-size: .9rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .bigcta { padding: 3.4rem 1.4rem; }
}
@media (max-width: 480px) {
  .topbar-in { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .status { font-size: .68rem; }
  .rate-block { flex-wrap: wrap; }
  .rate-cnt { margin-left: 0; flex-basis: 100%; }
}

/* ============================================================
   ANIMATIONS — Template C sticky-rail
   auto-ecole-bertili · WebStudio Caraïbes
   Toutes les animations sont encapsulées dans
   prefers-reduced-motion: no-preference.
   Le bloc reduce en tête de fichier reste autoritaire.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* 1. Status-dot pulse — signe de vie discret */
  @keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(155, 211, 42, .18); }
    50%       { box-shadow: 0 0 0 9px rgba(155, 211, 42, .04); }
  }
  .status-dot { animation: dot-pulse 2.6s ease-in-out infinite; }

  /* 2. Hero H1 — entrée staggerée par span */
  @keyframes hero-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-h span {
    opacity: 0;
    animation: hero-in .55s ease forwards;
  }
  .hero-h span:nth-child(1) { animation-delay: .05s; }
  .hero-h span:nth-child(2) { animation-delay: .18s; }
  .hero-h span:nth-child(3) { animation-delay: .31s; }
  .hero-h span:nth-child(4) { animation-delay: .44s; }

  /* 3. Hero lead + CTA — glissement doux */
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-lead {
    opacity: 0;
    animation: fade-up .5s ease .58s forwards;
  }
  .hero-cta {
    opacity: 0;
    animation: fade-up .5s ease .72s forwards;
  }

  /* 4. Boutons CTA — transitions douces */
  .b-1, .b-2 {
    transition: background .22s ease, border-color .22s ease,
                color .22s ease, transform .18s ease;
  }
  .b-1:hover, .b-2:hover { transform: translateY(-2px); }

  /* 5. Rail CTA — micro-lift */
  .rail-cta { transition: background .2s ease, transform .18s ease; }
  .rail-cta:hover { transform: translateY(-1px); }

  /* 6. Rail toc links — transition couleur */
  .rail-toc a { transition: color .18s ease, border-bottom-color .18s ease; }

  /* 7. Form-card — lift au survol */
  .form-card {
    transition: transform .24s ease, box-shadow .24s ease;
  }
  .form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(27, 31, 38, .13);
  }

  /* 8. Avis blockquote — micro-lift + accent */
  .avis-list blockquote {
    transition: transform .22s ease, border-left-color .22s ease;
  }
  .avis-list blockquote:hover {
    transform: translateY(-2px);
    border-left-color: var(--bleu);
  }

  /* 9. Tarifs — surbrillance ligne au survol */
  .tarifs tbody tr { transition: background .18s ease; }
  .tarifs tbody tr:hover th,
  .tarifs tbody tr:hover td { background: rgba(155, 211, 42, .07); }

  /* 10. FAQ summary — couleur au survol */
  .band-faq summary { transition: color .18s ease; }
  .band-faq summary:hover { color: var(--bleu); }

  /* 11. BigCTA phone — transition couleur */
  .bigcta-phone { transition: color .2s ease; }

  /* 12. Scroll-reveal générique (IO vanilla) */
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
  }
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* 13. Stagger-reveal pour listes (parcours, form-list, creed, avis) */
  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .52s ease, transform .52s ease;
  }
  [data-reveal-stagger].revealed > * { opacity: 1; transform: translateY(0); }
  [data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
  [data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: .08s; }
  [data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: .16s; }
  [data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: .24s; }
  [data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: .32s; }
  [data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: .40s; }
  [data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: .48s; }
  [data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: .56s; }

  /* 14. Signal tags — pop-in au scroll */
  .signals li {
    opacity: 0;
    transform: scale(.88);
    transition: opacity .3s ease, transform .3s ease;
  }
  .band-signals.revealed .signals li              { opacity: 1; transform: scale(1); }
  .band-signals.revealed .signals li:nth-child(1) { transition-delay: 0s; }
  .band-signals.revealed .signals li:nth-child(2) { transition-delay: .05s; }
  .band-signals.revealed .signals li:nth-child(3) { transition-delay: .10s; }
  .band-signals.revealed .signals li:nth-child(4) { transition-delay: .15s; }
  .band-signals.revealed .signals li:nth-child(5) { transition-delay: .20s; }
  .band-signals.revealed .signals li:nth-child(6) { transition-delay: .25s; }
  .band-signals.revealed .signals li:nth-child(7) { transition-delay: .30s; }
  .band-signals.revealed .signals li:nth-child(8) { transition-delay: .35s; }

}
