/* ── DESIGN SYSTEM & RESET ────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Greens-9 Light Theme Palette (#f7fcf5 main bg) */
  --navy: #e5f5e0;
  --navy-mid: #c7e9c0;
  --navy-light: #a1d99b;
  --navy-dark: #f7fcf5;
  --gold: #1b5e20;
  --gold-light: #2e7d32;
  --gold-pale: #eaf7ea;
  --blue-mid: #41ab5d;
  --blue-light: #74c476;
  --blue-pale: #f0f9f0;
  --white: #0a2312;
  --off-white: #14361c;
  --gray-dark: #eef7eb;
  --gray-mid: #3d6346;
  --success: #238b45;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Glassmorphism Styles for Light Theme */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-hover: rgba(255, 255, 255, 0.98);
  --glass-border: rgba(27, 94, 32, 0.14);
  --glass-border-hover: rgba(27, 94, 32, 0.35);
  --glass-shadow: 0 12px 30px -10px rgba(10, 35, 18, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --glass-shadow-hover: 0 20px 45px -12px rgba(10, 35, 18, 0.14), 0 0 20px rgba(46, 125, 50, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-dark);
}

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
  /* Ensure standard cursor is visible alongside custom ring */
  line-height: 1.6;
}

a,
button,
select,
input,
textarea {
  font-family: inherit;
}

/* ── CUSTOM CURSOR ────────────────────────────────────── */
.custom-cursor {
  width: 10px;
  height: 10px;
  background: #1b5e20;
  box-shadow: 0 0 8px rgba(27, 94, 32, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease;
}

.custom-cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(27, 94, 32, 0.55);
  background: rgba(46, 125, 50, 0.06);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

/* Hover state for custom cursor */
.custom-cursor.hovered {
  transform: translate(-50%, -50%) scale(2.2);
  background: #238b45;
  box-shadow: 0 0 12px rgba(35, 139, 69, 0.6);
}

.custom-cursor-ring.hovered {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: rgba(35, 139, 69, 0.85);
  background: rgba(65, 171, 93, 0.15);
}

/* Hide cursor elements on mobile devices */
@media (max-width: 1024px) {
  body {
    cursor: auto;
  }

  .custom-cursor,
  .custom-cursor-ring {
    display: none;
  }
}

/* ── PAGE TRANSITION OVERLAY ──────────────────────────── */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-transition.loaded {
  opacity: 0;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  border-top-color: var(--gold);
  animation: spin 1s ease-in-out infinite;
}

/* ── FLOATING PARTICLES CANVAS ───────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-mid);
  border: 2px solid var(--navy-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ── HEADER & NAVIGATION ──────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

header.scrolled {
  background: rgba(247, 252, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(27, 94, 32, 0.12);
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.logo .logo-mark img {
  width: 100% !important;
  min-width: 100% !important;
  flex-shrink: 0 !important;
  max-width: 100% !important;
  height: 100% !important;
  margin-top: 0 !important;
  display: block !important;
  object-fit: contain !important;
}

.logo:hover .logo-mark {
  transform: scale(1.06) rotate(-3deg);
  color: var(--green-hover);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #0a505b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.logo:hover .logo-text {
  color: #0e6e7d;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links li.active a {
  color: var(--gold);
}

.nav-links li.active a::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.25);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Nav Menu Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(247, 252, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 40px;
  gap: 40px;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(10, 35, 18, 0.1);
  border-left: 1px solid rgba(27, 94, 32, 0.15);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.mobile-nav-cta {
  text-align: center;
  padding: 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-cta:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Overlay for Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

.reveal-delay-5 {
  transition-delay: 0.75s;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(27, 94, 32, 0.3);
}

.btn-ghost:hover {
  color: #ffffff;
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ── SECTION HEADER COMMON ────────────────────────────── */
.section-intro {
  max-width: 800px;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: center;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 14.5px;
  color: var(--gray-mid);
  line-height: 1.8;
  max-width: 680px;
  letter-spacing: 0.15px;
}

/* ── GLASS CARD LAYOUT ───────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

/* ── HOME HERO ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 140px 10% 80px 10%;
  overflow: hidden;
  z-index: 1;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 125, 50, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 125, 50, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: -2;
  opacity: 0.8;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 35%, rgba(129, 199, 132, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 55% 50%, rgba(161, 217, 155, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 65%, rgba(65, 171, 93, 0.15) 0%, transparent 45%);
  pointer-events: none;
  z-index: -2;
}

/* ── HERO DYNAMIC ANIMATION ──────────────────────────── */
.hero-bg-animated {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.65;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.38) 0%, rgba(46, 125, 50, 0) 70%);
  top: -10%;
  left: -5%;
  animation-duration: 22s;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(129, 199, 132, 0.32) 0%, rgba(201, 168, 76, 0.1) 70%);
  top: 30%;
  right: -10%;
  animation-duration: 26s;
  animation-delay: -5s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, rgba(46, 125, 50, 0) 70%);
  bottom: -10%;
  left: 35%;
  animation-duration: 19s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(60px, -50px) scale(1.15);
  }

  66% {
    transform: translate(-40px, 40px) scale(0.9);
  }

  100% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

/* Split Column Layouts */
.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 10;
}

.hero-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Pulsing Urgency Indicator */
.cohort-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.urgency-pulse {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(43, 227, 140, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 227, 140, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(43, 227, 140, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(43, 227, 140, 0);
  }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 1000px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 680px;
  letter-spacing: 0.15px;
}

.hero-slogan {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-slogan span {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 3D Glass Acorn Orb Graphic */
.hero-glass-orb-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatAcorn 6s ease-in-out infinite;
}

.orb-glow-backdrop {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, rgba(129, 199, 132, 0.1) 50%, transparent 72%);
  border-radius: 50%;
  filter: blur(32px);
  z-index: 1;
  pointer-events: none;
}

.hero-glass-acorn-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 320px;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.5));
}

@keyframes floatAcorn {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Mobile responsive collapses */
@media (max-width: 991px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
    padding-bottom: 64px;
    text-align: center;
    gap: 48px;
  }

  .hero-left-col {
    align-items: center;
  }

  .hero-slogan {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right-col {
    min-height: 320px;
  }

  .hero-glass-orb-container {
    max-width: 340px;
    height: 340px;
  }

  .hero-glass-acorn-svg {
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .arc-arrow {
    display: none;
  }

  .arc-stages {
    flex-direction: column;
    gap: 32px;
  }
}

/* ── TRUST SECTION ───────────────────────────────────── */
#trust {
  padding: 80px 8%;
  background: linear-gradient(to bottom, var(--navy-dark), rgba(229, 245, 224, 0.6));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  width: 100%;
}

.trust-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.trust-sub {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 8px;
}

/* ── PROBLEM SECTION ─────────────────────────────────── */
#problem {
  padding: 100px 8%;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.problem-card {
  position: relative;
  border-left: 2px solid rgba(27, 94, 32, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover {
  border-left-color: var(--gold);
}

.problem-num {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 24px;
}

.problem-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.problem-desc {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ── PROCESS SECTION (TIMELINE) ───────────────────────── */
#process {
  padding: 100px 8%;
  background: rgba(229, 245, 224, 0.5);
}

.timeline-container {
  position: relative;
  margin-top: 64px;
}

.timeline-line {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(27, 94, 32, 0.15);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 24px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  z-index: 2;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-stages {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  gap: 24px;
}

.timeline-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(27, 94, 32, 0.35);
  margin-bottom: 24px;
  margin-left: 24px;
  position: relative;
  transition: all 0.4s ease;
  top: 18px;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-stage:hover .timeline-dot {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.timeline-stage:hover .timeline-dot::after {
  transform: scale(1);
}

.timeline-card {
  width: 100%;
}

.timeline-phase {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.timeline-list {
  list-style: none;
  margin-bottom: 20px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1.2px solid rgba(27, 94, 32, 0.16);
  box-shadow: 0 10px 30px rgba(10, 35, 18, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 94, 32, 0.35);
  box-shadow: 0 20px 40px rgba(10, 35, 18, 0.12);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  transform: none;
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Featured Card: Filled primary color styling from reference image */
.plan-card.featured {
  background: #f0f9f0;
  border: 1.5px solid var(--gold);
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.12);
}

.plan-card.featured:hover {
  border-color: var(--gold-light);
  box-shadow: 0 24px 50px rgba(27, 94, 32, 0.18);
}

/* Step Badge at top left of each card */
.plan-step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 4px;
  font-weight: 500;
  display: block;
}

.plan-card.featured .plan-step-num {
  color: var(--gold);
  opacity: 1;
}

.plan-duration {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
  margin-bottom: 12px;
  display: block;
}

.plan-card.featured .plan-duration {
  color: var(--gray-mid);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  width: 100%;
  letter-spacing: -0.01em;
}

.plan-best-for {
  font-size: 11.5px;
  font-family: var(--font-body);
  color: var(--gray-mid);
  margin-bottom: 12px;
  min-height: 38px;
  width: 100%;
  line-height: 1.4;
}

.plan-card.featured .plan-best-for {
  color: var(--gray-mid);
}

.plan-desc {
  font-size: 12.5px;
  color: var(--gray-mid);
  margin-bottom: 20px;
  min-height: 56px;
  width: 100%;
  line-height: 1.45;
}

.plan-card.featured .plan-desc {
  color: var(--gray-mid);
}

.plan-price-box {
  width: 100%;
  background: #f7fcf5;
  border: 1px solid rgba(27, 94, 32, 0.15);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-card.featured .plan-price-box {
  background: #ffffff;
  border-color: rgba(27, 94, 32, 0.25);
}

.plan-price-currency {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 500;
}

.plan-card.featured .plan-price-currency {
  color: var(--gold);
}

.plan-price-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.plan-card.featured .plan-price-val {
  color: var(--gold);
}

.plan-price-gst {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 4px;
}

.plan-card.featured .plan-price-gst {
  color: var(--gray-mid);
}

.plan-highlights {
  list-style: none;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(27, 94, 32, 0.14);
  padding-bottom: 20px;
}

.plan-card.featured .plan-highlights {
  border-bottom-color: rgba(27, 94, 32, 0.2);
}

.plan-highlights li {
  font-size: 11.5px;
  color: var(--gold-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-card.featured .plan-highlights li {
  color: var(--gold);
}

.plan-highlights li::before {
  content: '+';
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
  margin-right: 2px;
}

.plan-card.featured .plan-highlights li::before {
  color: var(--gold);
}

.plan-highlights li svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  opacity: 0.95;
}

.plan-card.featured .plan-highlights li svg {
  color: var(--gold);
}

.timeline-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.timeline-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.timeline-outcome {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gray-mid);
  border-top: 1px solid rgba(27, 94, 32, 0.14);
  padding-top: 12px;
}

@media (max-width: 991px) {

  .timeline-line,
  .timeline-progress,
  .timeline-dot {
    display: none;
  }

  .timeline-stages {
    flex-direction: column;
    gap: 32px;
  }
}

/* ── PLANS / JOURNEYS SECTION ─────────────────────────── */
#plans {
  padding: 100px 2%;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 48px;
  width: 100%;
}

/* Force 5-columns in one row on desktop screen widths */
@media (min-width: 1050px) {
  .plans-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .plan-card {
    padding: 24px 16px;
  }
}



.plan-specs {
  list-style: none;
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.plan-specs li {
  position: relative;
  padding-left: 24px;
  font-size: 11.5px;
  color: var(--gray-mid);
  line-height: 1.5;
}

.plan-card.featured .plan-specs li {
  color: var(--gray-mid);
}

.plan-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #2ecc71;
  /* Green checkmark color */
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.plan-card.featured .plan-specs li::before {
  color: #2ecc71;
  /* Green checkmark color on featured too */
}

.highlight-grant {
  background: rgba(102, 187, 106, 0.18);
  border: 1px dashed var(--green-primary);
  color: #1b5e20;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700 !important;
  margin: 6px 0;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
  display: inline-block;
}

.plan-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 14px 20px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

/* Outlined buttons for first 3 cards */
.plan-card .btn-ghost.plan-btn {
  border: 1px solid rgba(27, 94, 32, 0.3);
  background: transparent;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-card .btn-ghost.plan-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Solid gold button for the featured card */
.plan-card.featured .btn-primary.plan-btn {
  background: var(--gold);
  color: #ffffff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-card.featured .btn-primary.plan-btn:hover {
  background: var(--gold-light);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.35);
  transform: translateY(-2px);
}

/* ── SUCCESS FEE STRUCTURE TABLE ──────────────────────── */
.success-fee-card {
  margin-top: 56px;
  background: #ffffff;
  border: 1.2px solid rgba(27, 94, 32, 0.18);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 12px 35px rgba(10, 35, 18, 0.05);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.success-fee-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}

.success-fee-subtitle {
  font-size: 14px;
  color: var(--gray-mid);
  text-align: center;
  margin-bottom: 24px;
}

.success-fee-table-container {
  overflow-x: auto;
}

.success-fee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.success-fee-table th,
.success-fee-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  font-size: 15px;
}

.success-fee-table th {
  background: rgba(27, 94, 32, 0.05);
  color: #1b5e20;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
}

.success-fee-table tr:last-child td {
  border-bottom: none;
}

.success-fee-table tr:hover {
  background: rgba(27, 94, 32, 0.02);
}

.plans-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 48px;
  line-height: 1.6;
}

.plans-note-link {
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.plans-note-link:hover {
  color: var(--gold-light);
}

/* ── WHY BLUEOAK SECTION ──────────────────────────────── */
#why-blueoak {
  padding: 100px 8%;
  background: rgba(229, 245, 224, 0.5);
}

/* ── FINAL CTA SECTION ────────────────────────────────── */
#final-cta {
  padding: 120px 8%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, rgba(229, 245, 224, 0.8));
  border: 1px solid rgba(27, 94, 32, 0.18);
  box-shadow: 0 15px 40px rgba(10, 35, 18, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-subtitle {
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #e5f5e0;
  padding: 80px 8% 40px 8%;
  border-top: 1px solid rgba(27, 94, 32, 0.15);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  max-width: 320px;
}

.footer-logo {
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-slogan {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-address {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-mid);
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.footer-links-grid {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(27, 94, 32, 0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-mid);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--gray-mid);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── LEGAL MODAL ─────────────────────────────────────── */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 18, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}

.legal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-content {
  background: #ffffff;
  border: 1px solid rgba(27, 94, 32, 0.25);
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  box-shadow: 0 16px 48px rgba(10, 35, 18, 0.15);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.active .legal-modal-content {
  transform: translateY(0);
}

.legal-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gray-mid);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.legal-modal-close:hover {
  color: var(--gold);
}

.legal-modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(27, 94, 32, 0.18);
  padding-bottom: 12px;
}

.legal-modal-text {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.8;
  max-height: 55vh;
}

.legal-modal-text h3 {
  color: var(--white);
  font-size: 16px;
  margin: 24px 0 8px 0;
  font-family: var(--font-body);
}

.legal-modal-text ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-modal-text p {
  margin-bottom: 16px;
}

/* ── ABOUT PAGE SPECIFIC ──────────────────────────────── */
.about-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 8% 80px 8%;
  background: linear-gradient(to bottom, var(--navy-dark), rgba(229, 245, 224, 0.6));
  position: relative;
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
}

.about-story {
  padding: 100px 8%;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: flex-start;
}

.story-left .big-quote {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  font-style: italic;
}

.story-left p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.belief-card {
  padding: 32px;
  border-left: 2px solid rgba(27, 94, 32, 0.15);
}

.belief-card:hover {
  border-left-color: var(--gold);
}

.belief-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.belief-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--white);
}

.belief-text em {
  font-style: italic;
  color: var(--gold);
}

/* Mission & Vision cards */
.mission-vision {
  padding: 60px 8%;
}

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

.mv-card {
  height: 100%;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}

.mv-desc {
  font-size: 15px;
  color: var(--gray-mid);
}

/* Vertical timeline of growth */
.growth-timeline {
  padding: 100px 8%;
  background: rgba(229, 245, 224, 0.5);
}

.v-timeline {
  position: relative;
  max-width: 800px;
  margin: 64px auto 0 auto;
}

.v-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(27, 94, 32, 0.18);
  transform: translateX(-50%);
}

.v-timeline-item {
  position: relative;
  margin-bottom: 64px;
  width: 50%;
  padding: 0 40px;
}

.v-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.v-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.v-timeline-dot {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--navy-dark);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
  z-index: 10;
}

.v-timeline-item:nth-child(odd) .v-timeline-dot {
  right: -8px;
}

.v-timeline-item:nth-child(even) .v-timeline-dot {
  left: -8px;
}

.v-timeline-year {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 8px;
}

.v-timeline-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.v-timeline-desc {
  font-size: 14px;
  color: var(--gray-mid);
}

@media (max-width: 768px) {
  .v-timeline::before {
    left: 0;
  }

  .v-timeline-item {
    width: 100%;
    text-align: left !important;
    padding-left: 32px;
    padding-right: 0;
  }

  .v-timeline-item:nth-child(even) {
    left: 0;
  }

  .v-timeline-item:nth-child(odd) .v-timeline-dot,
  .v-timeline-item:nth-child(even) .v-timeline-dot {
    left: -8px;
    right: auto;
  }
}

/* Team section */
.team-section {
  padding: 100px 8%;
  justify-content: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 32px;
  margin-top: 48px;
  padding: 12px 12px 32px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.team-grid::-webkit-scrollbar {
  height: 6px;
}

.team-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb {
  background: rgba(129, 199, 132, 0.25);
  border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(129, 199, 132, 0.45);
}

.team-card {
  text-align: center;
  position: relative;
  flex: 0 0 310px;
  scroll-snap-align: start;
}

.team-img-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.08);
  border: 1px solid rgba(27, 94, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--gold);
  font-size: 32px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── SERVICES PAGE SPECIFIC ────────────────────────────── */
.services-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 8% 80px 8%;
  background: linear-gradient(to bottom, var(--navy-dark), rgba(229, 245, 224, 0.6));
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 80px 8%;
}

.services-page-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-page-card .service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}

.services-page-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.services-page-card p {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services-page-card .scope-list {
  list-style: none;
  border-top: 1px solid rgba(27, 94, 32, 0.15);
  padding-top: 16px;
}

.services-page-card .scope-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 8px;
}

.services-page-card .scope-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── CONTACT PAGE SPECIFIC ────────────────────────────── */
.contact-hero {
  padding: 160px 8% 60px 8%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding: 0 8% 100px 8%;
  align-items: flex-start;
}

.contact-info-sticky {
  position: sticky;
  top: 120px;
}

.contact-title-main {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 32px;
}

.contact-title-main em {
  font-style: italic;
  color: var(--gold);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-info-content p,
.contact-info-content a {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-content a:hover {
  color: var(--gold-light);
}

/* Custom dark styled Leaflet map */
#contact-map {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  border: 1px solid rgba(27, 94, 32, 0.2);
  margin-top: 32px;
  background: #e5f5e0;
  z-index: 10;
}

.map-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  background: rgba(229, 245, 224, 0.6);
  font-size: 14px;
}

/* Contact form container */
.contact-form-card {
  padding: 48px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  background: #ffffff;
  border: 1px solid rgba(27, 94, 32, 0.2);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(27, 94, 32, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231b5e20' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.contact-submit-btn {
  width: 100%;
}

.contact-form-consent {
  margin-top: 16px;
  font-size: 11px;
  color: var(--gray-mid);
  line-height: 1.5;
  text-align: center;
}

.contact-form-consent a {
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
}

.contact-form-consent a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info-sticky {
    position: static;
  }
}

@media (max-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── APPLY NOW PAGE SPECIFIC ───────────────────────────── */
.apply-hero {
  padding: 160px 8% 40px 8%;
  text-align: center;
}

.apply-container {
  max-width: 800px;
  margin: 0 auto 100px auto;
  padding: 0 24px;
}

/* Wizard progress indicators */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 48px;
  z-index: 10;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(27, 94, 32, 0.15);
  z-index: -1;
}

.progress-line {
  position: absolute;
  top: 18px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.progress-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(27, 94, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--gray-mid);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-label {
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
  text-align: center;
  transition: color 0.4s ease;
}

.progress-step.active .progress-number {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(27, 94, 32, 0.25);
  background: var(--navy-mid);
}

.progress-step.active .progress-label {
  color: var(--gold);
  font-weight: 600;
}

.progress-step.completed .progress-number {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.progress-step.completed .progress-label {
  color: var(--white);
}

/* Wizard Form */
.wizard-form-box {
  padding: 48px;
}

.wizard-step-panel {
  display: none;
}

.wizard-step-panel.active {
  display: block;
  animation: fadeInStep 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-step-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}

.wizard-step-desc {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 32px;
}

/* Review screen styles */
.review-section {
  border-bottom: 1px solid rgba(27, 94, 32, 0.14);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.review-section:last-child {
  border-bottom: none;
}

.review-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-edit-btn {
  background: none;
  border: none;
  color: var(--blue-mid);
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-edit-btn:hover {
  color: var(--gold);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-label {
  font-size: 12px;
  color: var(--gray-mid);
}

.review-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

/* Wizard actions */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.wizard-btn-prev {
  min-width: 140px;
}

.wizard-btn-next {
  min-width: 140px;
  margin-left: auto;
}

.wizard-success-card {
  text-align: center;
  padding: 48px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43, 227, 140, 0.1);
  border: 1px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--success);
  font-size: 32px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}

.success-desc {
  font-size: 15px;
  color: var(--gray-mid);
  max-width: 500px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

/* ── SPIN KEYFRAME ───────────────────────────────────── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── ADDITIONAL MOBILE BREAKPOINTS ───────────────────── */
@media (max-width: 1200px) {
  header {
    padding: 0 5%;
  }
}

@media (max-width: 991px) {
  nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  #hero {
    padding-top: 140px;
  }
}

@media (max-width: 576px) {
  .wizard-progress {
    margin-bottom: 32px;
  }

  .progress-label {
    display: none;
  }

  .wizard-form-box {
    padding: 24px;
  }

  .contact-form-card {
    padding: 24px;
  }
}

/* ── PREMIUM HOVER EFFECTS & GLASS SHIMMER ───────────── */
.glass-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.08) 70%,
      transparent 100%);
  transform: skewX(-22deg);
  transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 5;
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 16px 36px -8px rgba(27, 94, 32, 0.15), 0 0 0 1.5px var(--green-primary);
  border-color: var(--green-primary);
}

.glass-card:hover::before {
  left: 160%;
}

.btn {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.btn:hover {
  transform: translateY(-2.5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.24);
}

/* ── INTERACTIVE TARGET RAISE CALCULATOR SLIDER ──────── */
.calculator-slider-card {
  background: linear-gradient(135deg, #0d2112 0%, #16381c 100%);
  color: #ffffff;
  border: 1px solid rgba(102, 187, 106, 0.3);
  border-radius: 28px;
  padding: 48px 52px;
  margin-bottom: 64px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}

.calc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.calc-subtitle {
  color: #a5d6a7;
  font-size: 16px;
}

.calc-slider-body {
  max-width: 880px;
  margin: 0 auto;
}

.calc-range-container {
  background: rgba(0, 0, 0, 0.35);
  padding: 32px 40px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
}

.calc-range-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 20px;
}

.calc-range-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(46, 125, 50, 0.6);
  padding: 8px 22px;
  border-radius: 14px;
  border: 1px solid #66bb6a;
  box-shadow: 0 0 20px rgba(102, 187, 106, 0.35);
}

.premium-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2e7d32 0%, #66bb6a 50%, #a5d6a7 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  outline: none;
  cursor: pointer;
  margin: 24px 0 16px 0;
}

.premium-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #2e7d32;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 4px 10px rgba(0, 0, 0, 0.5);
  cursor: grab;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.premium-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #e8f5e9;
}

.calc-range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #a5d6a7;
  font-weight: 600;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.calc-result-box:hover {
  transform: translateY(-5px);
  border-color: #66bb6a;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.calc-res-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #a5d6a7;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.calc-res-val {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.highlight-plan {
  color: #81c784;
  font-size: 22px;
}

.highlight-fee {
  color: #ffd54f;
  font-size: 26px;
  font-weight: 800;
}

/* ── TRACK RECORD CAROUSEL SLIDER ────────────────────── */
#success-slider {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff 0%, #edf8e9 100%);
  position: relative;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 32px auto;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.slide-card {
  background: #ffffff;
  border: 1px solid rgba(27, 94, 32, 0.2);
  border-radius: 24px;
  padding: 44px 50px;
  box-shadow: 0 16px 36px rgba(27, 94, 32, 0.08);
}

.slide-badge {
  display: inline-block;
  background: rgba(46, 125, 50, 0.12);
  color: var(--green-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.slide-quote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 28px;
}

.slide-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(27, 94, 32, 0.1);
  padding-top: 16px;
}

.slide-author strong {
  color: var(--green-primary);
  font-size: 16px;
}

.slide-author span {
  color: var(--text-muted);
  font-size: 14px;
}

.carousel-btn {
  background: #ffffff;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(27, 94, 32, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(27, 94, 32, 0.3);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.25);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dots .dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--green-primary);
}

/* ── INVESTOR CONNECTIONS SLIDER ─────────────────────── */
#investor-connections {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fcf5 0%, #edf8e9 100%);
  border-top: 1px solid rgba(27, 94, 32, 0.12);
  border-bottom: 1px solid rgba(27, 94, 32, 0.12);
  overflow: hidden;
}

.investor-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
  padding: 0 5%;
}

.investor-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.investor-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.investor-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: scrollMarqueeLeft 35s linear infinite;
}

.content-reverse {
  animation: scrollMarqueeRight 38s linear infinite;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollMarqueeLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollMarqueeRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.prem-inv-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 94, 32, 0.18);
  padding: 22px 28px;
  border-radius: 20px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px -6px rgba(27, 94, 32, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prem-inv-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.prem-inv-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 38px -10px rgba(27, 94, 32, 0.22);
  border-color: var(--green-primary);
  background: #ffffff;
}

.prem-inv-card:hover::after {
  opacity: 1;
}

.prem-inv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.prem-inv-icon {
  font-size: 24px;
}

.prem-inv-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(27, 94, 32, 0.1);
  color: var(--green-primary);
}

.prem-inv-tag.tier1 {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: #ffffff;
}

.prem-inv-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.prem-inv-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.prem-inv-ticket {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-primary);
  background: rgba(247, 252, 245, 0.95);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  border: 1px dashed rgba(27, 94, 32, 0.3);
}

/* ── CALCULATOR MILESTONE BUTTONS ────────────────────── */
.calc-milestones-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.milestones-label {
  font-size: 14px;
  font-weight: 600;
  color: #c8e6c9;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-milestone-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e8f5e9;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-milestone-btn:hover {
  background: rgba(102, 187, 106, 0.2);
  border-color: #66bb6a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(102, 187, 106, 0.2);
}

.calc-milestone-btn.active-milestone {
  background: #2e7d32;
  color: #ffffff !important;
  border-color: #81c784;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(102, 187, 106, 0.45);
}

/* ── FAQ / FUNDING REALITY SECTION (MIDDLE) ───────────────────── */
#funding-reality {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf3 50%, #eef8ec 100%);
  position: relative;
  overflow: hidden;
}

/* ── INTERACTIVE DIAGNOSTIC SECTION (BOTTOM) ───────────────────── */
#interactive-diagnostic {
  padding: 100px 8% 120px 8% !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf3 50%, #eef8ec 100%);
  position: relative;
  overflow: hidden;
}

.pitfalls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.pitfall-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 94, 32, 0.14);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pitfall-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(27, 94, 32, 0.12);
  border-color: rgba(27, 94, 32, 0.35);
}

.pitfall-icon {
  font-size: 32px;
  margin-bottom: 20px;
  background: rgba(102, 187, 106, 0.15);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.pitfall-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.35;
}

.pitfall-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Intermission Banner */
.reality-intermission {
  max-width: 960px;
  margin: 80px auto -30px auto;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, #0d2112 0%, #1a4322 100%);
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(13, 33, 18, 0.3);
  position: relative;
  border: 1px solid rgba(102, 187, 106, 0.35);
}

.intermission-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
}

.intermission-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 18px;
}

.intermission-quote em {
  color: #81c784;
  font-weight: 600;
  font-style: normal;
}

.intermission-sub {
  font-size: 18px;
  color: #e8f5e9;
  margin-bottom: 30px;
}

.intermission-arrow {
  font-size: 28px;
  color: #81c784;
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Interactive Diagnostic 3D Hover Cards */
.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto 70px auto;
}

.diagnostic-card {
  perspective: 1200px;
  height: 300px;
  cursor: pointer;
  position: relative;
}

.diag-front,
.diag-back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.diag-front {
  background: #ffffff;
  border: 1.5px solid rgba(27, 94, 32, 0.18);
  box-shadow: 0 12px 30px rgba(27, 94, 32, 0.06);
  z-index: 2;
  transform: rotateY(0deg);
}

.diag-back {
  background: linear-gradient(135deg, #0f2916 0%, #1b4d26 100%);
  color: #ffffff;
  border: 1.5px solid #66bb6a;
  box-shadow: 0 20px 45px rgba(15, 41, 22, 0.35);
  transform: rotateY(180deg);
  z-index: 1;
}

.diagnostic-card:hover .diag-front,
.diagnostic-card.flipped .diag-front {
  transform: rotateY(-180deg);
}

.diagnostic-card:hover .diag-back,
.diagnostic-card.flipped .diag-back {
  transform: rotateY(0deg);
}

.diag-q-mark {
  font-size: 34px;
  width: 54px;
  height: 54px;
  background: rgba(46, 125, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.diag-question {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin: 16px 0;
}

.diag-prompt {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.diag-sol-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.18);
  padding: 5px 12px;
  border-radius: 12px;
  align-self: flex-start;
  font-weight: 700;
}

.diag-back-title {
  font-family: var(--font-display);
  font-size: 21px;
  color: #81c784;
  font-weight: 700;
  margin-top: 14px;
}

.diag-back-desc {
  font-size: 14.5px;
  color: #e8f5e9;
  line-height: 1.6;
}

/* Conclusion Banner Card */
.reality-conclusion-card {
  max-width: 1040px;
  margin: 60px auto 80px auto !important;
  background: linear-gradient(135deg, #0b1c0f 0%, #15381d 100%);
  border: 1px solid rgba(102, 187, 106, 0.4);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(11, 28, 15, 0.4);
}

.conclusion-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
}

.conclusion-title em {
  color: #81c784;
  font-weight: 600;
  font-style: normal;
}

.conclusion-sub {
  font-size: 17px;
  color: #c8e6c9;
  max-width: 740px;
  margin: 0 auto 36px auto;
  line-height: 1.65;
}

.conclusion-cta {
  padding: 18px 40px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 40px !important;
  background: #81c784 !important;
  color: #0d2112 !important;
  box-shadow: 0 8px 25px rgba(129, 199, 132, 0.4);
}

.conclusion-cta:hover {
  background: #a1d99b !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(129, 199, 132, 0.6) !important;
}

@media (max-width: 768px) {

  #investor-connections,
  #funding-reality,
  #process,
  #solutions,
  #why-blueoak,
  #plans,
  #success-slider {
    padding: 60px 5% !important;
  }

  #interactive-diagnostic {
    padding: 60px 5% 80px 5% !important;
  }

  .diagnostic-card {
    height: 330px;
  }

  .reality-conclusion-card {
    margin: 40px auto 60px auto !important;
    padding: 40px 24px;
  }
}

/* ── HERO NETWORK LINES SVG & FLOATING CAPITAL FIGURES ── */
.hero-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  animation: pulseNetwork 12s ease-in-out infinite alternate;
}

@keyframes pulseNetwork {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }

  100% {
    opacity: 0.65;
    transform: scale(0.99);
  }
}

.network-node {
  filter: drop-shadow(0 0 6px rgba(102, 187, 106, 0.8));
  animation: pulseNode 3s infinite alternate;
}

@keyframes pulseNode {
  0% {
    r: 4px;
    opacity: 0.6;
  }

  100% {
    r: 7px;
    opacity: 1;
  }
}

/* 3D Floating Capital Badges */
.hero-floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  overflow: hidden;
}

.float-cap {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(27, 94, 32, 0.22);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27, 94, 32, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  animation: floatCapBounce 6s ease-in-out infinite alternate;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-cap:hover {
  transform: scale(1.08) translateY(-4px) !important;
  box-shadow: 0 18px 40px rgba(27, 94, 32, 0.25);
  border-color: var(--green-primary);
}

.float-cap-1 {
  top: 18%;
  right: 48%;
  animation-delay: 0s;
}

.float-cap-2 {
  top: 68%;
  right: 42%;
  animation-delay: -1.5s;
}

.float-cap-3 {
  top: 25%;
  right: 8%;
  animation-delay: -3s;
}

.float-cap-4 {
  top: 75%;
  right: 12%;
  animation-delay: -4.5s;
}

.cap-icon {
  font-size: 24px;
  background: rgba(102, 187, 106, 0.15);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.cap-text {
  display: flex;
  flex-direction: column;
}

.cap-text small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cap-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: #1b5e20;
  font-weight: 700;
}

@keyframes floatCapBounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }

  100% {
    transform: translateY(8px) rotate(-1deg);
  }
}

/* Animated Statistics Row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 94, 32, 0.14);
  width: 100%;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #1b5e20;
  display: flex;
  align-items: baseline;
}

.stat-num small {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(27, 94, 32, 0.18);
}

@media (max-width: 991px) {
  .hero-floating-badges {
    display: none;
  }

  .hero-stats-row {
    gap: 16px;
  }
}

/* ── ULTRA-PREMIUM 3X2 BENTO CARD SHOWCASE GRID ──────── */
.framework-section {
  padding: 100px 10%;
  position: relative;
  overflow: hidden;
}

.bento-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

/* Luxury Bento Step Card - Obsidian & Emerald Jewel Box */
.bento-step-card {
  position: relative;
  padding: 34px 30px 30px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Deep Luxury Obsidian & Emerald Glass Gradient */
  background: linear-gradient(145deg, #0e2314 0%, #061209 100%);
  border: 1px solid rgba(43, 227, 140, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  /* COMPLETELY STATIC - Rock-solid stability without hover jumping! */
  transform: none !important;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  min-height: 340px;
}

/* Glowing Top Bar */
.bento-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, #2be38c 100%);
  box-shadow: 0 0 15px rgba(43, 227, 140, 0.5);
  opacity: 0.95;
}

.final-top-bar {
  background: linear-gradient(90deg, #ffe596 0%, var(--gold) 100%) !important;
  height: 5px;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.8) !important;
}

/* Giant Watermark Background Number */
.bento-watermark {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 900;
  color: #2be38c;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.final-watermark {
  color: var(--gold) !important;
  opacity: 0.08 !important;
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* Step Pill Badge - Metallic Gold */
.bento-step-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #f3d478;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.45);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.final-step-pill {
  background: var(--gold) !important;
  color: #08160c !important;
  border-color: #ffe596 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.6) !important;
}

.bento-icon {
  font-size: 26px;
  width: 50px;
  height: 50px;
  background: rgba(43, 227, 140, 0.12);
  border: 1px solid rgba(43, 227, 140, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2be38c;
  box-shadow: inset 0 0 15px rgba(43, 227, 140, 0.15);
}

.final-icon {
  background: rgba(201, 168, 76, 0.18) !important;
  border-color: rgba(201, 168, 76, 0.5) !important;
  color: var(--gold) !important;
  box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.25) !important;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.25;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}

.final-title {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.bento-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0 0 26px 0;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Footer Deliverable Box - Dark Inset Tray */
.bento-footer {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(43, 227, 140, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.final-footer {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.22) 0%, rgba(43, 227, 140, 0.22) 100%) !important;
  border: 1px solid var(--gold) !important;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.15) !important;
}

.bento-footer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 700;
}

.final-footer-label {
  color: #ffe596 !important;
}

.bento-footer-val {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: #2be38c;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.final-footer-val {
  color: #ffffff !important;
  font-size: 16px !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.bento-step-card:hover {
  border-color: #2be38c;
  box-shadow: 0 24px 60px rgba(43, 227, 140, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #112a18 0%, #08180c 100%);
}

.final-bento-card:hover {
  border-color: #ffe596 !important;
  box-shadow: 0 28px 70px rgba(201, 168, 76, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
}

.bento-step-card:hover .bento-footer {
  border-color: #2be38c;
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1199px) {
  .bento-framework-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .bento-framework-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-step-card {
    min-height: auto;
    padding: 26px 22px 22px;
  }
}

/* ── WEBSITE-MATCHED SECTIONS: FRAMEWORK, SOLUTIONS, WHY BLUEOAK ──────── */

/* 1. The BlueOak Funding Framework Grid */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.framework-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--gold);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.framework-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--success);
  box-shadow: var(--glass-shadow-hover);
}

.framework-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.framework-step-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(27, 94, 32, 0.15);
}

.framework-icon {
  font-size: 26px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.framework-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 14px 0;
  line-height: 1.25;
}

.framework-desc {
  font-size: 15.5px;
  color: var(--off-white);
  line-height: 1.65;
  margin: 0;
}

/* Step 06 Goal Card Highlight */
.framework-card-goal {
  border-top: 3px solid var(--success);
  background: linear-gradient(135deg, var(--glass-bg) 0%, var(--navy) 100%);
}

.goal-pill {
  background: var(--success);
  color: #ffffff;
  border-color: var(--success);
}

.goal-icon {
  background: rgba(35, 139, 69, 0.15);
}

/* Mandate Banner */
.mandate-banner {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--navy) 100%);
  border: 1px solid var(--glass-border-hover);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.mandate-content {
  position: relative;
  z-index: 2;
}

.mandate-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.mandate-quote {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.mandate-quote em {
  color: var(--success);
  font-style: italic;
}

/* 2. Funding Channels Grid & Luxury Product Cards */
#solutions,
#why-blueoak {
  padding: 100px 8% !important;
  position: relative;
  z-index: 2;
}

#solutions .section-intro,
#why-blueoak .section-intro {
  max-width: 860px;
  margin: 0 0 56px 0 !important;
  text-align: left;
}

.channels-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 36px !important;
  position: relative;
  z-index: 2;
  margin-top: 48px !important;
  align-items: stretch !important;
}

.channel-card {
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(27, 94, 32, 0.22) !important;
  border-radius: 28px !important;
  padding: 48px 40px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 16px 40px -10px rgba(27, 94, 32, 0.14), 0 0 0 1px rgba(27, 94, 32, 0.05) !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  height: 100% !important;
}

/* Distinct Top Glow for Each Channel */
.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
  transition: height 0.4s ease, background 0.4s ease;
}

.channel-grants::before {
  background: linear-gradient(90deg, #238b45, #74c476);
}

.channel-loans::before {
  background: linear-gradient(90deg, #1b5e20, #41ab5d);
}

.channel-equity::before {
  background: linear-gradient(90deg, #0a2312, #238b45);
}

.channel-card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.channel-card:hover::before {
  height: 10px;
}

.channel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.channel-icon-wrap {
  font-size: 36px;
  width: 68px;
  height: 68px;
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.8);
  transition: transform 0.4s ease;
}

.channel-card:hover .channel-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.channel-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--success);
  background: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(35, 139, 69, 0.2);
}

.badge-debt {
  color: #1b5e20;
  background: #eaf7ea;
  border-color: rgba(27, 94, 32, 0.2);
}

.badge-equity {
  color: #0a2312;
  background: #c7e9c0;
  border-color: rgba(10, 35, 18, 0.2);
}

.channel-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px 0;
  line-height: 1.15;
}

.channel-desc {
  font-size: 16px;
  color: var(--off-white);
  line-height: 1.65;
  margin: 0 0 24px 0;
}

.channel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.channel-features li {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.channel-footer {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.channel-btn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.channel-btn .arrow {
  transition: transform 0.3s ease;
}

.channel-card:hover .channel-btn {
  color: var(--success);
}

.channel-card:hover .channel-btn .arrow {
  transform: translateX(8px);
}

/* 3. The Institutional Advantage (Why BlueOak) - Exact 3 Columns × 2 Rows Bento */
.advantage-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  position: relative;
  z-index: 2;
  margin-top: 32px;
}

.advantage-card {
  background: #ffffff !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px solid rgba(27, 94, 32, 0.2) !important;
  border-radius: 26px !important;
  padding: 38px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 14px 36px -10px rgba(27, 94, 32, 0.12), 0 0 0 1px rgba(27, 94, 32, 0.04) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.advantage-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--success);
  box-shadow: 0 24px 48px -12px rgba(35, 139, 69, 0.18), 0 0 25px rgba(27, 94, 32, 0.08);
}

.advantage-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.advantage-icon-box {
  font-size: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-pale) 100%);
  border: 1px solid rgba(27, 94, 32, 0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.08);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.advantage-card:hover .advantage-icon-box {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--success);
}

.advantage-counter {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(35, 139, 69, 0.15);
}

.advantage-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px 0;
  position: relative;
  z-index: 2;
}

.advantage-desc {
  font-size: 15.5px;
  color: var(--off-white);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 2;
}

.advantage-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(35, 139, 69, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.advantage-card:hover .advantage-glow {
  opacity: 1;
  transform: scale(1.5);
}

/* Responsive Rules for New Sections */
@media (max-width: 1199px) {

  .channels-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {

  .channels-grid,
  .advantage-grid,
  .framework-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .mandate-quote {
    font-size: 32px;
  }

  .mandate-banner {
    padding: 40px 24px;
  }
}