/* Our Impact Page Styles */

/* ================================
   IMPACT HERO SECTION
   ================================ */

.impact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 3rem 6rem 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .impact-hero {
    padding: 10rem 5rem 6rem 5rem;
  }
}

@media (min-width: 1024px) {
  .impact-hero {
    padding: 10rem 8rem 6rem 8rem;
  }
}

.impact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  animation: backgroundPulse 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

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

.impact-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(139, 92, 246, 0.3);
}

@media (min-width: 768px) {
  .impact-hero-title {
    font-size: 4.5rem;
  }
}

.impact-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .impact-hero-subtitle {
    font-size: 1.5rem;
  }
}

/* ================================
   METRICS SECTION
   ================================ */

.metrics-section {
  padding: 6rem 3rem;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  position: relative;
}

@media (min-width: 768px) {
  .metrics-section {
    padding: 8rem 5rem;
  }
}

.metrics-container {
  max-width: 1400px;
  margin: 0 auto;
}

.metrics-header {
  text-align: center;
  margin-bottom: 3rem;
}

.metrics-header-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .metrics-header-text {
    font-size: 3rem;
  }
}

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

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

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

.metric-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

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

.metric-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .metric-number {
    font-size: 4rem;
  }
}

.metric-label {
  font-size: 1.125rem;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.4;
}

/* ================================
   CONTENT SECTIONS
   ================================ */

.content-section {
  padding: 6rem 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .content-section {
    padding: 8rem 5rem;
  }
}

.content-section.dark {
  background: linear-gradient(to bottom, #1e293b, #0f172a);
}

.content-section.light {
  background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #a78bfa;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 2rem;
  }
}

.section-subtitle:first-of-type {
  margin-top: 0;
}

/* ================================
   FEATURE BOX
   ================================ */

.feature-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .feature-box {
    padding: 4rem 3rem;
  }
}

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

.feature-item {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.feature-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-item {
    font-size: 1.25rem;
  }
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: #8b5cf6;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* ================================
   DESCRIPTION TEXT
   ================================ */

.description-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .description-text {
    font-size: 1.25rem;
  }
}

/* ================================
   INFO LIST
   ================================ */

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

.info-item {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  padding-left: 0;
}

@media (min-width: 768px) {
  .info-item {
    font-size: 1.25rem;
  }
}

.info-icon {
  width: 24px;
  height: 24px;
  color: #8b5cf6;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* ================================
   STATS CARDS
   ================================ */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(124, 58, 237, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-left: 4px solid #8b5cf6;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateX(8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .stat-description {
    font-size: 1.25rem;
  }
}

.stat-description strong {
  color: #ffffff;
  font-weight: 600;
}

/* ================================
   HIGHLIGHT BOX
   ================================ */

.highlight-box {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .highlight-box {
    padding: 2.5rem;
  }
}
