/* BigCatID - Safari & Serengeti Theme - Complete CSS */

/* === CSS VARIABLES === */
:root {
  /* Safari Color Palette */
  --safari-orange: #FF8C42;       /* Warm safari orange */
  --safari-orange-light: #FFB366; /* Light safari orange */
  --safari-orange-dark: #E5661A;  /* Deep safari orange */
  --serengeti-cream: #ffd6a8;     /* Warm cream background */
  --savanna-white: #FFFFFF;       /* Pure white */
  --midnight-black: #1A1A1A;      /* Deep black */
  --charcoal: #2C2C2C;            /* Dark charcoal */
  --dust-beige: #F5F1E8;          /* Light beige */
  --acacia-gold: #D4A574;         /* Golden accent */
  
  /* Clear/Glass Elements */
  --glass-overlay: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 140, 66, 0.2);
  --backdrop-blur: blur(20px);
  
  /* Primary Variables */
  --background: var(--serengeti-cream);
  --surface: var(--dust-beige);
  --surface-dark: var(--savanna-white);
  --text-primary: var(--midnight-black);
  --text-secondary: var(--charcoal);
  --text-muted: #6B5B73;
  --accent: var(--safari-orange);
  --accent-light: var(--safari-orange-light);
  --accent-dark: var(--safari-orange-dark);
  --border: rgba(255, 140, 66, 0.15);
  --border-light: rgba(42, 42, 42, 0.1);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Shadows - Safari inspired */
  --shadow-sm: 0 2px 4px rgba(255, 140, 66, 0.1);
  --shadow-md: 0 4px 12px rgba(255, 140, 66, 0.15);
  --shadow-lg: 0 8px 24px rgba(255, 140, 66, 0.2);
  --shadow-xl: 0 16px 40px rgba(255, 140, 66, 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.video-section {
  position: relative;
  width: 100%;
  height: 70vh; /* desktop height */
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-50%) translateY(-15%);
  object-fit: cover;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .video-section {
    height: 50vh; /* shorter height on mobile */
  }

  .video-section video {
    transform: translateX(-50%) translateY(-10%); /* slightly less vertical shift */
  }
}




html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === HEADER STYLES === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}
.newimg {
        width: 100%;
        border-radius: 5%;

}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glass-overlay), transparent);
  transition: left 0.5s ease;
  pointer-events: none; /* This fixes the click detection issue */
  z-index: -1; /* Ensures it stays behind the text */
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-dark);
  background: rgba(255, 140, 66, 0.1);
  box-shadow: var(--shadow-sm);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* === HERO STYLES === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-small {
  min-height: 70vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    var(--safari-orange-light) 0%, 
    var(--acacia-gold) 35%, 
    var(--dust-beige) 100%);
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--accent) 2px, transparent 2px),
    radial-gradient(circle at 80% 50%, var(--accent) 2px, transparent 2px);
  background-size: 60px 60px, 80px 80px;
  animation: drift 40s linear infinite;
  z-index: 2;
}

@keyframes drift {
  0% { transform: translateX(0px); }
  100% { transform: translateX(40px); }
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-small .hero-container {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-content {
  max-width: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--backdrop-blur);
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 66, 0.3));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--midnight-black);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(255, 140, 66, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* === HERO VISUAL/CARD STYLES === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--backdrop-blur);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
  max-width: 400px;
  text-align: center;
}

.hero-card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.hero-card p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-card-stats {
  display: flex;
  justify-content: space-around;
  gap: var(--space-lg);
}

.hero-card .stat {
  text-align: center;
}

.hero-card .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-card .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  z-index: 3;
}

.scroll-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-10px);
  }
  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* === SECTION STYLES === */
section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.section-badge {
  display: inline-block;
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border);
  backdrop-filter: var(--backdrop-blur);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--midnight-black);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

/* === BUTTON STYLES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn > span {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--savanna-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.btn-secondary {
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  border: 1px solid var(--border);
  backdrop-filter: var(--backdrop-blur);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 140, 66, 0.15);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* === STATS SECTION === */
.stats-section {
  background: var(--savanna-white);
  padding: var(--space-3xl) 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 140, 66, 0.05);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 140, 66, 0.08);
}

.stat-item .stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.stat-item .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.stat-item .stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* === FEATURES SECTION === */
.features-section {
  background: var(--background);
  position: relative;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--acacia-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  margin-bottom: var(--space-lg);
}

.feature-icon .icon-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.2));
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.feature-highlight {
  display: inline-block;
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* === PROCESS SECTION === */
.process-section {
  background: var(--savanna-white);
  position: relative;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.process-grid {
  display: grid;
  
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.process-step {
  text-align: center;
  position: relative;
  
  padding: var(--space-xl);
  background: rgba(255, 140, 66, 0.03);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--savanna-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.step-icon {
  font-size: 2.5rem;
  margin: var(--space-lg) 0 var(--space-md);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: var(--space-md);
}

/* === IMPACT SECTION === */
.impact-section,
.global-impact-section {
  background: var(--background);
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.impact-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.impact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.impact-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === LARGE IMPACT STATS === */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
}

.impact-stat-large {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--savanna-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.impact-stat-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.impact-icon-large {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.impact-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.impact-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.impact-stat-large p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === SUCCESS STORIES === */
.success-stories {
  background: rgba(255, 140, 66, 0.03);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
}

.success-stories h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.stories-grid {
  display: grid;
  gap: var(--space-lg);
}

.story-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--savanna-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.story-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.story-icon {
  font-size: 2rem;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 66, 0.3));
}

.story-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.story-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* === CASE STUDY SECTION === */
.case-study-section {
  background: var(--savanna-white);
}

.case-study-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.case-study-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: var(--space-xl);
}

.image-placeholder {
  background: linear-gradient(135deg, var(--accent-light), var(--acacia-gold));
  padding: var(--space-4xl) var(--space-2xl);
  text-align: center;
  color: var(--savanna-white);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.placeholder-content {
  color: var(--savanna-white);
}

.image-placeholder h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.image-placeholder p {
  opacity: 0.9;
  line-height: 1.6;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.metric {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 140, 66, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.metric-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.case-study-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.challenge-section,
.solution-section,
.results-section {
  padding: var(--space-xl);
  background: rgba(255, 140, 66, 0.02);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.section-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.case-study-details h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.case-study-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.challenge-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.challenge-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--savanna-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.stat-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 66, 0.2));
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.feature-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* === TECHNOLOGY SECTION === */
.technology-section {
  background: var(--background);
}

.technology-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.tech-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-4xl);
  padding: var(--space-2xl);
  background: var(--savanna-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.tech-step {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 140, 66, 0.03);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  min-width: 150px;
  transition: all 0.3s ease;
}

.tech-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tech-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.tech-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.tech-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tech-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

.tech-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.tech-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.tech-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.tech-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.tech-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tech-feature {
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* === STORY SECTION === */
.story-section {
  background: var(--savanna-white);
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.story-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.story-text {
  max-width: none;
}

.story-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.story-stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.story-stat {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 140, 66, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.story-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.story-stat .stat-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 66, 0.3));
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.story-stat .stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.story-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-image {
  width: 100%;
  max-width: 500px;
}

/* === VALUES SECTION === */
.values-section {
  background: var(--background);
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.value-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  margin-bottom: var(--space-lg);
}

.value-icon .icon-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.value-highlight {
  display: inline-block;
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* === TEAM SECTION === */
.team-section {
  background: var(--savanna-white);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.team-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-avatar {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.team-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.expertise-tag {
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* === RECOGNITION SECTION === */
.recognition-section {
  background: var(--background);
}

.recognition-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.recognition-item {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.recognition-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.recognition-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.recognition-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.recognition-org {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.recognition-year {
  display: inline-block;
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* === INTRODUCTION SECTION === */
.intro-section {
  background: var(--savanna-white);
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.intro-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.intro-visual {
  display: flex;
  justify-content: center;
}

.intro-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.intro-stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.intro-stat {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 140, 66, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.intro-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* === INVOLVEMENT SECTION === */
.involvement-section {
  background: var(--background);
}

.involvement-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.involvement-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.involvement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.involvement-icon {
  margin-bottom: var(--space-lg);
}

.card-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.feature-icon {
  color: var(--accent);
  font-weight: 700;
}

/* === PARTNERSHIP SECTION === */
.partnership-section {
  background: var(--savanna-white);
}

.partnership-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.partnership-card {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.partnership-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.partnership-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.partnership-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.partnership-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.partnership-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.partnership-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.benefit-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 66, 0.2));
}

/* === COMMUNITY IMPACT SECTION === */
.community-impact-section {
  background: var(--background);
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
}

.community-stat {
  background: var(--savanna-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.community-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.stat-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon-large {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.stat-number-large {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.stat-info p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.community-testimonials {
  background: rgba(255, 140, 66, 0.03);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
}

.community-testimonials h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--savanna-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.author-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === CONTACT CTA SECTION === */
.contact-cta-section {
  background: var(--savanna-white);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.contact-content {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.contact-card {
  background: rgba(255, 140, 66, 0.03);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.contact-footer {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 140, 66, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.contact-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--accent-light), var(--acacia-gold));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  color: var(--savanna-white);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  backdrop-filter: var(--backdrop-blur);
}

.cta-section .btn-primary:hover {
  background: var(--savanna-white);
  transform: translateY(-2px);
}

.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--savanna-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: var(--backdrop-blur);
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* === FOOTER STYLES === */
.footer {
  background: var(--midnight-black);
  color: var(--savanna-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-4xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer-stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-stats span {
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.footer-links {
  display: flex;
  gap: var(--space-2xl);
}

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--savanna-white);
  margin-bottom: var(--space-md);
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-light);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  gap: var(--space-md);
}

.footer-badges .badge {
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 140, 66, 0.2);
}

/* === ANIMATION CLASSES === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeLeft 0.8s ease forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeRight 0.8s ease forwards;
}

.fade-up[data-delay="0"] { animation-delay: 0s; }
.fade-up[data-delay="100"] { animation-delay: 0.1s; }
.fade-up[data-delay="200"] { animation-delay: 0.2s; }
.fade-up[data-delay="300"] { animation-delay: 0.3s; }
.fade-up[data-delay="400"] { animation-delay: 0.4s; }
.fade-up[data-delay="500"] { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .hero-container,
  .case-study-content,
  .story-content-grid,
  .intro-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .community-stat {
    flex-direction: column;
    text-align: center;
  }

  .tech-pipeline {
    flex-direction: column;
    gap: var(--space-md);
  }

  .tech-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }

  .header-container {
    padding: var(--space-md) var(--space-lg);
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 60px;
    min-height: 80vh;
  }

  .hero-small {
    min-height: 60vh;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }

  .btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
  }

  .features-grid,
  .involvement-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: var(--space-md) 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-card-stats,
  .story-stats,
  .footer-stats {
    justify-content: center;
  }

  .challenge-stats {
    flex-direction: column;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.25rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --space-4xl: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .case-study-metrics {
    grid-template-columns: 1fr;
  }

  .tech-details-grid {
    grid-template-columns: 1fr;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.p-0 { padding: 0 !important; }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

/* === ACCESSIBILITY === */
@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;
  }
  
  .fade-up,
  .fade-left,
  .fade-right {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(0, 0, 0, 0.3);
    --border-light: rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cta-section,
  .scroll-indicator {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  section {
    padding: 2rem 0;
  }
}