/* ============================================
   ERAVEND - Global Styles
   Design System: Modern, Trustworthy, Smart Sustainability
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Primary Colors - Eravend Blue (from logo) */
  --primary-500: #0052CC;
  --primary-600: #0047B3;
  --primary-700: #003D99;
  --primary-100: #E6F0FF;
  --primary-50: #F0F6FF;
  
  /* Secondary Colors - Lighter Blue for accents */
  --secondary-500: #2684FF;
  --secondary-600: #0065FF;
  --secondary-700: #0052CC;
  --secondary-100: #DEEBFF;
  --secondary-50: #F4F8FF;
  
  /* Accent Colors - Complementary Orange for CTAs */
  --accent-500: #FF6B35;
  --accent-600: #E85A2A;
  --accent-700: #D14920;
  
  /* Neutral Colors */
  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50: #f9fafb;
  --white: #ffffff;
  
  /* Success/Error States */
  --success: #22c55e;
  --error: #ef4444;
  --warning: #eab308;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-primary);
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Container */
  --container-max: 1280px;
  --container-padding: var(--space-4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--neutral-700);
  background-color: var(--white);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: var(--leading-tight);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
}

p {
  margin-bottom: var(--space-4);
}

.lead {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  line-height: var(--leading-relaxed);
}

@media (min-width: 768px) {
  .lead { font-size: var(--text-xl); }
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

/* Section Spacing */
.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header .lead {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-500);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: var(--accent-500);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-500);
  color: var(--primary-500);
}

.btn-outline:hover {
  background-color: var(--primary-500);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-600);
}

.btn-white:hover {
  background-color: var(--neutral-100);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--primary-600);
  font-size: var(--text-2xl);
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary-600);
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-img-footer {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav-link {
  padding: var(--space-2) var(--space-4);
  font-weight: 500;
  color: var(--neutral-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-link.active {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--neutral-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-700);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile-link {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-200);
}

.nav-mobile-link:hover {
  color: var(--primary-600);
}

/* Hero Section */
.hero {
  padding-top: calc(72px + var(--space-16));
  padding-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(72px + var(--space-20));
    padding-bottom: var(--space-20);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  margin-bottom: var(--space-6);
}

.hero .lead {
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--neutral-200);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-600);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  margin-top: var(--space-1);
}

/* Feature Grid */
.features-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neutral-200);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-8) + 8px);
  width: 16px;
  height: 16px;
  background: var(--primary-500);
  border-radius: var(--radius-full);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.timeline-item.completed .timeline-dot {
  background: var(--success);
}

.timeline-item.current .timeline-dot {
  background: var(--accent-500);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: var(--space-2);
}

.timeline-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  min-height: 100px;
  border: 1px dashed var(--neutral-300);
}

.partner-logo img {
  max-height: 60px;
  object-fit: contain;
}

.partner-logo span {
  font-weight: 500;
  color: var(--neutral-500);
  text-align: center;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  margin-bottom: var(--space-4);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--neutral-400);
  max-width: 300px;
}

.footer-nav h4 {
  color: var(--white);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.footer-nav a {
  display: block;
  padding: var(--space-2) 0;
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--neutral-400);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--neutral-800);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-800);
  border-radius: var(--radius-full);
  color: var(--neutral-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-500);
  color: var(--white);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--neutral-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

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

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  border-bottom: 2px solid var(--neutral-200);
  padding-bottom: var(--space-2);
}

.tab-btn {
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  color: var(--neutral-600);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.tab-btn.active {
  color: var(--primary-600);
  background: var(--primary-100);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* FAQ Accordion */
.accordion {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--neutral-200);
}

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

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: left;
  background: var(--white);
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: var(--neutral-50);
}

.accordion-header.active {
  background: var(--primary-50);
  color: var(--primary-600);
}

.accordion-icon {
  font-size: var(--text-xl);
  transition: transform var(--transition-fast);
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  color: var(--neutral-600);
  line-height: var(--leading-relaxed);
}

.accordion-content.active {
  display: block;
}

/* Team Cards */
.team-card {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-600);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.team-name {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}

.team-role {
  font-size: var(--text-sm);
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: var(--leading-relaxed);
}

/* Solutions Cards */
.solution-card {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: var(--white);
  transition: all var(--transition-base);
}

.solution-card:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-xl);
}

.solution-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--white);
  font-size: var(--text-3xl);
}

.solution-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.solution-card ul {
  list-style: none;
  margin-bottom: var(--space-6);
}

.solution-card li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--neutral-600);
}

.solution-card li::before {
  content: '✓';
  color: var(--primary-500);
  font-weight: 700;
}

/* Services List */
.service-item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
}

.service-item:hover {
  box-shadow: var(--shadow-lg);
}

.service-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-lg);
}

.service-content h4 {
  margin-bottom: var(--space-2);
}

.service-content p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Sustainability Section */
.sdg-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-100);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-700);
}

.impact-card {
  background: linear-gradient(135deg, var(--primary-50), var(--white));
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}

.impact-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.impact-card h4 {
  margin-bottom: var(--space-2);
}

/* Page Headers */
.page-header {
  padding-top: calc(72px + var(--space-12));
  padding-bottom: var(--space-12);
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-4);
}

.page-header .lead {
  max-width: 600px;
  margin: 0 auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-600); }
.text-secondary { color: var(--secondary-600); }
.text-accent { color: var(--accent-500); }
.text-muted { color: var(--neutral-500); }

.bg-light { background-color: var(--neutral-50); }
.bg-white { background-color: var(--white); }
.bg-primary-light { background-color: var(--primary-50); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

/* Print Styles */
@media print {
  .header,
  .footer,
  .nav-mobile {
    display: none !important;
  }
  
  .hero {
    padding-top: var(--space-8);
  }
  
  .section {
    padding: var(--space-8) 0;
  }
}
