/* ═══════════════════════════════════════════════════════════════
   ATLAS PRO ONTV — atlaspro-ontvfr.com
   Design system : violet profond + accent or
   100 % fait main — aucun framework
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Fontes auto-hébergées ─────────────────────────────────── */
@font-face {
  font-family: 'Geist';
  src: url('../fonts/geist-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── 2. Tokens ────────────────────────────────────────────────── */
:root {
  --purple-950: #0d0318;
  --purple-900: #16052d;
  --purple-850: #21104a;
  --purple-800: #30115f;
  --purple-700: #5f24ba;
  --purple-600: #7440d8;
  --purple-500: #8b5cf6;
  --purple-100: #ede7fb;
  --purple-50:  #f7f4fe;

  --gold-400: #ffd84b;
  --gold-500: #f3cf22;
  --gold-600: #e0b90f;

  --green-500: #25d366;
  --green-600: #1aae52;
  --green-700: #128c7e;

  --text: #1e1730;
  --text-soft: #5d5476;
  --text-faint: #8a80a3;

  --bg: #ffffff;
  --bg-soft: #faf8ff;
  --border: rgba(95, 36, 186, .12);
  --border-strong: rgba(95, 36, 186, .22);

  --radius-sm: .65rem;
  --radius: 1.15rem;
  --radius-lg: 1.6rem;

  --shadow-sm: 0 4px 14px rgba(33, 16, 70, .07);
  --shadow-md: 0 16px 36px rgba(33, 16, 70, .10);
  --shadow-lg: 0 28px 60px rgba(33, 16, 70, .16);

  --container: 73rem;
  --header-h: 4.25rem;

  --font: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── 3. Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--purple-900);
  text-wrap: balance;
}

a { color: var(--purple-700); text-decoration: none; }
a:hover { color: var(--purple-600); }

ul[class], ol[class] { list-style: none; padding: 0; }

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

:focus-visible {
  outline: 2.5px solid var(--purple-600);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: rgba(95, 36, 186, .22); color: var(--purple-900); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0edf8; }
::-webkit-scrollbar-thumb { background: rgba(95, 36, 186, .35); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(95, 36, 186, .55); }

/* ── 4. Icônes ────────────────────────────────────────────────── */
.icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--fill { fill: currentColor; stroke: none; }

/* ── 5. Layout utilitaires ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding-block: clamp(3.75rem, 7.5vw, 6rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-soft) 0%, #f4efff 100%); }

.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-title .hl { color: var(--purple-700); }
.section-description {
  color: var(--text-soft);
  font-size: clamp(.98rem, 1.4vw, 1.06rem);
  line-height: 1.7;
}
.section-description strong { color: var(--text); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .95rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: var(--purple-100);
  border: 1px solid var(--border);
  color: var(--purple-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge .icon { width: .95rem; height: .95rem; }

/* ── 6. Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.6rem;
  border-radius: .9rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1.2;
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(160deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--purple-900);
  box-shadow: 0 8px 24px rgba(243, 207, 34, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary:hover {
  color: var(--purple-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(243, 207, 34, .38), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--purple-700);
}
.btn--outline:hover {
  background: var(--purple-50);
  border-color: var(--purple-600);
  color: var(--purple-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--purple {
  background: linear-gradient(160deg, var(--purple-700) 0%, var(--purple-600) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(95, 36, 186, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.btn--purple:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(95, 36, 186, .4), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn--whatsapp {
  background: linear-gradient(160deg, var(--green-500) 0%, var(--green-600) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .3), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn--whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .42), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.btn--sm { padding: .58rem 1.1rem; font-size: .86rem; border-radius: .7rem; }
.btn--md { padding: .8rem 1.6rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; border-radius: 1rem; }
.btn--block { width: 100%; }

/* ── 7. Header / navigation ───────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 3, 24, .92);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.nav__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav__logo img { width: 8.75rem; height: auto; }

.nav__menu-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  display: inline-block;
  padding: .5rem .8rem;
  border-radius: .55rem;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  font-weight: 600;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav__link[aria-current="page"] { color: var(--gold-500); }

.nav__cta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

.nav__mobile-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: .7rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}
.nav__mobile-toggle .icon { transition: transform .2s var(--ease); }
.nav__mobile-toggle .icon--close { display: none; }
.nav__mobile-toggle[aria-expanded="true"] .icon--close { display: block; }
.nav__mobile-toggle[aria-expanded="true"] .icon--menu { display: none; }

.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 190;
  background: rgba(13, 3, 24, .98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 1.25rem clamp(1rem, 4vw, 2rem) 1.75rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

.nav__mobile-menu.is-open { display: block; animation: menuIn .22s var(--ease) both; }
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem .75rem;
  border-radius: .75rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
  font-size: 1rem;
}
.nav__mobile-link:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.nav__mobile-link .icon { color: var(--gold-500); width: 1.15rem; height: 1.15rem; }
.nav__mobile-cta { margin-top: 1rem; }

/* ── 8. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(44rem, calc(100svh - var(--header-h)));
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--purple-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__background { position: absolute; inset: 0; z-index: -2; }
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58rem 30rem at 12% 8%, rgba(95, 36, 186, .5) 0%, transparent 60%),
    radial-gradient(46rem 26rem at 90% 100%, rgba(116, 64, 216, .35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(13, 3, 24, .82) 0%, rgba(22, 5, 45, .72) 55%, rgba(13, 3, 24, .94) 100%);
}

.hero__content { max-width: 49rem; }

.hero__offer {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .7rem 1.1rem;
  padding: .75rem 1.15rem;
  margin-bottom: 1.6rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(243, 207, 34, .35);
  backdrop-filter: blur(10px);
}
.hero__offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-500);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__offer-text { font-size: .95rem; font-weight: 600; }
.hero__offer-text strong { color: var(--gold-400); font-weight: 800; }
.hero__offer-text s { color: rgba(255, 255, 255, .5); font-weight: 500; margin-left: .3rem; }

.offer-counter {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .7rem;
  border-radius: .6rem;
  background: rgba(243, 207, 34, .12);
  border: 1px solid rgba(243, 207, 34, .3);
}
.offer-counter__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}
.offer-counter__timer {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: .92rem;
  color: var(--gold-400);
}

.hero__title {
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 1.3rem;
}
.hero__title .hl { color: var(--gold-500); }

.hero__description {
  font-size: clamp(.98rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
  max-width: 42rem;
  margin-bottom: 2rem;
}
.hero__description strong { color: #fff; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.25rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}
.hero__trust-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 8px rgba(243, 207, 34, .8);
  flex-shrink: 0;
}

/* ── 9. Étapes « Comment ça marche » ──────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.steps__card {
  position: relative;
  padding: 2rem 1.6rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  overflow: hidden;
}
.steps__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.steps__card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: .35rem;
  right: 1rem;
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -.05em;
  color: rgba(95, 36, 186, .07);
  line-height: 1;
  pointer-events: none;
}
.steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: .9rem;
  margin-bottom: 1.15rem;
  background: linear-gradient(160deg, var(--purple-700) 0%, var(--purple-600) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(95, 36, 186, .3);
}
.steps__icon .icon { width: 1.4rem; height: 1.4rem; }
.steps__title { font-size: 1.12rem; margin-bottom: .55rem; }
.steps__text { color: var(--text-soft); font-size: .93rem; line-height: 1.65; }
.steps__text strong { color: var(--text); }

/* ── 10. Tarifs ───────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.6rem 1.6rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.pricing__card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.pricing__card--featured {
  background:
    radial-gradient(26rem 16rem at 100% 0%, rgba(243, 207, 34, .16) 0%, transparent 55%),
    linear-gradient(160deg, #3c1280 0%, var(--purple-700) 55%, var(--purple-600) 100%);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 1px rgba(147, 82, 216, .3), 0 28px 60px rgba(93, 33, 184, .42);
  transform: translateY(-6px);
  color: #fff;
}
.pricing__card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 0 1px rgba(147, 82, 216, .38), 0 36px 72px rgba(93, 33, 184, .5);
  border-color: rgba(255, 255, 255, .25);
}
.pricing__card--featured .pricing__card-title,
.pricing__card--featured .pricing__section-title { color: #fff; }
.pricing__card--featured .pricing__feature { color: rgba(255, 255, 255, .92); }
.pricing__card--featured .pricing__feature .icon { color: var(--gold-400); }
.pricing__card--featured .pricing__payment-note { color: rgba(255, 255, 255, .7); }
.pricing__card--featured .pricing__divider { background: rgba(255, 255, 255, .14); }
.pricing__card--featured .pricing__old-price { color: rgba(255, 255, 255, .55); }

.pricing__popular {
  position: absolute;
  top: -.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--purple-900);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(243, 207, 34, .4);
}

.pricing__card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }

.pricing__price-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.pricing__price { display: inline-flex; align-items: flex-start; color: var(--purple-900); }
.pricing__card--featured .pricing__price { color: #fff; }
.pricing__price-currency { font-size: 1.25rem; font-weight: 700; transform: translateY(.35rem); }
.pricing__price-amount { font-size: clamp(2.6rem, 4vw, 3.1rem); font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.pricing__price-decimal { font-size: 1.1rem; font-weight: 700; transform: translateY(.28rem); opacity: .9; }
.pricing__old-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-faint);
  text-decoration: line-through;
}

.pricing__payment-note { font-size: .85rem; color: var(--text-soft); }

.pricing__card .offer-counter {
  margin-top: .8rem;
  background: rgba(243, 207, 34, .14);
  border-color: rgba(243, 207, 34, .35);
}

.pricing__features { margin-block: 1.25rem; }
.pricing__features-list { display: grid; gap: .62rem; list-style: none; padding: 0; margin: 0; }
.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.pricing__feature .icon { width: 1.05rem; height: 1.05rem; margin-top: .12rem; color: var(--purple-600); }

.pricing__divider { height: 1px; background: var(--border); margin-block: auto .1rem; }

.pricing__section { padding-block: 1.1rem; }
.pricing__section-title { font-size: .82rem; font-weight: 700; color: var(--purple-900); margin-bottom: .7rem; }
.pricing__devices img { width: 13rem; height: auto; opacity: .9; }

/* Panneau promo 6 mois */
.pricing__promo {
  position: relative;
  margin-top: 3rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(243, 207, 34, .16) 0%, transparent 30%),
    radial-gradient(circle at left center, rgba(123, 61, 229, .12) 0%, transparent 38%),
    linear-gradient(135deg, #fbf9ff 0%, #f3edff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.pricing__promo-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
}
.pricing__promo-copy { display: flex; flex-direction: column; justify-content: center; gap: .9rem; }
.pricing__promo-badge {
  align-self: flex-start;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--purple-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.pricing__promo-title { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 900; letter-spacing: -.03em; }
.pricing__promo-text { color: var(--text-soft); font-size: .96rem; line-height: 1.6; max-width: 32rem; }
.pricing__promo-text strong { color: var(--text); }

.pricing__promo-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .85rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(243, 207, 34, .18) 0%, transparent 32%),
    linear-gradient(180deg, #2b0f53 0%, #4a1ca0 58%, #652cc8 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 44px rgba(44, 15, 84, .3);
  color: #fff;
}
.pricing__promo-panel .pricing__price { color: #fff; }
.pricing__promo-panel .pricing__price-amount { font-size: 2.7rem; }
.pricing__promo-panel .pricing__price-row {
  padding-bottom: .75rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.pricing__promo-panel .pricing__features { margin-block: 0; }
.pricing__promo-panel .pricing__feature { color: rgba(255, 255, 255, .92); font-size: .87rem; }
.pricing__promo-panel .pricing__feature .icon { color: var(--gold-400); }

/* ── 11. Fonctionnalités ──────────────────────────────────────── */
.features__body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.features__carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--purple-950);
}
.features__carousel-slide { display: none; }
.features__carousel-slide.is-active { display: block; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: .4; } to { opacity: 1; } }
.features__carousel-image { width: 100%; height: auto; }

.features__carousel-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: .8rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 3, 24, .75) 100%);
}
.features__carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background .15s, transform .15s;
}
.features__carousel-button:hover { background: rgba(255, 255, 255, .25); transform: scale(1.06); }
.features__carousel-dots { display: flex; gap: .45rem; }
.features__carousel-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  transition: background .2s, width .2s;
}
.features__carousel-dot.is-active { background: var(--gold-500); width: 1.4rem; }

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.features__card {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  overflow: hidden;
}
.features__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.features__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .8rem;
  margin-bottom: 1rem;
  background: rgba(95, 36, 186, .09);
  color: var(--purple-700);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.features__card:hover .features__card-icon {
  background: rgba(95, 36, 186, .16);
  transform: scale(1.07) rotate(3deg);
}
.features__card-icon .icon { width: 1.3rem; height: 1.3rem; }
.features__card-title { font-size: 1.02rem; margin-bottom: .45rem; }
.features__card-description { font-size: .88rem; line-height: 1.6; color: var(--text-soft); }

/* ── 12. Téléchargement ───────────────────────────────────────── */
.download__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.download__grid--3 { grid-template-columns: repeat(3, 1fr); }
.download__card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.download__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.download__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: .85rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(160deg, var(--purple-700) 0%, var(--purple-600) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(95, 36, 186, .28);
}
.download__icon .icon { width: 1.35rem; height: 1.35rem; }
.download__card-title { font-size: 1.02rem; line-height: 1.3; margin-bottom: .5rem; }
.download__description { font-size: .87rem; line-height: 1.6; color: var(--text-soft); margin-bottom: 1rem; }
.download__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.download__tag {
  padding: .28rem .65rem;
  border-radius: 999px;
  background: var(--purple-50);
  border: 1px solid var(--border);
  color: var(--purple-700);
  font-size: .72rem;
  font-weight: 700;
}
.download__actions { margin-top: auto; }
.download__actions .btn { width: 100%; }

/* ── 13. Témoignages ──────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  overflow: hidden;
}
.testimonials__card::before {
  content: "\201C";
  position: absolute;
  top: .4rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(95, 36, 186, .07);
  pointer-events: none;
}
.testimonials__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.testimonials__rating { display: flex; gap: .2rem; color: var(--gold-500); }
.testimonials__rating .icon { width: .95rem; height: .95rem; }
.testimonials__quote { font-size: .9rem; line-height: 1.65; color: var(--text-soft); flex: 1; }
.testimonials__author { display: flex; align-items: center; gap: .75rem; }
.testimonials__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-600) 100%);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(93, 33, 184, .3);
  flex-shrink: 0;
}
.testimonials__name { font-size: .9rem; font-weight: 700; color: var(--purple-900); }
.testimonials__date { font-size: .78rem; color: var(--text-faint); }

/* ── 14. FAQ ──────────────────────────────────────────────────── */
.faq__wrap { max-width: 50rem; margin-inline: auto; }
.faq__list { display: grid; gap: .8rem; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  overflow: hidden;
}
.faq__item.is-open { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-weight: 700;
  font-size: .98rem;
  color: var(--purple-900);
}
.faq__question .icon {
  color: var(--purple-700);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq__item.is-open .faq__question .icon { transform: rotate(180deg); }
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer-content {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-soft);
  font-size: .93rem;
  line-height: 1.7;
}
.faq__answer-content strong { color: var(--text); }
.faq__answer-content a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.faq__cta {
  margin-top: 2.5rem;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(243, 207, 34, .14) 0%, transparent 36%),
    linear-gradient(135deg, var(--purple-800) 0%, var(--purple-700) 55%, var(--purple-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.faq__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--gold-500);
}
.faq__cta-title { color: #fff; font-size: 1.35rem; margin-bottom: .6rem; }
.faq__cta-text { color: rgba(255, 255, 255, .85); font-size: .95rem; max-width: 34rem; margin: 0 auto 1.4rem; }
.faq__cta-text strong { color: #fff; }

/* ── 15. Blog ─────────────────────────────────────────────────── */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.blog-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--purple-950); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__category {
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .32rem .75rem;
  border-radius: 999px;
  background: rgba(13, 3, 24, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  color: var(--gold-500);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.blog-card__body { display: flex; flex-direction: column; gap: .6rem; padding: 1.3rem 1.3rem 1.4rem; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: var(--text-faint); }
.blog-card__title { font-size: 1.06rem; line-height: 1.35; }
.blog-card__title a { color: var(--purple-900); }
.blog-card__title a:hover { color: var(--purple-700); }
.blog-card__excerpt { font-size: .88rem; line-height: 1.6; color: var(--text-soft); flex: 1; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .87rem;
  font-weight: 700;
  color: var(--purple-700);
}
.blog-card__link .icon { width: .95rem; height: .95rem; transition: transform .15s var(--ease); }
.blog-card__link:hover .icon { transform: translateX(3px); }

/* Page article */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: .82rem;
  color: var(--text-faint);
}
.breadcrumbs a { color: var(--text-soft); font-weight: 600; }
.breadcrumbs a:hover { color: var(--purple-700); }
.breadcrumbs [aria-current] { color: var(--purple-700); font-weight: 700; }
.breadcrumbs .icon { width: .8rem; height: .8rem; }

.article { max-width: 47rem; margin-inline: auto; }
.article__header { margin-bottom: 2rem; }
.article__title { font-size: clamp(1.7rem, 3.6vw, 2.45rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: .9rem; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; font-size: .85rem; color: var(--text-faint); }
.article__meta .icon { width: .95rem; height: .95rem; }
.article__meta-item { display: inline-flex; align-items: center; gap: .35rem; }
.article__hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.25rem; box-shadow: var(--shadow-md); }

.article__toc {
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.25rem;
  border-radius: var(--radius);
  background: var(--purple-50);
  border: 1px solid var(--border);
}
.article__toc-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--purple-700);
  margin-bottom: .8rem;
}
.article__toc ol { margin: 0; padding-left: 1.15rem; display: grid; gap: .45rem; }
.article__toc a { font-size: .9rem; font-weight: 600; color: var(--text-soft); }
.article__toc a:hover { color: var(--purple-700); }

.prose { color: var(--text-soft); font-size: .99rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
  padding-top: .5rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.13rem; margin-top: 1.9rem; }
.prose p strong, .prose li strong { color: var(--text); }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .55rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: .35rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: .62em;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--purple-600);
}
.prose ol { list-style: decimal; }
.prose ol li::marker { color: var(--purple-700); font-weight: 800; }

.prose .callout {
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--purple-50);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple-600);
  font-size: .93rem;
}
.prose .callout--gold {
  background: rgba(243, 207, 34, .08);
  border-color: rgba(243, 207, 34, .3);
  border-left-color: var(--gold-600);
}
.prose .callout strong { color: var(--text); }

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}
.prose th {
  background: var(--purple-800);
  color: #fff;
  text-align: left;
  padding: .75rem .9rem;
  font-size: .82rem;
  letter-spacing: .03em;
}
.prose td { padding: .7rem .9rem; border-top: 1px solid var(--border); color: var(--text-soft); }
.prose tr:nth-child(even) td { background: var(--bg-soft); }
.prose td strong { color: var(--text); }

.article__cta {
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(243, 207, 34, .15) 0%, transparent 36%),
    linear-gradient(135deg, var(--purple-800) 0%, var(--purple-700) 55%, var(--purple-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.article__cta-title { color: #fff; font-size: 1.4rem; margin-bottom: .55rem; }
.article__cta-text { color: rgba(255, 255, 255, .85); font-size: .95rem; max-width: 32rem; margin: 0 auto 1.4rem; }
.article__cta-text strong { color: var(--gold-400); }

.article__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.article__nav-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--purple-700);
}

/* ── 16. CTA final ────────────────────────────────────────────── */
.cta-final__panel {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(40rem 18rem at 85% -20%, rgba(243, 207, 34, .2) 0%, transparent 55%),
    linear-gradient(135deg, #3f0d8b 0%, var(--purple-700) 55%, var(--purple-600) 100%);
  color: #fff;
  box-shadow: 0 32px 72px rgba(60, 15, 130, .45), inset 0 1px 0 rgba(255, 255, 255, .18);
  overflow: hidden;
}
.cta-final__title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  max-width: 42rem;
  margin: 0 auto .9rem;
}
.cta-final__title .hl { color: var(--gold-500); }
.cta-final__text { color: rgba(255, 255, 255, .85); max-width: 38rem; margin: 0 auto 1.75rem; font-size: 1rem; line-height: 1.7; }
.cta-final__text strong { color: #fff; }
.cta-final__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

/* ── 17. Pied de page ─────────────────────────────────────────── */
.footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.25rem;
  padding-block: clamp(2.75rem, 5vw, 4rem);
}
.footer__logo img { width: 9rem; height: auto; margin-bottom: 1.1rem; }
.footer__description { font-size: .89rem; line-height: 1.7; color: rgba(255, 255, 255, .65); max-width: 24rem; }
.footer__description strong { color: rgba(255, 255, 255, .9); }
.footer__title {
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__links { display: grid; gap: .55rem; list-style: none; padding: 0; margin: 0; }
.footer__link { color: rgba(255, 255, 255, .68); font-size: .9rem; transition: color .15s; }
.footer__link:hover { color: var(--gold-500); }
.footer__contact { display: grid; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.footer__contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .89rem; }
.footer__contact-item .icon { color: var(--gold-500); width: 1.05rem; height: 1.05rem; margin-top: .15rem; }
.footer__contact-item a { color: rgba(255, 255, 255, .82); font-weight: 600; }
.footer__contact-item a:hover { color: var(--gold-500); }
.footer__payment-list { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0; }
.footer__payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 1.8rem;
  padding: .2rem .45rem;
  border-radius: .45rem;
  background: #fff;
}
.footer__payment-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .07); padding-block: 1.4rem; }
.footer__copyright { text-align: center; font-size: .83rem; color: rgba(255, 255, 255, .5); }
.footer__copyright strong { color: rgba(255, 255, 255, .75); }

/* ── 18. WhatsApp flottant + popup ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37, 211, 102, .55); color: #fff; }
.whatsapp-float .icon { width: 1.7rem; height: 1.7rem; fill: currentColor; stroke: none; }

.whatsapp-popup {
  position: fixed;
  right: 1.25rem;
  bottom: 5.45rem;
  z-index: 310;
  width: min(22rem, calc(100vw - 2rem));
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ece5dd;
  border: 1px solid rgba(18, 140, 126, .18);
  box-shadow: 0 24px 58px rgba(20, 10, 40, .25);
  transform-origin: bottom right;
  animation: chatIn .22s var(--ease) both;
}
.whatsapp-popup[hidden] { display: none; }
@keyframes chatIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1rem;
  background: linear-gradient(135deg, var(--green-700) 0%, #1fae62 100%);
  color: #fff;
}
.whatsapp-popup__brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.whatsapp-popup__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  flex-shrink: 0;
}
.whatsapp-popup__avatar .icon { width: 1.25rem; height: 1.25rem; fill: currentColor; stroke: none; }
.whatsapp-popup__name { display: block; font-size: .95rem; font-weight: 800; line-height: 1.25; }
.whatsapp-popup__status { display: block; font-size: .76rem; opacity: .88; }
.whatsapp-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  transition: background .18s;
  flex-shrink: 0;
}
.whatsapp-popup__close:hover { background: rgba(255, 255, 255, .24); }
.whatsapp-popup__close .icon { width: 1rem; height: 1rem; }
.whatsapp-popup__body {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(18, 140, 126, .08) 0%, transparent 34%),
    linear-gradient(180deg, #efe7dd 0%, #e7dfd4 100%);
}
.whatsapp-popup__bubble {
  padding: .85rem 1rem;
  margin-bottom: .9rem;
  border-radius: 1rem 1rem 1rem .35rem;
  background: #fff;
  color: #1f2630;
  font-size: .9rem;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(18, 32, 55, .08);
}

/* ── 19. Hero interne (pages secondaires) ─────────────────────── */
.page-hero {
  position: relative;
  padding-block: clamp(3.25rem, 7vw, 5.25rem);
  background:
    radial-gradient(50rem 22rem at 12% 0%, rgba(95, 36, 186, .45) 0%, transparent 60%),
    linear-gradient(180deg, var(--purple-950) 0%, var(--purple-900) 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero__title {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
}
.page-hero__title .hl { color: var(--gold-500); }
.page-hero__description { color: rgba(255, 255, 255, .82); max-width: 44rem; font-size: 1rem; line-height: 1.7; }
.page-hero__description strong { color: #fff; }
.page-hero .breadcrumbs { color: rgba(255, 255, 255, .55); }
.page-hero .breadcrumbs a { color: rgba(255, 255, 255, .75); }
.page-hero .breadcrumbs a:hover { color: var(--gold-500); }
.page-hero .breadcrumbs [aria-current] { color: var(--gold-500); }

/* ── 20. Divers ───────────────────────────────────────────────── */
.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 400;
  padding: .7rem 1.2rem;
  background: var(--purple-900);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 .6rem 0;
}
.skip-link:focus { left: 0; color: #fff; }

.error-page { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
.error-page__code {
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(160deg, var(--purple-700) 0%, var(--purple-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.error-page__title { font-size: 1.5rem; margin-bottom: .8rem; }
.error-page__text { color: var(--text-soft); max-width: 30rem; margin: 0 auto 1.75rem; }

/* ── 21. Responsive ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .download__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__mobile-toggle { display: inline-flex; }

  .features__body { grid-template-columns: 1fr; }
  .features__visual { max-width: 38rem; margin-inline: auto; width: 100%; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .download__grid--3 { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-5px); }
  .pricing__promo-main { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .steps__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
}

@media (max-width: 640px) {
  .download__grid,
  .download__grid--3,
  .features__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 1.9rem; }
  .hero__cta .btn { width: 100%; }
  .hero__offer { width: 100%; }
  .whatsapp-popup { left: .75rem; right: .75rem; bottom: 5rem; width: auto; }
  .article__nav { flex-direction: column; }
}

/* ── 22. Accessibilité mouvement ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}
