/* ═══════════════════════════════════════════════════════
   REPORT PAGE - Annual Impact Report
   Matching MindBridge Kenya Theme
   ═══════════════════════════════════════════════════════ */

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

/* Report Hero */
.report-hero {
  padding: 100px 5% 80px;
  background: linear-gradient(135deg, #1e0540 0%, #3b0764 40%, #5b21b6 75%, #7c3aed 100%);
  text-align: center;
  position: relative;
}

.hero-badge-minimal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-300);
  margin-bottom: 24px;
}

.report-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #c4b5fd, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.report-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}

.report-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple-600);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Report Sections */
.report-section {
  padding: 80px 5%;
  background: var(--white);
}

/* Summary Section */
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.summary-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  margin: 16px 0 20px;
  letter-spacing: -0.5px;
}

.summary-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.summary-stats {
  display: grid;
  gap: 24px;
}

.stat-card-large {
  background: var(--purple-100);
  padding: 32px;
  border-radius: 28px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-card-large:hover {
  transform: translateY(-4px);
}

.stat-card-large i {
  font-size: 36px;
  color: var(--purple-600);
  margin-bottom: 16px;
}

.stat-card-large .stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--purple-600);
  line-height: 1.2;
}

.stat-card-large .stat-label {
  font-size: 14px;
  color: var(--text-mid);
}

/* Findings Grid */
.section-header-centered {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-centered .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.section-header-centered h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header-centered p {
  font-size: 16px;
  color: var(--text-mid);
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.finding-card {
  background: var(--purple-100);
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s;
}

.finding-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.finding-icon i {
  font-size: 40px;
  color: var(--purple-600);
  margin-bottom: 20px;
}

.finding-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--purple-600);
  line-height: 1;
  margin-bottom: 12px;
}

.finding-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.finding-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Schools Section */
.schools-section {
  background: var(--purple-100);
}

.schools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.schools-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  margin: 16px 0 20px;
}

.schools-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.schools-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.schools-stats > div {
  text-align: center;
}

.stat-number-small {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--purple-600);
}

.schools-stats span:last-child {
  font-size: 13px;
  color: var(--text-mid);
}

.schools-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.image-caption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Goals Section */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.goal-card {
  background: var(--purple-100);
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s;
}

.goal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.goal-icon i {
  font-size: 40px;
  color: var(--purple-600);
  margin-bottom: 20px;
}

.goal-number {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--purple-600);
  line-height: 1;
  margin-bottom: 12px;
}

.goal-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.goal-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: white;
}

.testimonial-card-large {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card-large i {
  font-size: 48px;
  opacity: 0.5;
  margin-bottom: 24px;
}

.testimonial-card-large p {
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 13px;
  opacity: 0.8;
}

/* Financial Section */
.financial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.financial-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  margin: 16px 0 20px;
}

.financial-content p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.financial-breakdown {
  margin-bottom: 24px;
}

.breakdown-item {
  margin-bottom: 20px;
}

.breakdown-item span:first-child {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 500;
}

.percentage {
  float: right;
  font-weight: 600;
  color: var(--purple-600);
}

.progress-bar {
  height: 8px;
  background: var(--purple-100);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--purple-600);
  border-radius: 4px;
}

.financial-note {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.financial-impact {
  display: grid;
  gap: 24px;
}

.impact-cost {
  background: var(--purple-100);
  padding: 32px;
  border-radius: 28px;
  text-align: center;
}

.cost-label {
  display: block;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.cost-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--purple-600);
  line-height: 1;
  margin-bottom: 8px;
}

.cost-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Download CTA */
.report-download-cta {
  padding: 80px 5%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
}

.download-cta-content {
  max-width: 550px;
  margin: 0 auto;
}

.download-cta-content i {
  font-size: 56px;
  color: var(--purple-400);
  margin-bottom: 24px;
}

.download-cta-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: white;
  margin-bottom: 16px;
}

.download-cta-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.btn-primary.large {
  padding: 16px 36px;
  font-size: 16px;
}

.download-note {
  font-size: 12px;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .findings-grid,
  .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .summary-grid,
  .schools-grid,
  .financial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .report-hero {
    padding: 80px 5% 60px;
  }
  
  .report-title {
    font-size: 36px;
  }
  
  .findings-grid,
  .goals-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-stats {
    grid-template-columns: 1fr;
  }
  
  .schools-stats {
    justify-content: center;
  }
  
  .financial-grid {
    gap: 32px;
  }
  
  .testimonial-card-large p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .report-title {
    font-size: 28px;
  }
  
  .report-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .report-actions .btn-primary,
  .report-actions .btn-secondary {
    justify-content: center;
  }
  
  .finding-number,
  .goal-number {
    font-size: 36px;
  }
  
  .cost-value {
    font-size: 36px;
  }
}