/* =========================================================================
   DareCrush — feuille de styles du site public
   Palette dérivée du logo : cœur chaud (orange → magenta), cœur froid
   (encre → violet), sur un fond de nuit.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Fonds */
  --nuit: #070B29;
  --nuit-2: #0B1040;
  --surface: #101750;
  --surface-2: #141C5E;
  --bordure: rgba(255, 255, 255, 0.10);
  --bordure-forte: rgba(255, 255, 255, 0.18);

  /* Marque */
  --encre: #0B1040;
  --violet: #4B2CD4;
  --violet-clair: #7B5CFF;
  --magenta: #FF1E8C;
  --corail: #FB4A63;
  --orange: #FF9012;

  /* Texte */
  --texte: #F2F4FF;
  --texte-doux: #B9C0E8;
  --texte-faible: #8A93C4;

  /* Dégradés */
  --degrade-chaud: linear-gradient(120deg, var(--orange), var(--corail) 45%, var(--magenta));
  --degrade-froid: linear-gradient(120deg, var(--encre), var(--violet) 55%, var(--violet-clair));
  --degrade-mixte: linear-gradient(120deg, var(--violet-clair), var(--magenta) 55%, var(--orange));

  /* Mesures */
  --largeur: 1140px;
  --largeur-texte: 720px;
  --rayon: 18px;
  --rayon-s: 12px;
  --ombre: 0 24px 60px -20px rgba(0, 0, 0, 0.7);

  --police: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
            Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ---------------------------------------------------------------- Base -- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--police);
  font-size: 17px;
  line-height: 1.65;
  color: var(--texte);
  background: var(--nuit);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Halos de fond, fixes, très diffus : donnent la profondeur « nuit néon ». */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 12% -8%, rgba(123, 92, 255, 0.28), transparent 60%),
    radial-gradient(48rem 34rem at 92% 6%, rgba(255, 30, 140, 0.20), transparent 62%),
    radial-gradient(56rem 40rem at 50% 108%, rgba(75, 44, 212, 0.22), transparent 60%);
}

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

a { color: var(--violet-clair); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 700; }

p { margin: 0 0 1.1em; }

::selection { background: var(--magenta); color: #fff; }

:focus-visible {
  outline: 3px solid var(--violet-clair);
  outline-offset: 3px;
  border-radius: 4px;
}

.lien-evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--magenta);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.lien-evitement:focus { left: 0; }

/* ------------------------------------------------------------ Utilitaires */

.contenant {
  width: 100%;
  max-width: var(--largeur);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--serree { padding: clamp(44px, 6vw, 72px) 0; }

.centre { text-align: center; }

.degrade-texte {
  background: var(--degrade-mixte);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.surtitre {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}

.chapo {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  color: var(--texte-doux);
  max-width: 62ch;
}
.centre .chapo { margin-left: auto; margin-right: auto; }

.entete-section { max-width: 68ch; margin: 0 auto clamp(40px, 5vw, 60px); }

/* ---------------------------------------------------------------- Boutons */

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.bouton:hover { text-decoration: none; transform: translateY(-2px); }

.bouton--primaire {
  background: var(--degrade-chaud);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(255, 30, 140, 0.7);
}
.bouton--primaire:hover { box-shadow: 0 18px 40px -12px rgba(255, 30, 140, 0.85); }

.bouton--fantome {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--bordure-forte);
  color: var(--texte);
  backdrop-filter: blur(6px);
}
.bouton--fantome:hover { background: rgba(255, 255, 255, 0.12); }

.groupe-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.centre .groupe-boutons { justify-content: center; }

/* --------------------------------------------------------------- Étiquettes */

.etiquette {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--bordure-forte);
  background: rgba(255, 255, 255, 0.07);
  color: var(--texte-doux);
}
.etiquette--chaude {
  background: rgba(255, 30, 140, 0.16);
  border-color: rgba(255, 30, 140, 0.45);
  color: #FFB4D8;
}
.etiquette--froide {
  background: rgba(123, 92, 255, 0.16);
  border-color: rgba(123, 92, 255, 0.45);
  color: #C8B9FF;
}
.etiquette--attente {
  background: rgba(255, 144, 18, 0.14);
  border-color: rgba(255, 144, 18, 0.42);
  color: #FFCE94;
}

/* ---------------------------------------------------------- Barre de navigation */

.barre {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 41, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bordure);
}

.barre__interieur {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.barre__logo { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.barre__logo:hover { text-decoration: none; }
.barre__logo img { width: 34px; height: 34px; }
.barre__logo span {
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: var(--texte);
}

.barre__liens { display: flex; align-items: center; gap: 6px; }

.barre__liens a {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--texte-doux);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease, background 0.15s ease;
}
.barre__liens a:hover { color: var(--texte); background: rgba(255, 255, 255, 0.07); text-decoration: none; }
.barre__liens a[aria-current='page'] { color: var(--texte); background: rgba(255, 255, 255, 0.10); }

/* Sélecteur de langue : discret, mais toujours au même endroit d'une langue à l'autre. */
.barre__langue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px !important;
  border: 1px solid var(--bordure-forte);
  border-radius: 999px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  color: var(--texte-doux);
  margin-left: 6px;
}
.barre__langue:hover { color: var(--texte); background: rgba(255, 255, 255, 0.12) !important; }
.barre__langue svg { width: 15px; height: 15px; flex: none; opacity: 0.75; }

@media (max-width: 940px) {
  .barre__langue { margin-left: 0; justify-content: center; margin-top: 6px; }
}

.barre__bascule {
  display: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--bordure-forte);
  color: var(--texte);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.barre__bascule svg { width: 22px; height: 22px; }
.barre__bascule .icone-fermer { display: none; }
.barre__bascule[aria-expanded='true'] .icone-fermer { display: block; }
.barre__bascule[aria-expanded='true'] .icone-menu { display: none; }

@media (max-width: 940px) {
  .barre__bascule { display: inline-flex; }
  .barre__liens {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 24px 22px;
    background: rgba(9, 13, 48, 0.98);
    border-bottom: 1px solid var(--bordure);
    display: none;
  }
  .barre__liens.est-ouvert { display: flex; }
  .barre__liens a { padding: 12px 14px; }
  .barre__liens .bouton { margin-top: 8px; }
}

/* ------------------------------------------------------------------ Héros */

.heros { position: relative; padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 5vw, 64px); }

/* La section qui suit l'accroche est celle qui fait comprendre le produit : on la
   remonte, pour qu'elle entre dans le champ de vision sans avoir à chercher. */
.heros + .section { padding-top: clamp(16px, 2.5vw, 36px); }

.heros__grille {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.heros h1 { margin-bottom: 0.45em; }
.heros .chapo { margin-bottom: 2rem; }

.heros__preuves {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--texte-faible);
}
.heros__preuves span { display: inline-flex; align-items: center; gap: 8px; }
.heros__preuves svg { width: 17px; height: 17px; color: var(--violet-clair); flex: none; }

/* Le logo entouré d'ondes qui se propagent — l'image de marque en mouvement. */
.onde-scene {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
}
.onde-scene img {
  position: relative;
  z-index: 2;
  width: 62%;
  filter: drop-shadow(0 20px 46px rgba(255, 30, 140, 0.32));
}
.onde {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(123, 92, 255, 0.45);
  animation: propagation 4.4s cubic-bezier(0.2, 0.6, 0.35, 1) infinite;
  opacity: 0;
}
.onde:nth-child(2) { animation-delay: 1.1s; }
.onde:nth-child(3) { animation-delay: 2.2s; }
.onde:nth-child(4) { animation-delay: 3.3s; }

@keyframes propagation {
  0%   { transform: scale(0.42); opacity: 0; }
  14%  { opacity: 0.85; }
  100% { transform: scale(1); opacity: 0; }
}

@media (max-width: 900px) {
  .heros__grille { grid-template-columns: 1fr; text-align: center; }
  .heros .chapo { margin-left: auto; margin-right: auto; }
  .heros__preuves { justify-content: center; }
  .heros__grille > div:last-child { order: -1; }
  .onde-scene { max-width: 300px; }
}

/* ------------------------------------------------------------------ Cartes */

.grille { display: grid; gap: 22px; }
.grille--2 { grid-template-columns: repeat(2, 1fr); }
.grille--3 { grid-template-columns: repeat(3, 1fr); }
.grille--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grille--3, .grille--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  .grille--2, .grille--3, .grille--4 { grid-template-columns: 1fr; }
}

.carte {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.carte:hover { border-color: var(--bordure-forte); transform: translateY(-3px); }
.carte h3 { margin-bottom: 0.45em; }
.carte p:last-child { margin-bottom: 0; }

.carte__icone {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--degrade-froid);
  margin-bottom: 18px;
}
.carte__icone svg { width: 23px; height: 23px; color: #fff; }
.carte__icone--chaud { background: var(--degrade-chaud); }

/* --------------------------------------------------------------- Étapes */

.etapes { counter-reset: etape; display: grid; gap: 20px; }
.etapes--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .etapes--3 { grid-template-columns: 1fr; } }

.etape {
  counter-increment: etape;
  position: relative;
  padding: 30px 28px 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
}
.etape::before {
  content: counter(etape);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--degrade-chaud);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.etape h3 { margin-bottom: 0.4em; }
.etape p:last-child { margin-bottom: 0; color: var(--texte-doux); }

/* ------------------------------------------------- Affiches explicatives */

/* Les trois affiches portent déjà leur propre titre : le cadre est identique pour
   les trois, ce qui fait lire leurs fonds différents (nuit, blanc, nuit) comme une
   série voulue plutôt que comme un accident de rendu. */

.affiches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) {
  .affiches { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

.affiche { display: flex; flex-direction: column; }

.affiche__cadre {
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--bordure-forte);
  box-shadow: var(--ombre);
  background: var(--nuit-2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.affiche:hover .affiche__cadre {
  transform: translateY(-4px);
  border-color: rgba(255, 30, 140, 0.45);
}
.affiche__cadre img { width: 100%; height: auto; display: block; }

.affiche__legende {
  display: flex;
  gap: 14px;
  padding: 22px 2px 0;
  color: var(--texte-doux);
  font-size: 0.95rem;
  line-height: 1.6;
}
.affiche__legende p { margin: 0; }

/* Sur la version anglaise, le titre de l'affiche est du vrai texte : il a été
   recadré hors de l'image, faute de version anglaise des visuels d'origine. */
.affiche__titre {
  margin: 0 0 0.35em;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--texte);
}

.affiche__numero {
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--degrade-chaud);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  margin-top: 2px;
}

/* Affiche unique, posée à côté d'un bloc de texte dans les pages longues. */
.affiche-seule {
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--bordure-forte);
  box-shadow: var(--ombre);
  max-width: 340px;
  margin: 2em auto 2.4em;
}
.affiche-seule img { width: 100%; height: auto; display: block; }

/* ------------------------------------------------------------ Encadrés */

.avis {
  border-radius: var(--rayon-s);
  padding: 18px 22px;
  border: 1px solid var(--bordure-forte);
  background: rgba(255, 255, 255, 0.05);
  margin: 0 0 1.4em;
}
.avis p:last-child { margin-bottom: 0; }
.avis strong { color: var(--texte); }

.avis--info {
  border-color: rgba(123, 92, 255, 0.42);
  background: rgba(123, 92, 255, 0.12);
}
.avis--attention {
  border-color: rgba(255, 144, 18, 0.45);
  background: rgba(255, 144, 18, 0.11);
}
.avis--securite {
  border-color: rgba(255, 30, 140, 0.42);
  background: rgba(255, 30, 140, 0.11);
}

/* --------------------------------------------------------------- Tarifs */

.tarifs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
@media (max-width: 1020px) { .tarifs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tarifs { grid-template-columns: 1fr; } }

.tarif {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px;
  border-radius: var(--rayon);
  border: 1px solid var(--bordure);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}
.tarif--vedette {
  border-color: rgba(255, 30, 140, 0.55);
  background: linear-gradient(165deg, rgba(255, 30, 140, 0.14), rgba(123, 92, 255, 0.08));
  box-shadow: 0 20px 50px -24px rgba(255, 30, 140, 0.6);
}
.tarif__nom { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.tarif__prix { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.tarif__prix small { font-size: 0.9rem; font-weight: 600; color: var(--texte-faible); letter-spacing: 0; }
.tarif__note { font-size: 0.85rem; color: var(--texte-faible); margin: 6px 0 20px; }
.tarif ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.tarif li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--texte-doux);
}
.tarif li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--magenta); }

/* ---------------------------------------------------- Codes QR / téléchargement */

.qr-grille { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 820px) { .qr-grille { grid-template-columns: 1fr; } }

.qr-carte {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 28px;
  border-radius: var(--rayon);
  border: 1px solid var(--bordure);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}
/* Rien qui touche à l'opacité ici : le cadre du code doit rester d'un blanc pur,
   sinon le contraste tombe et certains lecteurs renoncent. La distinction se fait
   par l'étiquette « En préparation ». */
.qr-carte--attente { border-style: dashed; }

.qr-cadre {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  width: 216px;
  max-width: 100%;
  margin: 22px 0;
  box-shadow: 0 16px 38px -14px rgba(0, 0, 0, 0.75);
}
.qr-cadre img { width: 100%; border-radius: 4px; }

.qr-carte h3 { margin-bottom: 0.3em; }
.qr-carte p { color: var(--texte-doux); font-size: 0.95rem; }

.plateforme-icone { width: 40px; height: 40px; color: var(--texte); }

/* ------------------------------------------------------------------- FAQ */

.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }

.faq details {
  border: 1px solid var(--bordure);
  border-radius: var(--rayon-s);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(123, 92, 255, 0.45); background: rgba(123, 92, 255, 0.08); }

.faq summary {
  cursor: pointer;
  padding: 18px 54px 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--violet-clair);
  border-bottom: 2.5px solid var(--violet-clair);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: #fff; }

.faq__corps { padding: 0 22px 20px; color: var(--texte-doux); }
.faq__corps p:last-child, .faq__corps ul:last-child { margin-bottom: 0; }
.faq__corps ul { margin: 0 0 1em; padding-left: 1.2em; }
.faq__corps li { margin-bottom: 0.45em; }

.faq-titre {
  margin: 44px 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  max-width: 860px;
  margin-inline: auto;
}
.faq-titre:first-of-type { margin-top: 0; }

/* -------------------------------------------------------- Pages de texte */

.doc { max-width: var(--largeur-texte); margin: 0 auto; }
.doc h2 {
  font-size: 1.42rem;
  margin-top: 2.4em;
  padding-top: 1.1em;
  border-top: 1px solid var(--bordure);
}
.doc h2:first-of-type { margin-top: 1.4em; }
.doc h3 { margin-top: 1.8em; font-size: 1.1rem; }
.doc ul, .doc ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.doc li { margin-bottom: 0.6em; }
.doc strong { color: #fff; }

.doc__meta {
  font-size: 0.9rem;
  color: var(--texte-faible);
  padding-bottom: 1.4em;
  border-bottom: 1px solid var(--bordure);
}

/* Marque un passage qu'un conseiller juridique doit trancher avant publication. */
.a-confirmer {
  background: rgba(255, 144, 18, 0.20);
  border-bottom: 1px dashed rgba(255, 144, 18, 0.75);
  padding: 0 4px;
  border-radius: 3px;
  color: #FFD9A8;
}

.sommaire {
  border: 1px solid var(--bordure);
  border-radius: var(--rayon-s);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 26px;
  margin-bottom: 2.4em;
}
.sommaire h2 {
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-faible);
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
}
.sommaire ol { margin: 0; padding-left: 1.3em; columns: 2; column-gap: 30px; }
.sommaire li { margin-bottom: 0.4em; }
@media (max-width: 620px) { .sommaire ol { columns: 1; } }

/* --------------------------------------------------------------- Tableau */

.tableau-enveloppe { overflow-x: auto; margin: 0 0 1.6em; -webkit-overflow-scrolling: touch; }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.94rem;
}
th, td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--bordure);
  vertical-align: top;
}
th {
  font-weight: 700;
  color: var(--texte);
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}
td { color: var(--texte-doux); }
tbody tr:last-child td { border-bottom: 0; }

/* ------------------------------------------------------------- Appel final */

.appel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 60px);
  text-align: center;
  border: 1px solid rgba(255, 30, 140, 0.32);
  background:
    radial-gradient(40rem 22rem at 50% -30%, rgba(255, 30, 140, 0.30), transparent 70%),
    linear-gradient(160deg, rgba(123, 92, 255, 0.16), rgba(255, 255, 255, 0.03));
}
.appel h2 { margin-bottom: 0.4em; }
.appel .chapo { margin: 0 auto 2rem; }

/* ------------------------------------------------------------------ Pied */

.pied {
  border-top: 1px solid var(--bordure);
  padding: 56px 0 34px;
  margin-top: clamp(50px, 7vw, 90px);
  background: rgba(5, 8, 30, 0.6);
}

.pied__grille {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .pied__grille { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pied__grille { grid-template-columns: 1fr; } }

.pied__marque img { width: 42px; margin-bottom: 14px; }
.pied__marque p { color: var(--texte-faible); font-size: 0.92rem; max-width: 34ch; }

.pied h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-faible);
  margin-bottom: 14px;
}
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pied ul a { color: var(--texte-doux); font-size: 0.94rem; }
.pied ul a:hover { color: var(--texte); }

.pied__bas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--bordure);
  font-size: 0.87rem;
  color: var(--texte-faible);
}

/* ------------------------------------------------- Préférence de mouvement */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .onde { display: none; }
}

/* ------------------------------------------------------------- Impression */

@media print {
  body { background: #fff; color: #000; }
  body::before, .barre, .pied, .appel { display: none !important; }
  .doc { max-width: none; }
  a { color: #000; text-decoration: underline; }
  .a-confirmer { background: #ffe9c7; color: #000; }
}
