/* WealthyForty™ Master Brand & Platform Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --color-forest-dark: #0B3D28;
  --color-forest-mid: #0E5236;
  --color-forest-green: #11693F;
  --color-forest-light: #167A47;
  --color-emerald-bg: #E8F5E9;
  
  --color-gold-main: #D98A12;
  --color-gold-bright: #F5BC38;
  --color-gold-hover: #C57B0A;
  --color-gold-bg: #FFF8DF;
  --color-gold-border: #E8CF86;

  --color-text-dark: #122B1E;
  --color-text-muted: #3D5A4B;
  --color-bg-light: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(13, 47, 31, 0.08);
  --shadow-lg: 0 10px 30px rgba(13, 47, 31, 0.15);
  --radius-lg: 16px;
  --radius-md: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: #F4F7F5;
  background-image: 
    radial-gradient(circle, rgba(13, 92, 54, 0.08) 1.2px, transparent 1.2px),
    radial-gradient(ellipse 90% 45% at 50% 0%, rgba(217, 138, 18, 0.07), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 55%, rgba(13, 92, 54, 0.05), transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 75%, rgba(217, 138, 18, 0.04), transparent 60%);
  background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%;
  background-attachment: fixed;
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* AMBIENT AURORA KEYFRAMES */
@keyframes auroraPulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate(-30px, 18px) scale(1.15);
    opacity: 0.85;
  }
}

@keyframes goldGlowDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate(25px, -22px) scale(1.18);
    opacity: 0.8;
  }
}

/* FLOATING WEALTH GROWTH PARTICLES & MICRO-SPARKLES */
.wealth-particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.growth-particle {
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: floatUpward linear infinite, sparklePulse ease-in-out infinite alternate;
}

/* Gold Luminous Flecks */
.growth-particle.gold {
  background: radial-gradient(circle, #FFE484 0%, #D98A12 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(245, 188, 56, 0.8), 0 0 20px rgba(217, 138, 18, 0.4);
}

/* Emerald Luminous Flecks */
.growth-particle.emerald {
  background: radial-gradient(circle, #A7F3D0 0%, #10B981 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.75), 0 0 20px rgba(16, 185, 129, 0.35);
}

.growth-particle:nth-child(1) {
  left: 7%;
  width: 6px;
  height: 6px;
  animation-duration: 18s, 3s;
  animation-delay: 0s, 0.5s;
}
.growth-particle:nth-child(2) {
  left: 21%;
  width: 9px;
  height: 9px;
  animation-duration: 23s, 4s;
  animation-delay: 4s, 1s;
}
.growth-particle:nth-child(3) {
  left: 36%;
  width: 5px;
  height: 5px;
  animation-duration: 16s, 2.5s;
  animation-delay: 8s, 0s;
}
.growth-particle:nth-child(4) {
  left: 52%;
  width: 8px;
  height: 8px;
  animation-duration: 20s, 3.5s;
  animation-delay: 2s, 1.5s;
}
.growth-particle:nth-child(5) {
  left: 67%;
  width: 6px;
  height: 6px;
  animation-duration: 19s, 3s;
  animation-delay: 6s, 0.8s;
}
.growth-particle:nth-child(6) {
  left: 81%;
  width: 10px;
  height: 10px;
  animation-duration: 25s, 4.5s;
  animation-delay: 1s, 2s;
}
.growth-particle:nth-child(7) {
  left: 92%;
  width: 7px;
  height: 7px;
  animation-duration: 17s, 2.8s;
  animation-delay: 10s, 0.2s;
}
.growth-particle:nth-child(8) {
  left: 46%;
  width: 8px;
  height: 8px;
  animation-duration: 22s, 3.8s;
  animation-delay: 13s, 1.2s;
}

@keyframes floatUpward {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 0.75;
  }
  50% {
    transform: translateY(-50vh) translateX(28px);
    opacity: 0.85;
  }
  85% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-110vh) translateX(-20px);
    opacity: 0;
  }
}

@keyframes sparklePulse {
  0% {
    filter: brightness(1) scale(0.9);
  }
  100% {
    filter: brightness(1.35) scale(1.15);
  }
}

/* UNIFIED CONTAINER FOR PIXEL-PERFECT VERTICAL ALIGNMENT (LOGO TO JOIN COMMUNITY BUTTON) */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR & HEADER (DARK FOREST GREEN END-TO-END) */
.site-header {
  background: #0B3824;
  border-bottom: 1px solid #165638;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #D1E5DA;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-bright);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(180deg, var(--color-gold-bright) 0%, var(--color-gold-main) 100%);
  color: #1A1202;
  box-shadow: 0 4px 14px rgba(217, 138, 18, 0.3);
  font-weight: 800;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #FAD068 0%, var(--color-gold-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 138, 18, 0.4);
}

.btn-forest {
  background: var(--color-forest-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 92, 54, 0.3);
}

.btn-forest:hover {
  background: var(--color-forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 92, 54, 0.4);
}

.btn-outline-gold {
  border: 2px solid var(--color-gold-main);
  background: rgba(11, 56, 36, 0.7);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn-outline-gold:hover {
  background: rgba(217, 138, 18, 0.25);
  border-color: var(--color-gold-bright);
}

/* CONTAINED HERO CARD */
.hp-hero-wrapper {
  background-color: transparent;
  padding: 24px 0 28px 0;
}

.hp-hero-card {
  background: linear-gradient(145deg, #0C3E29 0%, #082F1E 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 47, 30, 0.3);
  border: 1px solid #185E3D;
}

/* AURORA GLOW ORBS */
.hp-hero-card::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(217, 138, 18, 0.22) 0%, rgba(217, 138, 18, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: goldGlowDrift 14s ease-in-out infinite alternate;
  z-index: 1;
}

.hp-hero-card::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(13, 92, 54, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: auroraPulse 16s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-dual-header,
.hero-dual-grid {
  position: relative;
  z-index: 2;
}

/* HERO DUAL PRODUCTS SHOWCASE */
.hero-dual-header {
  text-align: center;
  margin-bottom: 32px;
}
.hero-dual-tag {
  color: var(--color-gold-bright);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(245, 188, 56, 0.12);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(245, 188, 56, 0.3);
}
.hero-dual-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.hero-dual-sub {
  color: #D1E5DA;
  font-size: 1.02rem;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.55;
}

.hero-dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.hero-prod-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero-prod-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.07);
}
.hero-prod-card.featured-card-gold {
  border-color: rgba(245, 188, 56, 0.4);
  background: linear-gradient(180deg, rgba(245, 188, 56, 0.07) 0%, rgba(8, 29, 18, 0.7) 100%);
}

.hero-prod-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--color-gold-main);
  color: #1A1202;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(217, 138, 18, 0.4);
}

.hero-prod-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 4px;
}

.hero-prod-img {
  width: 90px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-prod-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.hero-prod-author {
  font-size: 0.82rem;
  color: #F5BC38;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-prod-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-prod-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}
.hero-prod-original-price {
  font-size: 0.88rem;
  color: #84A392;
  text-decoration: line-through;
}

.hero-prod-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}
.hero-prod-checklist li {
  font-size: 0.85rem;
  color: #D1E5DA;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-prod-checklist li span.check-icon {
  color: #F5BC38;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-prod-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 768px) {
  .hero-prod-actions {
    grid-template-columns: 1fr;
  }
}

/* OUR MISSION SECTION (CONTAINED CARD) */
.mission-wrapper {
  background-color: transparent;
  padding: 10px 0 28px 0;
}

.mission-card {
  background: #FAFCFA;
  border: 1px solid #E2EAE4;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.mission-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mission-side-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(13, 47, 31, 0.08));
  transition: transform 0.3s ease;
}

.mission-side-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.mission-side-img.mirrored {
  transform: scaleX(-1);
}

.mission-side-img.mirrored:hover {
  transform: scaleX(-1) translateY(-4px) scale(1.02);
}

.mission-content {
  flex: 1;
  max-width: 780px;
  margin: 0 auto;
}

.mission-tag {
  color: var(--color-forest-green);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.mission-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-muted, #4A5D52);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* WHAT WE OFFER SECTION (CONTAINED CARD) */
.offer-wrapper {
  background-color: transparent;
  padding: 10px 0 28px 0;
}

.offer-card-container {
  background: linear-gradient(145deg, #0C3E29 0%, #082F1E 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 56px 40px 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(8, 47, 30, 0.25);
  overflow: hidden;
  border: 1px solid #185E3D;
}

.offer-card-container::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 138, 18, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.offer-header,
.offer-grid {
  position: relative;
  z-index: 2;
}

.offer-header {
  margin-bottom: 48px;
}

.offer-tag {
  color: #A3C9B4;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 2.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.offer-divider {
  width: 48px;
  height: 3px;
  background: var(--color-gold-main);
  margin: 0 auto;
  border-radius: 2px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.offer-card {
  padding: 16px 24px;
  text-align: center;
  position: relative;
}

.offer-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.offer-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover .offer-icon-circle {
  transform: translateY(-4px) scale(1.06);
}

.green-circle {
  background: #113D27;
  border: 2px solid #236B46;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.gold-circle {
  background: linear-gradient(180deg, var(--color-gold-bright) 0%, var(--color-gold-main) 100%);
  border: 2px solid #FADB7F;
  box-shadow: 0 4px 16px rgba(217, 138, 18, 0.35);
}

.offer-heading {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 0.9rem;
  color: #A3C9B4;
  line-height: 1.55;
}

/* FEATURED PRODUCT SECTION (CONTAINED CARD) */
.featured-wrapper {
  background-color: #FFFFFF; /* White outer sides */
  padding: 10px 0 28px 0;
}

.featured-card {
  background: #FAFCFA;
  border: 1px solid #E2EAE4;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.featured-content {
  text-align: left;
}

.featured-tag {
  color: var(--color-forest-green);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  color: var(--color-forest-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.featured-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* 12 CHAPTERS SHOWCASE GRID */
.chapters-container {
  margin-top: 36px;
  border-top: 1px solid #E2EAE4;
  padding-top: 36px;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.chapter-card {
  background: #FFFFFF;
  border: 1px solid #E2EAE4;
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.chapter-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold-main);
  box-shadow: 0 8px 20px rgba(8, 29, 18, 0.08);
}

.chapter-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-gold-main);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 6px;
}

.chapter-desc {
  font-size: 0.84rem;
  color: #4A5D52;
  line-height: 1.5;
}

/* WEALTHYFORTY MONEY FRAMEWORK PILLARS */
.money-framework-box {
  background: #081D12;
  color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  margin-top: 36px;
  border: 1px solid #16482D;
}

.framework-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.framework-pillar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: background 0.2s ease;
}

.framework-pillar-card:hover {
  background: rgba(245, 188, 56, 0.1);
  border-color: var(--color-gold-bright);
}

.pillar-letter {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #F5BC38;
  line-height: 1;
  margin-bottom: 4px;
}

.pillar-word {
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pillar-action {
  font-size: 0.78rem;
  color: #A3C9B4;
  line-height: 1.4;
}

/* WORKFILES & SPREADSHEETS CHIPS */
.workfiles-box {
  background: #FFFDF8;
  border: 1px solid #F3E5AB;
  border-left: 5px solid var(--color-gold-main);
  border-radius: 12px;
  padding: 24px;
  margin-top: 28px;
}

.workfiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.workfile-chip {
  background: #FFFFFF;
  border: 1px solid #E2EAE4;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.featured-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.featured-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-bundle-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

/* FEATURED PRODUCT SECTION (CONTAINED CARD) */
.featured-wrapper {
  background-color: transparent;
  padding: 10px 0 28px 0;
}

.featured-card {
  background: #FAFCFA;
  border: 1px solid #E2EAE4;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* ONLINE INCOME ACADEMY (LEARNING SECTION - CONTAINED DARK GREEN CARD) */
.academy-wrapper {
  background-color: transparent;
  padding: 10px 0 28px 0;
}

.academy-card {
  background: linear-gradient(145deg, #0C3E29 0%, #082F1E 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 56px 48px;
  position: relative;
  box-shadow: 0 16px 40px rgba(8, 47, 30, 0.3);
  overflow: hidden;
  border: 1px solid #185E3D;
}

.academy-card::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(217, 138, 18, 0.2) 0%, rgba(217, 138, 18, 0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: goldGlowDrift 15s ease-in-out infinite alternate;
  z-index: 1;
}

.academy-card::after {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(13, 92, 54, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: auroraPulse 17s ease-in-out infinite alternate;
  z-index: 1;
}

.academy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.academy-tag {
  color: #A3C9B4;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.academy-title {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.academy-desc {
  font-size: 1.05rem;
  color: #D1E5DA;
  line-height: 1.6;
  margin-bottom: 26px;
}

.academy-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.academy-benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.academy-benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 188, 56, 0.4);
}

.academy-benefit-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: #F5BC38;
  margin-bottom: 4px;
}

.academy-benefit-text {
  font-size: 0.82rem;
  color: #D1E5DA;
  line-height: 1.45;
}

.academy-media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.academy-img {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(245, 188, 56, 0.35);
  transition: transform 0.3s ease;
  display: block;
}

.academy-img:hover {
  transform: scale(1.02);
}

.academy-badge-ribbon {
  display: inline-block;
  background: linear-gradient(180deg, var(--color-gold-bright) 0%, var(--color-gold-main) 100%);
  color: #1A1202;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 18px;
  border-radius: 20px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(217, 138, 18, 0.4);
  letter-spacing: 0.5px;
}

/* HOW IT WORKS SECTION */
.how-wrapper {
  background-color: transparent;
  padding: 10px 0 28px 0;
}

.how-card {
  background: #FAFCFA;
  border: 1px solid #E2EAE4;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.how-header {
  margin-bottom: 44px;
}

.how-tag {
  color: var(--color-forest-green);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.how-title {
  font-family: var(--font-serif);
  font-size: 2.45rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 14px;
}

.how-divider {
  width: 48px;
  height: 3px;
  background: var(--color-gold-main);
  margin: 0 auto;
  border-radius: 2px;
}

.how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  flex-shrink: 0;
  opacity: 0.85;
}

.how-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-step:hover .how-icon-circle {
  transform: translateY(-4px) scale(1.06);
}

.how-step-heading {
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--color-forest-dark);
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* COMMUNITY BANNER CARD ("You Don't Have to Do It Alone.") */
.community-section-wrapper {
  background-color: transparent;
  padding: 10px 0 48px 0;
}

.community-banner-card {
  background: linear-gradient(145deg, #0C3E29 0%, #082F1E 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  box-shadow: 0 16px 40px rgba(8, 47, 30, 0.3);
  position: relative;
  border: 1px solid #185E3D;
}

.community-banner-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 138, 18, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.community-banner-left {
  padding: 56px 48px 56px 56px;
  text-align: left;
  z-index: 2;
}

.community-banner-title {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 16px;
}

.community-banner-sub {
  font-size: 1.08rem;
  color: #D1E5DA;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}

.community-banner-right {
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.community-group-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* COMPREHENSIVE 5-COLUMN FOOTER */
.site-footer {
  background: #0B3824;
  color: #D1E5DA;
  padding: 64px 0 28px 0;
  border-top: 1px solid #165638;
  width: 100%;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 0.9fr 1.3fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand-col {
  text-align: left;
}

.footer-brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: #A3C9B4;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

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

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
}

.footer-social-btn:hover {
  background: var(--color-gold-main);
  border-color: var(--color-gold-main);
  color: #1A1202;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item a {
  color: #A3C9B4;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link-item a:hover {
  color: var(--color-gold-bright);
}

.footer-newsletter-text {
  font-size: 0.9rem;
  color: #A3C9B4;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-email-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid #1F4D35;
  background: #ffffff;
  color: #1A2E22;
  font-size: 0.9rem;
  outline: none;
}

.footer-bottom-bar {
  border-top: 1px solid #143A26;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #7D9F8D;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hp-hero-card {
    background-size: cover;
    background-position: 75% center;
    padding: 36px 28px;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .offer-card:not(:last-child)::after {
    display: none;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .featured-card {
    padding: 36px 28px;
  }
  .academy-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .academy-card {
    padding: 40px 28px;
  }
  .how-grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  .how-arrow {
    display: none;
  }
  .how-step {
    flex: 1 1 40%;
  }
  .community-banner-card {
    grid-template-columns: 1fr;
  }
  .community-banner-left {
    padding: 40px 32px;
  }
  .community-group-img {
    -webkit-mask-image: none;
    mask-image: none;
    max-height: 280px;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

@media (max-width: 768px) {
  .mission-side-img {
    display: none;
  }
  .mission-title {
    font-size: 1.8rem;
  }
  .offer-title {
    font-size: 2rem;
  }
  .hp-hero-title {
    font-size: 2.6rem;
  }
  .featured-title {
    font-size: 2.3rem;
  }
  .academy-title {
    font-size: 2.2rem;
  }
  .academy-benefits-grid {
    grid-template-columns: 1fr;
  }
  .how-title {
    font-size: 2rem;
  }
  .community-banner-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .how-step {
    flex: 1 1 100%;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .access-grid, .comm-banner, .bottom-cta-banner, .why-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   POST-PURCHASE WELCOME / CONGRATULATIONS PAGE STYLES (ORIGINAL DARK GREEN THEME)
   ========================================================================== */
.welcome-body {
  background-color: #06170E;
  color: #D1E5DA;
}

.welcome-hero {
  background: #081D12;
  color: #ffffff;
  padding: 56px 0 48px 0;
  text-align: center;
  border-bottom: 1px solid #143A26;
}

.welcome-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.welcome-purchased-book {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.welcome-hero-sub {
  font-size: 1.05rem;
  color: #A3C9B4;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

.access-card {
  background: #092215;
  border-radius: var(--radius-lg);
  border: 1px solid #16482D;
  padding: 44px 48px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  margin: -24px auto 40px auto;
  position: relative;
  z-index: 10;
}

.access-card-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.access-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 40px;
  align-items: center;
}

.access-book-preview {
  text-align: center;
}

.access-book-preview img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(245, 188, 56, 0.25);
}

.access-actions-split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access-action-box {
  background: #0D2F1F;
  border: 1px solid #1B5737;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.25s ease;
}

.access-action-box:hover {
  border-color: var(--color-gold-main);
  background: #113A27;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.access-action-box h4 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.access-action-box p {
  font-size: 0.88rem;
  color: #A3C9B4;
}

.comm-banner {
  background: #092215;
  border-radius: var(--radius-lg);
  border: 1px solid #16482D;
  color: #ffffff;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.comm-banner-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(245, 188, 56, 0.3);
}

.comm-banner-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.comm-banner-tag {
  color: var(--color-gold-bright);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.comm-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.comm-checklist li {
  font-size: 0.92rem;
  color: #D1E5DA;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comm-checklist li::before {
  content: "✓";
  color: var(--color-gold-bright);
  font-weight: 800;
}

.why-section {
  background: #092215;
  border: 1px solid #16482D;
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  margin-bottom: 36px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 32px;
}

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

.why-item {
  padding: 10px;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.84rem;
  color: #A3C9B4;
}

.bottom-cta-banner {
  background: linear-gradient(135deg, #081D12 0%, #0F4229 100%);
  border: 2px solid var(--color-gold-main);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 36px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.bottom-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bottom-cta-icon {
  font-size: 2.6rem;
}

.bottom-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.bottom-cta-text p {
  font-size: 0.95rem;
  color: #D1E5DA;
}

/* ==========================================================================
   WELCOME PAGE MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .comm-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .comm-banner-img {
    height: 180px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }

  .bottom-cta-left {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .welcome-hero {
    padding: 36px 16px 32px 16px;
  }

  .welcome-title {
    font-size: 2.2rem;
  }

  .welcome-purchased-book {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .welcome-hero-sub {
    font-size: 0.9rem;
  }

  .access-card {
    padding: 26px 18px;
    margin: -16px auto 28px auto;
    border-radius: 12px;
  }

  .access-card-title {
    font-size: 1.55rem;
    margin-bottom: 18px;
    text-align: center;
  }

  .access-book-preview img {
    max-width: 220px;
  }

  .access-action-box {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
    gap: 14px;
  }

  .access-action-box h4 {
    justify-content: center;
    font-size: 1.05rem;
  }

  .comm-banner {
    padding: 24px 16px;
  }

  .comm-banner-content h2 {
    font-size: 1.6rem;
  }

  .comm-checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-section {
    padding: 28px 16px;
  }

  .why-title {
    font-size: 1.45rem;
    margin-bottom: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bottom-cta-text h3 {
    font-size: 1.25rem;
  }
}

