/* Light Bearers Youth Empowerment Foundation - Official Stylesheet */
/* Colors: White, Dark Green, Black, Gold */
/* Guidelines: WCAG 2.2 AA Accessible, Web Guidelines Compliant, Fully Responsive */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  color-scheme: light;
  
  /* Light Theme Color Tokens */
  --bg-primary: #F8FAF9;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F0F5F2;
  --bg-input: #FFFFFF;
  
  --text-primary: #0A1610;
  --text-secondary: #24352B;
  --text-muted: #52665B;
  --text-inverse: #FFFFFF;

  --brand-green: #0D472D;
  --brand-green-dark: #072B1B;
  --brand-green-light: #166C44;
  --brand-green-glow: rgba(13, 71, 45, 0.10);

  --brand-gold: #C59B27;
  --brand-gold-light: #E5B834;
  --brand-gold-dark: #9A7514;
  --brand-gold-glow: rgba(197, 155, 39, 0.15);

  --brand-black: #0B0F0D;
  
  --border-color: rgba(13, 71, 45, 0.15);
  --border-gold: rgba(197, 155, 39, 0.35);
  
  --nav-bg: rgba(255, 255, 255, 0.94);
  --modal-overlay: rgba(10, 22, 16, 0.75);
  
  --shadow-sm: 0 2px 8px rgba(13, 71, 45, 0.05);
  --shadow-md: 0 8px 24px rgba(13, 71, 45, 0.08);
  --shadow-lg: 0 16px 38px rgba(7, 43, 27, 0.12);
  --shadow-gold: 0 6px 20px rgba(197, 155, 39, 0.22);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --focus-ring: 2px solid #C59B27;
  --focus-offset: 2px;
}

[data-theme="dark"] {
  color-scheme: dark;

  /* Dark Theme Color Tokens */
  --bg-primary: #070B09;
  --bg-secondary: #0E1511;
  --bg-card: #121A15;
  --bg-card-hover: #19251D;
  --bg-input: #151F19;
  
  --text-primary: #F4F8F5;
  --text-secondary: #B8C9C0;
  --text-muted: #799184;
  --text-inverse: #070B09;

  --brand-green: #1B784C;
  --brand-green-dark: #0D472D;
  --brand-green-light: #249A62;
  --brand-green-glow: rgba(27, 120, 76, 0.22);

  --brand-gold: #F3C649;
  --brand-gold-light: #FFE48E;
  --brand-gold-dark: #C59B27;
  --brand-gold-glow: rgba(243, 198, 73, 0.20);

  --brand-black: #000000;
  
  --border-color: rgba(243, 198, 73, 0.18);
  --border-gold: rgba(243, 198, 73, 0.40);
  
  --nav-bg: rgba(7, 11, 9, 0.94);
  --modal-overlay: rgba(0, 0, 0, 0.88);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 8px 28px rgba(243, 198, 73, 0.18);

  --focus-ring: 2px solid #F3C649;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--text-primary);
  scroll-margin-top: 100px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Accessibility Focus & Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--brand-gold);
  color: #070B09;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: var(--focus-ring);
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* Responsive Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold { color: var(--brand-gold); }
.text-green { color: var(--brand-green); }
.text-center { text-align: center; }

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--brand-gold-glow);
  color: var(--brand-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.green-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--brand-green-glow);
  color: var(--brand-green);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

/* Responsive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: var(--brand-gold);
  color: #070B09;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--brand-green);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--brand-green-glow);
}

.btn-green:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.btn-outline-gold:hover {
  background: var(--brand-gold);
  color: #070B09;
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--brand-green);
  border-color: var(--brand-green);
}

.btn-outline-green:hover {
  background: var(--brand-green);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Site Header & Progress Bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

#scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-green-light) 50%, var(--brand-gold) 100%);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 1001;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease;
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.brand-logo-img-footer {
  height: 55px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--brand-gold);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: var(--brand-gold);
  transform: scale(1.05);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md);
}

.card-gold-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gold);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--brand-green-glow) 0%, transparent 45%),
              radial-gradient(circle at 10% 90%, var(--brand-gold-glow) 0%, transparent 40%);
}

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

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin: 1.25rem 0;
}

.hero-title span {
  color: var(--brand-gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-card:hover .hero-img {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--brand-gold);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  max-width: calc(100% - 20px);
}

.badge-icon-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-gold);
  font-family: 'Playfair Display', serif;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--brand-gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats Counter Section */
.stats-section {
  padding: 55px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Section Structure */
.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 1rem 0 0.75rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Card Number Indicators */
.num-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--brand-gold-glow);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-gold);
}

/* Founder Spotlight */
.founder-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.founder-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--brand-gold);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.founder-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.quote-box {
  background: var(--bg-card);
  border-left: 4px solid var(--brand-gold);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
}

/* Outreach & Blog Card */
.outreach-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.outreach-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md);
}

.outreach-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.outreach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.outreach-card:hover .outreach-img-wrap img {
  transform: scale(1.05);
}

.outreach-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-green);
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.outreach-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.outreach-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.outreach-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.outreach-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--modal-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: contain;
  transition: opacity 0.25s ease;
}

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

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--brand-gold);
  border-radius: var(--radius-lg);
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.25rem;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--brand-gold);
  color: #070B09;
}

/* Form Controls & Labels */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  cursor: pointer;
}

.form-control {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-glow);
}

/* Toast Notifications (Polite ARIA Live Region) */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  background: var(--brand-green);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--brand-gold);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  max-width: calc(100vw - 4rem);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ----------------------------------------------------
 * SCROLL REVEAL & SLIDE-TO-VIEW EFFECTS
 * ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Footer */
.site-footer {
  background: var(--brand-black);
  color: #E2E8F0;
  padding: 80px 0 30px;
  border-top: 2px solid var(--brand-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 50px;
}

.footer-brand p {
  color: #94A3B8;
  margin: 1.25rem 0;
  max-width: 340px;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--brand-gold);
  padding-left: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  display: inline-block;
  min-height: 36px;
  line-height: 36px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-gold);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748B;
}

/* Mobile Drawer */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: contain;
  transition: opacity 0.2s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--bg-card);
  z-index: 1600;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

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

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  padding: 0.5rem 0;
  min-height: 44px;
}

/* ----------------------------------------------------
 * COMPREHENSIVE RESPONSIVE MEDIA QUERIES
 * ---------------------------------------------------- */

/* Desktop & Large Laptops (1100px - 1280px) */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 2.5rem;
  }
}

/* Tablets & Mobile Landscape (< 992px) */
@media (max-width: 992px) {
  .site-header {
    height: 72px;
  }

  .header-container {
    height: 72px;
  }

  .nav-menu {
    display: none;
  }

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

  .hero-section {
    padding: 130px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-img {
    height: 380px;
  }

  .hero-floating-badge {
    bottom: -15px;
    left: 1rem;
    right: 1rem;
    margin: 0 auto;
    max-width: 320px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-img-frame img {
    height: 420px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Phablets & Portrait Tablets (< 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .modal-container {
    padding: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-cta-group .btn {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Devices (< 480px) */
@media (max-width: 480px) {
  .site-header {
    height: 66px;
  }

  .header-container {
    height: 66px;
  }

  .brand-logo-img {
    height: 42px;
    max-width: 180px;
  }

  .hero-section {
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-img {
    height: 300px;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .quote-box {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .toast-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: calc(100vw - 2rem);
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Ultra-Small Devices (< 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 1rem;
  }

  .brand-logo-img {
    height: 36px;
    max-width: 150px;
  }

  .hero-img {
    height: 250px;
  }

  .modal-container {
    padding: 1.25rem 1rem;
  }
}

/* Reduced Motion Override (A11y Compliant) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
