@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   HUGO BORRELL — AMOUROSCOPIE
   style.css · Design épuré (Polices système) · 2026
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ROOT
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Palette */
  --c-cream: #f8f5f0;
  --c-warm-white: #fdfcfa;
  --c-gold: #96744a; /* Or assombri pour une meilleure lisibilité (ratio WCAG) */
  --c-gold-light: #b8976a;
  --c-gold-dark: #6e5230;
  --c-slate: #1a1e26; /* Ardoise encore plus sombre pour le texte principal */
  --c-slate-mid: #2d3545; /* Ardoise intermédiaire assombrie */
  --c-slate-light: #4a5568; /* Ardoise claire assombrie */
  --c-stone: #e8e2d9;
  --c-stone-dark: #cec5b8;
  --c-accent: #6b8fa3; /* bleu-vert apaisant */
  --c-accent-soft: #e8f0f5;
  /* Typographie (Polices système & standards pour performance optimale) */
  --f-serif: Georgia, "Times New Roman", serif;
  --f-sans:
    system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  /* Layout */
  --max-w: 1100px;
  --max-w-text: 680px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-slate);
  background-color: var(--c-warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ─────────────────────────────────────────────────────────
   TYPOGRAPHIE
   ───────────────────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-slate);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 300;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-slate);
}

strong {
  font-weight: 700;
  color: var(--c-slate);
}

em {
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-stone);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  height: 64px;
}

nav a {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-slate-mid);
  transition: color 0.2s var(--ease);
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}

nav a:hover,
nav a.active {
  color: var(--c-slate);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  color: var(--c-gold-dark);
}

/* ─────────────────────────────────────────────────────────
   HERO SECTION & ACTIONS
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background-color: var(--c-slate);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(20, 24, 35, 0.8),
    rgba(20, 24, 35, 0.4)
  );
  background-blend-mode: multiply;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--space-sm);
}

.hero-content h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  color: #fff;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 0.5em;
}

.hero-content h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-lg);
}

.hero-medaillon {
  position: absolute;
  bottom: 0;
  left: clamp(24px, 8vw, 80px);
  transform: translateY(50%);
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.hero-actions {
  padding: 0 var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.hero-actions .bouton-quiz {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: #fff;
  box-shadow: none;
}

.hero-actions .bouton-quiz:hover {
  background: var(--c-gold);
}

/* ─────────────────────────────────────────────────────────
   BOUTONS
   ───────────────────────────────────────────────────────── */
.bouton-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1em 2.5em;
  background: var(--c-gold);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 151, 106, 0.3);
}

.bouton-cta:hover {
  background: var(--c-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 151, 106, 0.4);
}

/* ─────────────────────────────────────────────────────────
   LAYOUT GÉNÉRAL : SECTIONS
   ───────────────────────────────────────────────────────── */
main > section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

header.hero + main section:first-of-type,
header.hero + main .video-section {
  padding-top: var(--space-2xl);
}

main > section:nth-child(even) {
  background: transparent;
}

/* ─────────────────────────────────────────────────────────
   TITRE DE SECTION
   ───────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--c-slate);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--c-gold);
}

.section-title--centre {
  text-align: center;
}

.section-title--centre::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ─────────────────────────────────────────────────────────
   SECTION VIDÉO
   ───────────────────────────────────────────────────────── */
.video-section {
  background: var(--c-cream);
  max-width: 100%;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  color: var(--c-slate);
}

.video-section p {
  color: var(--c-slate-mid);
}

.video-section .section-title {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s var(--ease);
}

.video-player:hover .video-placeholder {
  filter: brightness(1.1);
}

.video-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ff0000;
  font-size: 3.5rem;
  padding-left: 0.15em;
  backdrop-filter: blur(4px);
  transition:
    background 0.25s var(--ease),
    transform 0.2s var(--ease);
}

.video-player:hover .video-placeholder span {
  background: rgba(184, 151, 106, 0.3);
  transform: scale(1.03);
}

.video-player iframe {
  width: 100%;
  height: 100%;
}

/* ─────────────────────────────────────────────────────────
   PRÉSENTATION / INTRODUCTION
   ───────────────────────────────────────────────────────── */
.container-small {
  max-width: var(--max-w-text);
  margin: 0 auto;
}

#presentation p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

#presentation ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  list-style: disc;
}

#presentation li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

#presentation li:last-child {
  margin-bottom: 0;
}

.introduction {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--c-slate);
  line-height: 1.7;
  max-width: var(--max-w-text);
}

/* ─────────────────────────────────────────────────────────
   CITATION
   ───────────────────────────────────────────────────────── */
#citation {
  background: var(--c-slate);
  max-width: 100%;
  padding: var(--space-xl) var(--space-md);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.citation-wrapper {
  max-width: var(--max-w-text);
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid var(--c-gold);
}

#citation p {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

#citation cite {
  display: block;
  margin-top: 1.5em;
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

/* ─────────────────────────────────────────────────────────
   CARDS APPROCHES & FOCUS BOX
   ───────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--c-cream);
  border: 1px solid var(--c-stone);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--c-slate);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
  border-color: var(--c-gold-light);
}

.card-icon {
  font-size: 2rem;
  line-height: 1;
}

.card h3 {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-slate);
}

.card p {
  font-size: 0.92rem;
  flex: 1;
  color: var(--c-slate-mid);
}

.card-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  transition: color 0.2s var(--ease);
}

.card-link:hover {
  color: var(--c-gold);
}

.focus-box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--c-cream);
  border: 1px solid var(--c-stone);
  border-left: 3px solid var(--c-gold);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  color: var(--c-slate);
}

.focus-box-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
  color: var(--c-slate);
}

.focus-box p {
  font-size: 0.95rem;
  color: var(--c-slate-mid);
}

/* ─────────────────────────────────────────────────────────
   SYMPTOMES LIST
   ───────────────────────────────────────────────────────── */
.symptomes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.symptomes-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--c-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-stone);
  color: var(--c-slate);
  transition: border-color 0.25s var(--ease);
}

.symptomes-list li:hover {
  border-color: var(--c-gold-light);
}

.symptome-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.symptomes-list strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3em;
  color: var(--c-slate);
}

.symptomes-list p {
  color: var(--c-slate-mid);
}

/* ─────────────────────────────────────────────────────────
   OFFRE / ENGAGEMENT
   ───────────────────────────────────────────────────────── */
.offre-engagement {
  background: var(--c-slate);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(44, 50, 64, 0.3);
}

.offre-engagement::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 151, 106, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.engagement-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.engagement-badge {
  font-size: 1.5rem;
  color: var(--c-gold-light);
  display: block;
  margin-bottom: var(--space-sm);
}

.engagement-header h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.4em;
}

.tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: center;
}

.step {
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.step-number {
  display: block;
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 0.5em;
}

.step p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  line-height: 1.55;
}

.step p strong {
  color: #ffffff;
}

.prix-container {
  text-align: center;
  margin: var(--space-lg) auto;
}

.prix-barre {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-bottom: 0.4em;
}

.prix-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
}

.montant {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.condition {
  display: inline-block;
  padding: 0.3em 1em;
  background: rgba(184, 151, 106, 0.2);
  border: 1px solid rgba(184, 151, 106, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.badge-garantie {
  margin-top: var(--space-md);
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ─────────────────────────────────────────────────────────
   PROCESSUS STEPS
   ───────────────────────────────────────────────────────── */
.processus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.processus-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-gold-light), transparent);
}

.processus-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
  position: relative;
}

.processus-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 1px solid var(--c-stone-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-gold-dark);
  position: relative;
  z-index: 1;
}

.processus-item h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.3em;
  padding-top: 0.5em;
}

.processus-item p {
  font-size: 0.9rem;
  color: var(--c-slate-mid);
}

/* ─────────────────────────────────────────────────────────
   AVIS CARROUSEL
   ───────────────────────────────────────────────────────── */
#avis {
  background: var(--c-cream);
  max-width: 100%;
  padding: var(--space-xl) var(--space-md);
  color: var(--c-slate);
}

#avis p {
  color: var(--c-slate-mid);
}

#avis h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--c-slate);
  margin-bottom: var(--space-lg);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: var(--space-sm);
  position: relative;
}

#avis h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--c-gold);
}

.avis-carousel-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.avis-carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.avis-carousel::-webkit-scrollbar {
  display: none;
}

.avis-carte {
  flex: 0 0 calc(50% - var(--space-sm));
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--c-stone);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.avis-carte:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: var(--c-gold-light);
}

.avis-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75em;
  gap: var(--space-sm);
}

.avis-nom {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-slate);
  line-height: 1.2;
}

.avis-stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.avis-star {
  color: var(--c-gold);
  font-size: 0.85rem;
}

.avis-texte {
  font-size: 0.9rem;
  color: var(--c-slate-mid);
  line-height: 1.65;
  margin-bottom: 0.75em;
  font-style: italic;
}

.avis-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-slate-mid);
}

.avis-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.avis-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-stone-dark);
  background: #fff;
  color: var(--c-slate);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.avis-btn:hover:not(:disabled) {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #fff;
}

.avis-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.avis-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}

.avis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--c-stone-dark);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  padding: 10px;
  box-sizing: content-box;
}

.avis-dot.active {
  background: var(--c-gold);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────
   RÉSEAUX SOCIAUX
   ───────────────────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.65em 1.2em;
  border: 1px solid var(--c-stone-dark);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-slate-mid);
  transition: all 0.2s var(--ease);
}

.social-links a:hover {
  background: var(--c-slate);
  border-color: var(--c-slate);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────
   PLAN / CARTE
   ───────────────────────────────────────────────────────── */
.plan-wrapper {
  position: relative;
}

.plan-link {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.plan-link img {
  width: 100%;
  transition: transform 0.4s var(--ease);
}

.plan-link:hover img {
  transform: scale(1.02);
}

.plan-overlay {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 24, 35, 0.85);
  color: #fff;
  padding: 0.65em 1.5em;
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.plan-adresse {
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  color: var(--c-slate-mid);
}

.plan-adresse a {
  color: var(--c-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────
   MÉTHODES GRID
   ───────────────────────────────────────────────────────── */
.methodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.methode-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-stone);
  background: #fff;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.methode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.methode-card__header {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--c-slate);
  color: #fff;
}

.methode-card__header--hypnose {
  background: linear-gradient(135deg, #2c3240 0%, #3d4a5c 100%);
}

.methode-card__header--emdr {
  background: linear-gradient(135deg, #3a4555 0%, #2c3240 100%);
}

.methode-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 151, 106, 0.2);
  border: 1px solid rgba(184, 151, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold-light);
}

.methode-card__header h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}

.methode-card__body {
  padding: var(--space-lg);
}

.methode-card__body p {
  font-size: 0.93rem;
  margin-bottom: var(--space-sm);
}

.methode-card__body h3 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.75em;
  margin-top: var(--space-sm);
}

.indications-list {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.indications-list li {
  font-size: 0.88rem;
  color: var(--c-slate-mid);
  padding-left: 1em;
  position: relative;
}

.indications-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-gold-light);
  font-size: 0.7rem;
}

/* ─────────────────────────────────────────────────────────
   TARIF CARD
   ───────────────────────────────────────────────────────── */
.tarif-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--c-slate);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(44, 50, 64, 0.25);
}

.tarif-card__left {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(145deg, #2c3240 0%, #3a4556 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tarif-card__left .engagement-badge {
  font-size: 1.2rem;
  color: var(--c-gold-light);
}

.tarif-card__left h3 {
  color: #fff;
  font-size: 1.5rem;
}

.tagline-tarif {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.tarif-card__right {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.tarif-inclus {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.tarif-inclus li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.9rem;
  color: var(--c-slate-mid);
}

.tarif-inclus svg {
  flex-shrink: 0;
  color: var(--c-gold);
}

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-stone);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-stone);
}

.faq-item {
  background: #fff;
}

.faq-item summary {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-slate);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s var(--ease);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--f-sans);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--c-gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--c-cream);
}

.faq-item p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.92rem;
  color: var(--c-slate-mid);
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer-actions {
  background: var(--c-slate);
  padding: var(--space-xl) var(--space-md) var(--space-md);
  margin-top: var(--space-xl);
}

.grid-actions {
  max-width: var(--max-w);
  margin: 0 auto var(--space-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
}

.bouton-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 1.4em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  background: rgba(255, 255, 255, 0.04);
}

.bouton-footer:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #fff;
  transform: translateY(-2px);
}

.action-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}

.footer-bottom a:hover {
  color: var(--c-gold-light);
}

/* ─────────────────────────────────────────────────────────
   MENTIONS LÉGALES
   ───────────────────────────────────────────────────────── */
.hero-legals {
  min-height: 40vh;
  background-image: none;
  background: var(--c-slate);
}

main > section + section {
  border-top: 1px solid var(--c-stone);
}

.hero-legals ~ main section h2.section-title::after {
  width: 32px;
}

main > section p + p {
  margin-top: 0.8em;
}

main > section a:not(.bouton-cta):not(.card-link):not(.bouton-footer) {
  color: var(--c-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────
   YOUTUBE AUTOMATIC GRID
   ───────────────────────────────────────────────────────── */
#youtube-dynamic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: var(--space-md);
}

.youtube-link-card {
  background-color: #fff6f6;
  border: 2px dashed #ff0000;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  aspect-ratio: 16 / 9;
}

.youtube-link-card:hover {
  transform: translateY(-4px);
  background-color: #ffeaea;
}

.youtube-link-card a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.youtube-icon {
  width: 50px;
  height: 50px;
  fill: #ff0000;
  transition: transform 0.3s ease;
}

.youtube-link-card a:hover .youtube-icon {
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────
   MEDIA QUERIES (DESKTOP, TABLET, MOBILE)
   ───────────────────────────────────────────────────────── */

/* 💻 Écrans larges et Tablettes horizontales (min-width: 768px) */
@media (min-width: 768px) {
  .symptomes-list {
    grid-template-columns: repeat(2, 1fr);
  }
  #youtube-dynamic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📐 Tablettes et Écrans Réduits (max-width: 900px) */
@media (max-width: 900px) {
  .hero {
    min-height: 75vh;
    padding-bottom: 160px;
  }
  .hero-medaillon {
    bottom: 0;
    left: var(--space-md);
    right: auto;
    width: 110px;
    height: 110px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .tarif-card {
    grid-template-columns: 1fr;
  }
  .grid-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  .avis-carte {
    flex: 0 0 calc(100% - 2px);
  }
}

/* 📐 Navigation Réduite (max-width: 800px) */
@media (max-width: 800px) {
  .nav-container {
    height: auto;
    min-height: 64px;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm) var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a {
    white-space: nowrap;
    font-size: 0.75rem;
    padding: 4px 6px;
  }
}

/* 📱 Smartphones / Mobiles (max-width: 600px) */
@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  .nav-container {
    height: auto;
    min-height: 64px;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm) var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  nav a {
    white-space: normal;
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .hero {
    min-height: 85svh;
    padding: var(--space-lg) var(--space-sm) 140px;
    background-image: url("images/cabinet_hypnose_gresivaudan_small.webp");
  }
  .hero-medaillon {
    width: 90px;
    height: 90px;
    bottom: 0;
    left: var(--space-sm);
    right: auto;
  }
  .hero-content h1 {
    font-size: 2.6rem;
  }
  .hero-content h2 {
    font-size: 1.1rem;
  }
  .hero-actions .bouton-cta {
    flex: 1 1 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  main > section {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  .video-section {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  #citation {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  .citation-wrapper {
    padding-left: 1.2rem;
  }
  .focus-box {
    flex-direction: column;
  }
  .symptomes-list {
    grid-template-columns: 1fr;
  }
  .methodes-grid {
    grid-template-columns: 1fr;
  }
  .offre-engagement {
    padding: var(--space-lg) var(--space-sm);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .grid-actions {
    grid-template-columns: 1fr 1fr;
  }
  .processus-list::before {
    display: none;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .avis-carte {
    flex: 0 0 85vw;
  }
  .social-links {
    gap: 0.5rem;
  }
  #avis {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}

/* ─────────────────────────────────────────────────────────
   UTILITAIRES & ACCESSIBILITÉ
   ───────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
