/* HubForge Global Impact Network - Custom Styles */
/* SpaceX-inspired minimal aesthetic with HubForge brand colors */

:root {
  /* Brand Colors */
  --color-coral: #FF6B6B;
  --color-pink: #E94BC4;
  --color-lime: #A8E86D;
  --color-yellow: #FFD93D;
  --color-purple: #7B68EE;
  --color-dark: #1a1a1a;
  --color-darker: #0d0d0d;
  --color-light: #ffffff;
  --color-gray: #666666;
  --color-gray-light: #f5f5f5;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-light);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 75, 196, 0.1);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(233, 75, 196, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--spacing-md);
  min-height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-dark);
  transition: var(--transition);
}

.nav-logo img {
  width: 55px;
  height: 55px;
  transition: var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.08) rotate(5deg);
}

.nav-brand {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-pink), var(--color-purple));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-pink);
  transform: translateY(-1px);
}

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

.nav-link[target="_blank"]::before {
  content: '↗';
  font-size: 0.75rem;
  margin-left: 0.25rem;
  opacity: 0.6;
  vertical-align: super;
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(233, 75, 196, 0.25);
  letter-spacing: -0.01em;
  margin-left: 0.5rem;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 75, 196, 0.4);
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger animation to X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0;
  margin-top: 70px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(233, 75, 196, 0.05), rgba(123, 104, 238, 0.05));
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 232, 109, 0.1), transparent);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.1), transparent);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.1); }
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-gray);
  border-radius: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-indicator span {
  width: 6px;
  height: 10px;
  background: var(--color-pink);
  border-radius: 3px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0.5; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
  color: white;
  box-shadow: 0 4px 15px rgba(233, 75, 196, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 75, 196, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
  background: var(--color-dark);
  color: white;
}

/* Fix button visibility on dark backgrounds */
.section-dark .btn-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  margin-top: var(--spacing-sm);
}

.section-dark .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  border-color: rgba(255, 255, 255, 0.95);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section-dark {
  background: var(--color-darker);
  color: var(--color-light);
}

.section-why {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.section-why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 75, 196, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.section-why::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 232, 109, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-dark), #2a2a2a);
  color: var(--color-light);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-pink);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.section-title.centered {
  text-align: center;
}

/* Vision Section */
.vision-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-text {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.8;
  text-align: center;
}

.vision-text strong {
  color: var(--color-lime);
}

/* Mission Section */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  align-items: center;
}

.mission-text {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.mission-text strong {
  color: var(--color-dark);
  font-weight: 600;
}

.stat-card {
  background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
  padding: var(--spacing-lg);
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 40px rgba(233, 75, 196, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Why Section */
.why-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-text {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.why-description {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.value-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: 15px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: white;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.value-description {
  color: var(--color-gray);
  line-height: 1.6;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  gap: var(--spacing-lg);
}

.program-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.program-btn {
  margin-top: var(--spacing-md);
  display: inline-block;
}

.program-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.program-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.program-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.program-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.program-list {
  list-style: disc;
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.program-list li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

.program-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.feature-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(168, 232, 109, 0.2);
  color: var(--color-lime);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.contact-email {
  font-size: 1.25rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer - Redesigned */
.footer {
  background: #000000;
  color: white;
  padding: var(--spacing-lg) 0;
}

/* About Section */
.footer-about-section {
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
  text-align: center;
}

.footer-about-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Navigation Links */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
  padding: var(--spacing-md) 0;
}

.footer-nav-column h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-pink);
  margin-bottom: 0.75rem;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-column li {
  margin-bottom: 0.4rem;
}

.footer-nav-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-nav-column a:hover {
  color: white;
}

/* Legal Info */
.footer-legal {
  text-align: center;
  padding: var(--spacing-sm) 0;
  margin-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}

.footer-legal .legal-details {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding: var(--spacing-sm) 0 0;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-sm);
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-lime);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 232, 109, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-weight: bold;
}

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

/* Explore Sections - Programs & Services */
.explore-section {
  padding: var(--spacing-xl) 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.explore-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.explore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-pink), var(--color-purple));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: var(--color-pink);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(233, 75, 196, 0.15);
}

.explore-card:hover::before {
  transform: scaleX(1);
}

.explore-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto var(--spacing-md);
}

.explore-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.explore-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.explore-link:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(233, 75, 196, 0.3);
}

@media (max-width: 768px) {
  .explore-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Why Section - Redesigned */
.why-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.why-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  color: white;
  line-height: 1.2;
}

.why-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.why-point {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: left;
  backdrop-filter: blur(10px);
}

.why-point:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(233, 75, 196, 0.4);
  box-shadow: 0 12px 40px rgba(233, 75, 196, 0.25);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.why-point h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: white;
  line-height: 1.4;
}

.why-point p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.why-footer {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* Comprehensive Mobile Optimizations */
@media (max-width: 768px) {
  /* Reduce spacing on mobile */
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3rem;
  }
  
  /* Container padding */
  .container {
    padding: 0 1rem;
  }
  
  /* Navigation */
  .nav-brand {
    font-size: 0.9rem;
    max-width: 150px;
  }
  
  .nav-logo img {
    width: 40px;
    height: 40px;
  }
  
  /* Hero section */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  /* Section titles */
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* Mission grid */
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  /* Values grid */
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  /* Program cards */
  .program-card {
    padding: 1.5rem;
  }
  
  .program-number {
    font-size: 2rem;
  }
  
  .program-title {
    font-size: 1.5rem;
  }
  
  /* Why section */
  .why-title {
    font-size: 2rem;
  }
  
  .why-lead {
    font-size: 1.1rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-point {
    padding: 1.5rem;
  }
  
  /* Service cards */
  .service-card {
    padding: 1.5rem;
  }
  
  .service-title {
    font-size: 1.25rem;
  }
  
  /* CTA section */
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Footer */
  .footer-about-section p {
    font-size: 0.85rem;
  }
  
  /* Touch-friendly buttons */
  .btn {
    padding: 1rem 1.5rem;
    min-height: 48px;
  }
  
  .btn-large {
    padding: 1.125rem 2rem;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .nav-brand {
    font-size: 0.75rem;
  }
  
  .program-number {
    font-size: 1.5rem;
  }
  
  .why-title {
    font-size: 1.75rem;
  }
  
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
}

/* ========================================
   PROGRAM PAGES STYLING
   ======================================== */

/* Program Hero Section */
.program-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2d1b4e 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.program-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(168, 232, 109, 0.05) 100%);
  pointer-events: none;
}

.program-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.program-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--color-lime);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.program-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: var(--spacing-md);
}

.program-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
}

.program-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tag {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Content Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.content-main h2 {
  margin-bottom: var(--spacing-md);
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

/* Info Box Sidebar */
.info-box {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
  padding: var(--spacing-lg);
  border-radius: 16px;
  color: white;
  position: sticky;
  top: 100px;
}

.info-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  display: inline-block;
  min-width: 80px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-lime) 0%, var(--color-yellow) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-box:hover::before {
  transform: scaleY(1);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-lime);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 232, 109, 0.15);
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-lime), var(--color-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--spacing-sm);
}

.section-dark .feature-title {
  color: white;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* Support Cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.support-card {
  background: var(--color-gray-light);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.support-card:hover {
  border-color: var(--color-pink);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.support-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto var(--spacing-md);
  box-shadow: 0 10px 30px rgba(233, 75, 196, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.benefit-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-title svg {
  color: var(--color-purple);
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-yellow);
  transform: translateY(-4px);
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: white;
}

.impact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.impact-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.category-card {
  background: white;
  border: 2px solid var(--color-gray-light);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--color-purple);
  box-shadow: 0 10px 30px rgba(123, 104, 238, 0.15);
  transform: translateY(-4px);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

.category-criteria {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-criteria li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--color-gray);
  font-size: 0.95rem;
}

.category-criteria li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Join Grid */
.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.join-step {
  text-align: center;
}

.join-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-lime), var(--color-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 auto var(--spacing-md);
}

.join-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.join-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Benefits List */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.benefit-item {
  background: white;
  border-radius: 12px;
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-item .benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.benefit-item .benefit-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
}

/* Section Variations for Program Pages */
.section-accent {
  background: var(--color-darker);
  color: white;
}

.section-dark {
  background: linear-gradient(135deg, var(--color-darker) 0%, #1a0d2e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(168, 232, 109, 0.05), transparent);
  pointer-events: none;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-pink) 100%);
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
}

.cta-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Make CTA button stand out on pink background */
.section-cta .btn-primary {
  background: white;
  color: var(--color-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.section-cta .btn-primary:hover {
  background: var(--color-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Newsletter Section */
.section-newsletter {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: white;
}

.newsletter-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
}

.newsletter-embed {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.newsletter-embed iframe {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Centered Section Title */
.section-title.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* Mobile Responsive for Program Pages */
@media (max-width: 768px) {
  .program-hero {
    padding: 120px 0 60px;
  }
  
  .program-hero-title {
    font-size: 2rem;
  }
  
  .program-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .info-box {
    position: static;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .join-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .program-hero {
    padding: 100px 0 50px;
  }
  
  .program-hero-title {
    font-size: 1.75rem;
  }
  
  .feature-number {
    font-size: 2rem;
  }
  
  .step-marker {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .join-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

/* ===========================================
   Program Pages - Minimal Design
   =========================================== */

/* Simple Hero */
.simple-hero {
    background: #1a1a1a;
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A8E86D;
    margin-bottom: 1rem;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: #f8f8f8;
}

.content-section.bg-dark {
    background: #1a1a1a;
    color: #ffffff;
}

.content-section.cta-section {
    background: linear-gradient(135deg, #E94BC4 0%, #7B68EE 100%);
    color: #ffffff;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: inherit;
}

.content-section.bg-light p {
    color: #333;
}

/* Container Variations */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Simple Grid */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Simple Card */
.simple-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.simple-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.simple-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.simple-card p {
    color: #555;
    margin-bottom: 0;
}

/* List Group */
.list-group {
    margin-top: 2rem;
}

.list-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-dark .list-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.list-item:last-child {
    border-bottom: none;
}

.list-item h3 {
    margin-bottom: 0.75rem;
}

/* Steps List */
.steps-list {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E94BC4 0%, #7B68EE 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Button Outline Variant */
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #E94BC4;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
    .simple-hero {
        padding: 100px 0 60px;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.125rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .simple-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .simple-card {
        padding: 1.5rem;
    }
    
    .step-item {
        gap: 1rem;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button-group .btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
}
/* ===========================================
   PROGRAM PAGES - SPACEX-INSPIRED MODULAR DESIGN
   =========================================== */

/* --- HERO SECTIONS --- */
.page-hero {
    background: #000000;
    color: #ffffff;
    padding: 180px 0 120px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* --- SECTION LAYOUTS --- */
.section-dark {
    background: #0a0a0a;
    color: #ffffff;
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-light {
    background: #ffffff;
    color: #000000;
    padding: 120px 0;
}

.section-cta-dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 140px 0;
}

/* --- CONTAINER VARIATIONS --- */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- TYPOGRAPHY --- */
.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.section-heading-center {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

.large-text {
    font-size: 1.375rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* --- GRID SYSTEMS --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

/* --- CARD COMPONENTS --- */
.card-modern {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.section-light .card-modern {
    background: #fafafa;
    border: 1px solid #e0e0e0;
}

.card-modern:hover {
    border-color: #A8E86D;
    transform: translateY(-4px);
}

.section-light .card-modern:hover {
    border-color: #E94BC4;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: inherit;
}

.card-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: inherit;
    opacity: 0.9;
}

/* --- FEATURE BLOCKS --- */
.feature-block {
    padding: 2rem;
    border: 2px solid transparent;
    background: linear-gradient(#fafafa, #fafafa) padding-box,
                linear-gradient(135deg, #E94BC4, #7B68EE) border-box;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #E94BC4, #A8E86D) border-box;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(233, 75, 196, 0.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-light .feature-title {
    color: #1a1a1a;
}

.section-dark .feature-title,
.section-cta-dark .feature-title {
    color: white;
}

.feature-text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* --- PROCESS/TIMELINE COMPONENTS --- */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    align-items: start;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #A8E86D;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content {
    padding-top: 0.5rem;
}

.process-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* --- CTA COMPONENTS --- */
.text-center {
    text-align: center;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 1.375rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BUTTON STYLES --- */
.btn-primary-large {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-large:hover {
    background: #A8E86D;
    border-color: #A8E86D;
    color: #000000;
}

.btn-secondary-large {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary-large:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

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

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-dark,
    .section-light {
        padding: 80px 0;
    }
    
    .section-cta-dark {
        padding: 100px 0;
    }
    
    .container-narrow {
        padding: 0 24px;
    }
    
    .section-heading,
    .section-heading-center {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .large-text {
        font-size: 1.125rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-modern {
        padding: 2rem;
    }
    
    .process-item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-title,
    .feature-title {
        font-size: 1.5rem;
    }
    
    .cta-heading {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 16px 32px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-heading,
    .section-heading-center {
        font-size: 2rem;
    }
    
    .container-narrow {
        padding: 0 20px;
    }
    
    .card-modern {
        padding: 1.5rem;
    }
    
    .process-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE-FIRST IMPROVEMENTS
   Enhanced breakpoints for phones: 360px, 375px, 412px, 425px
   ======================================== */

/* Extra Small Phones (360px and below) */
@media screen and (max-width: 360px) {
    /* Container adjustments */
    .container {
        padding: 0 16px;
    }
    
    .container-narrow {
        padding: 0 16px;
    }
    
    /* Navigation */
    .nav-brand {
        font-size: 0.9rem;
    }
    
    .nav-logo img {
        width: 40px;
        height: 40px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Sections */
    .section-dark,
    .section-light {
        padding: 60px 0;
    }
    
    .section-heading,
    .section-heading-center {
        font-size: 1.75rem;
    }
    
    .large-text {
        font-size: 1rem;
    }
    
    /* Cards */
    .card-modern {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-text {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-primary-large,
    .btn-secondary-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Process items */
    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 1rem;
    }
    
    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .process-title {
        font-size: 1.25rem;
    }
    
    .process-text {
        font-size: 0.95rem;
    }
}

/* Small Phones - 375px to 425px */
@media screen and (min-width: 361px) and (max-width: 425px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .section-heading,
    .section-heading-center {
        font-size: 2rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
}

/* Tablets and larger phones (426px to 768px) - refine existing styles */
@media screen and (min-width: 426px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-title {
        font-size: 3.5rem;
    }
}

/* Navigation improvements for ALL mobile sizes */
@media screen and (max-width: 768px) {
    /* Ensure mobile menu is properly accessible */
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: var(--spacing-sm) 0;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 16px var(--spacing-md);
        font-size: 1.125rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(168, 232, 109, 0.1);
    }
    
    .nav-cta {
        margin: 8px 16px;
        text-align: center;
        justify-content: center;
    }
}

/* Prevent horizontal scroll on all mobile devices */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Fix any potentially overflowing elements */
    .hero-title,
    .page-hero .hero-title,
    .section-heading,
    .section-heading-center,
    .cta-heading {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure containers don't overflow */
    .container,
    .container-narrow {
        width: 100%;
        max-width: 100%;
    }
}

/* Touch target improvements - ensure minimum 44px for all interactive elements */
@media screen and (max-width: 768px) {
    a.btn,
    button.btn,
    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-secondary-large {
        min-height: 48px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
    
    /* Ensure all links have adequate touch targets */
    .nav-link,
    .footer a,
    .program-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Improve readability and spacing on very small screens */
@media screen and (max-width: 360px) {
    /* Reduce spacing to prevent excessive scrolling */
    .section-dark,
    .section-light,
    .section-cta-dark {
        padding: 50px 0;
    }
    
    /* Programs grid */
    .programs-grid {
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    /* Services grid */
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Values grid */
    .values-grid {
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Landscape mode adjustments for small phones */
@media screen and (max-height: 500px) and (orientation: landscape) and (max-width: 768px) {
    .hero,
    .page-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .section-dark,
    .section-light {
        padding: 40px 0;
    }
    
    .hero-title,
    .page-hero .hero-title {
        font-size: 1.75rem;
    }
}

/* Accessibility improvements for focus states on mobile */
@media screen and (max-width: 768px) {
    a:focus,
    button:focus,
    .nav-link:focus,
    .btn:focus {
        outline: 3px solid var(--color-lime);
        outline-offset: 2px;
    }
    
    /* Ensure focus is visible on dark backgrounds */
    .section-dark a:focus,
    .section-dark button:focus,
    .section-cta-dark a:focus,
    .section-cta-dark button:focus {
        outline-color: var(--color-yellow);
    }
}

/* ========================================
   WAITLIST COMPONENTS
   ======================================== */

/* Waitlist CTA on EvalAtlas Hero */
.waitlist-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Row for multiple counters (members + countries) */
.waitlist-counters-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 3rem 2rem;
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(233, 75, 196, 0.3);
    min-width: 200px;
    flex: 1;
    max-width: 280px;
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(233, 75, 196, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(233, 75, 196, 0.5), 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
    animation: count-up 0.8s ease-out;
}

@keyframes count-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-light);
    opacity: 0.9;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--color-light);
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Waitlist Button - Large */
.btn-waitlist {
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    color: var(--color-light);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 75, 196, 0.3);
    border: 2px solid transparent;
    min-width: 280px;
    text-align: center;
}

.btn-waitlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 75, 196, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Waitlist Badge on Homepage */
.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    border-radius: 50px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(233, 75, 196, 0.2);
    font-size: 0.95rem;
    color: var(--color-light);
    font-weight: 600;
}

.waitlist-badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
}

/* Waitlist Stats on Homepage (dual counter) */
.waitlist-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.waitlist-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(233, 75, 196, 0.2);
    font-size: 0.95rem;
    color: var(--color-light);
    font-weight: 600;
}

.waitlist-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
}

/* Waitlist Button - Small (on homepage) */
.btn-waitlist-small {
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    color: var(--color-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-waitlist-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 75, 196, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Program Actions - Multiple buttons */
.program-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Waitlist CTA Bottom Section (End of EvalAtlas Page) */
.waitlist-cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waitlist-counter-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(233, 75, 196, 0.3);
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.btn-waitlist-large {
    background: linear-gradient(135deg, #E94BC4, #7B68EE);
    color: var(--color-light);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 75, 196, 0.3);
    border: 2px solid transparent;
    min-width: 280px;
    text-align: center;
    display: inline-block;
}

.btn-waitlist-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 75, 196, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .waitlist-cta {
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .waitlist-counters-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .waitlist-counter {
        padding: 1.5rem 2rem;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-plus {
        font-size: 1.75rem;
    }
    
    .counter-label {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    
    .btn-waitlist {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        min-width: auto;
    }
    
    .waitlist-badge-number {
        font-size: 1.25rem;
    }
    
    .program-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .program-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .waitlist-cta-bottom {
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .waitlist-counter-bottom {
        padding: 1.5rem 2rem;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-waitlist-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .waitlist-counter,
    .waitlist-counter-bottom {
        padding: 1.25rem 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-plus {
        font-size: 1.5rem;
    }
    
    .counter-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .btn-waitlist,
    .btn-waitlist-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===============================================
   FOUNDING MEMBER BADGE NOTE
   =============================================== */

.founding-badge-note {
    font-size: 1rem;
    color: var(--color-pink);
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .founding-badge-note {
        font-size: 0.9rem;
    }
}

