/* ========================================================================
   abonnementatlas.net — Atlas Pro Abonnement
   Direction visuelle : « Minuit & Or »
   Feuille unique : jetons → base → layout → composants → pages → responsive
   ======================================================================== */

/* --- 1. JETONS -------------------------------------------------------- */
:root {
  --night-950: #07080F;
  --night-900: #0D0F1A;
  --night-850: #131627;
  --night-800: #1A1E33;
  --line: #23283F;
  --line-2: #343B5C;
  --gold: #E3B341;
  --gold-bright: #F5C968;
  --gold-wash: rgba(227, 179, 65, 0.10);
  --gold-line: rgba(227, 179, 65, 0.32);
  --alert: #FF6B81;
  --text: #EEF1F8;
  --text-dim: #A6ADC6;
  --text-faint: #6E7590;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;

  --t-h1: clamp(2.1rem, 1.3rem + 3.4vw, 3.4rem);
  --t-h2: clamp(1.5rem, 1.14rem + 1.5vw, 2.15rem);
  --t-h3: 1.15rem;
  --t-lead: clamp(1.05rem, 0.99rem + 0.3vw, 1.22rem);
  --t-body: 1rem;
  --t-sm: 0.92rem;
  --t-xs: 0.82rem;
  --t-label: 0.72rem;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --wrap: 1160px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night-950);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 520px at 85% 110%, var(--gold-wash), transparent 60%),
    radial-gradient(circle 2px at 12% 22%, rgba(238, 241, 248, 0.10), transparent 100%),
    radial-gradient(circle 2px at 78% 14%, rgba(238, 241, 248, 0.08), transparent 100%),
    radial-gradient(circle 2px at 40% 68%, rgba(238, 241, 248, 0.07), transparent 100%),
    radial-gradient(circle 2px at 90% 48%, rgba(238, 241, 248, 0.07), transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 48px 48px, 48px 48px;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  color: var(--text);
}

h1 {
  font-size: var(--t-h1);
}

h2 {
  font-size: var(--t-h2);
}

h3 {
  font-size: var(--t-h3);
}

p {
  margin: 0 0 var(--s-4);
}

a {
  color: var(--gold-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--night-800);
  color: var(--text);
  padding: var(--s-3) var(--s-4);
  border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
  left: 0;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

/* --- 3. BOUTONS ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background 0.17s ease, border-color 0.17s ease, color 0.17s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--night-950);
}

.btn--gold:hover {
  background: var(--gold-bright);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  border-color: var(--line-2);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  text-decoration: none;
}

.btn--lg {
  padding: 1rem 1.8rem;
  font-size: 0.86rem;
}

.btn--block {
  width: 100%;
}

/* --- 4. EN-TÊTE ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(7, 8, 15, 0.97);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand__tag {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.nav__list {
  display: flex;
  gap: var(--s-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-xs);
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__link:hover {
  color: var(--text);
  background: var(--night-850);
  text-decoration: none;
}

.nav__link[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  color: var(--text);
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-toggle .icon-close {
  display: none;
}

/* --- 5. HÉROS --------------------------------------------------------- */
.hero {
  padding: var(--s-8) 0 var(--s-7);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--t-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  background: var(--gold-wash);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  margin-bottom: var(--s-4);
}

.lead {
  font-size: var(--t-lead);
  color: var(--text-dim);
  margin-bottom: var(--s-5);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.hero__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text-dim);
  font-size: var(--t-sm);
}

.hero__proof svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex: none;
}

.hero__media {
  position: relative;
}

.hero__price-tag {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  background: var(--night-850);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  text-align: center;
  line-height: 1.2;
}

.hero__price-tag span {
  display: block;
  font-size: var(--t-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__price-tag strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-bright);
}

/* --- 6. CARTE ATLAS (composant signature) ----------------------------- */
.atlas-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--night-850);
  border: 1px solid var(--line-2);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 0 0 6px var(--night-900), 0 0 0 7px var(--line);
}

.atlas-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-5) 0;
}

.atlas-card__mark {
  width: 30px;
  height: 30px;
}

.atlas-card__validity {
  font-family: var(--font-display);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.atlas-card__code {
  padding: var(--s-5);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text);
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  margin: var(--s-3) var(--s-5) var(--s-5);
  text-align: center;
}

.atlas-card__band {
  background: linear-gradient(100deg, var(--gold), var(--gold-bright));
  color: var(--night-950);
  padding: var(--s-3) var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
}

.atlas-card__band span:last-child {
  font-size: var(--t-xs);
  opacity: 0.8;
}

.atlas-card__foot {
  display: flex;
  justify-content: space-between;
  padding: var(--s-3) var(--s-5);
  font-size: var(--t-xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- 7. SECTIONS ------------------------------------------------------ */
.section {
  padding: var(--s-7) 0;
}

.section--raised {
  background: var(--night-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 var(--s-5);
  align-items: start;
  margin-bottom: var(--s-6);
}

.sec-head__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-h3);
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xs);
  padding: 0.35rem 0.7rem;
  line-height: 1;
}

.sec-head h2 {
  margin-bottom: var(--s-2);
}

.sec-head__aside {
  color: var(--text-dim);
  margin: 0;
  font-size: var(--t-sm);
}

/* --- 8. GRILLES ET CARTES --------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

.card {
  background: var(--night-850);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.card--pad {
  padding: var(--s-5);
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gold-line);
  background: var(--gold-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
  color: var(--gold);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--s-2);
}

.card p {
  color: var(--text-dim);
  font-size: var(--t-sm);
  margin-bottom: 0;
}

/* --- 9. FORMULES ------------------------------------------------------ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}

.plan {
  background: var(--night-850);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
}

.plan--featured {
  border-color: var(--gold-line);
  background:
    linear-gradient(180deg, rgba(227, 179, 65, 0.06), transparent 120px),
    var(--night-850);
  position: relative;
}

.plan__badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: var(--t-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: var(--s-4);
}

.plan__name {
  font-size: 1.2rem;
  margin-bottom: var(--s-1);
}

.plan__screens {
  color: var(--text-dim);
  font-size: var(--t-sm);
  margin-bottom: var(--s-4);
}

.plan__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  line-height: 1;
}

.plan__cur {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--gold);
  margin-right: 2px;
}

.plan__period {
  color: var(--text-dim);
  font-size: var(--t-sm);
  margin-top: var(--s-2);
}

.plan__pay-note {
  font-size: var(--t-xs);
  color: var(--text-faint);
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-4);
}

.plan__list {
  list-style: none;
  margin: 0 0 var(--s-5);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: var(--text-dim);
}

.plan__list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
  margin-top: 3px;
}

.plan__note {
  font-size: var(--t-xs);
  color: var(--text-faint);
  margin-top: var(--s-3);
  margin-bottom: 0;
}

.pay-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

.pay-row img {
  opacity: 0.8;
  filter: grayscale(1) brightness(1.6);
}

/* --- 10. ÉTAPES ------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  counter-increment: step;
  padding: var(--s-5) 0 var(--s-5) var(--s-8);
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--s-5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-h3);
  color: var(--gold);
}

.steps h3 {
  margin-bottom: var(--s-2);
}

.steps p {
  color: var(--text-dim);
  font-size: var(--t-sm);
  margin-bottom: 0;
}

/* --- 11. FAQ ---------------------------------------------------------- */
.faq {
  max-width: 760px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--night-850);
  margin-bottom: var(--s-3);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  text-align: left;
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
}

.faq__trigger:hover {
  color: var(--gold-bright);
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--gold);
}

.faq__trigger[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__panel {
  display: none;
  padding: 0 var(--s-5) var(--s-4);
  color: var(--text-dim);
  font-size: var(--t-sm);
}

.faq__panel.is-open {
  display: block;
}

.faq__panel p {
  margin-bottom: 0;
}

/* --- 12. AVIS --------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

.review {
  margin: 0;
  background: var(--night-850);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
}

.review__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: var(--s-3);
}

.review__stars svg {
  width: 15px;
  height: 15px;
}

.review blockquote {
  margin: 0 0 var(--s-4);
  color: var(--text-dim);
  font-size: var(--t-sm);
}

.review figcaption {
  display: flex;
  flex-direction: column;
  font-size: var(--t-xs);
}

.review__who {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

.review__where {
  color: var(--text-faint);
}

/* --- 13. NOTES ET VERDICTS -------------------------------------------- */
.note {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  border-left-width: 3px;
  padding: var(--s-4) var(--s-5);
}

.note__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  margin-bottom: var(--s-2);
}

.note p {
  margin-bottom: 0;
  color: var(--text-dim);
  font-size: var(--t-sm);
}

.note--tip {
  border-left-color: var(--gold);
  background: var(--gold-wash);
}

.note--tip .note__title {
  color: var(--gold-bright);
}

.note--warn {
  border-left-color: var(--alert);
  background: rgba(255, 107, 129, 0.06);
}

.note--warn .note__title {
  color: var(--alert);
}

.verdict {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--t-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
}

.verdict--ok {
  color: var(--gold-bright);
  background: var(--gold-wash);
  border: 1px solid var(--gold-line);
}

.verdict--mid {
  color: var(--text-dim);
  background: var(--night-800);
  border: 1px solid var(--line-2);
}

.verdict--no {
  color: var(--alert);
  background: rgba(255, 107, 129, 0.08);
  border: 1px solid rgba(255, 107, 129, 0.35);
}

/* --- 14. TABLEAU ------------------------------------------------------ */
.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-sm);
}

.table caption {
  text-align: left;
  color: var(--text-faint);
  font-size: var(--t-xs);
  padding-bottom: var(--s-3);
}

.table th,
.table td {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.table td {
  color: var(--text-dim);
}

.table td:first-child {
  color: var(--text);
}

/* --- 15. FORMULAIRE --------------------------------------------------- */
.form-card {
  background: var(--night-850);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  max-width: 640px;
}

.field {
  margin-bottom: var(--s-4);
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: var(--s-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--night-900);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-body);
  padding: 0.7rem 0.9rem;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--alert);
}

.field__error {
  display: none;
  color: var(--alert);
  font-size: var(--t-xs);
  margin-top: var(--s-2);
}

.field.has-error .field__error {
  display: block;
}

.form-note {
  font-size: var(--t-xs);
  color: var(--text-faint);
  margin-top: var(--s-3);
  margin-bottom: 0;
}

/* --- 16. BANDEAU CTA -------------------------------------------------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(227, 179, 65, 0.10), transparent 55%),
    var(--night-900);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  text-align: center;
}

.cta-band h2 {
  margin-bottom: var(--s-3);
}

.cta-band p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto var(--s-5);
}

/* --- 17. PIED DE PAGE ------------------------------------------------- */
.site-footer {
  background: var(--night-900);
  border-top: 1px solid var(--line);
  padding: var(--s-7) 0 var(--s-5);
  margin-top: var(--s-7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
}

.footer-brand p {
  color: var(--text-dim);
  font-size: var(--t-sm);
}

.site-footer h2 {
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: var(--s-3);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.site-footer ul a {
  color: var(--text-dim);
  font-size: var(--t-sm);
}

.site-footer ul a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
  border-top: 1px solid var(--line);
  padding-top: var(--s-4);
  font-size: var(--t-xs);
  color: var(--text-faint);
}

/* --- 18. BOUTON WHATSAPP FLOTTANT ------------------------------------- */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--gold);
  color: var(--night-950);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.wa-float:hover {
  background: var(--gold-bright);
  text-decoration: none;
}

.wa-float svg {
  width: 18px;
  height: 18px;
}

/* --- 19. RÉVÉLATION --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- 20. PAGES INTERNES ------------------------------------------------ */
.page-hero {
  padding: var(--s-7) 0 var(--s-5);
}

.page-hero h1 {
  margin-bottom: var(--s-3);
}

.page-hero .lead {
  max-width: 720px;
}

/* --- 21. RESPONSIVE --------------------------------------------------- */
@media (max-width: 1000px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    background: var(--night-900);
    border-bottom: 1px solid var(--line);
    padding: var(--s-4) var(--s-5) var(--s-5);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
  }

  .nav .btn {
    justify-content: center;
  }

  .hero__grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
  }

  .plans,
  .grid-3,
  .reviews {
    grid-template-columns: 1fr;
  }

  .plan--featured {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sec-head {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: var(--s-6) 0;
  }

  .brand__tag {
    display: none;
  }
}

/* --- 22. MOUVEMENT RÉDUIT --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq__icon {
    transition: none;
  }
}