/* ==========================================================================
   CERELI — Clean Energy Response & Environmental Literacy Initiative
   Storyscroll Animated NGO Website — Modern Design System (Mobile-Optimized)
   Brand Palette:
     - CERELI Lime Green: #A0CC07 (Logo Core)
     - Sustainability Emerald: #008751 / #10B981
     - Solar Sunshine Gold: #F5A623
     - Deep Forest Midnight: #061A12 / #0A2419
   ========================================================================== */

:root {
  /* Brand Colors */
  --cereli-lime: #a0cc07;
  --cereli-lime-hover: #b8e60a;
  --cereli-lime-glow: rgba(160, 204, 7, 0.45);
  --cereli-lime-soft: rgba(160, 204, 7, 0.12);

  --cereli-emerald: #008751;
  --cereli-emerald-hover: #00a865;
  --cereli-emerald-soft: rgba(0, 135, 81, 0.18);

  --cereli-gold: #f5a623;
  --cereli-gold-glow: rgba(245, 166, 35, 0.4);
  --cereli-gold-soft: rgba(245, 166, 35, 0.15);

  --cereli-purple: #a855f7;
  --cereli-purple-soft: rgba(168, 85, 247, 0.15);

  /* Backgrounds & Surfaces */
  --bg-dark: #061a12;
  --bg-dark-alt: #092218;
  --bg-dark-surface: #0e3022;
  --bg-dark-glass: rgba(10, 34, 24, 0.78);
  --bg-card: rgba(14, 48, 34, 0.65);
  --bg-card-hover: rgba(20, 64, 46, 0.85);

  /* Borders & Highlights */
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-lime: rgba(160, 204, 7, 0.35);
  --border-emerald: rgba(0, 135, 81, 0.4);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Text Colors */
  --text-light: #f8fafc;
  --text-body: #d1d5db;
  --text-muted: #94a3b8;
  --text-dark: #04100b;

  /* Shadows & Transitions */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--cereli-lime-glow);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-body);
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* Background Canvas */
.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cereli-lime), var(--cereli-gold), var(--cereli-emerald));
  z-index: 1000;
  box-shadow: 0 0 10px var(--cereli-lime-glow);
  transition: width 0.1s ease-out;
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
  position: relative;
}

.grid {
  display: grid;
}

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

.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.25rem; }
.gap-xl { gap: 3.5rem; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }
.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-xl { margin-bottom: 3rem; }
.w-full { width: 100%; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--text-muted); }
.text-cereli-lime { color: var(--cereli-lime); }
.text-cereli-emerald { color: #10b981; }
.text-cereli-gold { color: var(--cereli-gold); }
.text-cereli-purple { color: var(--cereli-purple); }

.text-gradient {
  background: linear-gradient(135deg, var(--cereli-lime) 0%, #d4f84e 50%, var(--cereli-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-lime);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(160, 204, 7, 0.15);
}

.border-left-lime {
  border-left: 4px solid var(--cereli-lime) !important;
}

/* Section Headings */
.section-head {
  max-width: 820px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cereli-lime);
  background: var(--cereli-lime-soft);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(160, 204, 7, 0.25);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cereli-lime) 0%, #89b005 100%);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(160, 204, 7, 0.35);
}

.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, var(--cereli-lime-hover) 0%, var(--cereli-lime) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(160, 204, 7, 0.55);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover, .btn-secondary:active {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--cereli-lime);
  color: var(--cereli-lime);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-lime);
}

.btn-outline:hover, .btn-outline:active {
  background: var(--cereli-lime-soft);
  color: var(--cereli-lime);
  border-color: var(--cereli-lime);
  transform: translateY(-2px);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(160, 204, 7, 0.12);
  border: 1px solid rgba(160, 204, 7, 0.35);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cereli-lime);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cereli-lime);
  box-shadow: 0 0 10px var(--cereli-lime);
  animation: pulse-dot 2s infinite ease-in-out;
}

.badge-pill-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cereli-lime);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 850;
  background: rgba(6, 26, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.header-scrolled {
  background: rgba(4, 18, 12, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(160, 204, 7, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrapper {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(160, 204, 7, 0.4));
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cereli-lime);
  font-weight: 600;
  margin-top: 0.15rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-full);
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-item:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item.active {
  color: var(--text-dark);
  background: var(--cereli-lime);
  box-shadow: 0 2px 10px rgba(160, 204, 7, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  z-index: 100;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 950;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--bg-dark-alt);
  border-left: 1px solid var(--border-lime);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
  width: 46px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
  min-height: 48px;
}

.drawer-link i {
  color: var(--cereli-lime);
  font-size: 1.1rem;
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(160, 204, 7, 0.18);
  color: var(--cereli-lime);
  border-left: 3px solid var(--cereli-lime);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 90vh;
  padding-top: 7rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.75rem;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(160, 204, 7, 0.25);
  background: rgba(10, 34, 24, 0.7);
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(160, 204, 7, 0.12);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

/* 3D Bio-Orb Visual */
.hero-visual {
  position: relative;
  width: 100%;
}

.visual-globe-card {
  position: relative;
  min-height: 420px;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(14, 48, 34, 0.9) 0%, rgba(6, 26, 18, 0.95) 100%);
  border: 1px solid rgba(160, 204, 7, 0.3);
}

.globe-sunburst {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 204, 7, 0.25) 0%, rgba(245, 166, 35, 0.1) 45%, transparent 70%);
  filter: blur(25px);
}

.earth-visual-container {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-orb {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #008751 0%, #064e3b 50%, #022c22 100%);
  box-shadow: inset -10px -10px 25px rgba(0, 0, 0, 0.8), 0 0 35px rgba(160, 204, 7, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: radial-gradient(circle, #a0cc07 0%, #008751 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #a0cc07;
}

.orb-core i {
  position: absolute;
  font-size: 1.25rem;
  color: #ffffff;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(160, 204, 7, 0.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-1 { width: 175px; height: 175px; animation: spin-orbit 14s linear infinite; }
.orbit-2 { width: 230px; height: 230px; border-color: rgba(245, 166, 35, 0.3); animation: spin-orbit-reverse 20s linear infinite; }
.orbit-3 { width: 280px; height: 280px; border-color: rgba(16, 185, 129, 0.3); animation: spin-orbit 26s linear infinite; }

.orbit-particle {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 0 12px currentColor;
}

.p-solar { background: #f5a623; color: #000; }
.p-edu { background: #a0cc07; color: #000; }
.p-farmer { background: #10b981; color: #000; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  background: rgba(6, 26, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.floating-badge strong { display: block; color: var(--text-light); font-size: 0.8rem; }
.floating-badge span { display: block; color: var(--text-muted); font-size: 0.68rem; }

.badge-top-left { top: 1rem; left: 0.5rem; }
.badge-bottom-right { bottom: 1rem; right: 0.5rem; }
.badge-bottom-left { bottom: 1rem; left: 0.5rem; }

/* ==========================================================================
   ABOUT US, DUAL ENGINE & VALUES
   ========================================================================== */
.quote-card {
  padding: 1.75rem;
  background: rgba(14, 48, 34, 0.7);
}

.quote-icon {
  font-size: 1.75rem;
  color: var(--cereli-lime);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.quote-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.highlight-item {
  display: flex;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.hl-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(160, 204, 7, 0.15);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.flywheel-card {
  padding: 2rem 1.5rem;
  background: rgba(10, 34, 24, 0.85);
  border: 1px solid rgba(160, 204, 7, 0.25);
}

.dual-engine-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.engine-box {
  background: rgba(6, 26, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.engine-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(160, 204, 7, 0.15);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.engine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.engine-list li {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.engine-nexus {
  display: none;
}

/* Statement & Values */
.statement-card {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.statement-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.statement-body {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.value-card {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.value-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.icon-integrity { background: rgba(160, 204, 7, 0.15); color: var(--cereli-lime); }
.icon-diligence { background: rgba(245, 166, 35, 0.15); color: var(--cereli-gold); }
.icon-transparency { background: rgba(0, 135, 81, 0.2); color: #10b981; }
.icon-teamwork { background: rgba(168, 85, 247, 0.15); color: var(--cereli-purple); }

/* ==========================================================================
   LEADERSHIP & TEAM CARDS
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.team-card-ceo {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 2.25rem;
  background: linear-gradient(135deg, rgba(14, 48, 34, 0.9) 0%, rgba(20, 60, 42, 0.95) 100%);
  border: 1px solid rgba(160, 204, 7, 0.4);
  border-radius: var(--radius-lg);
  align-items: center;
}

.team-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(10, 34, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  align-items: start;
  transition: all var(--transition-normal);
}

.team-card:hover, .team-card-ceo:hover {
  border-color: var(--border-lime);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(160, 204, 7, 0.15);
}

.team-avatar-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(160, 204, 7, 0.3);
}

.team-avatar {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.15;
  object-fit: cover;
}

.team-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cereli-lime);
  background: rgba(160, 204, 7, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.team-card-ceo .team-name { font-size: 1.65rem; }

.team-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.team-socials {
  display: flex;
  gap: 0.5rem;
}

.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ==========================================================================
   FOCUS AREAS & FILTERS
   ========================================================================== */
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-body);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 42px;
  transition: all var(--transition-fast);
}

.filter-btn.active {
  background: var(--cereli-lime);
  color: var(--text-dark);
  border-color: var(--cereli-lime);
  box-shadow: 0 4px 15px rgba(160, 204, 7, 0.35);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.focus-card {
  padding: 1.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.focus-card.hidden { display: none !important; }

.featured-focus {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(14, 48, 34, 0.85) 0%, rgba(20, 60, 42, 0.95) 100%);
  border: 1px solid rgba(245, 166, 35, 0.4);
}

.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cereli-gold);
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.focus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 1rem;
}

.focus-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.focus-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(160, 204, 7, 0.12);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.focus-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
}

.focus-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.focus-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.focus-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.focus-card-tags span {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.focus-card-tags span i { color: var(--cereli-lime); font-size: 0.6rem; }

.focus-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.5rem;
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--cereli-lime);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-sm-action {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary-action {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: var(--cereli-gold);
  color: #000;
}

/* ==========================================================================
   IMPACT KPI & CALCULATOR
   ========================================================================== */
.impact-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.impact-card {
  padding: 1.85rem 1.25rem;
  text-align: center;
  background: rgba(10, 34, 24, 0.7);
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.impact-unit {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cereli-lime);
  margin-bottom: 0.5rem;
}

.impact-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.calculator-box {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(14, 48, 34, 0.9) 0%, rgba(8, 28, 20, 0.95) 100%);
  border: 1px solid rgba(160, 204, 7, 0.3);
}

.slider-group {
  background: rgba(6, 26, 18, 0.6);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.slider-header label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.slider-val {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--cereli-lime);
  background: rgba(160, 204, 7, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cereli-lime);
  box-shadow: 0 0 10px var(--cereli-lime);
  cursor: pointer;
}

.calc-results {
  padding: 1.75rem;
  background: rgba(6, 26, 18, 0.85);
  border: 1px solid rgba(160, 204, 7, 0.3);
}

.results-heading {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.result-metric-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.result-metric-row:last-child { border-bottom: none; }

.res-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(160, 204, 7, 0.12);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.res-label { font-size: 0.75rem; color: var(--text-muted); }
.res-value { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--text-light); }

/* ==========================================================================
   VOLUNTEER & CONTACT FORMS
   ========================================================================== */
.volunteer-form-container, .contact-form-card {
  padding: 2.25rem 1.75rem;
  background: rgba(10, 34, 24, 0.85);
  border: 1px solid rgba(160, 204, 7, 0.25);
}

.custom-form .form-group {
  margin-bottom: 1.15rem;
}

.custom-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.custom-form .required { color: #f43f5e; }

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap i {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-icon-wrap input,
.input-icon-wrap select,
.custom-form textarea {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.65rem;
  background: rgba(6, 26, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 1rem; /* 16px to prevent iOS auto-zoom */
  outline: none;
  min-height: 48px;
}

.custom-form textarea {
  padding-left: 1rem;
  resize: vertical;
  min-height: 100px;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.custom-form textarea:focus {
  border-color: var(--cereli-lime);
  box-shadow: 0 0 0 3px rgba(160, 204, 7, 0.25);
  background: rgba(8, 30, 21, 0.98);
}

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #fb7185;
  margin-top: 0.25rem;
  min-height: 0.9rem;
}

.form-success-banner {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.form-success-banner.hidden { display: none !important; }

/* Contact Cards */
.contact-card-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(10, 34, 24, 0.7);
  min-height: 64px;
}

.cic-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bg-lime-soft { background: rgba(160, 204, 7, 0.15); color: var(--cereli-lime); }
.bg-emerald-soft { background: rgba(0, 135, 81, 0.2); color: #10b981; }
.bg-whatsapp { background: rgba(37, 211, 102, 0.2); color: #25d366; }

.cic-label { font-size: 0.7rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.cic-val { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-light); }
.cic-hint { font-size: 0.72rem; color: var(--text-muted); }

/* FAQ Accordion */
.faq-accordion-box {
  padding: 1.75rem 1.5rem;
  background: rgba(10, 34, 24, 0.7);
}

.accordion-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 0.75rem;
  min-height: 48px;
}

.accordion-trigger i {
  font-size: 0.8rem;
  color: var(--cereli-lime);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-trigger i { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.accordion-item.active .accordion-content { max-height: 280px; }

.accordion-content p {
  padding-bottom: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   REDESIGNED MODERN FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, rgba(9, 34, 24, 0.98) 0%, #030d09 100%);
  border-top: 1px solid rgba(160, 204, 7, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(160, 204, 7, 0.5) 50%, transparent 100%);
}

.footer-top {
  padding: 4.5rem 0 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 0.9fr 1.3fr;
  gap: 2.25rem;
}

.footer-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.footer-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.netzero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(160, 204, 7, 0.08);
  border: 1px solid rgba(160, 204, 7, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cereli-lime);
  width: fit-content;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--cereli-lime);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.86rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0;
  transition: all var(--transition-fast);
}

.footer-links li a i {
  font-size: 0.65rem;
  color: var(--cereli-lime);
  transition: transform var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--cereli-lime);
  transform: translateX(4px);
}

.footer-links li a:hover i {
  transform: translateX(2px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.footer-contact-items p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-items a {
  color: #cbd5e1;
  transition: color var(--transition-fast);
}

.footer-contact-items a:hover {
  color: var(--cereli-lime);
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-top: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.35rem;
  transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--cereli-lime);
  box-shadow: 0 0 10px rgba(160, 204, 7, 0.2);
}

.newsletter-input {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 0.5rem 0.85rem;
  outline: none;
  width: 100%;
}

.newsletter-input::placeholder {
  color: #64748b;
}

.newsletter-btn {
  background: var(--cereli-lime);
  border: none;
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--cereli-lime-hover);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.35);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal-links a {
  color: #64748b;
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.hidden { display: none !important; }

.modal-dialog {
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem 1.75rem;
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-lime);
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  border-radius: var(--radius-lg);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Back To Top Floating Button */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cereli-lime);
  color: var(--text-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(160, 204, 7, 0.4);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL
   ========================================================================== */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes spin-orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-orbit-reverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-focus { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hide-mobile { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .impact-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-card-ceo { grid-column: span 1; grid-template-columns: 200px 1fr; gap: 1.5rem; padding: 1.75rem; }
  .team-card { grid-template-columns: 160px 1fr; gap: 1.25rem; padding: 1.5rem; }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  .hero-section { padding-top: 5.5rem; padding-bottom: 2.5rem; }
  .hero-stats-strip {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .focus-grid { grid-template-columns: 1fr; }
  .featured-focus { grid-column: span 1; }
  .grid-4 { grid-template-columns: 1fr; }
  .about-highlights-grid { grid-template-columns: 1fr; }

  /* Team Card Mobile */
  .team-card-ceo { grid-template-columns: 1fr; text-align: center; }
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-avatar-box { max-width: 200px; margin: 0 auto 1.25rem auto; }
  .team-socials { justify-content: center; }

  /* Filter controls horizontal scrolling on mobile */
  .filter-controls {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-controls::-webkit-scrollbar { display: none; }

  /* Forms Mobile */
  .form-row.grid-2 { grid-template-columns: 1fr; }
  .volunteer-form-container, .contact-form-card { padding: 1.5rem 1.25rem; }
  .calculator-box { padding: 1.5rem 1.25rem; }
  .calc-results { padding: 1.25rem; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.65rem; text-align: center; }

  /* Modal on Mobile */
  .modal-dialog { padding: 1.75rem 1.25rem; width: 95%; }

  .floating-badge {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
  .visual-globe-card {
    flex-direction: column;
    min-height: 360px;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .impact-counter-grid { grid-template-columns: 1fr; }
  .earth-visual-container { width: 180px; height: 180px; }
  .bio-orb { width: 110px; height: 110px; }
  .orbit-1 { width: 145px; height: 145px; }
  .orbit-2 { width: 185px; height: 185px; }
  .orbit-3 { width: 225px; height: 225px; }
}


/* Social Media Links in Footer & Contact */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--cereli-lime);
  color: var(--text-dark);
  border-color: var(--cereli-lime);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(160, 204, 7, 0.4);
}

.bg-linkedin {
  background: rgba(10, 102, 194, 0.2) !important;
  color: #0a66c2 !important;
}

/* ==========================================================================
   ABOUT PAGE REDESIGN — BESPOKE MODERN STYLES
   ========================================================================== */

/* 1. Quick Stats & Navigation Anchors */
.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.25rem auto 0 auto;
  max-width: 960px;
  padding: 1.5rem 2rem;
  background: rgba(14, 48, 34, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  align-items: center;
}

.about-metric-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.25rem 0.5rem;
  position: relative;
}

.about-metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.about-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cereli-lime-soft);
  border: 1px solid var(--border-lime);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-metric-text {
  display: flex;
  flex-direction: column;
}

.about-metric-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.about-metric-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-nav-anchors {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.anchor-chip {
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.anchor-chip i {
  color: var(--cereli-lime);
}

.anchor-chip:hover {
  background: var(--cereli-lime-soft);
  border-color: var(--cereli-lime);
  color: var(--cereli-lime);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--cereli-lime-glow);
}

/* 2. Elevated Quotation Card */
.quote-card-elevated {
  position: relative;
  padding: 2.25rem;
  background: linear-gradient(135deg, rgba(14, 48, 34, 0.85) 0%, rgba(6, 26, 18, 0.9) 100%);
  border: 1px solid var(--border-lime);
  border-left: 4px solid var(--cereli-lime);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(160, 204, 7, 0.05);
}

.quote-watermark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.5rem;
  color: rgba(160, 204, 7, 0.12);
  line-height: 1;
}

.quote-text-elevated {
  font-size: 1.15rem;
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* 3. Interactive Dual-Engine Explorer */
.engine-switcher-card {
  padding: 2.25rem;
  background: rgba(14, 48, 34, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.engine-tab-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.engine-tab-btn {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: all var(--transition-fast);
}

.engine-tab-btn i {
  font-size: 1.1rem;
}

.engine-tab-btn.active {
  background: var(--cereli-lime);
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--cereli-lime-glow);
}

.engine-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.engine-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.engine-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.engine-feat-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  height: 100%;
  transition: all var(--transition-fast);
}

.engine-feat-card:hover {
  background: rgba(160, 204, 7, 0.08);
  border-color: var(--border-lime);
  transform: translateY(-2px);
}

.engine-feat-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.engine-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cereli-lime-soft);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.engine-feat-head h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.engine-feat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

.engine-nexus-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  margin-top: 1.75rem;
  background: linear-gradient(90deg, rgba(0, 135, 81, 0.25) 0%, rgba(160, 204, 7, 0.2) 100%);
  border: 1px dashed var(--border-lime);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  gap: 1rem;
}

.nexus-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cereli-lime);
}

/* 4. 3D Holographic Vision & Mission Cards */
.statement-card-enhanced {
  position: relative;
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all var(--transition-normal);
}

.vision-card-glow {
  background: linear-gradient(145deg, rgba(14, 48, 34, 0.8) 0%, rgba(6, 26, 18, 0.95) 100%);
  border: 1px solid rgba(160, 204, 7, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.vision-card-glow:hover {
  border-color: var(--cereli-lime);
  box-shadow: 0 16px 45px rgba(160, 204, 7, 0.2);
  transform: translateY(-4px);
}

.mission-card-glow {
  background: linear-gradient(145deg, rgba(20, 45, 30, 0.8) 0%, rgba(6, 26, 18, 0.95) 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.mission-card-glow:hover {
  border-color: var(--cereli-gold);
  box-shadow: 0 16px 45px rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
}

.statement-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.icon-badge-lime {
  background: var(--cereli-lime-soft);
  border: 1px solid var(--border-lime);
  color: var(--cereli-lime);
}

.icon-badge-gold {
  background: var(--cereli-gold-soft);
  border: 1px solid var(--cereli-gold);
  color: var(--cereli-gold);
}

.statement-title-large {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.statement-quote-box {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.statement-tags-wrap {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tag-pill i {
  color: var(--cereli-lime);
}

/* 5. 4 Core Values Themed Cards */
.value-card-modern {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: rgba(14, 48, 34, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.value-card-modern:hover {
  transform: translateY(-5px);
  background: rgba(20, 64, 46, 0.75);
}

.value-card-modern.val-1:hover { border-color: var(--cereli-lime); box-shadow: 0 10px 30px var(--cereli-lime-glow); }
.value-card-modern.val-2:hover { border-color: var(--cereli-gold); box-shadow: 0 10px 30px var(--cereli-gold-glow); }
.value-card-modern.val-3:hover { border-color: #00d2ff; box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3); }
.value-card-modern.val-4:hover { border-color: var(--cereli-purple); box-shadow: 0 10px 30px var(--cereli-purple-soft); }

.val-num-watermark {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.val-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.val-icon-lime { background: var(--cereli-lime-soft); color: var(--cereli-lime); border: 1px solid var(--border-lime); }
.val-icon-gold { background: var(--cereli-gold-soft); color: var(--cereli-gold); border: 1px solid var(--cereli-gold); }
.val-icon-cyan { background: rgba(0, 210, 255, 0.12); color: #00d2ff; border: 1px solid rgba(0, 210, 255, 0.3); }
.val-icon-purple { background: var(--cereli-purple-soft); color: var(--cereli-purple); border: 1px solid var(--cereli-purple); }

.value-card-modern h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.value-card-modern p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

/* 6. Executive Leadership & CEO Spotlight */
.ceo-spotlight-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 2.75rem;
  background: linear-gradient(135deg, rgba(14, 48, 34, 0.85) 0%, rgba(6, 26, 18, 0.95) 100%);
  border: 1px solid rgba(160, 204, 7, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(160, 204, 7, 0.06);
  margin-bottom: 2.5rem;
  align-items: center;
}

.ceo-avatar-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-lime);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  height: 100%;
  max-height: 360px;
}

.ceo-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-badge-pill {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  background: rgba(6, 26, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-lime);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cereli-lime);
  text-align: center;
}

.credentials-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.85rem 0 1.25rem 0;
}

.credential-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(160, 204, 7, 0.12);
  border: 1px solid var(--border-lime);
  color: var(--cereli-lime);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.advisory-card-modern {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(14, 48, 34, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: all var(--transition-normal);
}

.advisory-card-modern:hover {
  background: rgba(20, 64, 46, 0.85);
  border-color: var(--border-lime);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.advisory-head-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.advisory-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-lime);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.advisory-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisory-head-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.advisory-domain-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cereli-lime);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.advisory-bio-excerpt {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  flex-grow: 1;
  margin: 0 0 1.25rem 0;
}

.advisory-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-open-bio {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cereli-lime);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  padding: 0.35rem 0;
}

.btn-open-bio:hover {
  color: var(--cereli-lime-hover);
  transform: translateX(3px);
}

/* 7. Theory of Change / Operational Pathway */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 2rem;
}

.toc-card {
  position: relative;
  padding: 2.25rem 1.5rem 1.75rem 1.5rem;
  background: rgba(14, 48, 34, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.toc-card:hover {
  background: rgba(20, 64, 46, 0.8);
  border-color: var(--border-lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.toc-step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cereli-lime);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px var(--cereli-lime-glow);
}

.toc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cereli-lime-soft);
  border: 1px solid var(--border-lime);
  color: var(--cereli-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0.5rem auto 1rem auto;
  flex-shrink: 0;
}

.toc-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.toc-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
  margin: 0;
}

/* 8. Leader Bio Full Modal */
.bio-modal-dialog {
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
}

.bio-modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-modal-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cereli-lime);
  flex-shrink: 0;
}

.bio-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-modal-content {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.bio-modal-content p + p {
  margin-top: 1rem;
}

/* ==========================================================================
   RESPONSIVE GRID SYSTEM & ABOUT PAGE ENHANCEMENTS
   ========================================================================== */
@media (max-width: 1200px) {
  .gap-xl {
    gap: 2.25rem;
  }
  .about-hero-metrics {
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .statement-card-enhanced {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 992px) {
  /* Global Grid Fallbacks */
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gap-xl {
    gap: 2rem;
  }
  .gap-lg {
    gap: 1.5rem;
  }

  /* Section Padding */
  .section-padding {
    padding: 4rem 0;
  }

  /* About Hero */
  .about-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
    max-width: 600px;
  }
  
  .about-metric-item:nth-child(2)::after {
    display: none;
  }
  .about-metric-item:nth-child(4)::after {
    display: none;
  }

  /* CEO Spotlight Card */
  .ceo-spotlight-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2.25rem 1.5rem;
  }
  .ceo-avatar-frame {
    max-width: 240px;
    max-height: 280px;
    margin: 0 auto;
  }
  .ceo-content-box > div:first-child {
    justify-content: center !important;
  }
  .credentials-wrap {
    justify-content: center;
  }
  .ceo-content-box > div:last-child {
    justify-content: center !important;
  }

  /* Theory of Change */
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Dual Engine */
  .engine-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Advisory Board Cards */
  .advisory-card-modern {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Global Grids */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Section Padding */
  .section-padding {
    padding: 3.25rem 0;
  }

  /* Horizontal swipeable chip bar on mobile */
  .about-nav-anchors {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.5rem 0.25rem 0.75rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 1.25rem;
  }
  .about-nav-anchors::-webkit-scrollbar {
    display: none;
  }
  .anchor-chip {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.45rem 0.95rem;
    white-space: nowrap;
  }

  /* Mandate & Narrative */
  .quote-card-elevated {
    padding: 1.5rem 1.25rem;
  }
  .quote-text-elevated {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .quote-watermark {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  /* Dual Engine Tabs */
  .engine-switcher-card {
    padding: 1.5rem 1.25rem;
  }
  .engine-tab-nav {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem;
  }
  .engine-tab-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    min-height: 46px;
  }

  .engine-nexus-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
  }
  .engine-nexus-bar .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Vision & Mission */
  .statement-card-enhanced {
    padding: 1.75rem 1.25rem;
  }
  .statement-title-large {
    font-size: 1.25rem;
  }
  .statement-quote-box {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  /* Core Values */
  .value-card-modern {
    padding: 1.75rem 1.25rem;
  }

  /* CEO Spotlight */
  .ceo-spotlight-card {
    padding: 1.75rem 1.25rem;
  }
  .ceo-content-box h3 {
    font-size: 1.6rem !important;
  }

  /* Advisory Cards */
  .advisory-card-modern {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 580px) {
  /* Global Grids */
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  /* About Hero */
  .about-hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }
  .about-metric-item::after {
    display: none !important;
  }
  .about-metric-item {
    justify-content: flex-start;
    padding-left: 0.5rem;
  }

  /* Theory of Change */
  .toc-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Advisory Head */
  .advisory-head-row {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }
  .advisory-avatar-wrap {
    margin: 0 auto;
  }
  .advisory-domain-tag {
    justify-content: center;
  }
  .advisory-card-modern .credentials-wrap {
    justify-content: center;
  }
  .advisory-card-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
  }

  /* Section Title */
  .section-title {
    font-size: 1.75rem;
  }
}
