:root,
[data-theme='dark'] {
  /* Primary Ocean Life Palette */
  --ocean-abyss: #071318;
  --ocean-deep: #0a1f28;
  --ocean-mid: #0f2d3a;
  --ocean-light: #164050;

  /* Life Category Colors */
  --life-realm: #0ea5e9;
  --life-realm-light: #38bdf8;
  --life-strategy: #10b981;
  --life-strategy-light: #34d399;
  --life-spotlight: #14b8a6;
  --life-spotlight-light: #2dd4bf;
  --life-synthesis: #8b5cf6;
  --life-synthesis-light: #a78bfa;

  /* Zone Colors */
  --zone-sunlit: #0ea5e9;
  --zone-twilight: #0369a1;
  --zone-midnight: #1e293b;

  /* Ecosystem Colors */
  --eco-coral: #ec4899;
  --eco-kelp: #22c55e;
  --eco-open: #3b82f6;
  --eco-deep: #7c3aed;
  --eco-polar: #06b6d4;
  --eco-coastal: #14b8a6;

  /* Primary Accent */
  --accent-primary: #14b8a6;
  --accent-glow: rgba(20, 184, 166, 0.4);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Backgrounds */
  --bg-primary: #071318;
  --bg-card: rgba(15, 45, 58, 0.8);
  --bg-card-hover: rgba(22, 64, 80, 0.9);

  /* Borders & Effects */
  --border-subtle: rgba(148, 163, 184, 0.15);
  --border-accent: rgba(20, 184, 166, 0.4);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(20, 184, 166, 0.2);
  --shadow-hover: 0 20px 60px rgba(20, 184, 166, 0.3);

  /* Gradients */
  --gradient-life: linear-gradient(
    135deg,
    #0ea5e9 0%,
    #14b8a6 50%,
    #10b981 100%
  );
  --gradient-realm: linear-gradient(
    135deg,
    #0ea5e9 0%,
    #0369a1 50%,
    #1e293b 100%
  );
  --gradient-hero:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(14, 165, 233, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(20, 184, 166, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #071318 0%, #0a1f28 100%);

  /* Nav */
  --nav-bg: linear-gradient(
    180deg,
    rgba(7, 19, 24, 0.98) 0%,
    rgba(7, 19, 24, 0.7) 50%,
    transparent 100%
  );
  --nav-bg-scrolled: rgba(7, 19, 24, 0.98);

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
}

/* ============================================
           LIGHT MODE
           ============================================ */
[data-theme='light'] {
  --ocean-abyss: #f8fafc;
  --ocean-deep: #f1f5f9;
  --ocean-mid: #e2e8f0;
  --ocean-light: #cbd5e1;

  --accent-primary: #0d9488;
  --accent-glow: rgba(13, 148, 136, 0.2);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --bg-primary: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(255, 255, 255, 1);

  --border-subtle: rgba(148, 163, 184, 0.4);
  --border-accent: rgba(13, 148, 136, 0.5);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(13, 148, 136, 0.15);

  --gradient-hero:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(14, 165, 233, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(20, 184, 166, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);

  --nav-bg: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.98) 0%,
    rgba(248, 250, 252, 0.7) 50%,
    transparent 100%
  );
  --nav-bg-scrolled: rgba(248, 250, 252, 0.98);
}

[data-theme='light'] .card,
[data-theme='light'] .realm-card,
[data-theme='light'] .strategy-card,
[data-theme='light'] .species-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(148, 163, 184, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Source Sans 3',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}

/* ============================================
           SECTION CONTAINER
           ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
           HERO SECTION
           ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--life-spotlight-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--life-realm) 0%,
    var(--life-spotlight) 50%,
    var(--life-strategy) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.hero-promise {
  font-size: 1.05rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-primary {
  background: var(--gradient-life);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.5);
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  padding: 18px 30px;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.cta-secondary:hover {
  border-color: var(--border-accent);
  color: var(--accent-primary);
}

.cta-secondary .arrow {
  transition: transform 0.3s ease;
}

.cta-secondary:hover .arrow {
  transform: translateY(3px);
}

.hero-categories {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-category-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-category-dot.realm {
  background: var(--life-realm);
  box-shadow: 0 0 10px var(--life-realm);
}

.hero-category-dot.strategy {
  background: var(--life-strategy);
  box-shadow: 0 0 10px var(--life-strategy);
}

.hero-category-dot.spotlight {
  background: var(--life-spotlight);
  box-shadow: 0 0 10px var(--life-spotlight);
}

.hero-category-dot.synthesis {
  background: var(--life-synthesis);
  box-shadow: 0 0 10px var(--life-synthesis);
}

/* ============================================
           FOUR PILLARS SECTION
           ============================================ */
.four-pillars {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    var(--ocean-deep) 0%,
    var(--ocean-abyss) 100%
  );
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.pillar-card.realm::before {
  background: var(--life-realm);
}

.pillar-card.strategy::before {
  background: var(--life-strategy);
}

.pillar-card.spotlight::before {
  background: var(--life-spotlight);
}

.pillar-card.synthesis::before {
  background: var(--life-synthesis);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
}

.pillar-card.realm:hover {
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.pillar-card.strategy:hover {
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.pillar-card.spotlight:hover {
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.2);
}

.pillar-card.synthesis:hover {
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card.realm h3 {
  color: var(--life-realm);
}

.pillar-card.strategy h3 {
  color: var(--life-strategy);
}

.pillar-card.spotlight h3 {
  color: var(--life-spotlight);
}

.pillar-card.synthesis h3 {
  color: var(--life-synthesis);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pillar-revelation {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
           PHILOSOPHY SECTION
           ============================================ */
.philosophy {
  padding: 100px 40px;
  background: var(--ocean-abyss);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.philosophy-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.05) 0%,
    rgba(20, 184, 166, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  border: 2px solid var(--border-accent);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.05) 0%,
    transparent 50%
  );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    135deg,
    var(--life-realm) 0%,
    var(--life-spotlight) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.philosophy-attribution {
  font-size: 0.95rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

/* ============================================
           VERTICAL OCEAN SECTION
           ============================================ */
.vertical-ocean {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    var(--ocean-abyss) 0%,
    var(--ocean-deep) 100%
  );
}

.zones-diagram {
  background: linear-gradient(
    180deg,
    #38bdf8 0%,
    #0ea5e9 10%,
    #0284c7 25%,
    #0369a1 40%,
    #075985 55%,
    #0c4a6e 70%,
    #164e63 85%,
    #0f172a 100%
  );
  border-radius: 24px;
  padding: 50px 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.zones-diagram::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.zones-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.zones-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.zone-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  color: white;
  transition: var(--transition-fast);
}

.zone-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
}

.zone-depth {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.zone-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.zone-tagline {
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 12px;
}

.zone-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ============================================
           ECOSYSTEMS SECTION
           ============================================ */
.ecosystems {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    var(--ocean-deep) 0%,
    var(--ocean-abyss) 100%
  );
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.eco-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.eco-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.eco-visual {
  padding: 30px;
  text-align: center;
  color: white;
}

.eco-visual.coral {
  background: linear-gradient(135deg, #be185d 0%, #ec4899 100%);
}

.eco-visual.kelp {
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
}

.eco-visual.open {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.eco-visual.deep {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

.eco-visual.polar {
  background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
}

.eco-visual.coastal {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.eco-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.eco-tagline {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.95;
}

.eco-content {
  padding: 25px;
}

.eco-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.eco-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
           WHO THIS IS FOR
           ============================================ */
.who-section {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    var(--ocean-abyss) 0%,
    var(--ocean-deep) 100%
  );
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 35px;
  transition: var(--transition-fast);
}

.who-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.who-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.who-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.who-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
           STAKES SECTION
           ============================================ */
.stakes-section {
  padding: 120px 40px;
  background: var(--ocean-abyss);
  border-top: 1px solid var(--border-subtle);
}

.stakes-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border: 2px solid rgba(236, 72, 153, 0.3);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
}

.stakes-badge {
  display: inline-block;
  background: rgba(236, 72, 153, 0.2);
  color: var(--eco-coral);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.stakes-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.stakes-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.stakes-stat {
  font-size: 1.3rem;
  color: var(--eco-coral);
  font-weight: 700;
  margin-bottom: 30px;
}

.stakes-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

.stakes-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
}

/* ============================================
           ENROLLMENT SECTION
           ============================================ */
.enroll-section {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    var(--ocean-deep) 0%,
    var(--ocean-abyss) 100%
  );
}

.pricing-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.05) 0%,
    transparent 50%
  );
}

.pricing-badge {
  display: inline-block;
  background: var(--gradient-life);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.pricing-period {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.pricing-description {
  background: rgba(20, 184, 166, 0.08);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 35px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.pricing-description p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.pricing-description p:last-child {
  margin-bottom: 0;
}

.pricing-description strong {
  color: var(--text-primary);
}

.pricing-cta {
  display: inline-block;
  background: var(--gradient-life);
  color: white;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.4);
  position: relative;
  z-index: 1;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(20, 184, 166, 0.5);
}

.enroll-contact {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.enroll-contact a {
  color: var(--accent-primary);
  text-decoration: none;
}

/* ============================================
           FOOTER
           ============================================ */
footer {
  background: #050a0d;
  padding: 80px 40px 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-divider {
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

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

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

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

@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .nav-right {
    display: none;
  }

  .hero {
    padding: 120px 20px 80px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section-container {
    padding: 0 20px;
  }

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

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

  .philosophy-card {
    padding: 40px 25px;
  }

  .philosophy-quote {
    font-size: 1.7rem;
  }

  .pricing-amount {
    font-size: 3.5rem;
  }

  .pricing-card {
    padding: 40px 25px;
  }
}
