/* =========================================================
   Jennifer Perrault — Nahara Coaching
   Landing page d'offre
   Tokens : strictement issus de brand-tokens.json (verbatim)
   ========================================================= */

:root {
  --bg: #080720;
  --bg2: #0f0d35;
  --coral: #6B3FA0;
  --coral-light: #9B6FCF;
  --gold: #FFE66D;
  --white: #ffffff;
  --white70: rgba(255, 255, 255, 0.7);
  --white40: rgba(255, 255, 255, 0.4);
  --white15: rgba(255, 255, 255, 0.15);
  --white08: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --card-gradient: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
  --btn-gradient: linear-gradient(135deg, var(--coral), #FF6B6B);
  --shadow-cta: 0 8px 30px rgba(107, 63, 160, 0.4);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(107, 63, 160, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(100, 80, 200, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--coral); color: var(--white); }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 200;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

section { padding: 5rem 0; position: relative; z-index: 1; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title span { color: var(--gold); }
.section-title em { font-style: normal; color: var(--coral); }

.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white70);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 7, 32, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--white15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0.95;
}
.logo span { color: var(--coral); }
.header-cta {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 0.7rem 1.25rem;
  border-radius: 50px;
  background: var(--btn-gradient);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary { background: var(--btn-gradient); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); }
.btn-secondary {
  background: transparent;
  color: var(--coral);
  border: 1px solid rgba(107, 63, 160, 0.4);
}
.btn-secondary:hover {
  background: rgba(107, 63, 160, 0.1);
  border-color: var(--coral);
  color: var(--white);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }
.micro { font-size: 12px; color: var(--white40); margin-top: 1rem; letter-spacing: 0.02em; }

/* ---------- Hero ---------- */
.hero { padding-top: 4rem; padding-bottom: 5rem; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
  letter-spacing: -0.01em;
}
.hero h1 .accent-gold { color: var(--gold); }
.hero h1 .accent-coral { color: var(--coral); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--white70);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ---------- Identification ---------- */
.id-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.id-card {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.375rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--white70);
  transition: all 0.25s ease;
}
.id-card:hover {
  background: rgba(107, 63, 160, 0.08);
  border-color: rgba(107, 63, 160, 0.4);
  color: var(--white);
  transform: translateX(4px);
}
.id-card::before {
  content: '→';
  color: var(--coral);
  font-weight: 600;
  margin-right: 0.55rem;
}
.id-transition {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white70);
  max-width: 620px;
  margin-top: 1.5rem;
}

/* ---------- Problème ---------- */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.tried-list {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.625rem;
}
.tried-list h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.875rem;
  letter-spacing: 0.01em;
}
.tried-list ul { list-style: none; }
.tried-list li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white70);
  padding: 0.25rem 0 0.25rem 1.4rem;
  position: relative;
}
.tried-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--coral);
  opacity: 0.7;
}
.reframe {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.625rem;
}
.reframe-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reframe p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white70);
  margin-bottom: 0.75rem;
}
.reframe p:last-child { margin-bottom: 0; }
.reframe strong { color: var(--white); font-weight: 500; }
.cycle {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white40);
  font-family: 'Playfair Display', serif;
}
.cycle span {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--white15);
  border-radius: 50px;
  color: var(--white70);
  background: var(--white08);
}
.cycle .arrow { border: none; background: transparent; padding: 0; color: var(--coral); }

/* ---------- Anti-sell ---------- */
.anti-sell { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.anti-col {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 1.625rem;
}
.anti-col.positive { border-color: rgba(107, 63, 160, 0.35); }
.anti-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}
.anti-col.positive h3 { color: var(--coral); }
.anti-col ul { list-style: none; }
.anti-col li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white70);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}
.anti-col.negative li::before {
  content: '✗';
  position: absolute; left: 0;
  color: var(--white40);
}
.anti-col.positive li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--coral);
  font-weight: 600;
}
.anti-col strong { color: var(--white); font-weight: 500; }

/* ---------- Méthode ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.pillar {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.pillar:hover { border-color: rgba(107, 63, 160, 0.4); transform: translateY(-3px); }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.875rem;
}
.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.pillar p { font-size: 14px; line-height: 1.7; color: var(--white70); }

.session-block {
  background: var(--card-gradient);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  color: rgba(8, 7, 32, 0.88);
  margin-bottom: 1.5rem;
}
.session-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 1rem;
}
.session-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.session-flow span {
  padding: 0.45rem 0.9rem;
  background: rgba(8, 7, 32, 0.12);
  border-radius: 50px;
  color: var(--bg);
}
.session-flow .arrow { background: transparent; padding: 0; color: var(--bg); opacity: 0.55; font-weight: 700; }
.session-block p { font-size: 14px; line-height: 1.75; color: rgba(8, 7, 32, 0.78); }
.between-sessions {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.between-sessions h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.between-sessions p { font-size: 14px; line-height: 1.75; color: var(--white70); }
.between-sessions strong { color: var(--white); font-weight: 500; }

/* ---------- Résultats ---------- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.result-col {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
}
.result-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.result-col.before h3 { color: var(--white40); }
.result-col.after h3 { color: var(--coral); }
.result-col ul { list-style: none; }
.result-col li {
  font-size: 14px;
  line-height: 1.7;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.result-col.before li {
  color: var(--white40);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
.result-col.after li { color: var(--white70); }
.result-col.before li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--white40);
}
.result-col.after li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--coral);
  font-weight: 600;
}
.anti-promise {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.12), rgba(255, 230, 109, 0.12));
  border: 1px solid rgba(107, 63, 160, 0.3);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
}
.anti-promise h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}
.anti-promise p, .anti-promise li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white70);
}
.anti-promise .not-promise-label { margin-top: 1rem; color: var(--white); font-weight: 500; }
.anti-promise ul { list-style: none; margin-top: 0.5rem; }
.anti-promise li { padding-left: 1.4rem; position: relative; }
.anti-promise li::before {
  content: '✗';
  position: absolute; left: 0;
  color: var(--coral);
  opacity: 0.6;
}
.anti-promise em { font-style: italic; color: var(--white); }

/* ---------- Témoignages ---------- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.testimonial {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.testimonial:hover { border-color: rgba(107, 63, 160, 0.3); }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-quote::before {
  content: '“';
  color: var(--coral);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 0;
  display: inline-block;
  transform: translateY(8px);
  margin-right: 4px;
}
.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.01em;
}
.testimonial-role {
  font-size: 12px;
  color: var(--white40);
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}

/* ---------- Offres ---------- */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.offer {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.offer:hover { transform: translateY(-3px); }
.offer.featured {
  border-color: var(--coral);
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.10), rgba(255, 230, 109, 0.06));
  box-shadow: 0 0 0 1px rgba(107, 63, 160, 0.2);
}
.offer-badge {
  position: absolute;
  top: -12px;
  right: 1.75rem;
  background: var(--btn-gradient);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}
.offer-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.offer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.offer-tagline { font-size: 14px; color: var(--white70); margin-bottom: 1.25rem; font-style: italic; }
.offer-duration {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.offer ul { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.offer li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white70);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
}
.offer li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--coral);
  font-weight: 600;
}
.offer .btn { width: 100%; }

.offer-common {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
}
.offer-common h4 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.offer-common p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white70);
  margin-bottom: 0.5rem;
}
.offer-common p:last-child { margin-bottom: 0; }
.scarcity {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(107, 63, 160, 0.4);
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-photo {
  aspect-ratio: 1 / 1;
  background: var(--card-gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.2), transparent 60%);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white70);
  margin-bottom: 1.1rem;
}
.about-text p strong { color: var(--white); font-weight: 500; }
.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.badge {
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--white15);
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white70);
  background: var(--white08);
}
.badge strong { color: var(--coral); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(107, 63, 160, 0.4); }
.faq-item summary {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--coral);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 14px;
  line-height: 1.75;
  color: var(--white70);
}
.faq-item .faq-answer p { margin-bottom: 0.5rem; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }
.faq-item .faq-answer em { color: var(--white); }

/* ---------- CTA final ---------- */
.final-cta {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.15), rgba(255, 230, 109, 0.15));
  border: 1px solid rgba(107, 63, 160, 0.3);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}
.final-cta h2 span { color: var(--gold); }
.final-cta h2 em { font-style: normal; color: var(--coral); }
.final-cta p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white70);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.final-cta .btn-group { justify-content: center; }
.final-cta .micro { margin-top: 1.5rem; }

/* ---------- Intermediate CTA strip ---------- */
.cta-strip { text-align: center; margin-top: 2.5rem; }
.cta-strip .btn { min-width: 280px; }
.cta-strip .micro { display: block; }

/* ---------- Generic content page (mentions, confidentialité) ---------- */
.content-page {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.content-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.content-page .lead {
  font-size: 16px;
  color: var(--white70);
  margin-bottom: 2.5rem;
}
.content-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--coral);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.01em;
}
.content-page h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 0.5rem;
}
.content-page p, .content-page li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white70);
  margin-bottom: 0.75rem;
}
.content-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-page li { list-style: '— '; padding-left: 0.5rem; }
.content-page strong { color: var(--white); font-weight: 500; }
.content-page a { color: var(--coral); border-bottom: 1px solid rgba(107, 63, 160, 0.3); }
.content-page a:hover { border-bottom-color: var(--coral); }
.content-page .back {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--white40);
  border: 1px solid var(--white15);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
}
.content-page .back:hover { color: var(--white); border-color: var(--white40); }
.todo-note {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.10), rgba(255, 230, 109, 0.06));
  border: 1px dashed rgba(107, 63, 160, 0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 14px;
  color: var(--white70);
}
.todo-note strong { color: var(--coral); }

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 14vw, 140px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.notfound-inner p {
  font-size: 17px;
  color: var(--white70);
  margin-bottom: 2rem;
  max-width: 460px;
}

/* ---------- Footer ---------- */
footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--white15);
  font-size: 12px;
  color: var(--white40);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a:hover { color: var(--coral); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .anti-sell { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 1.75rem; }
  .about-photo { width: 200px; aspect-ratio: 1 / 1; }
}

@media (max-width: 480px) {
  .container, .header-inner, .footer-inner { padding-left: 1.125rem; padding-right: 1.125rem; }
  section { padding: 3.25rem 0; }
  .hero { padding-top: 2.5rem; padding-bottom: 3.5rem; }
  .header-cta { font-size: 12px; padding: 0.6rem 0.95rem; }
  .header-cta .header-cta-full { display: none; }
  .btn { padding: 0.95rem 1.5rem; font-size: 14px; width: 100%; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .cta-strip .btn { min-width: 0; }
  .final-cta { padding: 2.25rem 1.25rem; }
  .session-block, .offer, .anti-col, .pillar, .testimonial, .result-col, .offer-common { padding: 1.5rem; }
  .session-flow { font-size: 12px; }
  .cycle { font-size: 11px; }
  .cycle span { padding: 0.35rem 0.7rem; }
}
