﻿/* ===================================================
   BETTY ADERA â€” Website Stylesheet
   Design: Deep Plum + Warm Gold + Cream
   Multi-page: Home, About, Book, Mentorship,
   Accelerator, Apply, Speaking, Contact
   =================================================== */

/* â”€â”€â”€ RESET & VARIABLES â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:      #3D1A58;
  --plum-dark: #28103C;
  --plum-mid:  #5C2A82;
  --gold:      #C9933A;
  --gold-lt:   #E4B96A;
  --cream:     #FDF9F3;
  --parchment: #F0E8D8;
  --text:      #2C2C2C;
  --text-muted:#6B6B6B;
  --white:     #FFFFFF;
  --radius:    12px;
  --shadow-sm: 0 2px 12px rgba(61,26,88,.08);
  --shadow-md: 0 8px 32px rgba(61,26,88,.14);
  --shadow-lg: 0 20px 60px rgba(61,26,88,.2);
  --transition: .3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --max-w: 1140px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* â”€â”€â”€ TYPOGRAPHY â”€â”€â”€ */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { margin-bottom: .9rem; }
em { font-style: italic; }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title { margin-bottom: 1rem; color: var(--plum-dark); }
.section-title .highlight { color: var(--gold); }
.section-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* â”€â”€â”€ CONTAINER â”€â”€â”€ */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section { padding: var(--section-gap) 0; }

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn-primary, .btn-outline, .btn-ghost, .btn-nav, .btn-buy-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: #b07e29; border-color: #b07e29; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,147,58,.35); }

.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem;
}
.btn-nav:hover { background: #b07e29; }

.btn-buy-big {
  background: var(--plum);
  color: var(--white);
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  width: 100%;
  border-radius: var(--radius);
}
.btn-buy-big:hover { background: var(--plum-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.full-w { width: 100%; }

/* â”€â”€â”€ NAVBAR â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: color var(--transition);
}
.navbar.scrolled .brand-name { color: var(--plum-dark); }
.brand-tagline {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.navbar.scrolled .brand-tagline { color: var(--text-muted); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-link:hover::after { right: 0; }
.navbar.scrolled .nav-link { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--plum); }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: var(--gold);
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: 5%; }
.shape-3 { width: 180px; height: 180px; top: 40%; left: 30%; opacity: .04; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-text { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(201,147,58,.25);
  border: 1px solid var(--gold-lt);
  color: var(--gold-lt);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero-text h1 { margin-bottom: .5rem; line-height: 1.1; }
.hero-text h1 em { color: var(--gold-lt); font-style: italic; }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,.8); margin-bottom: .4rem; font-style: italic; }
.hero-byline { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.hero-byline strong { color: var(--gold-lt); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }

.hero-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-pills span {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  padding: .3rem .9rem;
  border-radius: 50px;
}

/* Book 3D */
.hero-book { flex-shrink: 0; }

.book-wrap {
  position: relative;
  perspective: 1200px;
}

.book {
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-22deg) rotateX(3deg);
  transition: transform .5s ease;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.4));
}
.book:hover { transform: perspective(1200px) rotateY(-10deg) rotateX(2deg); }

.book-cover {
  width: 220px;
  height: 310px;
  background: linear-gradient(145deg, #2A1050 0%, #4A1C6D 40%, #6B2D8A 100%);
  border-radius: 3px 10px 10px 3px;
  position: relative;
  overflow: hidden;
  box-shadow: inset -5px 0 15px rgba(0,0,0,.3), 5px 0 0 rgba(255,255,255,.05);
}

.cover-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cover-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201,147,58,.3);
}
.c1 { width: 200px; height: 200px; top: -60px; right: -60px; }
.c2 { width: 130px; height: 130px; top: 40px; right: -20px; background: rgba(201,147,58,.06); border-width: 1px; }

.cover-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(201,147,58,.15), transparent);
}

.cover-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  z-index: 2;
}
.cover-author {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .8rem;
}
.cover-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .8rem;
}
.cover-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  font-style: italic;
}

.book-spine {
  position: absolute;
  top: 4px; bottom: 4px;
  left: -28px;
  width: 28px;
  background: linear-gradient(to bottom, #1a0a2e, #2A1050 50%, #1a0a2e);
  transform: rotateY(-90deg);
  transform-origin: right;
  border-radius: 3px 0 0 3px;
  box-shadow: inset 2px 0 8px rgba(0,0,0,.3);
}

.book-shadow {
  position: absolute;
  bottom: -30px; left: -10px; right: -10px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,.35) 0%, transparent 70%);
  filter: blur(12px);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fade-up  { animation: fadeUp  .9s ease both; }
.animate-fade-left { animation: fadeLeft 1.1s .3s ease both; }

/* â”€â”€â”€ STATS BAR â”€â”€â”€ */
.stats-bar {
  background: var(--plum-dark);
  color: var(--white);
  padding: 1.6rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.35rem; font-family: var(--font-heading); color: var(--gold-lt); }
.stat span   { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* â”€â”€â”€ ABOUT â”€â”€â”€ */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

.author-photo-wrap { position: relative; }
.author-photo {
  width: 280px;
  height: 340px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  border-radius: 16px 16px 80px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.author-photo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(201,147,58,.2), transparent);
}
.author-initials {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  user-select: none;
}
.author-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.author-quote-card {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-md);
  max-width: 200px;
  border-left: 4px solid var(--gold);
}
.quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: -.4rem;
}
.author-quote-card p {
  font-size: .82rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: .5rem;
}
.author-quote-card cite { font-size: .72rem; color: var(--gold); font-weight: 700; font-style: normal; }

.about-text-col p { color: var(--text-muted); max-width: 540px; }

.about-cards { display: flex; flex-direction: column; gap: .9rem; margin: 1.8rem 0 2rem; }
.about-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--parchment);
}
.about-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-card strong { display: block; color: var(--plum-dark); font-size: .95rem; margin-bottom: .2rem; }
.about-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* â”€â”€â”€ BOOK SECTION â”€â”€â”€ */
.book-section { background: var(--cream); }
.book-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--plum);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, rgba(201,147,58,.08), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.book-desc p { color: var(--text-muted); }
.book-desc .btn-primary { margin-top: .5rem; }

.chapters-title {
  font-size: 1.1rem;
  color: var(--plum-dark);
  margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--parchment);
}
.chapters-list { display: flex; flex-direction: column; gap: .9rem; }
.chapter-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ch-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .5;
  flex-shrink: 0;
  width: 32px;
  line-height: 1;
  padding-top: 2px;
}
.chapter-item strong { display: block; font-size: .9rem; color: var(--plum-dark); }
.chapter-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }
.chapters-more { margin-top: 1rem; font-size: .8rem; color: var(--gold); font-weight: 700; letter-spacing: .05em; }

/* â”€â”€â”€ GAINS â”€â”€â”€ */
.gains-section { background: var(--plum-dark); }
.gains-section .eyebrow { color: var(--gold-lt); }
.gains-section .section-title { color: var(--white); }
.gains-section .section-title .highlight { color: var(--gold-lt); }

.gains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gain-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  transition: all var(--transition);
}
.gain-card:hover {
  background: rgba(201,147,58,.1);
  border-color: rgba(201,147,58,.3);
  transform: translateY(-4px);
}
.gain-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.gain-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.gain-card p  { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.featured-testi {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
  transform: translateY(-8px);
}
.featured-testi:hover { transform: translateY(-12px); }

.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .9rem; }
.featured-testi .testi-stars { color: var(--gold-lt); }

.testi-card > p { font-style: italic; font-size: .9rem; margin-bottom: 1.4rem; color: var(--text-muted); }
.featured-testi > p { color: rgba(255,255,255,.85); }

.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--plum);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-avatar::after { content: attr(data-initials); }
.featured-testi .testi-avatar { background: rgba(255,255,255,.2); }
.testi-author strong { display: block; font-size: .9rem; color: var(--plum-dark); }
.featured-testi .testi-author strong { color: var(--white); }
.testi-author span { font-size: .78rem; color: var(--text-muted); }
.featured-testi .testi-author span { color: rgba(255,255,255,.6); }

/* â”€â”€â”€ BUY SECTION â”€â”€â”€ */
.buy-section { background: linear-gradient(135deg, var(--plum-dark), var(--plum)); }
.buy-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 3.5rem;
}
.buy-left .eyebrow { color: var(--gold-lt); }
.buy-left h2 { color: var(--white); margin-bottom: 1rem; }
.buy-left h2 .highlight { color: var(--gold-lt); }
.buy-left > p { color: rgba(255,255,255,.7); max-width: 440px; }
.buy-includes { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.buy-includes li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.85); font-size: .92rem; }
.check { color: var(--gold-lt); font-weight: 700; }

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
}
.price-label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .8rem; }
.price-display { display: flex; align-items: flex-start; justify-content: center; gap: .3rem; margin-bottom: .4rem; }
.price-display sup { font-size: 1.1rem; font-weight: 700; color: var(--plum); margin-top: .5rem; }
.price-amount { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: var(--plum-dark); line-height: 1; }
.price-note { font-size: .78rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.payment-methods { margin-top: 1.2rem; }
.payment-methods p { font-size: .75rem; color: var(--text-muted); margin-bottom: .5rem; }
.pay-badges { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }
.pay-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .3rem .7rem;
  border-radius: 6px;
}
.mpesa-badge { background: #006B3F; color: #fff; }
.card-badge  { background: #1A1F71; color: #fff; }
.secure-note { font-size: .75rem; color: var(--text-muted); margin-top: 1rem; }

/* â”€â”€â”€ BLOG â”€â”€â”€ */
.blog-section { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.blog-thumb {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.blog-thumb-1 { background: linear-gradient(135deg, #2C1A4A 0%, #8B3A62 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #1A3A4A 0%, #2E7D8A 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #2A3A1A 0%, #5A7A35 100%); }

.blog-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--gold);
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: 50px;
}
.blog-body { padding: 1.4rem; }
.blog-body h3 {
  font-size: 1rem;
  color: var(--plum-dark);
  margin-bottom: .6rem;
  line-height: 1.4;
}
.blog-body p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-footer time { font-size: .78rem; color: var(--text-muted); }
.read-more { font-size: .82rem; font-weight: 700; color: var(--gold); }
.read-more:hover { color: var(--plum); }

.center-cta { text-align: center; margin-top: 2.5rem; }

/* â”€â”€â”€ NEWSLETTER â”€â”€â”€ */
.newsletter-section {
  background: var(--parchment);
  padding: 80px 0;
  border-top: 1px solid #e0d4c0;
  border-bottom: 1px solid #e0d4c0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-text h2 { color: var(--plum-dark); margin-bottom: .8rem; }
.newsletter-text p  { color: var(--text-muted); margin: 0; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.newsletter-form input {
  padding: .85rem 1.2rem;
  border: 1.5px solid #d4c8b6;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--plum); }

/* â”€â”€â”€ FAQ â”€â”€â”€ */
.faq-section { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--parchment); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--plum-dark);
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }
.faq-answer p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* â”€â”€â”€ CONTACT â”€â”€â”€ */
.contact-section { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-col > p:first-of-type { color: var(--text-muted); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-row strong { display: block; font-size: .9rem; color: var(--plum-dark); margin-bottom: .2rem; }
.contact-row p { font-size: .88rem; color: var(--text-muted); margin: 0; }
.social-links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.social-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--plum);
  background: var(--parchment);
  padding: .2rem .8rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.social-link:hover { background: var(--plum); color: var(--white); }

.contact-form-col {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--plum-dark); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  background: var(--white);
}
.form-group small { display: block; font-size: .75rem; color: var(--text-muted); margin-top: .3rem; }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.footer { background: var(--plum-dark); color: var(--white); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-role { font-size: .78rem; color: var(--gold-lt); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem; }
.footer-mission { font-size: .85rem; color: rgba(255,255,255,.5); max-width: 220px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-links-col h4 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.2rem; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links-col a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--gold-lt); }

.footer-newsletter-col h4 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .8rem; }
.footer-newsletter-col p  { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-form { display: flex; gap: .5rem; }
.footer-form input {
  flex: 1;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
}
.footer-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-form input:focus { outline: none; border-color: var(--gold); }
.footer-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  width: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-form button:hover { background: #b07e29; }

.footer-bottom {
  padding: 1.2rem 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* â”€â”€â”€ MODALS â”€â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,5,40,.7);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .35s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  max-height: 92vh;
  overflow-y: auto;
  margin: auto;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition);
}
.modal-close:hover { color: var(--plum); }

.modal-book-pill {
  display: inline-block;
  background: rgba(201,147,58,.12);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
  border: 1px solid rgba(201,147,58,.3);
}
.modal-header h3 { font-size: 1.3rem; color: var(--plum-dark); margin-bottom: .4rem; }
.modal-header p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  padding: .9rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  border: 1px solid var(--parchment);
}
.modal-total span { font-size: .9rem; color: var(--text-muted); }
.modal-total strong { font-size: 1.1rem; color: var(--plum-dark); font-family: var(--font-heading); }
.modal-secure { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .8rem; }

/* Success modal */
.success-modal { text-align: center; padding: 3rem 2.5rem; }
.success-tick {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(22,163,74,.3);
}
.success-modal h3 { color: var(--plum-dark); margin-bottom: .8rem; }
.success-modal p  { color: var(--text-muted); font-size: .9rem; margin-bottom: .5rem; }
.success-name { font-weight: 700; color: var(--plum); }
.success-modal .btn-primary { margin-top: 1.5rem; }

/* â”€â”€â”€ TOAST â”€â”€â”€ */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--plum-dark);
  color: var(--white);
  padding: .9rem 1.4rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .author-photo-wrap { display: flex; justify-content: center; }
  .about-cards { flex-direction: row; flex-wrap: wrap; }
  .about-card { flex: 1; min-width: 160px; }

  .gains-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-testi { transform: none; }
  .featured-testi:hover { transform: translateY(-4px); }

  .buy-card { grid-template-columns: 1fr; text-align: center; }
  .buy-left > p { max-width: 100%; }
  .buy-right { display: flex; justify-content: center; }
  .price-card { width: 100%; max-width: 320px; }

  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--plum-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-link { color: rgba(255,255,255,.9) !important; font-size: 1rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-book { display: flex; justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-pills { justify-content: center; }

  .stats-inner { gap: 1.2rem; }
  .stat-sep { display: none; }

  .book-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .gains-grid { grid-template-columns: 1fr 1fr; }

  .blog-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .buy-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .gains-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .book { transform: perspective(1200px) rotateY(-8deg); }
}

/* ===================================================
   ADDITIONAL STYLES â€” Multi-page components
   =================================================== */

/* â”€â”€â”€ HERO VARIANTS â”€â”€â”€ */
.hero-centered .hero-text { text-align: center; max-width: 780px; margin: 0 auto; }
.hero-centered .hero-ctas { justify-content: center; }
.hero-centered .hero-pills { justify-content: center; }

/* â”€â”€â”€ PAGE HERO (inner pages) â”€â”€â”€ */
.page-hero {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 60%, var(--plum-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-hero-inner h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-inner > p {
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* â”€â”€â”€ PROGRAMS SECTION â”€â”€â”€ */
.programs-section { background: var(--plum-dark); }
.programs-section .eyebrow { color: var(--gold-lt); }
.programs-section .section-title { color: var(--white); }
.programs-section .section-desc { color: rgba(255,255,255,.6); }

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.program-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.program-card:hover { transform: translateY(-6px); }

.program-primary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
}
.program-secondary {
  background: var(--white);
  border: 1px solid var(--parchment);
  color: var(--text);
}

.program-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  background: rgba(201,147,58,.25);
  color: var(--gold-lt);
  border: 1px solid rgba(201,147,58,.4);
  margin-bottom: 1.2rem;
}
.program-tag-gold { background: rgba(201,147,58,.15); color: var(--gold); border-color: rgba(201,147,58,.3); }
.program-secondary .program-tag { color: var(--gold); border-color: rgba(201,147,58,.3); background: rgba(201,147,58,.1); }

.program-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.program-card h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.program-primary h3 { color: var(--white); }
.program-secondary h3 { color: var(--plum-dark); }
.program-tagline { font-style: italic; font-size: .9rem; margin-bottom: .8rem; }
.program-primary .program-tagline { color: rgba(255,255,255,.7); }
.program-secondary .program-tagline { color: var(--text-muted); }
.program-card > p { font-size: .9rem; margin-bottom: 1.2rem; }
.program-primary > p { color: rgba(255,255,255,.75); }
.program-secondary > p { color: var(--text-muted); }

.program-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.8rem; }
.program-features li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; }
.program-features span { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.program-primary .program-features li { color: rgba(255,255,255,.8); }
.program-secondary .program-features li { color: var(--text-muted); }

.program-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.6rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: all var(--transition);
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-primary-white {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.6rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: all var(--transition);
  background: var(--gold); color: var(--white); border: 2px solid var(--gold);
}
.btn-primary-white:hover { background: #b07e29; border-color: #b07e29; }

.btn-outline-plum {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.6rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: all var(--transition);
  background: transparent; color: var(--plum); border: 2px solid var(--plum);
}
.btn-outline-plum:hover { background: var(--plum); color: var(--white); }

/* â”€â”€â”€ BOOK PREVIEW (HOME) â”€â”€â”€ */
.book-preview-section { background: var(--white); }
.book-preview-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.book-preview-visual { display: flex; justify-content: center; align-items: center; }
.book-cover-iwa { background: linear-gradient(145deg, #1A3A2A 0%, #2D6A4F 50%, #1B4332 100%) !important; }
.book-tagline-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1rem; }
.book-quick-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 1.2rem 0 1.6rem; }
.bql-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--text-muted); }
.book-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: .8rem; }
.book-formats { font-size: .8rem; color: var(--text-muted); }
.book-note-box {
  background: rgba(201,147,58,.1); border: 1px solid rgba(201,147,58,.3);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin-top: 1.5rem;
}
.book-note-box p { font-size: .85rem; color: var(--plum-dark); margin: 0; }

/* â”€â”€â”€ CTA SECTION â”€â”€â”€ */
.cta-section { background: linear-gradient(135deg, var(--plum-dark), var(--plum)); padding: 80px 0; }
.cta-inner { text-align: center; color: var(--white); }
.cta-inner .eyebrow { color: var(--gold-lt); }
.cta-inner h2 { color: var(--white); max-width: 700px; margin: 0 auto 2rem; }
.cta-inner h2 em { color: var(--gold-lt); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* â”€â”€â”€ ABOUT PAGE â”€â”€â”€ */
.about-page-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}
.about-page-photo-col { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.large-photo { width: 300px; height: 370px; }
.large-initials { font-size: 5rem; }

.about-page-contact-card {
  background: var(--cream); border: 1px solid var(--parchment);
  border-radius: var(--radius); padding: 1.5rem; width: 100%; max-width: 300px;
}
.about-page-contact-card h4 { color: var(--plum-dark); font-size: .95rem; margin-bottom: 1rem; }
.mini-social { display: flex; flex-direction: column; gap: .6rem; }
.mini-social a { font-size: .82rem; color: var(--text-muted); transition: color var(--transition); }
.mini-social a span { font-weight: 700; color: var(--plum); }
.mini-social a:hover { color: var(--gold); }

.about-quote {
  font-family: var(--font-heading); font-size: 1.3rem; font-style: italic;
  color: var(--plum); padding: 1.2rem 1.6rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,147,58,.07), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; line-height: 1.5;
}

/* Work-with cards */
.work-with-card {
  display: block; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: 2rem; text-decoration: none;
  transition: all var(--transition); color: var(--white);
}
.work-with-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.featured-work { background: var(--gold); border-color: var(--gold); }
.featured-work:hover { background: #b07e29; border-color: #b07e29; }
.work-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.work-with-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.work-with-card p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.featured-work p { color: rgba(255,255,255,.85); }
.card-link { font-size: .82rem; font-weight: 700; color: var(--gold-lt); }
.featured-work .card-link { color: rgba(255,255,255,.9); }

/* â”€â”€â”€ FOR-WHOM GRID â”€â”€â”€ */
.for-whom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.for-whom-card {
  background: var(--cream); border: 1px solid var(--parchment);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: all var(--transition);
}
.for-whom-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.for-icon { font-size: 1.8rem; flex-shrink: 0; }
.for-whom-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.for-whom-card strong { color: var(--plum-dark); }

/* â”€â”€â”€ PROGRAM OVERVIEW GRID â”€â”€â”€ */
.program-overview-grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; }
.program-overview-text p { color: var(--text-muted); max-width: 540px; }

.program-overview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; min-width: 260px; }
.prog-stat-card {
  background: var(--plum); border-radius: var(--radius);
  padding: 1.2rem 1rem; text-align: center;
}
.prog-stat-card strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); }
.prog-stat-card span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.prog-stat-gold { background: var(--gold); }
.prog-stat-gold strong { color: var(--white); }
.prog-stat-gold span { color: rgba(255,255,255,.8); }

/* â”€â”€â”€ STRUCTURE / TIMELINE â”€â”€â”€ */
.structure-section { background: var(--plum-dark); }
.structure-section .eyebrow { color: var(--gold-lt); }
.structure-section .section-title { color: var(--white); }
.structure-section .section-title .highlight { color: var(--gold-lt); }

.structure-timeline { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; }
.timeline-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2rem; position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: 20px; top: 44px; bottom: 0;
  width: 2px; background: rgba(255,255,255,.1);
}
.timeline-item:last-child::before { display: none; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading); font-size: 1rem;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(201,147,58,.4);
}
.timeline-content h3 { color: var(--white); font-size: 1rem; margin-bottom: .4rem; }
.timeline-content p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

/* â”€â”€â”€ BOOK REQUIREMENT SECTION â”€â”€â”€ */
.book-req-section { background: linear-gradient(135deg, var(--plum-dark), var(--plum)); padding: 60px 0; }
.book-req-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.book-req-text { flex: 1; min-width: 280px; }
.book-req-text h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .8rem; }
.book-req-text p { color: rgba(255,255,255,.75); margin-bottom: 1.2rem; }

.book-req-visual { flex-shrink: 0; }
.mini-book { width: 130px; height: 185px; position: relative; }
.mini-cover {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #1A3A2A, #2D6A4F);
  border-radius: 2px 8px 8px 2px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 1rem .9rem; box-shadow: 6px 6px 20px rgba(0,0,0,.4);
}
.mini-cover p { font-size: .5rem; letter-spacing: .15em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-bottom: .5rem; }
.mini-cover h4 { font-family: var(--font-heading); font-size: .85rem; color: var(--white); line-height: 1.2; margin: 0; }

/* â”€â”€â”€ PATHWAY SECTION â”€â”€â”€ */
.pathway-section { background: var(--plum-dark); padding: 60px 0; }
.pathway-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.pathway-text { flex: 1; min-width: 240px; }
.pathway-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .6rem; }
.pathway-text p { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; }

.pathway-cards { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.pathway-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; text-align: center;
  text-decoration: none; min-width: 160px; transition: all var(--transition);
}
.pathway-card:hover { background: rgba(255,255,255,.1); }
.pathway-card-active { background: var(--gold); border-color: var(--gold); }
.pathway-card-active:hover { background: #b07e29; border-color: #b07e29; }
.pathway-num { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .4rem; }
.pathway-card-active .pathway-num { color: rgba(255,255,255,.8); }
.pathway-card h4 { font-size: .9rem; color: var(--white); margin-bottom: .3rem; }
.pathway-card p { font-size: .75rem; color: rgba(255,255,255,.6); margin: 0; }
.pathway-card-active p { color: rgba(255,255,255,.85); }
.pathway-arrow { font-size: 1.4rem; color: rgba(255,255,255,.3); }

/* â”€â”€â”€ TWO-COL INFO â”€â”€â”€ */
.two-col-info { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-card { background: var(--cream); border: 1px solid var(--parchment); border-radius: 16px; padding: 2rem; }
.info-card-dark { background: var(--plum); border-color: var(--plum); color: var(--white); }
.info-card-dark h3 { color: var(--white); }
.info-card-dark p { color: rgba(255,255,255,.75); }
.info-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.info-card h3 { font-size: 1.1rem; color: var(--plum-dark); margin-bottom: .8rem; }
.info-card p { font-size: .9rem; color: var(--text-muted); }
.simple-list { padding-left: 0; list-style: none; margin: .8rem 0; display: flex; flex-direction: column; gap: .5rem; }
.simple-list li { font-size: .88rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; }
.simple-list li::before { content: 'â€”'; position: absolute; left: 0; color: var(--gold); }

/* â”€â”€â”€ APPLICATION FORM â”€â”€â”€ */
.apply-form-wrap { max-width: 780px; margin: 0 auto; }
.apply-form-header { text-align: center; margin-bottom: 2.5rem; }
.apply-form-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

.before-apply-box {
  background: var(--white); border: 1px solid var(--parchment);
  border-radius: 16px; padding: 2rem 2.5rem; max-width: 780px; margin: 0 auto;
}
.before-apply-box h3 { color: var(--plum-dark); margin-bottom: .5rem; }
.before-apply-box > p { color: var(--text-muted); margin-bottom: 1.2rem; }
.checklist { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.2rem; }
.check-item { display: flex; align-items: flex-start; gap: .9rem; }
.check-circle {
  width: 24px; height: 24px; border-radius: 50%; background: var(--plum);
  color: var(--white); font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-item p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.check-item strong { color: var(--plum-dark); }
.apply-book-note {
  background: rgba(201,147,58,.08); border: 1px solid rgba(201,147,58,.25);
  border-radius: var(--radius); padding: .8rem 1.2rem; font-size: .85rem; color: var(--text-muted);
}
.apply-book-note a { color: var(--gold); font-weight: 700; }

.apply-form { background: var(--white); border: 1px solid var(--parchment); border-radius: 20px; padding: 2.5rem; }
.form-section-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  margin-top: 1rem; padding-top: 1.5rem; border-top: 2px solid var(--parchment);
}
.form-section-header:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.form-section-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--plum);
  color: var(--white); font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-section-header h3 { font-size: 1rem; color: var(--plum-dark); margin: 0; }
.req { color: #dc2626; font-weight: 700; }
.optional { color: var(--text-muted); font-weight: 400; font-size: .8em; }
.radio-group { display: flex; flex-direction: column; gap: .6rem; margin-top: .4rem; }
.radio-label { display: flex; align-items: center; gap: .7rem; cursor: pointer; font-size: .9rem; color: var(--text); }
.radio-label input[type="radio"] { width: 16px; height: 16px; accent-color: var(--plum); flex-shrink: 0; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: .8rem;
  cursor: pointer; font-size: .88rem; color: var(--text-muted); line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--plum); flex-shrink: 0; margin-top: 3px; }
.apply-submit-area { text-align: center; margin-top: 2rem; }
.apply-submit-btn { font-size: 1rem; padding: 1rem 3rem; border-radius: 50px; }
.apply-note { font-size: .82rem; color: var(--text-muted); margin-top: .8rem; }

/* â”€â”€â”€ SPEAKING PAGE â”€â”€â”€ */
.speaking-formats { background: var(--cream); border: 1px solid var(--parchment); border-radius: 16px; padding: 2rem; }
.speaking-formats h4 { color: var(--plum-dark); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.format-list { display: flex; flex-direction: column; gap: 1rem; }
.format-item { display: flex; align-items: flex-start; gap: 1rem; }
.format-icon { font-size: 1.5rem; flex-shrink: 0; }
.format-item strong { display: block; color: var(--plum-dark); font-size: .9rem; margin-bottom: .2rem; }
.format-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }

.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.topic-card { background: var(--cream); border: 1px solid var(--parchment); border-radius: var(--radius); padding: 1.8rem; transition: all var(--transition); }
.topic-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.topic-card-featured { background: var(--plum); border-color: var(--plum); }
.topic-card-featured:hover { border-color: var(--plum-mid); }
.topic-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); opacity: .4; line-height: 1; margin-bottom: .6rem; }
.topic-card-featured .topic-num { color: var(--gold-lt); opacity: .7; }
.topic-card h3 { color: var(--plum-dark); font-size: 1rem; margin-bottom: .5rem; }
.topic-card-featured h3 { color: var(--white); }
.topic-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.topic-card-featured p { color: rgba(255,255,255,.7); }
.topic-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.topic-tags span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .2rem .6rem; border-radius: 50px; background: var(--parchment); color: var(--plum); }
.topic-card-featured .topic-tags span { background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }

.coaching-section { background: var(--plum-dark); }
.coaching-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.coaching-areas { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 2rem; }
.coaching-areas h4 { color: rgba(255,255,255,.5); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.2rem; }
.coaching-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.2rem; }
.coaching-item { display: flex; gap: 1rem; align-items: flex-start; }
.coaching-icon { font-size: 1.4rem; flex-shrink: 0; }
.coaching-item strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: .2rem; }
.coaching-item p { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }

.booking-card {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  background: var(--white); border: 1px solid var(--parchment);
  border-radius: 20px; padding: 3rem; box-shadow: var(--shadow-sm);
}
.booking-actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; text-align: center; }
.booking-contact-direct p { font-size: .8rem; color: var(--text-muted); margin-bottom: .3rem; }
.direct-email { font-size: .9rem; font-weight: 700; color: var(--gold); }
.direct-email:hover { color: var(--plum); }

/* â”€â”€â”€ CONTACT TOPICS â”€â”€â”€ */
.contact-topics { margin-top: 2rem; }
.contact-topics h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .8rem; }
.topic-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.topic-links a { font-size: .88rem; color: var(--plum); font-weight: 600; transition: color var(--transition); }
.topic-links a:hover { color: var(--gold); }

/* â”€â”€â”€ QUICK LINKS GRID â”€â”€â”€ */
.quick-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.quick-link-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.5rem; text-decoration: none;
  color: var(--white); transition: all var(--transition); text-align: center;
}
.quick-link-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.ql-icon { font-size: 1.8rem; display: block; margin-bottom: .7rem; }
.quick-link-card h4 { font-size: .9rem; color: var(--white); margin-bottom: .4rem; }
.quick-link-card p { font-size: .78rem; color: rgba(255,255,255,.55); margin: 0; }

/* â”€â”€â”€ RESPONSIVE ADDITIONS â”€â”€â”€ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .book-preview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-preview-visual { order: -1; }
  .program-overview-grid { grid-template-columns: 1fr; }
  .program-overview-stats { grid-template-columns: repeat(3, 1fr); min-width: unset; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .coaching-inner { grid-template-columns: 1fr; }
  .two-col-info { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-card { grid-template-columns: 1fr; }
  .pathway-inner { flex-direction: column; gap: 2rem; }
  .about-page-grid { grid-template-columns: 1fr; }
  .about-page-photo-col { align-items: flex-start; }
}

@media (max-width: 768px) {
  .for-whom-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .program-overview-stats { grid-template-columns: repeat(2, 1fr); }
  .quick-links-grid { grid-template-columns: 1fr 1fr; }
  .pathway-cards { flex-direction: column; align-items: stretch; }
  .pathway-arrow { text-align: center; }
  .book-quick-list { grid-template-columns: 1fr; }
  .book-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .program-overview-stats { grid-template-columns: 1fr 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .before-apply-box { padding: 1.5rem; }
  .apply-form { padding: 1.5rem; }
}

/* ─── BRAND LOGO ─── */
.nav-logo {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* ─── RISE COLLECTIVE LOGO ─── */
.program-hero-logo {
  max-width: 260px;
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  margin-bottom: 1.5rem;
  display: block;
}
.hero-sub-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto;
}
.program-card-logo {
  max-width: 180px;
  width: 100%;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .6rem 1rem;
  margin-bottom: .75rem;
  display: block;
}

/* ─── FORMAT SELECTOR (buy modal) ─── */
.format-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .4rem;
}
.format-option { display: block; cursor: pointer; }
.format-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.format-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem .9rem;
  border: 2px solid var(--parchment);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.format-card:hover { border-color: var(--gold); }
.format-option input:checked + .format-card {
  border-color: var(--gold);
  background: #fff9ef;
  box-shadow: 0 0 0 3px rgba(201,147,58,.12);
}
.fmt-icon { font-size: 1.4rem; flex-shrink: 0; }
.fmt-info { flex: 1; display: flex; flex-direction: column; gap: .1rem; }
.fmt-info strong { font-size: .85rem; color: var(--plum-dark); }
.fmt-info span { font-size: .72rem; color: var(--text-muted); line-height: 1.3; }
.fmt-price { font-weight: 700 !important; color: var(--gold) !important; }
.fmt-check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: transparent;
  transition: all .2s; flex-shrink: 0;
}
.format-option input:checked + .format-card .fmt-check {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

/* ─── DELIVERY SECTION ─── */
.delivery-section {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .5rem;
  animation: fadeInDown .25s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.delivery-header { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.delivery-header h4 { font-size: .88rem; color: var(--plum-dark); font-family: var(--font-head); margin: 0; }
.delivery-zone-options { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: .4rem; }
.zone-option { display: block; cursor: pointer; }
.zone-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.zone-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem .85rem;
  border: 2px solid var(--parchment);
  border-radius: 10px;
  background: var(--white);
  transition: border-color .2s;
}
.zone-card:hover { border-color: var(--gold); }
.zone-option input:checked + .zone-card { border-color: var(--gold); background: #fff9ef; }
.zone-info strong { display: block; font-size: .8rem; color: var(--plum-dark); }
.zone-info span { font-size: .7rem; color: var(--text-muted); }
.zone-price { font-size: .8rem; font-weight: 700; color: var(--plum-dark); white-space: nowrap; margin-left: .4rem; }
.free-tag { color: #16a34a; }

/* ─── ORDER SUMMARY ─── */
.order-summary {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin: .6rem 0 1rem;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .83rem; color: var(--text-muted); padding: .2rem 0;
}
.summary-divider { border-top: 1px solid var(--parchment); margin: .4rem 0; }
.summary-total { color: var(--plum-dark) !important; font-size: .92rem; }

/* ─── FORMAT TABS (buy section) ─── */
.format-tabs-buy { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.format-tab-buy { background: var(--white); border: 1px solid var(--parchment); border-radius: 12px; padding: 1rem 1.1rem; }
.format-tab-buy h4 { font-size: .9rem; color: var(--plum-dark); margin-bottom: .6rem; font-family: var(--font-head); }
.format-tab-buy .buy-includes { margin: 0; }
.format-tab-buy .buy-includes li { color: var(--text-muted); }

@media (max-width: 540px) {
  .format-selector { grid-template-columns: 1fr; }
  .delivery-zone-options { grid-template-columns: 1fr; }
  .format-tabs-buy { grid-template-columns: 1fr; }
}

