/* ============================================================
   AdaWellMed — style.css
   Brand: Dr. Christine Adaeze Nwoha, MD
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Abril+Fatface&family=Dancing+Script:wght@500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:    #4A3B2A;
  --green-primary: #7A5C3E;
  --green-medium:  #9C7B54;
  --green-light:   #F5EFE6;
  --gold:          #C9A84C;
  --gold-light:    #FBF3E2;
  --coral:         #C0703A;
  --white:         #FFFFFF;
  --off-white:     #FAF8F4;
  --cream:         #FAF6F0;
  --text-dark:     #2A2018;
  --text-gray:     #6B5D4F;
  --border:        #E8DFD0;
  --radius:        16px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(74,59,42,0.09);
  --shadow-lg:     0 12px 48px rgba(74,59,42,0.15);
  --nav-h:         72px;
  --max-w:         1160px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-medium);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-family: 'Playfair Display', serif; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-family: 'Playfair Display', serif; font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-family: 'Playfair Display', serif; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

p { margin-bottom: 1rem; color: var(--text-gray); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text-dark); }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6F5740;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Backgrounds */
.bg-white    { background: var(--white); }
.bg-light    { background: var(--green-light); }
.bg-cream    { background: var(--cream); }
.bg-gold     { background: var(--gold-light); }
.bg-dark     { background: var(--green-dark); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,61,38,0.22);
}

.btn-secondary, .btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-secondary:hover, .btn-gold:hover {
  background: #b8932f;
  border-color: #b8932f;
  color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-light);
  color: var(--green-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover {
  background: var(--green-light);
  color: var(--green-primary);
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* --- Hero --- */
.hero {
  background: var(--green-light);
  padding: 80px 0 72px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-row {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content {}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Abril Fatface', 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 4.15rem);
  line-height: 1.08;
  margin-bottom: 32px;
  color: var(--green-dark);
}
.hero h1 .hero-h1-sub {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: var(--green-primary);
  margin-top: 12px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-gray);
  opacity: 0.8;
  max-width: 480px;
  line-height: 1.5;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--border);
  width: 100%;
  max-width: 440px;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.hero-image-badge .badge-text {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Page Hero (non-homepage) */
.page-hero {
  background: var(--green-light);
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero h1 {
  color: var(--green-dark);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--green-primary);
  padding: 20px 0;
}

.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item .trust-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Pathway Cards */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-medium);
  color: var(--text-dark);
}

.pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pathway-card h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.pathway-card p {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

.pathway-arrow {
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: 600;
  margin-top: auto;
}

/* Book Cards */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.book-cover {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--border) 100%);
  aspect-ratio: 3/4;
  max-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book-cover-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
  background: linear-gradient(160deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
}

.book-cover-placeholder .book-title-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.book-cover-placeholder .book-author-text {
  font-size: 0.75rem;
  opacity: 0.8;
}

.book-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
  width: fit-content;
}

.book-body h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
}

.book-body p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
  flex: 1;
}

.book-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}

.coming-soon-card {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 320px;
}

.coming-soon-card .cs-icon {
  font-size: 2.5rem;
}

.coming-soon-card h3 {
  color: var(--text-gray);
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  background: linear-gradient(135deg, var(--gold-light), var(--cream));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-body h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.product-body p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

.product-includes {
  margin-top: 4px;
}

.product-includes li {
  font-size: 0.82rem;
  color: var(--text-gray);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-includes li::before {
  content: '✓';
  color: var(--green-medium);
  font-weight: 700;
  flex-shrink: 0;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  border-color: var(--green-primary);
  border-width: 2px;
}

.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-bottom-left-radius: var(--radius-sm);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-primary);
  font-family: 'Playfair Display', serif;
}

.service-price span {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-large {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
}

.testimonial-large::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--green-light);
  position: absolute;
  top: 20px;
  left: 28px;
}

.testimonial-large .tl-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 32px;
}

.testimonial-large .tl-author {
  font-weight: 700;
  color: var(--text-dark);
}

/* Community Feature Cards */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.community-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.col-image-placeholder {
  background: linear-gradient(135deg, var(--green-light), var(--border));
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-size: 3rem;
  color: var(--green-medium);
  overflow: hidden;
}

.col-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.col-content {}

.feature-list {
  margin: 20px 0 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-gray);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  color: var(--green-medium);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Disclaimer Notice --- */
.disclaimer-notice {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.disclaimer-notice strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

.disclaimer-notice-sm {
  font-size: 0.75rem;
  color: var(--text-gray);
  opacity: 0.85;
  font-style: italic;
  line-height: 1.5;
  margin-top: 12px;
}

/* Alert box */
.alert-box {
  background: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.alert-box p {
  margin: 0;
  font-size: 0.9rem;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.925rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-medium));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
}

/* --- Credentials Grid --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
}

.credential-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.credential-card h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.credential-card p {
  font-size: 0.78rem;
  color: var(--text-gray);
  margin: 0;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 16px;
  text-align: center;
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.pillar-card h4 {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

/* What is / What is not */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.compare-card.is {
  border-top: 4px solid var(--green-primary);
}

.compare-card.is-not {
  border-top: 4px solid var(--coral);
}

.compare-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.compare-card.is h3 { color: var(--green-primary); }
.compare-card.is-not h3 { color: var(--coral); }

.compare-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-list li:last-child { border-bottom: none; }
.compare-card.is .compare-list li::before { content: '✓'; color: var(--green-medium); font-weight: 700; flex-shrink: 0; }
.compare-card.is-not .compare-list li::before { content: '✕'; color: var(--coral); font-weight: 700; flex-shrink: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green-primary);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Stats Row --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--white);
}

.social-link:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-light);
}

.social-link .s-icon {
  font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand .footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.footer-col h5 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 24px;
  text-align: center;
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto 10px;
}

.footer-emergency {
  font-size: 0.72rem;
  color: rgba(255,200,100,0.7);
  font-weight: 600;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Utilities --- */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.gap-16 { gap: 16px; }

.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.badge-pill {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(42,125,82,0.2);
}

.highlight-text {
  color: var(--green-primary);
}

.gold-text {
  color: var(--gold);
}

/* Delivery note */
.delivery-note {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.delivery-note .dn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Who it's for */
.who-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-gray);
}
.who-for-list li:last-child { border-bottom: none; }
.who-for-list li::before {
  content: '→';
  color: var(--green-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pathways-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* Nav */
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 56px; }
  .hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 { margin-bottom: 24px; }
  .hero-image-wrap { order: -1; }
  .hero-image-frame { max-width: 320px; margin: 0 auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-bar-inner {
    justify-content: center;
    gap: 12px;
  }
  .trust-item { font-size: 0.8rem; }

  /* Grids */
  .pathways-grid { grid-template-columns: repeat(2, 1fr); }
  .books-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .hero-image-badge { bottom: -12px; left: -8px; padding: 12px 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .container { padding: 0 16px; }

  .pathways-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .book-actions { flex-direction: column; }
  .book-actions .btn { width: 100%; justify-content: center; }

  .trust-bar-inner { gap: 8px; }
}


/* ===== Accessibility ===== */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: #2f4a34; color: #fff; padding: 12px 20px;
  font-weight: 600; border-radius: 0 0 8px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible,
[tabindex]:focus-visible, .faq-question:focus-visible {
  outline: 3px solid #2E7D52;
  outline-offset: 2px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
