/* =========================================================
   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;
  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;
}

/* 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; }

/* =========================================================
   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
   ========================================================= */
.styled-list {
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.styled-list 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 {
  color: var(--ink-on-dark-soft);
  border-bottom-color: var(--line-dark);
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before {
  content: '◆';
  position: absolute;
  right: 0;
  top: 20px;
  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);
}
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); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@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; }