/* ============================================================
   VARIABLES - modifier ici pour changer toute l'identité visuelle
   ============================================================ */
:root {
  /* Couleurs - fond noir, texte blanc */
  --color-bg:           #000000;
  --color-text:         #fffef0;
  --color-title:        #fffef0;
  --color-accent-amber: #ff4500;
  --color-accent-blue:  #0099ff;
  --color-btn-bg:       #fffef0;
  --color-btn-text:     #000000;
  --color-border-light: #2a2a2a;
  --color-border-dark:  #3a3a3a;
  --color-muted:        #8a8a8a;

  /* Typographie */
  --font-title: "Orbitron", sans-serif;
  --font-body:  "League Spartan", sans-serif;

  /* Poids */
  --fw-title-light:  500;
  --fw-title-medium: 700;
  --fw-title-bold:   900;
  --fw-body:         400;
  --fw-body-medium:  500;

  /* Tailles de texte */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */

  /* Espacement */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* Mise en page */
  --max-width:        1100px;
  --gutter:           var(--space-6);
  --border-width:     1px;
  --border-radius:    0px; /* Style fiche technique = angles francs */
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.8;
}

/* ============================================================
   MISE EN PAGE GÉNÉRALE
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Séparateur visuel entre blocs */
.section-divider {
  border: none;
  border-top: var(--border-width) solid var(--color-border-dark);
  margin: 0;
}

/* ============================================================
   TYPOGRAPHIE - TITRES
   ============================================================ */
.title-display {
  font-family: var(--font-title);
  font-weight: var(--fw-title-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-title);
  line-height: 1.1;
}

.title-section {
  font-family: var(--font-title);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-title);
  line-height: 1.2;
}

.label {
  font-family: var(--font-title);
  font-weight: var(--fw-title-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* ============================================================
   HEADER NAVIGATION
   ============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-block: var(--space-4);
  background: transparent;
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-logo img {
  display: block;
  height: 28px;
  width: auto;
}

/* Emblème centré dans la bannière */
.site-emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  line-height: 0;
}

.site-emblem img {
  display: block;
  height: 40px;
  width: auto;
}

.site-tagline {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-title);
  font-weight: 400;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fffef0;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .site-tagline {
    display: block;
  }
}

/* Bouton hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: var(--color-title);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menu déroulant */
.site-menu {
  position: absolute;
  top: 100%;
  right: var(--gutter);
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  background-color: var(--color-bg);
  border: 0.75px solid var(--color-accent-amber);
}

.site-menu[hidden] {
  display: none;
}

.nav-link {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-title);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-accent-amber);
  opacity: 1;
}

/* ============================================================
   GEMME TAG - mot répété pour la continuité d'identité
   ============================================================ */
.gemme-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-amber);
}

/* ============================================================
   HUB - PAGE D'ACCUEIL
   ============================================================ */
.hub {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: var(--space-20) var(--space-8);
}

.hub-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-12);
}

.hub-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 66rem;
  padding-inline: var(--space-4);
}

.hub-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.hub-logo img {
  height: 192px;
  width: auto;
}

.hub-eyebrow {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.hub-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("DTS_PLAYER_TWO_JELLY_LUISE_Photos_ID13466.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hub-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.hub-title {
  font-size: clamp(0.92rem, 4.7vw, 3.2rem);
  letter-spacing: 0.01em;
  max-width: 66rem;
}

/* Cadre fin animé autour de "Trouvez" */
.word-frame {
  display: inline-block;
  border: 0.75px solid var(--color-accent-amber);
  padding-inline: 0.2em;
  animation: frame-pulse 2.4s ease-in-out infinite;
}

@keyframes frame-pulse {
  0%, 100% { border-color: rgba(255, 69, 0, 0.25); }
  50%      { border-color: rgba(255, 69, 0, 1); }
}

/* "Impossible à copier" en orange + glitch au survol */
.glitch-text {
  display: inline-block;
  position: relative;
  color: var(--color-accent-amber);
  cursor: default;
}

.glitch-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  white-space: nowrap;
}

.glitch-text:hover .glitch-layer {
  opacity: 0.85;
  color: var(--color-accent-blue);
  animation: glitch-1 0.4s steps(2, jump-none) infinite;
}

.glitch-text:hover .glitch-layer--2 {
  color: #ff2e4e;
  animation: glitch-2 0.4s steps(2, jump-none) infinite;
}

@keyframes glitch-1 {
  0%   { clip-path: inset(0 0 88% 0); transform: translate(2px, 0); }
  20%  { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
  40%  { clip-path: inset(50% 0 30% 0); transform: translate(2px, 0); }
  60%  { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 0); }
  80%  { clip-path: inset(80% 0 4% 0); transform: translate(1px, 0); }
  100% { clip-path: inset(0 0 88% 0); transform: translate(0, 0); }
}

@keyframes glitch-2 {
  0%   { clip-path: inset(70% 0 5% 0); transform: translate(-2px, 0); }
  20%  { clip-path: inset(10% 0 75% 0); transform: translate(2px, 0); }
  40%  { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 0); }
  60%  { clip-path: inset(85% 0 2% 0); transform: translate(1px, 0); }
  80%  { clip-path: inset(15% 0 65% 0); transform: translate(-1px, 0); }
  100% { clip-path: inset(70% 0 5% 0); transform: translate(0, 0); }
}

/* Toggle "Comment ça marche ?" */
.hub-toggle {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.hub-toggle summary {
  cursor: pointer;
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  list-style: none;
}

.hub-toggle summary::-webkit-details-marker {
  display: none;
}

.hub-toggle summary::before {
  content: "+ ";
  color: var(--color-accent-amber);
}

.hub-toggle[open] summary::before {
  content: "– ";
}

.hub-toggle p {
  margin-top: var(--space-3);
  max-width: 36ch;
  line-height: 1.6;
}

.hub-cta-note {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.hub-social {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
}

.hub-social a {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-decoration: none;
}

.hub-social a:hover {
  color: var(--color-accent-amber);
  opacity: 1;
}

/* Boutons CTA */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: center;
}

.btn {
  display: inline-block;
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-title);
  font-size: var(--text-sm);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: var(--border-width) solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Bouton principal */
.btn-primary {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  border-color: var(--color-btn-bg);
}

.btn-primary:hover {
  background-color: var(--color-accent-amber);
  border-color: var(--color-accent-amber);
  color: var(--color-title);
  opacity: 1;
}

/* Bouton secondaire */
.btn-secondary {
  background-color: transparent;
  color: var(--color-btn-bg);
  border-color: var(--color-border-dark);
}

.btn-secondary:hover {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  opacity: 1;
}

/* Note tarifaire sous les boutons */
.cta-note {
  font-size: var(--text-sm);
  color: var(--color-muted);
  padding-top: var(--space-2);
}

.cta-note em {
  font-style: normal;
  font-weight: var(--fw-body-medium);
  color: var(--color-text);
}

/* ============================================================
   BLOC RESSOURCES - bibliothèque vidéo + PDFs
   ============================================================ */
.section-resources {
  position: relative;
  padding-block: var(--space-20);
}

.resources-cta {
  margin-top: var(--space-6);
}

/* Sur-titre (eyebrow) façon "Mission" / "Votre univers" du PDF */
.section-eyebrow {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-3);
}

.resource-card {
  position: relative;
  padding: var(--space-6) 0 var(--space-6);
  border-top: 2px solid var(--color-border-dark);
}

.resource-card .video-wrapper {
  margin-bottom: var(--space-5, 1.25rem);
}

.resource-card-num {
  display: block;
  font-family: var(--font-title);
  font-size: var(--text-sm);
  font-weight: var(--fw-title-bold);
  letter-spacing: 0.1em;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-1);
}

.resource-card h3 {
  font-family: var(--font-title);
  font-size: var(--text-lg);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-title);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.resource-card p {
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* En-tête de section */
.resources-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.resources-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: var(--fw-title-bold);
  letter-spacing: 0.01em;
  line-height: 1;
}

.resources-subtitle {
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 55ch;
}

/* Grille de cartes vidéo - mobile first : 1 colonne */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

/* Carte vidéo */
.video-card {
  border: var(--border-width) solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}

.video-card:hover {
  border-color: var(--color-border-dark);
}

/* Wrapper 16:9 pour l'iframe YouTube */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Miniature cliquable (lecteur chargé seulement au clic) */
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: #000;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  transition: filter 0.15s ease;
}

.video-thumb:hover,
.video-thumb:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.video-thumb-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.video-thumb:hover .video-thumb-play {
  background: var(--color-accent-amber);
  transform: scale(1.06);
}

.video-thumb-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}

/* Shorts : format vertical 9:16 */
.resource-card--short .video-wrapper {
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin-inline: auto;
}

/* ============================================================
   PAGE SESSION 1:1 — CAROUSEL COMING SOON
   ============================================================ */
.session-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.session-carousel {
  position: absolute;
  inset: 0;
}

.session-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.session-slide.is-active {
  opacity: 1;
}

.session-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.7)
  );
}

.session-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  padding: var(--space-8);
}

.session-logo {
  display: block;
}

.session-logo img {
  width: 88px;
  height: auto;
}

.session-text {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: var(--fw-title-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--color-title);
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.session-cta {
  margin-top: var(--space-2);
  justify-content: center;
}

.btn.is-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

/* Placeholder "Coming soon" */
.video-wrapper--soon {
  display: grid;
  place-items: center;
  border: var(--border-width) solid var(--color-border-dark);
  background-color: transparent;
}

.video-soon-label {
  font-family: var(--font-title);
  font-size: var(--text-sm);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-amber);
}

/* Pied de carte : titre + numéro */
.video-card-body {
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  border-top: var(--border-width) solid var(--color-border-light);
}

.video-card-number {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-light);
  color: var(--color-accent-amber);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.video-card-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body-medium);
  color: var(--color-title);
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: var(--border-width) solid rgba(255, 254, 240, 0.2);
  padding-block: var(--space-8);
}

.site-footer .footer-brand {
  color: var(--color-bg);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-start;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-title);
}

.footer-copy {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* ============================================================
   PAGES INTERNES
   ============================================================ */
.page-shell {
  padding-block: var(--space-16);
}

.page-section {
  padding-block: var(--space-16);
}

.questionnaire-form {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
  max-width: 760px;
}

.questionnaire-form label {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-title);
}

.questionnaire-form input,
.questionnaire-form textarea {
  width: 100%;
  border: 0.75px solid var(--color-accent-amber);
  background-color: transparent;
  padding: var(--space-4);
  font: inherit;
  color: var(--color-text);
}

.questionnaire-form input:focus,
.questionnaire-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--color-accent-amber);
}

.questionnaire-form textarea {
  min-height: 110px;
  resize: vertical;
}

.pdf-card {
  border: var(--border-width) solid var(--color-border-dark);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pdf-card-status {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-amber);
}

.resource-state {
  color: var(--color-muted);
  font-family: var(--font-title);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-placeholder {
  border: var(--border-width) solid var(--color-border-dark);
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: var(--space-8);
  margin-block: var(--space-8);
  text-align: center;
  color: var(--color-muted);
  font-family: var(--font-title);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   RESPONSIVE - TABLETTE & DESKTOP
   ============================================================ */

/* ≥ 640px : boutons côte à côte */
@media (min-width: 640px) {
  .cta-group {
    flex-direction: row;
    align-items: center;
  }
}

/* ≥ 768px : grille 2 colonnes */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-subtitle {
    margin-left: auto;
    text-align: right;
  }

  .resources-cta {
    align-self: flex-end;
  }
}

/* ≥ 1024px : grille 3 colonnes */
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   TITRES & TEXTES DE PAGE (base réutilisée)
   ============================================================ */
.hero-title {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: var(--text-sm);
  font-weight: var(--fw-title-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-4);
}

.offer-pitch {
  max-width: 60ch;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: var(--space-3);
}

/* ============================================================
   FOOTER — LIENS LÉGAUX
   ============================================================ */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  margin-top: var(--space-2);
}

.footer-legal a {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-accent-amber);
  opacity: 1;
}

/* ============================================================
   SESSION — BLOC OFFRE + CAL.COM
   ============================================================ */
.offer-card {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-8);
}

.offer-specs {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: var(--border-width) solid var(--color-border-dark);
}

.offer-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: var(--border-width) solid var(--color-border-dark);
}

.offer-spec-label {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.offer-spec-value {
  font-family: var(--font-title);
  font-size: var(--text-base);
  font-weight: var(--fw-title-medium);
  color: var(--color-title);
  text-align: right;
}

.offer-list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.offer-list li {
  position: relative;
  padding-left: var(--space-6);
  line-height: 1.5;
}

.offer-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--color-accent-amber);
  font-size: 0.7em;
  top: 0.35em;
}

.cal-embed {
  margin-top: var(--space-6);
  min-height: 560px;
  width: 100%;
  border: var(--border-width) solid var(--color-border-dark);
  overflow: auto;
  background-color: #fff;
}

/* ============================================================
   FORMULAIRE — CONSENTEMENT & CONFIRMATION
   ============================================================ */
.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: var(--space-3);
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: var(--font-body) !important;
  font-weight: var(--fw-body) !important;
  font-size: var(--text-sm);
  color: var(--color-text) !important;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: auto !important;
  flex-shrink: 0;
  margin-top: 0.15em;
  accent-color: var(--color-accent-amber);
}

.form-success {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  border: var(--border-width) solid var(--color-accent-amber);
  padding: var(--space-8);
}

/* ============================================================
   INDEX — SECTIONS PERSUASION
   ============================================================ */
.landing-extra {
  position: relative;
  background-color: var(--color-bg);
}

.gem-def {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: var(--fw-title-light);
  line-height: 1.35;
  color: var(--color-title);
  max-width: 24ch;
  margin-top: var(--space-4);
}

.beforeafter {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.ba-col {
  border: var(--border-width) solid var(--color-border-dark);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ba-col--after {
  border-color: var(--color-accent-amber);
}

.ba-tag {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  font-weight: var(--fw-title-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.ba-col--after .ba-tag {
  color: var(--color-accent-amber);
}

.about-mini {
  max-width: 60ch;
  line-height: 1.6;
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonial p {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--color-title);
}

.testimonial-author {
  font-family: var(--font-title);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

/* ============================================================
   PAGES LÉGALES
   ============================================================ */
.legal-doc {
  max-width: 760px;
}

.legal-doc .title-section {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.legal-doc p,
.legal-doc ul {
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.legal-updated {
  margin-top: var(--space-8);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

/* ≥ 768px : offre & avant/après en 2 colonnes */
@media (min-width: 768px) {
  .beforeafter {
    grid-template-columns: repeat(2, 1fr);
  }
}
