
/* =========================================================
   SYSTEM DESIGN — صوت التربية v4 FINAL
   Palette : Bleu nuit profond + Sable platinium
   Contraste FORT — alternance tranchée
   ========================================================= */
:root {
  /* FONDS */
  --bg-light:       #F2EEE3;        /* sable platinium (sections claires) */
  --bg-dark:        #0A1E2E;        /* bleu nuit profond (sections foncées) */

  /* CARDS */
  --card-on-light:  #FFFFFF;        /* card sur fond clair */
  --card-on-dark:   #13293D;        /* card sur fond foncé */

  /* TEXTES */
  --ink:            #0A1E2E;        /* texte principal sur clair */
  --ink-soft:       #2C3E50;        /* texte secondaire sur clair */
  --muted-light:    #6B7A85;        /* texte discret sur clair */

  --ink-on-dark:    #F2EEE3;        /* texte principal sur foncé */
  --ink-on-dark-soft: #CFC9BD;      /* texte secondaire sur foncé */
  --muted-dark:     #8B95A0;        /* texte discret sur foncé */

  /* DORÉ */
  --gold:           #B8953F;        /* doré accent */
  --gold-light:     #D4B571;        /* doré lumineux (sur foncé) */
  --gold-pale:      #E4D3A8;
  --gold-glow:      rgba(184,149,63,0.2);

  /* BORDURES */
  --line-light:     #D4CCB9;        /* bordures sur fond clair */
  --line-dark:      #2C3E50;        /* bordures sur fond foncé */
  --line-soft:      #E0D7C5;

  /* ROUGE ERROR */
  --red:            #B06565;
  --red-deep:       #8B4444;

  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 8px rgba(10,30,46,0.06);
  --shadow-md: 0 6px 24px rgba(10,30,46,0.1);
  --shadow-lg: 0 24px 60px rgba(10,30,46,0.18);
  --shadow-gold: 0 8px 28px rgba(184,149,63,0.25);

  --font-display: 'Amiri', 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--bg-light);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   ALTERNANCE DES SECTIONS — CLAIR ↔ FONCÉ
   ========================================================= */
section {
  padding: 90px 0;
  position: relative;
  background: var(--bg-light);
  color: var(--ink);
}

section.bg-dark {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
}

/* Titres sur section foncée */
section.bg-dark h1,
section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4 { color: var(--ink-on-dark); }

section.bg-dark p { color: var(--ink-on-dark-soft); }

/* Séparateur doré entre sections */
section + section::before {
  content: '✦';
  position: absolute;
  top: -10px;
  right: 50%;
  transform: translateX(50%);
  color: var(--gold);
  background: var(--bg-light);
  padding: 0 14px;
  font-size: 0.8rem;
  z-index: 2;
}
section.bg-dark + section::before { background: var(--bg-light); }
section + section.bg-dark::before { background: var(--bg-dark); }

/* =========================================================
   BOUTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  border: none;
  white-space: nowrap; /* Empêche le saut de ligne sur mobile */
}

/* PRIMAIRE : bleu nuit + texte blanc */
.btn-primary {
  background: var(--bg-dark);
  color: #FFFFFF;
  border: 1px solid var(--bg-dark);
  box-shadow: 0 6px 20px rgba(10,30,46,0.25);
}
.btn-primary:hover {
  background: #13293D;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10,30,46,0.35);
}

/* DORÉ : fond doré + texte bleu nuit */
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; right: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: right 0.6s;
}
.btn-gold:hover::before { right: 100%; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184,149,63,0.4);
  background: #C9A961;
}

/* OUTLINE : contour doré + texte bleu nuit (sur fond clair) */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gold);
  font-weight: 600;
}
.btn-outline:hover {
  background: rgba(184,149,63,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* OUTLINE sur fond foncé */
section.bg-dark .btn-outline {
  color: var(--ink-on-dark);
  border-color: var(--gold);
}
section.bg-dark .btn-outline:hover {
  background: rgba(184,149,63,0.15);
}

.btn .arrow { font-size: 1.2rem; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(-6px); }

/* =========================================================
   BANNIÈRE HAUTE
   ========================================================= */
.top-banner {
  background: var(--bg-dark);
  color: var(--gold-light);
  text-align: center;
  padding: 14px 24px;
  font-size: 0.92rem;
  border-bottom: 2px solid var(--gold);
  letter-spacing: 0.3px;
}
.top-banner strong { color: var(--gold-pale); font-weight: 600; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  padding: 26px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--line-light);
  position: relative;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-mark { display: flex; align-items: center; gap: 14px; }
.brand-mark .logo-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1E7A8C 0%, var(--bg-dark) 80%);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF; font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(10,30,46,0.25), 0 0 0 4px var(--bg-light), 0 0 0 5px rgba(184,149,63,0.4);
}
.brand-mark .brand-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); font-weight: 700; }
.brand-mark .brand-sub { font-size: 0.72rem; color: var(--muted-light); letter-spacing: 2px; display: block; text-transform: uppercase; }

@media (max-width: 768px) {
  .site-header {
    padding: 20px 0;
  }
  .site-header .container {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
  .brand-mark {
    justify-content: center;
  }
  .site-header .btn {
    width: 100%;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 80px 0 100px;
  background: var(--bg-light);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(184,149,63,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(10,30,46,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  padding: 8px 22px;
  background: var(--card-on-light);
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}
.hero-tag::before { content: '✦'; color: var(--gold); margin-left: 8px; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero h1 .accent {
  color: #13293D;
  font-style: italic;
  display: block;
  margin-top: 8px;
}
.hero h1 .gold-line { display: inline-block; position: relative; }
.hero h1 .gold-line::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* VSL */
.vsl-wrap {
  max-width: 820px;
  margin: 20px auto 40px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,30,46,0.3), 0 0 0 1px var(--gold);
  background: var(--bg-dark);
}
.vsl-wrap::before { content: ''; display: block; padding-top: 56.25%; }
.vsl-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vsl-caption {
  text-align: center;
  color: var(--muted-light);
  font-size: 0.88rem;
  margin-top: -20px;
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: 0.5px;
}
.vsl-caption::before, .vsl-caption::after {
  content: '—';
  color: var(--gold);
  margin: 0 10px;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 780px;
  margin-inline: auto;
  line-height: 1.9;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-scenarios {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: right;
  background: var(--card-on-light);
  padding: 30px 36px;
  border-right: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero-scenarios p { margin-bottom: 10px; color: var(--ink-soft); font-size: 1.02rem; }
.hero-scenarios p:last-child { margin-bottom: 0; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
.chip {
  background: var(--card-on-light);
  border: 1px solid var(--line-light);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.91rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

section.bg-dark .chip {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  color: var(--ink-on-dark-soft);
  box-shadow: none;
}

/* =========================================================
   PHOTOS
   ========================================================= */
.photo-block {
  max-width: 960px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  position: relative;
  border: 1px solid var(--line-light);
}
section.bg-dark .photo-block { border-color: var(--line-dark); }

.photo-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-block.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--card-on-light) 0%, #EBE4D2 100%);
  color: var(--muted-light);
}
section.bg-dark .photo-block.placeholder {
  background: linear-gradient(135deg, var(--card-on-dark) 0%, #1A3348 100%);
  color: var(--muted-dark);
}
.photo-block.placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
}
.photo-block.placeholder .ph-icon { font-size: 2.6rem; margin-bottom: 14px; color: var(--gold); }
.photo-block.placeholder .ph-label { font-size: 1rem; color: var(--ink-soft); }
section.bg-dark .photo-block.placeholder .ph-label { color: var(--ink-on-dark-soft); }
.photo-block.placeholder .ph-note {
  font-size: 0.8rem;
  color: var(--muted-light);
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-body);
}
section.bg-dark .photo-block.placeholder .ph-note { color: var(--muted-dark); }

.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.photo-duo .photo-block { margin: 0; aspect-ratio: 4 / 3; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.section-header .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 1px;
}
section.bg-dark .section-header .kicker { color: var(--gold-light); }

.section-header .kicker::before,
.section-header .kicker::after {
  content: '◆';
  color: var(--gold);
  margin: 0 10px;
  font-size: 0.6rem;
  vertical-align: middle;
}
section.bg-dark .section-header .kicker::before,
section.bg-dark .section-header .kicker::after { color: var(--gold-light); }

.section-header h2 { margin-bottom: 16px; }
.section-header .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-style: italic;
}
section.bg-dark .section-header .lead { color: var(--ink-on-dark-soft); }

/* =========================================================
   ÉMOTION
   ========================================================= */
.emotion-lines {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.emotion-lines p { font-size: 1.08rem; line-height: 2; margin-bottom: 14px; }
.emotion-lines p.pause { color: var(--muted-light); font-style: italic; }
section.bg-dark .emotion-lines p.pause { color: var(--muted-dark); }

.divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px auto;
  position: relative;
  z-index: 1;
}

.emotion-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: right;
  background: var(--card-on-light);
  padding: 44px 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
section.bg-dark .emotion-block {
  background: var(--card-on-dark);
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.emotion-block h3 {
  text-align: center;
  margin-bottom: 24px;
  color: #13293D;
  font-style: italic;
}
section.bg-dark .emotion-block h3 { color: var(--gold-light); }

.emotion-block ul { list-style: none; padding: 0; }
.emotion-block ul li {
  padding: 12px 0;
  padding-right: 28px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .emotion-block ul li {
  color: var(--ink-on-dark-soft);
  border-bottom-color: var(--line-dark);
}
.emotion-block ul li:last-child { border-bottom: none; }
.emotion-block ul li::before {
  content: '◆';
  color: var(--gold);
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 0.7rem;
}
.emotion-block .conclusion {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}
section.bg-dark .emotion-block .conclusion { color: var(--gold-light); }

/* =========================================================
   CTA INLINE (toujours sur fond sombre avec accents dorés)
   ========================================================= */
.cta-inline {
  text-align: center;
  padding: 56px 32px;
  margin: 40px auto 0;
  max-width: 860px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  color: var(--ink-on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
  z-index: 1;
}
.cta-inline::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inline p {
  font-size: 1.2rem;
  color: var(--ink-on-dark);
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.cta-inline .btn { position: relative; z-index: 1; }

/* =========================================================
   LISTES STYLISÉES (COMPATIBLE WYSIWYG)
   ========================================================= */
.styled-list, .styled-list-wrapper ul, .prose ul {
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.styled-list li, .styled-list-wrapper ul li, .prose ul li {
  padding: 16px 0;
  padding-right: 40px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.9;
  border-bottom: 1px solid var(--line-light);
}
section.bg-dark .styled-list li, section.bg-dark .styled-list-wrapper ul li, section.bg-dark .prose ul li {
  color: var(--ink-on-dark-soft);
  border-bottom-color: var(--line-dark);
}
.styled-list li:last-child, .styled-list-wrapper ul li:last-child, .prose ul li:last-child { border-bottom: none; }
.styled-list li::before, .styled-list-wrapper ul li::before, .prose ul li::before {
  content: '◆';
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--gold);
  font-size: 0.7rem;
}

.prose { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.prose p { font-size: 1.05rem; margin-bottom: 18px; color: var(--ink-soft); }
section.bg-dark .prose p { color: var(--ink-on-dark-soft); }

.prose .quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #13293D;
  text-align: center;
  padding: 24px 0;
  font-style: italic;
  line-height: 1.6;
}
section.bg-dark .prose .quote { color: var(--gold-light); }

.prose .emphasis {
  background: var(--card-on-light);
  padding: 24px 30px;
  border-right: 3px solid var(--gold);
  margin: 24px 0;
  font-size: 1.08rem;
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: right;
}
.prose .emphasis p {
  color: inherit;
  margin-bottom: 8px;
  text-align: right !important;
}
.prose .emphasis p:last-child {
  margin-bottom: 0;
}
section.bg-dark .prose .emphasis {
  background: var(--card-on-dark);
  color: var(--ink-on-dark);
}

/* =========================================================
   CHIFFRES
   ========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: var(--card-on-light);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  text-align: right;
  transition: transform 0.3s, box-shadow 0.3s;
}
section.bg-dark .stat-card {
  background: var(--card-on-dark);
  box-shadow: var(--shadow-md);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.stat-card .stat-source {
  color: #13293D;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-family: var(--font-display);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .stat-card .stat-source {
  color: var(--gold-light);
  border-bottom-color: var(--line-dark);
}

.stat-card .stat-text {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}
section.bg-dark .stat-card .stat-text { color: var(--ink-on-dark-soft); }

.stats-conclusion {
  max-width: 720px;
  margin: 50px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stats-conclusion p { color: var(--ink-soft); }
section.bg-dark .stats-conclusion p { color: var(--ink-on-dark-soft); }

.stats-conclusion .q {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 12px 0;
}
section.bg-dark .stats-conclusion .q { color: var(--gold-light); }

/* =========================================================
   DOULEUR
   ========================================================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pain-card {
  background: var(--card-on-light);
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
section.bg-dark .pain-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50px; height: 3px;
  background: var(--gold);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pain-card .emoji { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.pain-card h4 { color: var(--ink); margin-bottom: 12px; }
section.bg-dark .pain-card h4 { color: var(--ink-on-dark); }
.pain-card p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.8; margin-bottom: 0; }
section.bg-dark .pain-card p { color: var(--ink-on-dark-soft); }

/* =========================================================
   IDENTITÉ
   ========================================================= */
.identity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.identity-card {
  text-align: center;
  padding: 34px 24px;
  background: var(--card-on-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  transition: all 0.3s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
section.bg-dark .identity-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.identity-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.identity-card .icon { font-size: 2.2rem; margin-bottom: 16px; display: block; filter: sepia(0.3); }
.identity-card h4 { color: var(--ink); font-size: 1.1rem; }
section.bg-dark .identity-card h4 { color: var(--ink-on-dark); }

/* =========================================================
   POUR QUI / PAS POUR QUI
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.audience-card {
  background: var(--card-on-light);
  padding: 42px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
}
section.bg-dark .audience-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.audience-card.yes { border-top: 3px solid var(--gold); }
.audience-card.no { border-top: 3px solid var(--red); }

.audience-card h3 {
  margin-bottom: 22px;
  font-size: 1.3rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .audience-card h3 { border-bottom-color: var(--line-dark); }

.audience-card.yes h3 { color: var(--ink); }
section.bg-dark .audience-card.yes h3 { color: var(--gold-light); }
.audience-card.no h3 { color: var(--red-deep); }

.audience-card ul { list-style: none; padding: 0; }
.audience-card ul li {
  padding: 11px 0;
  padding-right: 32px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}
section.bg-dark .audience-card ul li { color: var(--ink-on-dark-soft); }
.audience-card ul li::before {
  position: absolute;
  right: 0; top: 14px;
  font-weight: 700;
  font-size: 1.05rem;
}
.audience-card.yes ul li::before { content: '✓'; color: var(--gold); }
.audience-card.no ul li::before { content: '✕'; color: var(--red); }

/* =========================================================
   BIO
   ========================================================= */
.bio-inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.bio .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
section.bg-dark .bio .kicker { color: var(--gold-light); }

.bio h2 { margin-bottom: 6px; font-size: clamp(2rem, 4vw, 3rem); }
.bio .role {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-style: italic;
}
section.bg-dark .bio .role { color: var(--ink-on-dark-soft); }

.bio-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: var(--card-on-light);
  border: 2px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  font-size: 3rem;
  box-shadow: var(--shadow-md), 0 0 0 6px var(--bg-light), 0 0 0 7px var(--gold);
}
section.bg-dark .bio-avatar {
  background: var(--card-on-dark);
  box-shadow: var(--shadow-lg), 0 0 0 6px var(--bg-dark), 0 0 0 7px var(--gold);
  color: var(--muted-dark);
}
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; }

.bio .bio-text {
  text-align: right;
  background: var(--card-on-light);
  padding: 46px 50px;
  border-radius: var(--radius-lg);
  border-right: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}
section.bg-dark .bio .bio-text {
  background: var(--card-on-dark);
  box-shadow: var(--shadow-lg);
}

.bio .bio-text p { font-size: 1.05rem; margin-bottom: 16px; color: var(--ink-soft); }
section.bg-dark .bio .bio-text p { color: var(--ink-on-dark-soft); }

.bio .bio-text .em {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  text-align: center;
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin: 16px 0;
}
section.bg-dark .bio .bio-text .em {
  color: var(--gold-light);
  border-top-color: var(--line-dark);
  border-bottom-color: var(--line-dark);
}

.bio-highlights {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bio-highlight {
  text-align: right;
  padding: 26px;
  background: var(--card-on-light);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
section.bg-dark .bio-highlight {
  background: var(--card-on-dark);
  box-shadow: var(--shadow-md);
}
.bio-highlight:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bio-highlight .h-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; filter: sepia(0.3); }
.bio-highlight p { font-size: 0.98rem; margin-bottom: 0; color: var(--ink-soft); }
section.bg-dark .bio-highlight p { color: var(--ink-on-dark-soft); }
.bio-highlight strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
section.bg-dark .bio-highlight strong { color: var(--ink-on-dark); }

/* =========================================================
   COMPARAISON
   ========================================================= */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.compare-col {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  background: var(--card-on-light);
}
section.bg-dark .compare-col {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.compare-col.without { border-top: 3px solid var(--red); }
.compare-col.with { border-top: 3px solid var(--gold); }

.compare-col h3 {
  margin-bottom: 26px;
  font-size: 1.3rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .compare-col h3 { border-bottom-color: var(--line-dark); }

.compare-col.without h3 { color: var(--red-deep); }
.compare-col.with h3 { color: var(--ink); }
section.bg-dark .compare-col.with h3 { color: var(--gold-light); }

.compare-col ul { list-style: none; padding: 0; }
.compare-col ul li {
  padding: 13px 0;
  padding-right: 32px;
  position: relative;
  line-height: 1.7;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .compare-col ul li {
  color: var(--ink-on-dark-soft);
  border-bottom-color: var(--line-dark);
}
.compare-col ul li:last-child { border-bottom: none; }
.compare-col ul li::before {
  position: absolute;
  right: 0; top: 15px;
  font-size: 1.05rem;
  font-weight: 700;
}
.compare-col.without ul li::before { content: '✕'; color: var(--red); }
.compare-col.with ul li::before { content: '✓'; color: var(--gold); }

/* =========================================================
   MAJALIS
   ========================================================= */
.majalis-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.majalis-intro p { color: var(--ink-soft); }
section.bg-dark .majalis-intro p { color: var(--ink-on-dark-soft); }

.majalis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.majlis-card {
  background: var(--card-on-light);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--gold);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
section.bg-dark .majlis-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.majlis-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.majlis-card .num {
  position: absolute;
  top: 20px; left: 30px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-pale);
  font-weight: 700;
  line-height: 1;
}
section.bg-dark .majlis-card .num { color: rgba(184,149,63,0.4); }

.majlis-card h3 {
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 1.6rem;
}
section.bg-dark .majlis-card h3 { color: var(--ink-on-dark); }

.majlis-card .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
section.bg-dark .majlis-card .tagline { color: var(--gold-light); }

.majlis-card .meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .majlis-card .meta {
  border-top-color: var(--line-dark);
  border-bottom-color: var(--line-dark);
}
.majlis-card .meta span { font-size: 0.9rem; color: var(--ink-soft); }
section.bg-dark .majlis-card .meta span { color: var(--ink-on-dark-soft); }
.majlis-card .meta .price { color: var(--gold); font-weight: 600; }
section.bg-dark .majlis-card .meta .price { color: var(--gold-light); }

.majlis-card .desc { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.85; margin-bottom: 16px; flex-grow: 1; }
section.bg-dark .majlis-card .desc { color: var(--ink-on-dark-soft); }
.majlis-card .desc p { color: inherit; margin-bottom: 12px; }
.majlis-card .desc ul { list-style: none; padding: 0; margin: 12px 0; }
.majlis-card .desc ul li {
  padding: 5px 0;
  padding-right: 20px;
  position: relative;
  font-size: 0.95rem;
}
.majlis-card .desc ul li::before {
  content: '◆';
  position: absolute;
  right: 0; top: 10px;
  color: var(--gold);
  font-size: 0.55rem;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card-on-light);
  border-radius: var(--radius-lg);
  padding: 64px 54px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}
section.bg-dark .pricing-card {
  background: var(--card-on-dark);
}
.pricing-card::before {
  content: '✦';
  position: absolute;
  top: -18px; right: 50%;
  transform: translateX(50%);
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-card .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
section.bg-dark .pricing-card .kicker { color: var(--gold-light); }

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--ink);
}
section.bg-dark .pricing-card h3 { color: var(--ink-on-dark); }

.pricing-card .total-value {
  font-size: 1rem;
  color: var(--muted-light);
  margin-bottom: 10px;
}
section.bg-dark .pricing-card .total-value { color: var(--muted-dark); }

.pricing-card .total-value .strike {
  text-decoration: line-through;
  color: var(--red);
  font-weight: 700;
}

.pricing-card .separator {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 14px 0;
}
section.bg-dark .pricing-card .separator { color: var(--ink-on-dark-soft); }

.pricing-card .price-main {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
section.bg-dark .pricing-card .price-main { color: var(--gold-light); }

.pricing-card .price-main .currency {
  font-size: 0.45em;
  color: var(--gold);
  vertical-align: super;
  font-weight: 400;
  margin-right: 8px;
}
.pricing-card .duration {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-style: italic;
}
section.bg-dark .pricing-card .duration { color: var(--ink-on-dark-soft); }

.includes-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin: 30px 0 20px;
}
section.bg-dark .includes-title { color: var(--gold-light); }

.includes-list {
  list-style: none;
  padding: 0;
  text-align: right;
  max-width: 480px;
  margin: 0 auto 32px;
}
.includes-list li {
  padding: 12px 0;
  padding-right: 32px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
section.bg-dark .includes-list li {
  color: var(--ink-on-dark-soft);
  border-bottom-color: var(--line-dark);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: '✓';
  position: absolute;
  right: 0; top: 12px;
  color: var(--gold);
  font-weight: 700;
}

.pricing-notes {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.9;
}
section.bg-dark .pricing-notes {
  border-top-color: var(--line-dark);
  color: var(--muted-dark);
}
.pricing-notes p { margin-bottom: 6px; color: inherit; }

/* =========================================================
   POURQUOI ANNUEL
   ========================================================= */
.why-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--card-on-light);
  padding: 54px 52px;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
section.bg-dark .why-content {
  background: var(--card-on-dark);
  box-shadow: var(--shadow-lg);
}
.why-content p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 18px; }
section.bg-dark .why-content p { color: var(--ink-on-dark-soft); }

.why-content .quote-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin: 32px 0;
  line-height: 1.7;
}
section.bg-dark .why-content .quote-big {
  color: var(--gold-light);
  border-top-color: var(--line-dark);
  border-bottom-color: var(--line-dark);
}

.why-content .needs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.why-content .needs div {
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
section.bg-dark .why-content .needs div {
  background: var(--bg-dark);
  color: var(--gold-light);
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-right: 40px;
  z-index: 1;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-pale) 50%, transparent 100%);
}
.timeline .step {
  position: relative;
  padding: 14px 0;
  padding-right: 24px;
}
.timeline .step::before {
  content: '';
  position: absolute;
  right: -34px; top: 22px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg-light), 0 0 0 5px var(--gold);
}
section.bg-dark .timeline .step::before {
  box-shadow: 0 0 0 4px var(--bg-dark), 0 0 0 5px var(--gold);
}
.timeline .step p { color: var(--ink-soft); margin-bottom: 0; font-size: 1rem; }
section.bg-dark .timeline .step p { color: var(--ink-on-dark-soft); }

.closing-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  padding: 32px;
  background: var(--card-on-light);
  border-radius: var(--radius-lg);
  border-right: 3px solid var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
section.bg-dark .closing-note {
  background: var(--card-on-dark);
  color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.test-card {
  background: var(--card-on-light);
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
section.bg-dark .test-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.test-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 26px;
  font-size: 4rem;
  color: var(--gold-pale);
  font-family: var(--font-display);
  line-height: 1;
}
section.bg-dark .test-card::before { color: rgba(184,149,63,0.3); }

.test-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.test-card .quote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}
section.bg-dark .test-card .quote { color: var(--ink-on-dark); }

.test-card .author {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
section.bg-dark .test-card .author { border-top-color: var(--line-dark); }

.test-card .author strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
section.bg-dark .test-card .author strong { color: var(--gold-light); }

.test-card .author span {
  color: var(--muted-light);
  font-size: 0.88rem;
}
section.bg-dark .test-card .author span { color: var(--muted-dark); }

.test-conclusion {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-style: italic;
  position: relative;
  z-index: 1;
}
section.bg-dark .test-conclusion { color: var(--gold-light); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item {
  background: var(--card-on-light);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
section.bg-dark .faq-item {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item[open] { border-color: var(--gold); }

.faq-item summary {
  padding: 24px 30px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-left: 68px;
  transition: background 0.2s;
}
section.bg-dark .faq-item summary { color: var(--ink-on-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  left: 26px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--bg-dark);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s, background 0.3s;
  border: 1px solid var(--gold);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
  color: var(--bg-dark);
}
.faq-item .answer {
  padding: 0 30px 26px;
  color: var(--ink-soft);
  line-height: 1.9;
}
section.bg-dark .faq-item .answer { color: var(--ink-on-dark-soft); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta .final-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-dark);
  padding: 90px 56px;
  border-radius: var(--radius-lg);
  color: var(--ink-on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
  z-index: 1;
}
.final-cta .final-inner::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .final-inner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,122,140,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}
.final-cta h2 {
  color: var(--ink-on-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.final-cta h2 em { color: var(--gold-light); font-style: italic; }
.final-cta .final-inner p { color: var(--ink-on-dark-soft); font-size: 1.05rem; position: relative; z-index: 1; }

.final-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 640px;
  margin: 36px auto 44px;
  text-align: right;
  position: relative;
  z-index: 1;
}
.final-lists h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-style: italic;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184,149,63,0.3);
}
.final-lists ul { list-style: none; padding: 0; }
.final-lists ul li {
  padding: 9px 0;
  padding-right: 24px;
  position: relative;
  color: var(--ink-on-dark-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
.final-lists ul li::before {
  position: absolute;
  right: 0; top: 11px;
  font-size: 0.9rem;
}
.final-lists .no ul li::before { content: '✕'; color: var(--muted-dark); }
.final-lists .yes ul li::before { content: '✓'; color: var(--gold-light); }

.final-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.final-chips .chip {
  background: rgba(242,238,227,0.08);
  border: 1px solid var(--gold);
  color: var(--ink-on-dark-soft);
  box-shadow: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-dark);
  color: var(--muted-dark);
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid var(--gold);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; right: 50%;
  transform: translateX(50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.site-footer .brand-text { color: var(--gold-light); font-size: 1.4rem; font-family: var(--font-display); }
.site-footer .tagline { margin-top: 12px; font-style: italic; color: var(--ink-on-dark-soft); }
.site-footer .copyright { margin-top: 26px; font-size: 0.85rem; color: var(--muted-dark); }


/* =========================================================
   COMPTE À REBOURS FIXE
   Modifie la date dans l'attribut data-deadline du HTML.
   ========================================================= */
body { padding-top: 74px; }

.countdown-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(10,30,46,0.22);
}

.countdown-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.countdown-message {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.98rem;
  white-space: nowrap;
}

.countdown-timer {
  display: flex;
  gap: 10px;
  align-items: center;
  direction: ltr;
}

.countdown-unit {
  min-width: 64px;
  text-align: center;
  background: rgba(242,238,227,0.08);
  border: 1px solid rgba(184,149,63,0.45);
  border-radius: var(--radius);
  padding: 5px 8px;
}

.countdown-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: #FFFFFF;
}

.countdown-unit span {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-on-dark-soft);
  margin-top: 4px;
}

.countdown-cta {
  padding: 9px 18px;
  font-size: 0.9rem;
}

/* =========================================================
   SECTIONS MÉDIAS : 12 IMAGES + 12 VIDÉOS
   Dossiers recommandés :
   assets/images/photo-01.jpg ... photo-12.jpg
   assets/videos/video-01.mp4 ... video-12.mp4
   ========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.media-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-on-light);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

section.bg-dark .media-image-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}

.media-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carrousel vidéo */
.video-carousel-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 1;
}

.video-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.video-carousel::-webkit-scrollbar { height: 8px; }
.video-carousel::-webkit-scrollbar-track { background: transparent; }
.video-carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.video-card {
  flex: 0 0 min(78vw, 520px);
  scroll-snap-align: start;
  background: var(--card-on-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

section.bg-dark .video-card {
  background: var(--card-on-dark);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}

.video-card video,
.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-card .video-title {
  padding: 14px 18px 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

section.bg-dark .video-card .video-title { color: var(--ink-on-dark-soft); }

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg-dark);
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.25s, background 0.25s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  body { padding-top: 118px; }
  .countdown-inner { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .countdown-message { white-space: normal; text-align: center; line-height: 1.4; }
  .countdown-timer { gap: 6px; }
  .countdown-unit { min-width: 54px; padding: 5px 6px; }
  .countdown-unit strong { font-size: 1.05rem; }
  .countdown-cta { display: none; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  body { padding-top: 124px; }
  .countdown-timer { width: 100%; justify-content: center; }
  .countdown-unit { min-width: 50px; }
  .countdown-unit span { font-size: 0.66rem; }
  .media-grid { grid-template-columns: 1fr; }
  .video-card { flex-basis: 88vw; }
}

@media (max-width: 900px) {
  section { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .bio-highlights { grid-template-columns: 1fr; }
  .final-lists { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .bio .bio-text, .emotion-block, .why-content { padding: 32px 26px; }
  .pricing-card { padding: 44px 28px; }
  .compare-col { padding: 32px 26px; }
  .final-cta .final-inner { padding: 54px 28px; }
  .photo-duo { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero-tag { font-size: 0.88rem; padding: 6px 16px; }
  .hero-scenarios { padding: 22px 24px; }
  .includes-list { max-width: 100%; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag, .hero h1, .vsl-wrap, .hero-sub, .hero-scenarios, .hero-cta, .hero-chips {
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero h1 { animation-delay: 0.1s; }
.vsl-wrap { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-scenarios { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.5s; }
.hero-chips { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }


/* =========================================================
   VERSION OVH MODULAIRE — AJOUTS V6
   ========================================================= */
.countdown-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(10,30,46,0.22);
}
.countdown-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.countdown-message { color: var(--gold-light); font-size: 0.95rem; font-weight: 600; white-space: nowrap; }
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 8px; direction: ltr; }
.countdown-unit { min-width: 62px; padding: 6px 8px; background: rgba(242,238,227,0.08); border: 1px solid rgba(184,149,63,0.55); border-radius: var(--radius); text-align: center; }
.countdown-unit strong { display: block; color: #fff; font-size: 1.18rem; line-height: 1.1; font-family: var(--font-body); }
.countdown-unit span { display: block; color: var(--ink-on-dark-soft); font-size: 0.7rem; line-height: 1.2; }
.countdown-cta { padding: 8px 18px; font-size: 0.9rem; }
body { padding-top: 78px; }

.media-carousel-section .lead strong { color: var(--gold); }
section.bg-dark.media-carousel-section .lead strong { color: var(--gold-light); }
.carousel-shell { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 6px 2px 18px; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item { scroll-snap-align: start; flex: 0 0 calc((100% - 44px) / 3); background: var(--card-on-light); border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
section.bg-dark .carousel-item { background: var(--card-on-dark); border-color: var(--line-dark); box-shadow: var(--shadow-md); }
.image-carousel .carousel-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.video-carousel .carousel-item { position: relative; cursor: pointer; }
.video-carousel .carousel-item iframe, .video-carousel .carousel-item video, .video-carousel .carousel-item .video-placeholder-bg { width: 100%; aspect-ratio: 16 / 9; display: block; border: 0; background: #000; }
.carousel-caption { padding: 12px 16px 16px; color: var(--ink-soft); font-size: 0.94rem; text-align: center; }
section.bg-dark .carousel-caption { color: var(--ink-on-dark-soft); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 20px; }
.carousel-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); background: var(--bg-dark); color: #fff; cursor: pointer; font-size: 1.35rem; line-height: 1; transition: transform 0.25s, background 0.25s; }
.carousel-arrow:hover { transform: translateY(-2px); background: var(--gold); color: var(--bg-dark); }
section.bg-dark .carousel-arrow { background: var(--gold); color: var(--bg-dark); }
.carousel-dots { display: flex; align-items: center; justify-content: center; gap: 8px; direction: ltr; flex-wrap: wrap; max-width: 680px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line-light); cursor: pointer; transition: transform 0.2s, background 0.2s, width 0.2s; }
section.bg-dark .carousel-dot { background: var(--line-dark); }
.carousel-dot.is-active { width: 28px; border-radius: 20px; background: var(--gold); }
@media (max-width: 900px) {
  body { padding-top: 112px; }
  .countdown-inner { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .countdown-message { white-space: normal; text-align: center; line-height: 1.4; }
  .countdown-timer { gap: 6px; }
  .countdown-unit { min-width: 54px; padding: 5px 6px; }
  .countdown-unit strong { font-size: 1.05rem; }
  .countdown-cta { display: none; }
  .carousel-item { flex-basis: 72vw; }
  .test-carousel .carousel-item { flex-basis: 100%; }
}
@media (max-width: 540px) {
  body { padding-top: 120px; }
  .countdown-timer { width: 100%; justify-content: center; }
  .countdown-unit { min-width: 50px; }
  .countdown-unit span { font-size: 0.66rem; }
  .carousel-item { flex-basis: 88vw; }
  .test-carousel .carousel-item { flex-basis: 100%; }
  .carousel-controls { gap: 10px; }
  .carousel-arrow { width: 40px; height: 40px; }
}

.test-carousel .carousel-item { flex: 0 0 100%; }

@media (max-width: 768px) {
  /* Assurer que les contrôles du carousel sont bien en dessous */
  .carousel-controls {
    width: 100%;
    margin-top: 16px !important;
    padding-bottom: 10px;
  }
  /* Déplacer le bouton Play en bas pour laisser l'espace visible sur la miniature */
  .play-overlay {
    top: auto !important;
    bottom: 12px !important;
    left: 12px !important;
    transform: none !important;
    width: 44px !important;
    height: 44px !important;
  }
  .carousel-item.video-thumbnail:hover .play-overlay {
    transform: scale(1.05) !important;
  }
  .play-overlay svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* =========================================================
   MODAL VIDÉO
   ========================================================= */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(205, 160, 82, 0.85); /* gold with opacity */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.2s, background 0.2s;
  pointer-events: none; /* Let clicks pass to parent */
}
.carousel-item.video-thumbnail:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}
.play-overlay svg {
  width: 28px;
  height: 28px;
  margin-left: 4px; /* visually center the play triangle */
}

.video-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 30, 46, 0.9);
  backdrop-filter: blur(5px);
}
.video-modal-content {
  position: relative;
  z-index: 100001;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}
.video-modal.is-active .video-modal-content {
  transform: translateY(0) scale(1);
}
.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.video-modal-close:hover {
  color: var(--gold);
}
.video-player-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-player-container iframe, 
.video-player-container video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .video-modal-content { width: 95%; overflow: visible; }
  .video-modal-close { top: -40px; right: 0; }
}

/* =========================================================
   CINEMATIC LOADER
   ========================================================= */
.sawt-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
}
.sawt-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sawt-loader-logo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sawt-loader-logo {
  width: 130px;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: loaderPulse 2s infinite ease-in-out;
}
.sawt-loader-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 1;
}
.sawt-loader-bg {
  fill: none;
  stroke: rgba(184,149,63,0.15);
  stroke-width: 4;
}
.sawt-loader-bar {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 471.24; /* 2 * PI * 75 */
  stroke-dashoffset: 471.24;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}
.sawt-loader-title {
  font-family: var(--font-display);
  font-size: 4rem;
  margin: 0 0 20px 0;
  text-align: center;
  color: transparent;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineText 3s linear infinite, blurReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  position: relative;
}
/* Reflet brillant dynamique en dessous ou derrière */
.sawt-loader-title::after {
  content: "صوت التربية";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
  animation: shineText 3s linear infinite;
}
.sawt-loader-progress {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 2px;
  position: relative;
}
.sawt-loader-progress::after {
  content: '%';
  font-size: 1.5rem;
  position: absolute;
  top: 5px;
  right: -25px; /* RTL format, symbole à droite */
  opacity: 0.7;
}

@keyframes loaderPulse {
  0% { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 10px rgba(184,149,63,0.1)); }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 30px rgba(184,149,63,0.4)); }
  100% { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 10px rgba(184,149,63,0.1)); }
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes blurReveal {
  0% {
    filter: blur(15px);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   SCROLL INDICATOR (ASCENSEUR)
   ========================================================= */
.scroll-indicator-container {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Déplacé à droite selon la demande */
  width: 60px;
  height: 60px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.scroll-indicator-container.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-indicator-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(184,149,63,0.3);
  border-radius: 50%;
}
.scroll-progress-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* Commencer en haut */
}
.scroll-progress-bg {
  fill: rgba(10, 30, 46, 0.8); /* Fond léger pour la lisibilité */
  stroke: var(--line-dark);
  stroke-width: 4;
}
.scroll-progress-bar {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 157.08; /* 2 * PI * R (R=25) */
  stroke-dashoffset: 157.08;
  transition: stroke-dashoffset 0.1s linear;
}
.scroll-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  direction: ltr;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Le "truc spécial" : la flèche de remontée apparaît au survol */
.scroll-indicator-container::after {
  content: '↑';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 10px); /* Commence un peu plus bas */
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-indicator-container:hover .scroll-progress-text {
  opacity: 0;
  transform: translate(-50%, -20px); /* Le texte part vers le haut */
}
.scroll-indicator-container:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%); /* La flèche prend sa place */
}
