/* =========================================================
   NEXORA — Feuille de style principale
   Palette sombre premium, dégradés violet → cyan
   ========================================================= */

/* ---------- 1. Variables ---------- */
:root {
  --bg:            #07070c;
  --bg-2:          #0a0a13;
  --bg-3:          #0d0d19;
  --surface:       rgba(255, 255, 255, .035);
  --surface-2:     rgba(255, 255, 255, .06);
  --border:        rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .16);

  --text:          #f2f3f8;
  --text-soft:     #b9bccd;
  --text-muted:    #868ba3;

  --violet:        #8b5cff;
  --violet-deep:   #6b3fe6;
  --cyan:          #22d3ee;
  --grad:          linear-gradient(120deg, #8b5cff 0%, #6ea8ff 50%, #22d3ee 100%);
  --grad-soft:     linear-gradient(120deg, rgba(139, 92, 255, .16), rgba(34, 211, 238, .12));

  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  26px;

  --shadow:     0 20px 60px -20px rgba(0, 0, 0, .8);
  --shadow-glow: 0 0 0 1px rgba(139, 92, 255, .25), 0 24px 70px -25px rgba(139, 92, 255, .55);

  --maxw:       1200px;
  --pad:        clamp(1.15rem, 4vw, 2.5rem);

  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0; letter-spacing: -.02em; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

::selection { background: rgba(139, 92, 255, .35); color: #fff; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--violet);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Fond animé ---------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.orb-1 {
  width: 46vw; height: 46vw; min-width: 340px; min-height: 340px;
  top: -14vw; left: -10vw;
  background: radial-gradient(circle, rgba(139, 92, 255, .75), transparent 68%);
  animation: drift 26s var(--ease) infinite alternate;
}
.orb-2 {
  width: 40vw; height: 40vw; min-width: 300px; min-height: 300px;
  top: 32vh; right: -12vw;
  background: radial-gradient(circle, rgba(34, 211, 238, .5), transparent 68%);
  animation: drift 32s var(--ease) infinite alternate-reverse;
}
.orb-3 {
  width: 44vw; height: 44vw; min-width: 300px; min-height: 300px;
  bottom: -18vw; left: 22vw;
  background: radial-gradient(circle, rgba(110, 168, 255, .38), transparent 70%);
  animation: drift 38s var(--ease) infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6vw, 5vh, 0) scale(1.18); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
}

/* ---------- 4. Utilitaires ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { max-width: 860px; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 2px rgba(34, 211, 238, .8);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.75); }
}

/* ---------- 5. Boutons ---------- */
.btn {
  --btn-pad: .8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--btn-pad);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s, color .25s;
}
.btn svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--grad);
  color: #0a0713;
  box-shadow: 0 12px 34px -12px rgba(139, 92, 255, .85);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(139, 92, 255, 1);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: rgba(139, 92, 255, .6);
  transform: translateY(-2px);
}

.btn--lg { --btn-pad: 1.05rem 2rem; font-size: 1.02rem; }
.btn--full { width: 100%; }

/* ---------- 6. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding .3s var(--ease), background-color .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding: .6rem 0;
  background: rgba(7, 7, 12, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo { display: inline-flex; align-items: center; gap: .65rem; }
.logo__mark { width: 34px; height: 34px; flex: none; }
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: .18em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__list a {
  position: relative;
  font-size: .94rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .2s;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__list a:hover { color: var(--text); }
.nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(4rem, 9vh, 7rem);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--text-soft);
  max-width: 58ch;
  margin-bottom: 2.3rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.8rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust svg {
  width: 16px; height: 16px; flex: none;
  fill: none; stroke: var(--cyan); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Visuel tableau de bord */
.hero__visual { position: relative; }

.dash { padding: 1.5rem; }
.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.dash__title { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, .13);
  border: 1px solid rgba(34, 211, 238, .32);
  color: var(--cyan);
}
.badge--live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.dash__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: 1.35rem; }
.kpi {
  padding: .95rem 1.05rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.kpi__label { display: block; font-size: .76rem; color: var(--text-muted); margin-bottom: .3rem; }
.kpi__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.kpi__trend { font-size: .74rem; color: var(--text-muted); }
.kpi__trend.up { color: #4ade80; }

.dash__chart { margin-bottom: 1.25rem; }
.dash__chart svg { width: 100%; height: 110px; display: block; }
.chart-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 2.4s var(--ease) .4s forwards;
}
.chart-fill { opacity: 0; animation: fade 1.4s ease 1.6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }

.dash__rows { display: grid; gap: .65rem; }
.row { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: .75rem; }
.tag {
  font-size: .74rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-soft);
  text-align: center;
  background: var(--surface);
}
.bar {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 99px;
  background: var(--grad);
  transform-origin: left;
  animation: grow 1.5s var(--ease) .6s backwards;
}
@keyframes grow { from { transform: scaleX(0); } }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .82rem;
  background: rgba(13, 13, 25, .92);
}
.float-card svg {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: var(--cyan); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.float-card strong { display: block; font-size: .9rem; font-family: var(--font-display); }
.float-card span { color: var(--text-muted); font-size: .76rem; }
.float-card--1 { top: -22px; right: -14px; animation: floaty 6s ease-in-out infinite; }
.float-card--2 { bottom: -26px; left: -18px; animation: floaty 7.5s ease-in-out infinite reverse; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* ---------- 8. Bandeau défilant ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: scroll-x 42s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee__track span[aria-hidden] { color: var(--violet); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- 9. Sections ---------- */
.section { padding: clamp(4.5rem, 10vh, 7.5rem) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .022) 18%, rgba(255, 255, 255, .022) 82%, transparent); }

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section__title { font-size: clamp(1.85rem, 3.8vw, 2.9rem); font-weight: 700; margin-bottom: 1.15rem; }
.section__lead { color: var(--text-soft); font-size: 1.05rem; }

/* ---------- 10. Constat ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.pain-card {
  position: relative;
  padding: 2rem 1.6rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, background-color .3s;
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.pain-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--violet);
  margin-bottom: .9rem;
}
.pain-card h3 { font-size: 1.12rem; margin-bottom: .7rem; }
.pain-card p { color: var(--text-muted); font-size: .93rem; }

/* ---------- 11. Packs ---------- */
.packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.85rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.pack:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 255, .45);
  box-shadow: var(--shadow-glow);
}
.pack__glow {
  position: absolute;
  top: -50%; left: 50%;
  width: 130%; height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139, 92, 255, .22), transparent 62%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.pack:hover .pack__glow { opacity: 1; }

.pack--featured {
  border-color: rgba(139, 92, 255, .45);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(165deg, rgba(139, 92, 255, .13), rgba(34, 211, 238, .05));
}
.pack__ribbon {
  position: absolute;
  top: 1.35rem; right: 1.35rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .32rem .75rem;
  border-radius: 999px;
  background: var(--grad);
  color: #0a0713;
}

.pack__head { position: relative; margin-bottom: 1.5rem; }
.pack__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  margin-bottom: 1.15rem;
}
.pack__icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: url(#lg); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.pack__step {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .35rem;
}
.pack__name { font-size: 1.75rem; margin-bottom: .5rem; }
.pack__price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: .75rem;
}
.pack__price strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pack__price span { color: var(--text-muted); font-size: .9rem; }
.pack__tagline { color: var(--text-soft); font-size: .96rem; }

.pack__label {
  position: relative;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  padding-top: 1.4rem;
  margin-bottom: .9rem;
  border-top: 1px solid var(--border);
}
.pack__label--out { color: var(--text-muted); }

.pack__list {
  display: grid;
  gap: .7rem;
  margin-bottom: 1.35rem;
  position: relative;
}
.pack__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: .93rem;
  color: var(--text-soft);
}
.pack__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .42em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(139, 92, 255, .5);
}
.pack__list li::after {
  content: '';
  position: absolute;
  left: 4.5px; top: .68em;
  width: 6px; height: 3.5px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}
.pack__list li strong { color: var(--text); font-weight: 600; }

/* Liste « non inclus » : croix grise au lieu de la coche */
.pack__list--out li { color: var(--text-muted); }
.pack__list--out li::before {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border-strong);
}
.pack__list--out li::after {
  left: 4px; top: .63em;
  width: 7px; height: 7px;
  border: 0;
  transform: none;
  background:
    linear-gradient(45deg, transparent 44%, #7f8499 44%, #7f8499 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, #7f8499 44%, #7f8499 56%, transparent 56%);
}

.pack__meta {
  position: relative;
  display: grid;
  gap: .8rem;
  margin: 0 0 1.5rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
}
.pack__meta > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pack__meta dt {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: none;
}
.pack__meta dd { margin: 0; font-size: .88rem; color: var(--text); text-align: right; }

.pack__for {
  position: relative;
  font-size: .88rem;
  color: var(--text-muted);
  padding: .95rem 1.05rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
}
.pack__for strong { color: var(--text); }
.pack .btn { margin-top: auto; position: relative; }

.packs__note {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  color: var(--text-muted);
  font-size: .93rem;
}
.packs__note svg {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: var(--cyan); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.packs__note a { color: var(--cyan); font-weight: 600; white-space: nowrap; }
.packs__note a:hover { text-decoration: underline; }

/* ---------- 12. Méthode ---------- */
.steps {
  display: grid;
  gap: 1.15rem;
  counter-reset: step;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .3s, background-color .3s;
}
.step:hover { transform: translateX(6px); border-color: var(--border-strong); background: var(--surface-2); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  flex: none;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0a0713;
  background: var(--grad);
}
.step__body h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.step__body p { color: var(--text-muted); font-size: .95rem; max-width: 78ch; }

/* ---------- 13. Secteurs ---------- */
.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}
.sector {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .3s, background-color .3s;
}
.sector:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, .4);
  background: var(--surface-2);
}
.sector__ico { font-size: 1.6rem; display: block; margin-bottom: .8rem; }
.sector h3 { font-size: 1.03rem; margin-bottom: .4rem; }
.sector p { font-size: .86rem; color: var(--text-muted); }

/* ---------- 14. À propos ---------- */
.about {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about__text > p { color: var(--text-soft); margin-bottom: 1.1rem; max-width: 68ch; }
.about__text strong { color: var(--text); }

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.1rem;
  margin-top: 2.25rem;
}
.value {
  padding: 1.3rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid transparent;
  border-image: var(--grad) 1;
  border-image-slice: 1;
  border-width: 1px 1px 1px 2px;
}
.value h3 { font-size: 1rem; margin-bottom: .4rem; }
.value p { font-size: .87rem; color: var(--text-muted); }

.about__card { padding: 2rem 1.75rem; position: sticky; top: 100px; }
.about__card-title { font-size: 1.2rem; margin-bottom: 1.4rem; }
.facts { display: grid; gap: 1rem; margin: 0 0 1.75rem; }
.facts > div { padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.facts dd { margin: 0; font-size: .95rem; color: var(--text); }
.about__card-note { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: .85rem; }

/* ---------- 15. FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq__item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .3s, background-color .3s;
}
.faq__item[open] { border-color: rgba(139, 92, 255, .4); background: var(--surface-2); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq__item summary:hover { color: var(--cyan); }
.faq__body { padding: 0 1.4rem 1.35rem; }
.faq__body p { color: var(--text-muted); font-size: .95rem; }

/* ---------- 16. Contact ---------- */
.contact { position: relative; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__pitch { color: var(--text-soft); margin-bottom: 2.25rem; max-width: 55ch; }

.contact__list { display: grid; gap: 1.15rem; }
.contact__list li { display: flex; align-items: center; gap: 1rem; }
.contact__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
}
.contact__ico svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--cyan); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact__list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.contact__list a, .contact__list span:not(.contact__ico) { color: var(--text); font-size: .96rem; }
.contact__list a:hover { color: var(--cyan); }

/* Formulaire */
.contact__form { padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .86rem; font-weight: 500; color: var(--text-soft); }
.req { color: var(--violet); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .94rem;
  transition: border-color .25s, background-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field select option { background: #12121f; color: var(--text); }

.field input::placeholder, .field textarea::placeholder { color: #6a6e85; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 255, .75);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 3px rgba(139, 92, 255, .16);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .13);
}
.field__error { font-size: .8rem; color: #f87171; min-height: 0; }

.field--check { gap: .5rem; }
.check-row { display: flex; align-items: flex-start; gap: .7rem; }
.check-row input[type="checkbox"] {
  width: 19px; height: 19px;
  flex: none;
  margin-top: .18rem;
  accent-color: var(--violet);
  cursor: pointer;
}
.check-row label { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }
.check-row a { color: var(--cyan); text-decoration: underline; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { font-size: .9rem; text-align: center; min-height: 0; }
.form__status.is-ok { color: #4ade80; }
.form__status.is-error { color: #f87171; }
.form__legal { font-size: .78rem; color: var(--text-muted); text-align: center; }

/* ---------- 17. Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
  padding-top: clamp(3rem, 6vh, 4.5rem);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand .logo { margin-bottom: 1.1rem; }
.footer__brand p { color: var(--text-muted); font-size: .92rem; max-width: 40ch; }
.footer__col h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: grid; gap: .65rem; }
.footer__col a, .footer__col span { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer__col a:hover { color: var(--cyan); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .84rem;
  color: var(--text-muted);
}

/* ---------- 18. Bouton retour en haut ---------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(13, 13, 25, .9);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s, transform .3s var(--ease), visibility .3s, border-color .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--violet); }
.to-top svg {
  width: 19px; height: 19px;
  fill: none; stroke: var(--text); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- 19. Animation d'apparition ----------
   Principe : le contenu est TOUJOURS visible par défaut.
   L'animation ne s'active que si le script a pu marquer la page
   avec la classe « js ». Ainsi, un JavaScript bloqué, lent ou en
   erreur laisse un site parfaitement lisible au lieu d'une page
   blanche — ce qui, sur un site commercial, coûterait des clients.
   ------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 20. Pages légales ---------- */
.legal { padding: clamp(8rem, 15vh, 10rem) 0 clamp(4rem, 8vh, 6rem); }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.legal__updated { color: var(--text-muted); font-size: .88rem; margin-bottom: 3rem; }
.legal h2 {
  font-size: 1.3rem;
  margin: 2.75rem 0 .9rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.legal h3 { font-size: 1.02rem; margin: 1.5rem 0 .5rem; color: var(--text); }
.legal p, .legal li { color: var(--text-soft); font-size: .96rem; margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.2rem; }
.legal li { margin-bottom: .45rem; }
.legal a { color: var(--cyan); text-decoration: underline; }
.legal .todo {
  display: inline-block;
  padding: .1rem .5rem;
  border-radius: 6px;
  background: rgba(139, 92, 255, .18);
  border: 1px dashed rgba(139, 92, 255, .6);
  color: #d6c8ff;
  font-size: .88em;
  font-weight: 600;
}
.legal__back { display: inline-flex; align-items: center; gap: .5rem; margin-top: 3rem; }

/* ---------- 20 bis. Page tarifs ---------- */
.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;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__head--center .section__lead { margin-inline: auto; }

.pricing-hero { padding: clamp(8rem, 15vh, 10.5rem) 0 clamp(2rem, 4vh, 3rem); }

.pricing-assur {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem 2rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-assur li { display: inline-flex; align-items: center; gap: .5rem; }
.pricing-assur svg {
  width: 16px; height: 16px; flex: none;
  fill: none; stroke: var(--cyan); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.pricing { padding-top: clamp(2.5rem, 5vh, 4rem); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 3.1rem 1.9rem 2.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .35s, box-shadow .4s;
}
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 255, .5);
  box-shadow: var(--shadow-glow);
}
.price-card__glow {
  position: absolute;
  top: -55%; left: 50%;
  width: 140%; height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139, 92, 255, .26), transparent 62%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.price-card:hover .price-card__glow { opacity: 1; }

.price-card--featured {
  border-color: rgba(139, 92, 255, .5);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(165deg, rgba(139, 92, 255, .14), rgba(34, 211, 238, .05));
}
.price-card__ribbon {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 0 0 12px 12px;
  background: var(--grad);
  color: #0a0713;
  white-space: nowrap;
}

.price-card__head { position: relative; }
.price-card__kicker {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.price-card--featured .price-card__kicker { color: var(--cyan); }
.price-card__name { font-size: 1.75rem; margin-bottom: 1rem; }
.price-card__desc { color: var(--text-soft); font-size: .93rem; margin-bottom: 1.3rem; min-height: 2.6em; }
.price-card__amount { display: flex; align-items: baseline; gap: .45rem; }
.price-card__amount strong {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__amount span { color: var(--text-muted); font-size: 1rem; }
.price-card__note { font-size: .78rem; color: var(--text-muted); margin-top: .6rem; min-height: 2.4em; }

.price-card .btn { position: relative; }

.price-card__label {
  position: relative;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.price-card__list { position: relative; display: grid; gap: .7rem; }
.price-card__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: .92rem;
  color: var(--text-soft);
}
.price-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .42em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(139, 92, 255, .5);
}
.price-card__list li::after {
  content: '';
  position: absolute;
  left: 4.5px; top: .68em;
  width: 6px; height: 3.5px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}
.price-card__list li strong { color: var(--text); font-weight: 600; }

.price-card__label--out { color: var(--text-muted); }
.price-card__list--out li { color: var(--text-muted); }
.price-card__list--out li::before {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border-strong);
}
.price-card__list--out li::after {
  left: 4px; top: .63em;
  width: 7px; height: 7px;
  border: 0;
  transform: none;
  background:
    linear-gradient(45deg, transparent 44%, #7f8499 44%, #7f8499 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, #7f8499 44%, #7f8499 56%, transparent 56%);
}

.price-card__meta {
  position: relative;
  display: grid;
  gap: .8rem;
  margin: auto 0 0;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
}
.price-card__meta > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.price-card__meta dt {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: none;
}
.price-card__meta dd { margin: 0; font-size: .88rem; color: var(--text); text-align: right; }

.pricing-legal {
  margin-top: 2rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  color: var(--text-muted);
  font-size: .87rem;
  text-align: center;
}

/* Tableau comparatif */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
}
.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: .92rem;
}
.compare th, .compare td { text-align: left; padding: .95rem 1.15rem; }
.compare thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #0e0e1a;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-strong);
  text-align: center;
}
.compare thead th:first-child { text-align: left; font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; }
.compare thead th span {
  display: block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: .2rem;
}
.compare thead th.is-featured { color: var(--cyan); box-shadow: inset 0 -3px 0 0 var(--violet); }

.compare tbody th[scope="row"] { font-family: var(--font-sans); font-weight: 500; color: var(--text-soft); }
.compare tbody td, .compare tfoot td { text-align: center; color: var(--text-soft); }
.compare tbody tr:not(.compare__group) { border-top: 1px solid var(--border); transition: background-color .25s; }
.compare tbody tr:not(.compare__group):hover { background: rgba(255, 255, 255, .035); }
.compare td.is-featured { background: rgba(139, 92, 255, .07); }

.compare__group th {
  padding: 1.1rem 1.15rem .6rem;
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(139, 92, 255, .07);
  border-top: 1px solid var(--border-strong);
}

.compare .v { color: #4ade80; font-weight: 600; }
.compare .x { color: #5a5f77; }

.compare tfoot { border-top: 2px solid var(--border-strong); }
.compare tfoot td strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare tfoot th { color: var(--text); font-weight: 600; }
.compare__cta td { padding-top: .4rem; padding-bottom: 1.3rem; }

/* CTA final */
.final-cta {
  padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}
.final-cta .section__title { margin-bottom: 1rem; }
.final-cta > p { color: var(--text-soft); max-width: 60ch; margin-inline: auto; margin-bottom: 2rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }

@media (max-width: 780px) {
  .table-wrap {
    overflow-x: visible;
    border: 0;
    background: none;
  }
  .compare { min-width: 0; display: block; }
  .compare thead { display: none; }
  .compare tbody, .compare tfoot { display: block; }

  .compare tbody tr,
  .compare tfoot tr {
    display: block;
    margin-bottom: .9rem;
    padding: .3rem 0 .5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
  }
  .compare tbody tr.compare__group {
    margin: 1.75rem 0 .9rem;
    padding: 0;
    border: 0;
    background: none;
  }
  .compare__group th { display: block; border: 0; border-radius: var(--radius-sm); }

  .compare tbody th[scope="row"],
  .compare tfoot th[scope="row"] {
    display: block;
    padding: .8rem 1.1rem .35rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
  }
  .compare tbody td, .compare tfoot td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 1.1rem;
    text-align: right;
  }
  .compare tbody td::before, .compare tfoot td::before {
    content: attr(data-label);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .compare td.is-featured { background: rgba(139, 92, 255, .1); border-radius: 8px; }
  .compare__cta td { display: block; padding: .4rem 1.1rem; }
  .compare__cta td::before { display: block; margin-bottom: .4rem; text-align: left; }
  .compare__cta td:first-child { display: none; }
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-top: 1rem; }
  .about { grid-template-columns: 1fr; }
  .about__card { position: static; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    padding: 5rem 2rem 2rem;
    background: rgba(9, 9, 16, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }

  /* Le menu est en position fixe : il doit se caler sur l'écran entier.
     Or « backdrop-filter » sur l'en-tête en fait un bloc conteneur, ce qui
     enfermerait le menu dans la hauteur de la barre (112 px au lieu de 812)
     et couperait les premiers liens. On retire donc le flou tant que le
     menu est ouvert, en compensant par un fond opaque. */
  body.is-locked .header,
  body.is-locked .header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(7, 7, 12, .98);
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--border); }
  .nav__list a { display: block; padding: 1.1rem .25rem; font-size: 1.05rem; color: var(--text); }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: .5rem; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 76px; }
  .hero { padding-top: 7rem; }
  .hero__actions .btn { width: 100%; }
  .dash__kpis { grid-template-columns: 1fr; }
  .row { grid-template-columns: 108px 1fr; }
  .float-card--1 { right: -4px; top: -16px; }
  .float-card--2 { left: -4px; bottom: -18px; }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 1rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- 22. Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .chart-line { stroke-dashoffset: 0; }
  .chart-fill { opacity: 1; }
}

/* ---------- 23. Impression ---------- */
@media print {
  .bg-aurora, .header, .to-top, .marquee, .contact__form { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
