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

:root {
  /* Brand colours extracted from logo */
  --forest:       #0d2218;      /* deep forest — hero/dark sections   */
  --forest-mid:   #142e20;      /* mid forest                          */
  --forest-light: #1e4230;      /* lighter forest                      */
  --green:        #64b43c;      /* logo green — primary brand          */
  --green-dark:   #4a8a28;      /* darker green for hovers             */
  --yellow:       #f0dc00;      /* logo yellow                         */
  --yellow-dark:  #c8b800;      /* darker yellow                       */
  --pink:         #dc3c8c;      /* logo pink — CTA                     */
  --pink-dark:    #b8286e;      /* darker pink                         */
  --orange:       #f0a028;      /* logo orange — warm accent           */
  --gold:         #c49a35;      /* warm gold — accent/highlight        */

  /* Neutrals */
  --cream:        #f5f7f2;      /* very light green-tinted cream       */
  --off-white:    #fafbf8;
  --white:        #ffffff;
  --text:         #1a2714;      /* dark green-black                    */
  --text-muted:   #587048;      /* muted green-grey                    */
  --border:       rgba(100, 180, 60, 0.12);
  --border-dark:  rgba(0, 0, 0, 0.08);

  --shadow:       0 2px 16px rgba(13, 34, 24, 0.07);
  --shadow-md:    0 4px 24px rgba(13, 34, 24, 0.10);
  --shadow-lg:    0 8px 40px rgba(13, 34, 24, 0.13);
  --radius:       10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.25s ease;
  --container:    1160px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section--white { background: var(--white); }
.section--cream { background: var(--cream); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  border-radius: 2px;
}
.eyebrow--light  { color: rgba(255,255,255,0.65); }
.eyebrow--yellow,
.eyebrow--gold   { color: var(--yellow); }

.rule {
  width: 44px;
  height: 2px;
  background: var(--green);
  margin: 22px 0 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header--light h2 { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,0.52); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

/* Primary — pink */
.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--pink:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 60, 140, 0.38);
}

/* Secondary — green */
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(100, 180, 60, 0.38);
}

/* Yellow */
.btn--yellow {
  background: var(--yellow);
  color: var(--forest);
  border-color: var(--yellow);
  font-weight: 600;
}
.btn--yellow:hover {
  background: #ffe920;
  border-color: #ffe920;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 220, 0, 0.35);
}

/* Ghost — for dark backgrounds */
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
}

/* Outline — for light backgrounds */
.btn--outline,
.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: rgba(13,34,24,0.3);
}
.btn--outline:hover,
.btn--outline-dark:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* Small ghost for footer */
.btn--ghost-sm {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.16);
  padding: 10px 22px;
  font-size: 0.82rem;
}
.btn--ghost-sm:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav--scrolled {
  background: rgba(13, 34, 24, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(100,180,60,0.12);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 46px; width: auto; }

/* WP custom logo wrapper */
.nav__logo .custom-logo-link img { height: 46px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links li a {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav__links li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 1.5px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav__links li a:hover { color: var(--white); }
.nav__links li a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  margin-left: 10px;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--pink-dark) !important; }

/* WP dropdown menus */
.nav__links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: rgba(13, 34, 24, 0.97);
  border: 1px solid rgba(100,180,60,0.12);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
}
.nav__links li { position: relative; }
.nav__links .menu-item-has-children:hover .sub-menu { display: block; }
.nav__links .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.nav__links .sub-menu li a:hover { color: var(--white); background: rgba(100,180,60,0.08); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 34, 24, 0.52) 0%,
    rgba(13, 34, 24, 0.40) 40%,
    rgba(13, 34, 24, 0.78) 100%
  );
}

.hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  padding: 0 16px;
}

.hero__title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 26px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__title em {
  font-style: italic;
  color: var(--yellow);
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.90);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

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

/* Stats bar at base of hero */
.hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-top: 64px;
  padding: 28px 40px;
  border-top: 1px solid rgba(100,180,60,0.18);
}

.hero__stat { flex: 1; text-align: center; }

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 7px;
}

.hero__stat-div {
  width: 1px;
  height: 36px;
  background: rgba(100,180,60,0.2);
  flex-shrink: 0;
}

/* ============================================================
   SPLIT LAYOUT (About & Difference sections)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__text { order: 2; }
.split--reverse .split__image { order: 1; }

.split__text h2 { color: var(--forest); }

.split__text p {
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 18px;
  font-size: 0.97rem;
}
.split__text p strong { color: var(--text); font-weight: 600; }
.split__text .about-label { font-size: 24px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.split__text .about-body { font-size: 1.13rem; line-height: 1.85; color: var(--text); }
.split__text .btn { margin-top: 10px; }

.split__image { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.split__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s ease;
}
.split__image:hover img { transform: scale(1.03); }
.split__image--portrait img { object-position: center 15%; }

/* No decorative corner — let the photo speak for itself */
.split__image::after { display: none; }

/* Checkmark list */
.diff-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.diff-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.diff-list li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   ATTEND · JOIN · EARN · HOST PILLARS
   ============================================================ */
.pillars-section { padding: 0 40px; margin-top: 60px; margin-bottom: 60px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pillar {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: block;
}

.pillar__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pillar:hover .pillar__img { transform: scale(1.06); }

.pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
}

.pillar__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px 40px;
}

.pillar__heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.pillar__bar {
  width: 52px;
  height: 5px;
  background: var(--yellow);
  margin-bottom: 16px;
  border-radius: 2px;
}

.pillar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.benefit-card {
  padding: 36px 28px;
  background: var(--white);
  border: none;
  border-top: 3px solid var(--green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:last-child { border-right: none; }
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  color: var(--green);
  margin-bottom: 22px;
}
.benefit-card__icon svg { width: 100%; height: 100%; }

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 10px;
  font-weight: 700;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   HERO CARDS SECTION (Why Join — landing page)
   ============================================================ */
.hero-cards-section {
  background: var(--forest);
  padding: 80px 0 88px;
}

.hero-cards-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.hero-cards-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin: 8px 0 16px;
}
.hero-cards-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-card {
  position: relative;
  min-height: 480px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,20,10,0.45) 0%,
    rgba(5,20,10,0.15) 35%,
    rgba(5,20,10,0.7)  70%,
    rgba(5,20,10,0.92) 100%
  );
  z-index: 1;
  transition: opacity 0.35s ease;
}
.hero-card:hover::before { opacity: 0.85; }

.hero-card__num {
  position: relative;
  z-index: 2;
  padding: 20px 22px 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.9;
}

.hero-card__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px 32px;
}
.hero-card__inner h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-card__inner p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-cards-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { min-height: 380px; }
}
@media (max-width: 600px) {
  .hero-cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-card { min-height: 320px; }
  .hero-cards-section { padding: 60px 0 68px; }
}

/* ============================================================
   MISSION STRIPE
   ============================================================ */
.mission-stripe {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}
.mission-stripe .container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mission-stripe__line {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.mission-stripe__line--accent { color: var(--green); }
@media (max-width: 640px) {
  .mission-stripe { padding: 48px 0; }
  .mission-stripe__line { font-size: 1.5rem; }
}

/* ============================================================
   THREE PATHS — EXPLORE / SERVE / EARN
   ============================================================ */
.three-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 560px;
}

.path-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.path-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}
.path-card:hover .path-card__bg { transform: scale(1.06); }

.path-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13, 34, 24, 0.12) 0%,
    rgba(13, 34, 24, 0.55) 45%,
    rgba(13, 34, 24, 0.90) 100%
  );
  transition: opacity 0.35s ease;
}
.path-card__overlay--mid {
  background: linear-gradient(
    to bottom,
    rgba(13, 34, 24, 0.18) 0%,
    rgba(13, 34, 24, 0.60) 50%,
    rgba(13, 34, 24, 0.92) 100%
  );
}
.path-card:hover .path-card__overlay { opacity: 0.96; }

.path-card__inner {
  position: relative;
  z-index: 2;
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.path-card__tag {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
}

.path-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.path-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
  align-self: flex-start;
}
.path-card:hover .path-card__cta {
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Divider lines between panels */
.path-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .three-paths { grid-template-columns: 1fr; height: auto; }
  .path-card { min-height: 320px; }
  .path-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 600px) {
  .path-card { min-height: 280px; }
  .path-card__inner { padding: 28px 24px 32px; }
  .path-card__headline { font-size: 1.35rem; }
}

/* ============================================================
   10 COMMANDMENTS
   ============================================================ */
.commandments {
  background: var(--forest);
  padding-top: 80px;
  padding-bottom: 72px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.commandments::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(13, 34, 24, 0.78);
  pointer-events: none;
}
.commandments .container { position: relative; z-index: 1; }

.cmd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(100,180,60,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cmd {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 34px;
  border-bottom: 1px solid rgba(100,180,60,0.08);
  border-right: 1px solid rgba(100,180,60,0.08);
  transition: background var(--transition);
}
.cmd:nth-child(even) { border-right: none; }
.cmd:hover { background: rgba(100,180,60,0.04); }

.cmd--full {
  grid-column: span 2;
  border-right: none;
  border-bottom: none;
}
.cmd:nth-last-child(2):not(.cmd--full) { border-bottom: none; }

.cmd__n {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 700;
  color: var(--green);
  opacity: 0.75;
  min-width: 42px;
  line-height: 1.4;
  flex-shrink: 0;
}

.cmd p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  padding-top: 2px;
}
.cmd p strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.cmd__source {
  text-align: center;
  margin-top: 32px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}

/* ============================================================
   EXPLORE / PAGE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: all var(--transition);
  overflow: hidden;
}
.page-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Photo thumbnail at top of card */
.page-card__thumb {
  width: 100%;
  height: 168px;
  overflow: hidden;
  flex-shrink: 0;
}
.page-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.page-card:hover .page-card__thumb img { transform: scale(1.06); }

.page-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-card--wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: stretch;
}
.page-card--wide .page-card__thumb--wide {
  width: 300px;
  height: auto;
  min-height: 180px;
  flex-shrink: 0;
}
.page-card--wide .page-card__body {
  padding: 28px 32px;
  justify-content: center;
}
.page-card--wide .page-card__num { font-size: 3rem; margin-bottom: 10px; }
.page-card--wide .page-card__arrow { margin-top: 12px; font-size: 1.3rem; }

.page-card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.page-card h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 7px;
  font-weight: 600;
}
.page-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.page-card__arrow {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  color: var(--green);
  transition: transform var(--transition);
}
.page-card:hover .page-card__arrow { transform: translateX(5px); }

/* ============================================================
   HOW TO JOIN — STEPS
   ============================================================ */
.steps-section { overflow: hidden; }

.steps-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.steps-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.steps-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 24, 0.91);
}

.steps-section .container { position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(100,180,60,0.1);
  border: 1px solid rgba(100,180,60,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.step {
  padding: 38px 28px;
  background: rgba(13, 34, 24, 0.55);
  transition: background var(--transition);
}
.step:hover { background: rgba(100,180,60,0.07); }

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}
.step p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.quote-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 24, 0.80);
}
.quote-section .container { position: relative; z-index: 1; }

.pull-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
}
.pull-quote p::before { content: '\201C'; }
.pull-quote p::after  { content: '\201D'; }
.pull-quote cite {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-style: normal;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 34, 24, 0.72) 0%,
    rgba(13, 34, 24, 0.88) 100%
  );
}
.cta-inner { position: relative; z-index: 1; }

.cta-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 20px;
}
.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 18px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.8fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(100,180,60,0.08);
}

.footer__logo { height: 52px; width: auto; margin-bottom: 22px; }

/* WP custom logo in footer */
.footer__brand .custom-logo-link img { height: 52px; width: auto; margin-bottom: 22px; }

.footer__brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.75;
  margin-bottom: 14px;
}
.footer__brand a {
  font-size: 0.82rem;
  color: var(--green);
  letter-spacing: 0.4px;
  transition: color var(--transition);
}
.footer__brand a:hover { color: #80cc52; }

.footer__social {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}
.footer__social-icon {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__social-icon:hover { color: var(--green); }

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.footer__contact-item {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__contact-item:hover { color: var(--white); }

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 22px;
}
.footer__nav ul {
  column-count: 2;
  column-gap: 24px;
}
.footer__nav ul li {
  margin-bottom: 11px;
  break-inside: avoid;
}
.footer__nav ul li a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}
.footer__nav ul li a:hover { color: var(--white); }

.footer__contact p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer__bottom {
  padding: 22px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.3px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   JOIN FORM
   ============================================================ */
.form-section { background: var(--cream); }
.form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 56px 60px;
  box-shadow: var(--shadow-lg);
}

.form-wrap fieldset { border: none; margin-bottom: 40px; }
.form-wrap legend {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 24px;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 12px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid { border-color: var(--pink); }
.field-error { font-size: 0.78rem; color: var(--pink); }

.kit-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kit-radio input { display: none; }
.kit-radio__card {
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.kit-radio input:checked + .kit-radio__card { border-color: var(--green); background: rgba(100,180,60,0.04); }
.kit-radio__card strong { display: block; font-size: 1rem; color: var(--forest); margin-bottom: 4px; }
.kit-radio__card span { font-size: 0.83rem; color: var(--text-muted); }

.consent-group { display: flex; align-items: flex-start; gap: 12px; }
.consent-group input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.consent-group label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { min-width: 200px; }
.form-submit .btn.is-loading { opacity: 0.7; cursor: wait; }

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.form-notice--success { background: rgba(100,180,60,0.08); border: 1px solid rgba(100,180,60,0.2); color: var(--forest); }
.form-notice--error   { background: rgba(220,60,140,0.06); border: 1px solid rgba(220,60,140,0.2); color: var(--forest); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item--open { border-color: rgba(100,180,60,0.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 22px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer.open { display: block; }

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

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .page-card--wide { grid-column: span 2; }
  .form-wrap { padding: 40px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }

  .nav__links {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: rgba(13, 34, 24, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 2px;
    border-top: 1px solid rgba(100,180,60,0.1);
  }
  .nav__links.open { display: flex; }
  .nav__links li a { padding: 12px 16px; display: block; font-size: 0.9rem; }
  .nav__hamburger { display: flex; }

  .hero { padding: 100px 24px 0; }
  .hero__stats { padding: 24px 16px; }
  .hero__stat-num { font-size: 2rem; }

  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split__text { order: 1; }
  .split--reverse .split__image { order: 2; }
  .split__image::after { display: none; }
  .split__image img { height: 340px; }

  .cmd-grid { grid-template-columns: 1fr; }
  .cmd:nth-child(even) { border-right: none; }
  .cmd--full { grid-column: span 1; border-bottom: none; }
  .cmd:nth-last-child(2) { border-bottom: 1px solid rgba(100,180,60,0.08); }

  .cards-grid { grid-template-columns: 1fr; }
  .page-card--wide { grid-column: span 1; flex-direction: column; }
  .page-card--wide .page-card__thumb--wide { width: 100%; height: 168px; }
  .page-card--wide .page-card__body { padding: 22px 22px 20px; }
  .page-card--wide .page-card__arrow { margin-top: 16px; font-size: 1rem; }
  .page-card--wide .page-card__num { margin-bottom: 10px; font-size: 2.2rem; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 44px; }

  .form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .kit-options { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES — SHARED
   ============================================================ */

/* Section background variants (inner pages use single-dash names) */
.section-light  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--forest); }
.section-pink   { background: var(--pink); }

/* section-header variants for inner pages */
.section-header.light h2,
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light h2 { color: var(--white); }

/* section-tag — small eyebrow label (pill badge) */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(100,180,60,0.10);
  border: 1.5px solid rgba(100,180,60,0.22);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.section-tag.tag-yellow { color: #7a6200; background: rgba(240,220,0,0.14); border-color: rgba(240,220,0,0.3); }
.section-tag.tag-teal   { color: #1a7060; background: rgba(60,181,160,0.1); border-color: rgba(60,181,160,0.25); }
.section-tag.tag-white  { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }

/* narrow container */
.container--narrow { max-width: 780px; }

/* inner-page wrapper — just needs top offset for fixed nav */
.inner-page { padding-top: 0; }

/* lead text */
.inner-lead { padding-top: 60px; padding-bottom: 60px; }
.lead-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 24px;
}

/* button aliases for inner pages */
.btn-primary  { background: var(--pink);   color: var(--white);  border: 1.5px solid var(--pink);   padding: 14px 34px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); cursor: pointer; }
.btn-primary:hover  { background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,60,140,0.35); }
.btn-white    { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); padding: 14px 34px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); cursor: pointer; }
.btn-white:hover    { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.7); }
.btn-gold     { background: var(--yellow); color: var(--forest); border: 1.5px solid var(--yellow); padding: 14px 34px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); cursor: pointer; }
.btn-gold:hover     { background: #ffe920; border-color: #ffe920; transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--forest); border: 1.5px solid rgba(13,34,24,0.3); padding: 14px 34px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); cursor: pointer; }
.btn-outline:hover  { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-submit   { background: var(--pink); color: var(--white); border: 1.5px solid var(--pink); padding: 14px 40px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); cursor: pointer; }
.btn-submit:hover   { background: var(--pink-dark); border-color: var(--pink-dark); }
.btn-submit.btn-loading { opacity: 0.7; cursor: wait; pointer-events: none; }

/* ============================================================
   INNER HERO (page-hero.php)
   ============================================================ */
.inner-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.inner-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(100,180,60,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Photo background variant */
.inner-hero--has-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.inner-hero--has-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 34, 24, 0.68) 0%,
    rgba(13, 34, 24, 0.52) 45%,
    rgba(13, 34, 24, 0.80) 100%
  );
  pointer-events: none;
}
.inner-hero--has-img .inner-hero__bg { display: none; }

/* Color accent line per page */
.inner-hero--pink   { border-bottom: 3px solid var(--pink); }
.inner-hero--green  { border-bottom: 3px solid var(--green); }
.inner-hero--yellow { border-bottom: 3px solid var(--yellow); }
.inner-hero--blue   { border-bottom: 3px solid #64b0dc; }
.inner-hero--purple { border-bottom: 3px solid #9c6adc; }
.inner-hero--orange { border-bottom: 3px solid var(--orange); }
.inner-hero--teal   { border-bottom: 3px solid #3cb5a0; }

.inner-hero__content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }

.inner-hero__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.inner-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  line-height: 1.75;
}

/* ============================================================
   SPLIT GRID (inner pages)
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-panel h2 { color: var(--forest); letter-spacing: -0.02em; }
.split-panel h3 { color: var(--forest); margin-bottom: 14px; font-weight: 700; }
.split-panel p  { color: var(--text-muted); line-height: 1.82; font-size: 0.97rem; margin-bottom: 20px; }

.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.split-media:hover img { transform: scale(1.02); }
.split-media__chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,34,24,0.82);
  color: var(--white);
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100,180,60,0.2);
}

/* Metric tiles */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.metric-tile {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.section-dark .metric-tile { background: rgba(255,255,255,0.05); border-color: rgba(100,180,60,0.15); border-top-color: var(--green); }
.metric-tile__value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.metric-tile__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* Chips */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  background: rgba(100,180,60,0.1);
  border: 1px solid rgba(100,180,60,0.2);
  border-radius: 50px;
  padding: 5px 13px;
}

/* ============================================================
   MATERIAL LIST (about page — inside benefit cards)
   ============================================================ */
.material-list {
  list-style: none;
  margin-top: 12px;
}
.material-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.material-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.material-list li:last-child { border-bottom: none; }

/* ============================================================
   PRODUCTS PAGE — CATALOG
   ============================================================ */

/* Book series list */
.prod-series-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prod-series-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  background: var(--cream);
  border-left: 3px solid var(--green);
  border-radius: 6px;
}
.prod-series-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 3px;
}
.prod-series-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.prod-series-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Manuals grid */
.manuals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.manual-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.manual-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.manual-card__cover {
  width: 100%;
  overflow: hidden;
}
.manual-card__cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.manual-card:hover .manual-card__cover img { transform: scale(1.04); }
.manual-card__body {
  padding: 16px 16px 18px;
}
.manual-card__num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
  display: block;
  margin-bottom: 2px;
}
.manual-card__level {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.manual-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}
.manual-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Workbooks grid — 5 columns */
.workbooks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Charts grid */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.chart-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
}
.chart-card__img { overflow: hidden; }
.chart-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.chart-card:hover .chart-card__img img { transform: scale(1.04); }
.chart-card__body { padding: 20px; }
.chart-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.chart-card__body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1100px) {
  .manuals-grid { grid-template-columns: repeat(3, 1fr); }
  .workbooks-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .manuals-grid { grid-template-columns: 1fr 1fr; }
  .workbooks-grid { grid-template-columns: 1fr 1fr; }
  .charts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .manuals-grid { grid-template-columns: 1fr; }
  .workbooks-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 48px;
}

.service-card {
  padding: 32px 24px;
  background: var(--white);
  border: none;
  border-top: 3px solid var(--green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:last-child { border-right: none; }
.service-card--featured {
  background: var(--forest);
  border-top-color: var(--yellow);
}
.service-card--featured h3 { color: var(--yellow); }
.service-card--featured p  { color: rgba(255,255,255,0.78); }

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.service-card__link:hover { text-decoration: underline; }

/* Workshop grid */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.workshop-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.workshop-item:hover {
  background: rgba(255,255,255,0.10);
  border-left-color: var(--yellow);
  transform: translateX(4px);
}
.workshop-item__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.workshop-item__icon {
  font-size: 0;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
  width: 26px;
  height: 26px;
}
.workshop-item__icon svg { display: block; width: 26px; height: 26px; }
.workshop-item__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.workshop-item__body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-overview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-overview-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-item { padding: 24px 20px; }
}

/* ============================================================
   ABOUT PAGE — GET MORE INFORMATION CTA
   ============================================================ */
.about-cta { text-align: center; padding-top: 72px; padding-bottom: 72px; }

.about-cta__heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 20px;
}
.about-cta__body {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.about-cta__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-cta__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.about-cta__link:hover { color: var(--green); }

/* ============================================================
   BENEFIT CARDS (why-join — emoji version)
   ============================================================ */
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(100,180,60,0.12);
  border: 1.5px solid rgba(100,180,60,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background var(--transition), transform var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: rgba(100,180,60,0.2);
  transform: scale(1.08);
}

/* Who grid */
.who-grid { max-width: 780px; margin: 0 auto; }
.who-card-wide {
  background: var(--cream);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.who-card-wide p { color: var(--text-muted); line-height: 1.9; font-size: 0.97rem; }

/* Diff cards (why-join dark section) */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(100,180,60,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background var(--transition);
}
.diff-card:hover { background: rgba(100,180,60,0.06); }
.diff-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}
.diff-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 500; margin-bottom: 12px; }
.diff-card p  { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; }

/* inner CTA teaser strip */
.section-cta { background: var(--forest); text-align: center; }
.inner-teaser-strip .cta-content { max-width: 600px; margin: 0 auto; }
.inner-teaser-strip h2 { color: var(--white); font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 14px; }
.inner-teaser-strip p  { color: rgba(255,255,255,0.55); font-size: 0.97rem; line-height: 1.75; margin-bottom: 32px; }

/* ============================================================
   OUR EDGE — DIFF ITEMS
   ============================================================ */
.diff-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-dark);
}
.diff-item:last-child { border-bottom: none; }
.diff-item--alt { background: var(--cream); margin: 0 -40px; padding: 44px 40px; }
.diff-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.45;
  line-height: 1;
  padding-top: 4px;
}
.diff-item__body h2 { font-size: 1.5rem; color: var(--forest); margin-bottom: 14px; font-weight: 700; }
.diff-item__body p  { color: var(--text-muted); line-height: 1.82; font-size: 0.97rem; margin-bottom: 18px; }
.diff-item__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 18px;
}
.diff-item__list li { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 8px; }
.diff-item__list li strong { color: var(--text); font-weight: 600; }
.diff-item__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(100,180,60,0.12);
  border: 1px solid rgba(100,180,60,0.2);
  border-radius: 50px;
  padding: 5px 14px;
}
.diff-item__tag--green  { color: var(--green-dark); background: rgba(100,180,60,0.1); border-color: rgba(100,180,60,0.25); }
.diff-item__tag--yellow { color: #806000; background: rgba(240,220,0,0.12); border-color: rgba(240,220,0,0.3); }
.diff-item__tag--orange { color: #804010; background: rgba(240,160,40,0.1); border-color: rgba(240,160,40,0.25); }
.diff-item__tag--purple { color: #5a3a80; background: rgba(156,106,220,0.1); border-color: rgba(156,106,220,0.25); }

/* Comparison table */
.comparison-section { background: var(--forest); }
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(100,180,60,0.08);
  color: rgba(255,255,255,0.6);
}
.comparison-table thead th { color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; background: rgba(0,0,0,0.2); }
.comparison-table .col-obp { background: rgba(100,180,60,0.06); }
.comparison-table .good { color: var(--green); font-weight: 500; }
.comparison-table .bad  { color: rgba(255,255,255,0.35); }
.comparison-table tbody tr:hover td { background: rgba(100,180,60,0.04); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.series-card {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.series-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.series-card__header {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.series-card__icon { font-size: 2rem; }
.series-card__body { padding: 24px; }
.series-age {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.series-card__body h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 10px; font-weight: 600; }
.series-card__body p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* Teaching aids */
.aids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.aid-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.aid-card:hover { box-shadow: var(--shadow); }
.aid-card__icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.aid-card h3 { font-size: 1rem; color: var(--forest); margin-bottom: 10px; font-weight: 600; }
.aid-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* Starter kits */
.kits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.kit-card {
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.kit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.kit-basic   { background: var(--white); border-top: 4px solid var(--green); }
.kit-premium { background: var(--forest); border-top: 4px solid var(--yellow); }
.kit-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(100,180,60,0.12);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.kit-premium .kit-badge { color: var(--yellow); background: rgba(240,220,0,0.1); }
.badge-gold { color: var(--yellow) !important; background: rgba(240,220,0,0.1) !important; }
.kit-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}
.kit-premium .kit-price { color: var(--yellow); }
.kit-card h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: 24px; font-weight: 500; }
.kit-premium h3 { color: var(--white); }
.kit-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.kit-list li { font-size: 0.88rem; color: var(--text-muted); }
.kit-premium .kit-list li { color: rgba(255,255,255,0.55); }
.kit-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   EARNINGS PAGE
   ============================================================ */
.income-list { display: flex; flex-direction: column; gap: 0; }
.income-item {
  display: grid;
  grid-template-columns: 52px 52px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-dark);
}
.income-item:last-child { border-bottom: none; }
.income-item--alt { background: var(--cream); margin: 0 -40px; padding: 36px 40px; }
.income-item__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.income-item__icon { font-size: 1.6rem; padding-top: 6px; }
.income-item__body h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 10px; font-weight: 700; }
.income-item__body p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
.income-item__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(100,180,60,0.1);
  color: var(--green-dark);
  border: 1px solid rgba(100,180,60,0.2);
  border-radius: 50px;
  padding: 4px 14px;
}
.income-item__badge--green  { background: rgba(100,180,60,0.1); color: var(--green-dark); border-color: rgba(100,180,60,0.2); }
.income-item__badge--yellow { background: rgba(240,220,0,0.1); color: #806000; border-color: rgba(240,220,0,0.25); }
.income-item__badge--purple { background: rgba(156,106,220,0.08); color: #5a3a80; border-color: rgba(156,106,220,0.2); }

.section-pink .section-header h2 { color: var(--white); }
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); }
.commission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.commission-table th,
.commission-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.commission-table thead th { background: rgba(0,0,0,0.2); color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.commission-table tbody tr:hover td { background: rgba(255,255,255,0.06); }

.earnings-note {
  margin-top: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  border-left: 3px solid rgba(255,255,255,0.3);
}

.bonus-logic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-logic-card {
  background: var(--white);
  border: none;
  border-top: 3px solid var(--green);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bonus-logic-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bonus-logic-card h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 12px; font-weight: 700; }
.bonus-logic-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }

.info-box {
  background: rgba(100,180,60,0.07);
  border: 1px solid rgba(100,180,60,0.18);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.info-box strong { color: var(--forest); }

.payment-steps { display: flex; flex-direction: column; gap: 12px; }
.payment-step {
  display: flex;
  gap: 22px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.payment-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.payment-step__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(100,180,60,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-step__body h3 { font-size: 1.0rem; color: var(--forest); margin-bottom: 6px; font-weight: 700; }
.payment-step__body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   MASTER JOURNEY — TIMELINE
   ============================================================ */
.master-timeline { display: flex; flex-direction: column; }
.master-tl-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
}
.master-tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.master-tl-letter {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.master-tl-line {
  flex: 1;
  width: 2px;
  border-left: 2px dashed rgba(100,180,60,0.2);
  margin: 8px 0;
  min-height: 48px;
}
.master-tl-content {
  padding-bottom: 44px;
}
.master-tl-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.master-tl-content h2 { font-size: 1.8rem; color: var(--forest); margin-bottom: 12px; font-weight: 400; }
.master-tl-content p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.82; margin-bottom: 16px; }
.master-tl-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  background: rgba(100,180,60,0.08);
  border: 1px solid rgba(100,180,60,0.18);
  border-radius: 50px;
  padding: 6px 16px;
}

/* After cards */
.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.after-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(100,180,60,0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background var(--transition);
}
.after-card:hover { background: rgba(100,180,60,0.06); }
.after-card__icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.after-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 12px; font-weight: 500; }
.after-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 20px; }
.after-card__link {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 500;
  transition: color var(--transition);
}
.after-card__link:hover { color: #80cc52; }

/* ============================================================
   RANKS PAGE
   ============================================================ */
.rank-detail {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
}
.rank-detail__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border-dark);
}
.rank-detail--pink   .rank-detail__header { background: rgba(220,60,140,0.06); border-bottom-color: rgba(220,60,140,0.15); }
.rank-detail--green  .rank-detail__header { background: rgba(100,180,60,0.06); border-bottom-color: rgba(100,180,60,0.15); }
.rank-detail--blue   .rank-detail__header { background: rgba(100,176,220,0.06); border-bottom-color: rgba(100,176,220,0.15); }
.rank-detail--yellow .rank-detail__header { background: rgba(240,220,0,0.06); border-bottom-color: rgba(240,220,0,0.15); }
.rank-detail--orange .rank-detail__header { background: rgba(240,160,40,0.06); border-bottom-color: rgba(240,160,40,0.15); }
.rank-detail__icon { font-size: 2.2rem; }
.rank-detail__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.rank-detail__header h2 { font-size: 1.5rem; color: var(--forest); font-weight: 400; }
.rank-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rank-detail__col {
  padding: 32px 36px;
  border-right: 1px solid var(--border-dark);
}
.rank-detail__earn { border-right: none; background: var(--cream); }
.rank-detail__col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dark);
}
.rank-detail__col h4 + h4 { margin-top: 24px; }
.rank-detail__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.rank-detail__col ul li {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.rank-detail__col ul li::before { content: '—'; position: absolute; left: 0; color: var(--green); opacity: 0.5; }
.rank-detail__earn h4 { color: var(--green-dark); }
.rank-detail__earn li { color: var(--text); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: flex-start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar__inner {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
}
.faq-sidebar__inner h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.faq-sidebar__inner ul li { margin-bottom: 8px; }
.faq-sidebar__inner ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.faq-sidebar__inner ul li a:hover { color: var(--green); }
.faq-main { min-width: 0; }
.faq-group { margin-bottom: 52px; }
.faq-group__title {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-dark);
}
.faq-icon { display: none; } /* hide inline + since CSS ::after handles it */

/* ============================================================
   PAGE CTA (template-parts/page-cta.php)
   ============================================================ */
.inner-cta {
  background: var(--cream);
  padding: 44px 0;
  border-top: 1px solid var(--border-dark);
}
.inner-cta__inner { display: flex; align-items: center; justify-content: center; }
.inner-page-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  justify-content: space-between;
}
.page-nav-btn {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.page-nav-btn--prev { align-items: flex-start; }
.page-nav-btn--next { align-items: flex-end; }
.page-nav-btn__dir {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.page-nav-btn__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
  transition: color var(--transition);
}
.page-nav-btn:hover .page-nav-btn__label { color: var(--green); }

/* ============================================================
   JOIN FORM PAGE
   ============================================================ */
.join-section { background: var(--cream); }

/* 2-col layout: form + sidebar */
.join-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: flex-start;
}
.join-form-wrap { min-width: 0; }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-card__header {
  background: var(--forest);
  padding: 36px 48px;
  border-bottom: 3px solid var(--pink);
}
.form-card__header h2 { color: var(--white); font-size: 2rem; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.01em; }
.form-card__header p  { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.join-form { padding: 40px 48px; }

/* Reset fieldset used as form-section inside join form */
fieldset.form-section {
  border: none;
  padding: 0;
  margin: 0 0 36px;
  background: none;
}
fieldset.form-section legend {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  font-weight: 600;
  padding: 0;
  margin-bottom: 22px;
  width: 100%;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 10px;
}

.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.req { color: var(--pink); }

.fieldset-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-style: italic;
}
.fieldset-note a { color: var(--green); text-decoration: underline; }

/* Kit radio group */
.kit-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.kit-radio { display: block; cursor: pointer; }
.kit-radio input[type="radio"] { display: none; }
.kit-radio__card {
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.kit-radio input:checked + .kit-radio__card {
  border-color: var(--green);
  background: rgba(100,180,60,0.05);
}
.kit-radio__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.kit-radio__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.kit-radio__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.kit-radio__desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Step UI (Attend & Host pages) */
.attend-step {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  background: var(--off-white);
}
.attend-step__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.attend-step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attend-step__header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.attend-step__header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Field hint text */
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: -2px;
}

/* 2-col event checkbox variant */
.event-checkbox-group--2col {
  grid-template-columns: 1fr 1fr;
}

/* Host payment notice */
.host-payment-notice {
  display: flex;
  gap: 16px;
  background: rgba(240,220,0,0.1);
  border: 1px solid rgba(240,220,0,0.5);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.host-payment-notice__icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.host-payment-notice strong { display: block; font-size: 0.95rem; color: var(--forest); margin-bottom: 8px; }
.host-payment-notice p { font-size: 0.83rem; color: var(--text); line-height: 1.65; margin-bottom: 6px; }
.host-payment-notice p:last-child { margin-bottom: 0; }

/* Event checkbox cards (Attend page) */
.event-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.event-checkbox { display: block; cursor: pointer; }
.event-checkbox input[type="checkbox"] { display: none; }
.event-checkbox__card {
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 22px 18px 20px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.event-checkbox input:checked + .event-checkbox__card {
  border-color: var(--green);
  background: rgba(100,180,60,0.05);
}
.event-checkbox__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}
.event-checkbox__card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.event-checkbox__card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* pillar <a> — remove link underline/colour */
a.pillar { color: inherit; text-decoration: none; }

/* Consent */
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--green); width: 16px; height: 16px; }
.checkbox-custom { display: none; } /* pure CSS checkbox replacement not needed — browser native */

/* Submit area */
.form-submit { margin-top: 28px; }
.form-submit .btn-primary,
.form-submit .btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 32px; }
.form-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
  text-align: center;
}

/* Loading spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }
.btn-loading { display: none; }
.btn-submit.is-loading .btn-text    { display: none; }
.btn-submit.is-loading .btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.btn-submit.is-loading { opacity: 0.8; cursor: wait; pointer-events: none; }

/* Inline success */
.form-success-inline {
  text-align: center;
  padding: 56px 32px;
}
.form-success-inline__icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.form-success-inline__inner h3 { font-size: 1.8rem; color: var(--forest); margin-bottom: 12px; }
.form-success-inline__inner p  { color: var(--text-muted); font-size: 0.95rem; }

/* ---- Sidebar ---- */
.join-sidebar { display: flex; flex-direction: column; gap: 20px; }

.join-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.join-sidebar-card--dark {
  background: var(--forest);
  border-color: rgba(100,180,60,0.12);
}
.join-sidebar-card h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 18px; font-weight: 500; }
.join-sidebar-card--dark h3 { color: var(--white); }
.join-sidebar-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* Next steps */
.next-steps { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.next-steps__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.next-steps li strong { display: block; font-size: 0.88rem; color: var(--forest); margin-bottom: 3px; }
.next-steps li p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Mini kit comparison */
.mini-kit { display: flex; flex-direction: column; gap: 0; }
.mini-kit__option { padding: 16px 0; }
.mini-kit__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
}
.mini-kit__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(240,220,0,0.15);
  color: var(--yellow);
  border-radius: 50px;
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: 6px;
}
.mini-kit__option ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mini-kit__option ul li { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.mini-kit__divider { border-top: 1px solid rgba(100,180,60,0.12); margin: 4px 0; }

/* btn-outline-white (dark bg ghost button) */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.16);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-white:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* Form section wrapper (page-level, not fieldset) */
.form-section { padding: 80px 0; background: var(--cream); }

/* ============================================================
   INNER PAGE RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-media img { height: 320px; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .aids-grid { grid-template-columns: 1fr 1fr; }
  .bonus-logic-grid { grid-template-columns: 1fr 1fr; }
  .after-grid { grid-template-columns: 1fr 1fr; }
  .faq-page-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .rank-detail__body { grid-template-columns: 1fr; }
  .rank-detail__col { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .rank-detail__earn { border-bottom: none; }
  .income-item { grid-template-columns: 40px 40px 1fr; gap: 16px; }
  .income-item--alt { margin: 0 -24px; padding: 36px 24px; }
  .diff-item--alt { margin: 0 -24px; padding: 44px 24px; }
}

/* ============================================================
   INNER PAGE RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .inner-hero { padding: 120px 0 56px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { grid-template-columns: 1fr; gap: 8px; }
  .diff-item__num { font-size: 2rem; }
  .kits-grid { grid-template-columns: 1fr; max-width: 460px; }
  .series-grid { grid-template-columns: 1fr; }
  .aids-grid { grid-template-columns: 1fr; }
  .bonus-logic-grid { grid-template-columns: 1fr; }
  .after-grid { grid-template-columns: 1fr; }
  .master-tl-step { grid-template-columns: 52px 1fr; gap: 20px; }
  .income-item { grid-template-columns: 1fr; gap: 8px; }
  .income-item--alt { margin: 0; }
  .inner-page-nav { flex-wrap: wrap; gap: 20px; }
  .form-card > form { padding: 28px 24px; }
  .form-card__header { padding: 28px 24px; }
  .form-row--2 { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRODUCTS PAGE — why-grid, workbooks, teaching-aids, technique
   ============================================================ */

/* Why grid */
.why-grid { margin-top: 48px; }
.why-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card__icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Prod feature list */
.prod-feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.prod-feature-list li { font-size: 0.9rem; color: var(--text-muted); }

/* Prod note */
.prod-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--cream);
  border-left: 3px solid var(--green);
  padding: 14px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 36px;
}

/* Workbooks grid */
.workbooks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.workbook-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.workbook-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.workbook-card__img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.workbook-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.workbook-card:hover .workbook-card__img img { transform: scale(1.05); }
.workbook-card__body { padding: 22px 20px 24px; }
.workbook-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(100,180,60,0.1);
  padding: 3px 10px;
  border-radius: 40px;
  margin-bottom: 10px;
}
.workbook-card h3 { font-size: 1rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.workbook-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* Teaching aids grid */
.teaching-aids-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.teaching-aid-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.teaching-aid-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); }
.teaching-aid-card__img img { width: 100%; height: 100%; object-fit: cover; }
.teaching-aid-card__body { padding: 28px 28px 32px; flex: 1; }
.teaching-aid-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--forest); margin-bottom: 12px; }
.teaching-aid-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }

/* Technique section */
.technique-body {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.technique-body p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; }
.technique-lead {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  color: rgba(255,255,255,0.92) !important;
  line-height: 1.6 !important;
}

/* Sound sequence chips */
.sound-sequence {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.sound-sequence span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(100,180,60,0.12);
  border: 1px solid rgba(100,180,60,0.25);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* Products page responsive */
@media (max-width: 1024px) {
  .why-grid__inner     { grid-template-columns: repeat(2, 1fr); }
  .workbooks-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-grid__inner     { grid-template-columns: 1fr; }
  .workbooks-grid      { grid-template-columns: repeat(2, 1fr); }
  .teaching-aids-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .workbooks-grid      { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }
  .hero__stat { text-align: left; }
  .hero__stat-div { width: 40px; height: 1px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 320px; }

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

/* ============================================================
   BLOG — home.php (posts index)
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Thumbnail */
.blog-card__thumb {
  display: block;
  height: 200px;
  overflow: hidden;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }

.blog-card__thumb--placeholder {
  background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__thumb--placeholder span { font-size: 2.8rem; }

/* Card body */
.blog-card__body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Meta row: date + category chip */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card__cat {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(100,180,60,0.1);
  border: 1px solid rgba(100,180,60,0.22);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Title */
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--forest);
  margin: 0;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--green-dark); }

/* Excerpt */
.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* Read more link */
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.blog-card__link:hover { color: var(--forest); gap: 8px; }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.blog-empty span { font-size: 3.5rem; }
.blog-empty h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
}
.blog-empty p { color: var(--text-muted); max-width: 420px; }

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.blog-pagination .page-numbers.dots { border: none; background: none; }

/* Responsive blog grid */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card__thumb { height: 180px; }
}

/* ============================================================
   BENEFIT ICON — SVG (why-join page)
   ============================================================ */
.benefit-icon {
  color: var(--green-dark);
  font-size: 0;
}
.benefit-icon svg { display: block; width: 28px; height: 28px; }
.benefit-card:hover .benefit-icon {
  background: rgba(100,180,60,0.22);
  color: var(--forest);
}

/* ============================================================
   FOOTER CONTACT ITEM — SVG icons
   ============================================================ */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   STORY STRIP (why-join page)
   ============================================================ */
.story-strip {
  background: var(--forest);
  padding: 72px 0;
  text-align: center;
}
.story-quote {
  margin: 0 auto 48px;
  max-width: 760px;
  padding: 0;
  border: none;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.story-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.story-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.story-pillar__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.story-pillar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.story-pillar-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .story-pillars { gap: 28px; }
  .story-pillar-div { display: none; }
}

/* ============================================================
   TESTIMONIAL STRIP (homepage — social proof)
   ============================================================ */
.testimonial-strip {
  background: #f5f0e8;
  padding: 64px 0;
  border-top: 1px solid rgba(13,34,24,0.07);
  border-bottom: 1px solid rgba(13,34,24,0.07);
}
.testimonial-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-strip__mark {
  width: 36px;
  height: 28px;
  color: var(--green);
  opacity: 0.45;
  flex-shrink: 0;
}
.testimonial-strip__inner blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-strip__inner blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.testimonial-strip__inner blockquote cite {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-style: normal;
}

/* ============================================================
   BENEFITS PHOTO SECTION (why-join — Usborne-style)
   ============================================================ */
.benefits-photo-section {
  position: relative;
  padding: 88px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.benefits-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,34,24,0.82);
  z-index: 0;
}
.benefits-photo-section .container { position: relative; z-index: 1; }
.benefits-photo-section .section-header--light { margin-bottom: 44px; }
.benefits-photo-section .section-header--light h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.benefits-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.12);
}
.benefit-photo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  transition: background var(--transition);
}
.benefit-photo-item:hover { background: rgba(255,255,255,0.06); }
.benefit-photo-item:nth-child(4n) { border-right: none; }
.benefit-photo-item:nth-child(n+5) { border-bottom: none; }
.benefit-photo-item__icon {
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.benefit-photo-item__icon svg { display: block; }
.benefit-photo-item > span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .benefits-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-photo-item:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.12); }
  .benefit-photo-item:nth-child(2n) { border-right: none; }
  .benefit-photo-item:nth-child(n+5) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .benefit-photo-item:nth-child(n+7) { border-bottom: none; }
}
@media (max-width: 520px) {
  .benefit-photo-item { padding: 28px 16px; gap: 12px; }
  .benefit-photo-item__icon svg { width: 36px; height: 36px; }
  .benefit-photo-item > span { font-size: 0.9rem; }
}

/* ============================================================
   GET STARTED SPLIT (why-join — Usborne-style)
   ============================================================ */
.get-started-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.get-started-split__photo {
  position: relative;
  overflow: hidden;
}
.get-started-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.get-started-split__content {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.get-started-split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 12px;
}
.get-started-split__rule {
  width: 72px;
  height: 4px;
  background: var(--yellow);
  margin-bottom: 20px;
  border-radius: 2px;
}
.get-started-split__sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 24px;
}
.get-started-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0;
}
.get-started-list li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.get-started-list li strong {
  color: var(--forest);
  font-weight: 700;
  margin-right: 4px;
}
.get-started-split__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}
@media (max-width: 900px) {
  .get-started-split { grid-template-columns: 1fr; }
  .get-started-split__photo { height: 340px; }
  .get-started-split__content { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .get-started-split__content { padding: 40px 20px; }
}


/* ============================================================
   ELEGANCE & SIMPLICITY PASS — Round 4
   Targeted overrides for more visual polish and refinement.
   ============================================================ */

/* ---- 1. Refined design tokens ---- */
:root {
  --cream:       #f7f4ef;   /* warmer, more editorial cream */
  --off-white:   #fdfcf8;   /* warm white */
  --text-muted:  #506040;   /* slightly warmer muted text */

  /* Multi-layer shadows — softer & more elevated */
  --shadow:    0 1px 3px rgba(13,34,24,0.05), 0 4px 16px rgba(13,34,24,0.06);
  --shadow-md: 0 2px 8px rgba(13,34,24,0.06), 0 8px 28px rgba(13,34,24,0.08);
  --shadow-lg: 0 4px 16px rgba(13,34,24,0.07), 0 16px 48px rgba(13,34,24,0.10);

  /* More generous radius */
  --radius:    14px;
  --radius-md: 20px;
  --radius-lg: 32px;

  /* Slightly smoother default transition */
  --transition: 0.26s ease;
  --transition-spring: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- 2. Base typography refinements ---- */
body { line-height: 1.70; }

h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}
h3 {
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.section-sub {
  font-size: 1.08rem;
  line-height: 1.82;
  max-width: 600px;
  color: var(--text-muted);
}

/* ---- 3. Pill-shaped buttons ---- */
.btn {
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.87rem;
  letter-spacing: 0.6px;
  font-weight: 600;
  transition: transform var(--transition-spring), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.btn--pink:hover  { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(220,60,140,0.32); }
.btn--green:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(100,180,60,0.32); }
.btn--yellow:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(240,220,0,0.30); }
.btn--outline { border-radius: 50px; }
.btn--ghost   { border-color: rgba(255,255,255,0.38); }
.btn--ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.68); }
.btn-primary  { border-radius: 50px; }
.btn-gold     { border-radius: 50px; }
.btn-outline  { border-radius: 50px; }
.btn-submit   { border-radius: 50px; }

/* ---- 4. Navigation ---- */
.nav__inner { height: 82px; }

.nav__links li a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.76);
  padding: 8px 15px;
}
.nav__links li a::after {
  left: 15px; right: 15px; bottom: 3px;
}

.nav__cta {
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-size: 0.77rem !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
  background: var(--pink) !important;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(220,60,140,0.30) !important;
}

.nav--scrolled {
  background: rgba(11, 28, 19, 0.97);
  box-shadow: 0 1px 0 rgba(100,180,60,0.10), 0 6px 28px rgba(0,0,0,0.22);
}

/* ---- 5. Hero refinements ---- */
.hero__title { letter-spacing: -0.04em; }

.hero__sub {
  font-size: 1.13rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.80;
}

/* Glass stats bar */
.hero__stats {
  background: rgba(13,34,24,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 52px;
  margin-top: 56px;
}
.hero__stat-num { font-size: 2.5rem; }
.hero__stat-label {
  font-size: 0.64rem;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.48);
}

/* ---- 6. Section header ---- */
.section-header { margin-bottom: 60px; }
.section-header h2 { letter-spacing: -0.025em; }

/* ---- 7. Inner hero ---- */
.inner-hero { padding: 148px 0 92px; }

.inner-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: -0.032em;
  line-height: 1.08;
}
.inner-hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.82;
  max-width: 600px;
}
/* Subtle bottom accent — thinner */
.inner-hero--pink,
.inner-hero--green,
.inner-hero--yellow,
.inner-hero--blue,
.inner-hero--purple,
.inner-hero--orange,
.inner-hero--teal { border-bottom-width: 2px; }

/* ---- 8. Split grid ---- */
.split-grid { gap: 84px; }
.split-panel p { line-height: 1.85; }

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(13,34,24,0.14), 0 2px 8px rgba(13,34,24,0.06);
  transition: transform var(--transition-spring);
}
.split-media:hover img { transform: scale(1.025); }

.split-media__chip {
  font-size: 0.77rem;
  padding: 9px 20px;
  bottom: 22px; left: 22px;
  letter-spacing: 0.2px;
  border-radius: 50px;
}

/* ---- 9. Benefit cards ---- */
.benefit-card {
  border-radius: var(--radius-md);
  padding: 40px 30px;
  border-top: 2px solid var(--green);
  transition: transform var(--transition-spring), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.benefit-card h3 { font-size: 1.08rem; letter-spacing: -0.01em; }

/* ---- 10. Page / explore cards ---- */
.page-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(13,34,24,0.07);
  transition: transform var(--transition-spring), box-shadow var(--transition), border-color var(--transition);
}
.page-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(13,34,24,0.11);
  border-color: transparent;
}
.page-card__thumb { height: 182px; }

/* ---- 11. Metric tiles ---- */
.metric-tile {
  border-radius: var(--radius);
  border-top-width: 2px;
  padding: 20px 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.metric-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.metric-tile__value {
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.metric-tile__label {
  font-size: 0.73rem;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

/* ---- 12. Section tag badge ---- */
.section-tag {
  font-size: 0.66rem;
  letter-spacing: 2.5px;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ---- 13. Lead text ---- */
.lead-text {
  font-size: 1.18rem;
  line-height: 1.90;
  border-left-width: 2px;
  padding-left: 26px;
}

/* ---- 14. Bonus logic cards ---- */
.bonus-logic-card {
  border-radius: var(--radius-md);
  transition: transform var(--transition-spring), box-shadow var(--transition);
}
.bonus-logic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ---- 15. Manual / workbook / chart cards ---- */
.manual-card, .chart-card {
  border-radius: var(--radius-md);
  transition: transform var(--transition-spring), box-shadow var(--transition);
}
.manual-card:hover, .chart-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ---- 16. Scroll animations — spring easing ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.70s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.70s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 17. Focus rings for keyboard accessibility ---- */
:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
  border-radius: 50px;
}

/* ---- 18. Prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn,
  .benefit-card,
  .page-card,
  .manual-card,
  .chart-card,
  .bonus-logic-card,
  .metric-tile,
  .hero-card {
    transition: none !important;
  }
  .btn:hover,
  .benefit-card:hover,
  .page-card:hover,
  .manual-card:hover,
  .hero-card:hover {
    transform: none !important;
  }
  .split-media:hover img { transform: none !important; }
  .path-card:hover .path-card__bg { transform: none !important; }
}

/* ---- 19. Section spacing rhythm ---- */
.section { padding: 96px 0; }
.inner-lead { padding: 64px 0; }

/* ---- 20. Path cards — better inner text ---- */
.path-card__headline {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.025em;
}
.path-card__tag { letter-spacing: 3.5px; }

/* ---- 21. FAQ refinements ---- */
.faq-question {
  font-size: 1.02rem;
  transition: color var(--transition);
}

/* ---- 22. Story strip pillars ---- */
.story-pillar__value {
  letter-spacing: -0.03em;
}

/* ---- 23. Commission table ---- */
.commission-table thead th {
  letter-spacing: 0.8px;
  font-size: 0.78rem;
}

/* ---- 24. Footer refinements ---- */
.footer__nav ul li a {
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  font-size: 0.80rem;
  transition: color var(--transition);
}
.footer__nav ul li a:hover { color: var(--white); }
.footer__bottom p { color: rgba(255,255,255,0.22); }
.footer__contact-item { display: flex; align-items: center; gap: 9px; }

/* ---- 25. Mobile refinements ---- */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .inner-hero { padding: 120px 0 72px; }
  .section-header { margin-bottom: 48px; }
  .hero__stats { padding: 24px 28px; }
  h2 { font-size: clamp(1.75rem, 5vw, 2.2rem); }
  .inner-hero__title { font-size: clamp(2rem, 7vw, 3rem); }
}

@media (max-width: 480px) {
  .btn { padding: 13px 28px; font-size: 0.84rem; }
  .section { padding: 60px 0; }
  .inner-lead { padding: 48px 0; }
}


/* ============================================================
   LOGO-ACCURATE COLOR PALETTE + RESPONSIVENESS PASS
   Colors extracted directly from the Phonics Train logo:
   - Vivid green  (train body)     → #3DB848
   - Hot pink     (engine cab)     → #E0347C
   - Golden yellow(trim/chimney)   → #F5D800
   - Warm orange  (wheels)         → #F09028
   - Sky blue     (windows, new)   → #88CCE4
   ============================================================ */

:root {
  /* --- Logo-accurate brand colours --- */
  --green:        #3DB848;   /* vivid logo green — was #64b43c (too olive) */
  --green-dark:   #2E9038;   /* hover state */
  --pink:         #E0347C;   /* vivid logo pink — was #dc3c8c */
  --pink-dark:    #B82868;   /* hover state */
  --yellow:       #F5D800;   /* brighter golden yellow — was #f0dc00 */
  --yellow-dark:  #CBBA00;   /* hover state */
  --orange:       #F09028;   /* logo wheel orange (unchanged) */
  --gold:         #C49A35;   /* warm gold highlight (unchanged) */
  --sky:          #88CCE4;   /* NEW: logo window sky-blue — soft accent */

  /* --- Warm section backgrounds (complement warm logo palette) --- */
  --cream:        #FDF8F0;   /* warm golden cream — was cool grey-green */
  --off-white:    #FDFCF9;   /* warm white */

  /* --- Border uses green tint properly --- */
  --border: rgba(61, 184, 72, 0.11);
}

/* Update any inline rgba references that use old green (#64b43c → ~100,180,60)
   by resetting key elements to use the new tokens */

/* Nav hover line uses yellow — already correct */
/* Eyebrow uses --green — now auto-updated via var() */

/* Scrolled nav bottom line matches new green */
.nav--scrolled {
  box-shadow: 0 1px 0 rgba(61,184,72,0.12), 0 6px 28px rgba(0,0,0,0.22);
}

/* Steps grid bg uses old rgba — update */
.steps-grid {
  background: rgba(61,184,72,0.09);
  border: 1px solid rgba(61,184,72,0.10);
}

/* Commandments grid border */
.cmd-grid {
  border: 1px solid rgba(61,184,72,0.10);
}
.cmd {
  border-bottom: 1px solid rgba(61,184,72,0.08);
  border-right:  1px solid rgba(61,184,72,0.08);
}

/* Hero stat divider */
.hero__stat-div { background: rgba(61,184,72,0.20); }

/* Mission stripe accent */
.mission-stripe__line--accent { color: var(--green); }

/* Sky accent — subtle use on section tag dot */
.section-tag::before { background: var(--green); }

/* Benefit card top accent matches new green */
.benefit-card { border-top-color: var(--green); }

/* Metric tile top accent */
.metric-tile { border-top-color: var(--green); }

/* ============================================================
   RESPONSIVENESS FIXES
   ============================================================ */

/* --- Fix mobile nav dropdown position (was 78px, nav is 82px) --- */
@media (max-width: 768px) {
  .nav__links {
    top: 82px;
    gap: 0;
    padding: 16px 20px 24px;
  }
  .nav__links li a {
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 13px 16px;
    border-radius: var(--radius);
  }
  /* Nav CTA full width on mobile */
  .nav__cta {
    margin-top: 8px !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
  }

  /* Hero actions stack on small screens */
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Section split — full width stacked */
  .section-split .split-grid,
  .section-split > .container > .split-grid {
    gap: 40px;
  }

  /* Inner hero sub — better readability */
  .inner-hero__sub { font-size: 1rem; color: rgba(255,255,255,0.80); }

  /* Story strip stacks on mobile */
  .story-pillars {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .story-pillar-div {
    width: 60px;
    height: 1px;
    transform: none;
  }

  /* Benefits photo grid — 2 columns at 768px */
  .benefits-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 600px — most grids single column --- */
@media (max-width: 600px) {
  /* Nav */
  .nav__inner { padding: 0 20px; }

  /* Benefits photo grid → 2-col at 600 */
  .benefits-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Service cards */
  .services-overview-grid { grid-template-columns: 1fr 1fr; }

  /* Why grid */
  .why-grid__inner { grid-template-columns: 1fr; }

  /* Commission table — allow scroll */
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .commission-table { min-width: 520px; }
}

/* --- 480px — single column everything --- */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* Nav */
  .nav__inner { padding: 0 18px; height: 74px; }
  .nav__links { top: 74px; }
  .nav__logo img,
  .nav__logo .custom-logo-link img { height: 40px; }

  /* Hero */
  .hero { padding: 90px 18px 0; }
  .hero__stat-num { font-size: 1.8rem; }
  .hero__stat-label { font-size: 0.60rem; letter-spacing: 1.8px; }

  /* Inner hero */
  .inner-hero { padding: 108px 0 60px; }
  .inner-hero__title { font-size: clamp(1.85rem, 7.5vw, 2.6rem); }

  /* Sections */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  /* Benefits photo grid → single column */
  .benefits-photo-grid { grid-template-columns: 1fr; }

  /* Service overview */
  .services-overview-grid { grid-template-columns: 1fr; }

  /* Story strip */
  .story-quote p { font-size: 1.1rem; }

  /* Get-started split — reduce padding */
  .get-started-split__content { padding: 36px 18px; }

  /* Form wrap */
  .form-wrap { padding: 28px 18px; }

  /* Metric grid — stack 2 cols */
  .metric-grid { grid-template-columns: 1fr 1fr; }

  /* Path cards */
  .path-card { min-height: 260px; }
  .path-card__inner { padding: 24px 20px 28px; }

  /* Footer */
  .footer { padding: 60px 0 0; }
  .footer__grid { gap: 36px; }
  .footer__nav ul { column-count: 1; }
}

/* --- Landscape phone --- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 40px 40px; }
  .inner-hero { padding: 100px 0 52px; }
  .three-paths { height: auto; grid-template-columns: 1fr 1fr 1fr; }
  .path-card { min-height: 240px; }
}
