/* home.css - Homepage specific styles */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem 10rem; /* top: clears navbar; bottom: room for scroll indicator */
  position: relative;
}

.hero-content {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #b41616;
  background: rgba(180, 22, 22, 0.1);
  border: 1px solid rgba(180, 22, 22, 0.25);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #999;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   HERO STATS STRIP
   ============================================ */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.75rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
}

.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: #b41616;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: #666;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ============================================
   SCROLL INDICATOR
   Absolutely positioned to the true bottom of
   the viewport, never overlapping hero content.
   ============================================ */
.scroll-indicator {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  z-index: 50;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  animation: scroll-bounce 2.5s ease-in-out infinite;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.scroll-indicator:hover .scroll-arrow {
  border-color: rgba(180, 22, 22, 0.5);
  color: #b41616;
  background: rgba(180, 22, 22, 0.08);
}

.scroll-text {
  font-size: 0.72rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  background: linear-gradient(180deg, rgba(180, 22, 22, 0.04) 0%, transparent 100%);
  border-top: 1px solid rgba(180, 22, 22, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 2rem;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-stat-block {
  text-align: right;
}

.problem-number {
  font-size: 5rem;
  font-weight: 900;
  color: #b41616;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.problem-number-label {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-top: 0.6rem;
  max-width: 220px;
  margin-left: auto;
}

.problem-source {
  font-size: 0.72rem;
  color: #555;
  margin-top: 0.75rem;
  font-style: italic;
}

.problem-divider {
  width: 1px;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(180, 22, 22, 0.4), transparent);
  flex-shrink: 0;
}

.problem-text-block {
  text-align: left;
}

.problem-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.problem-body {
  font-size: 0.97rem;
  color: #999;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.problem-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b41616;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.problem-link:hover {
  gap: 0.65rem;
  opacity: 0.85;
}

/* ============================================
   GAP SECTION
   ============================================ */
.gap-section {
  padding: 6rem 2rem;
  background: rgba(180, 22, 22, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gap-header {
  max-width: 620px;
  margin: 0 auto 4rem;
  text-align: center;
}

.gap-intro {
  font-size: 0.975rem;
  color: #777;
  line-height: 1.75;
  margin-top: 0.875rem;
}

.gap-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.gap-step {
  flex: 1;
  max-width: 280px;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  position: relative;
}

.gap-step--danger {
  background: rgba(180, 22, 22, 0.04);
  border-color: rgba(180, 22, 22, 0.18);
}

.gap-step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.18rem 0.45rem;
  margin-bottom: 1rem;
}

.gap-step-marker--danger {
  color: #b41616;
  background: rgba(180, 22, 22, 0.08);
  border-color: rgba(180, 22, 22, 0.2);
}

.gap-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.gap-step--danger .gap-step-title {
  color: #f08080;
}

.gap-step-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
}

.gap-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  margin-top: 3.5rem;
  color: rgba(255, 255, 255, 0.15);
}

/* Response block */
.gap-response {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border-left: 3px solid #b41616;
}

.gap-response-line {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(180, 22, 22, 0.1);
  border: 1px solid rgba(180, 22, 22, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b41616' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.gap-response-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b41616;
  margin-bottom: 0.4rem;
}

.gap-response-desc {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.7;
}

/* ============================================
   VOLUNTEER SECTION
   ============================================ */
.volunteer-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.volunteer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.volunteer-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b41616;
  margin-bottom: 0.875rem;
}

.volunteer-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.25px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.volunteer-body {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.volunteer-body:last-of-type {
  margin-bottom: 2rem;
}

.volunteer-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.volunteer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.volunteer-link:hover {
  color: #bbb;
  gap: 0.65rem;
}

/* Team cards column */
.volunteer-teams {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.volunteer-team-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}

.volunteer-team-card:last-child {
  border-bottom: none;
}

.volunteer-team-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.volunteer-team-icon {
  width: 34px;
  height: 34px;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  margin-top: 1px;
}

.volunteer-team-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.volunteer-team-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.55;
}

/* ============================================
   PILLARS SECTION
   ============================================ */
.pillars-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillars-header {
  margin-bottom: 3.5rem;
}

.pillars-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 2.5rem;
}

.pillars-header-text {
  max-width: 600px;
}

.pillars-header-desc {
  font-size: 0.975rem;
  color: #888;
  line-height: 1.75;
  margin-top: 0.75rem;
}

.pillars-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.pillars-header-link:hover {
  color: #b41616;
  border-bottom-color: #b41616;
  gap: 0.65rem;
}

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

.pillar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
}

.pillar-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b41616;
  opacity: 0.8;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.pillar-desc {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.825rem;
  color: #bbb;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}

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

.pillar-item svg {
  flex-shrink: 0;
  color: #5a9e6f;
}

/* partners single variant */
.partners-grid--single {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SECTION BASE
   ============================================ */
.home-section {
  padding: 5rem 2rem;
  position: relative;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.section-subtitle.center {
  text-align: center;
}

/* ============================================
   FEATURES TEASER SECTION
   ============================================ */
.features-section {
  padding: 6rem 2rem;
}

.features-header {
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover .feature-card-icon {
  background: rgba(180, 22, 22, 0.14);
  border-color: rgba(180, 22, 22, 0.28);
}

.feature-card-body {
  flex: 1;
  margin-bottom: 1.25rem;
}

.feature-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.feature-card-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
}

.feature-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: #b41616;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.15);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.2px;
}

.features-teaser-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.features-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.features-learn-more:hover {
  color: #b41616;
  border-bottom-color: #b41616;
  gap: 0.75rem;
}

.features-learn-more svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.features-learn-more:hover svg {
  transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS — AUTO-ROTATING CAROUSEL
   ============================================ */
.testimonials-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.testimonials-header {
  position: sticky;
  top: 100px;
}

.testimonials-header .section-title {
  margin-bottom: 0.625rem;
}

.testimonials-subhead {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track {
  position: relative;
  height: 260px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 0;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.testimonial-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.testimonial-icon {
  color: rgba(180, 22, 22, 0.5);
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: normal;
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  flex: 1;
  quotes: none;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #aaa;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  user-select: none;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #555;
  line-height: 1;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonials-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.testimonials-dot.is-active {
  background: #b41616;
  transform: scale(1.5);
}

.testimonials-dot:hover:not(.is-active) {
  background: rgba(255,255,255,0.28);
}

.testimonials-nav {
  display: flex;
  gap: 0.375rem;
}

.testimonials-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.testimonials-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: #ccc;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: 5rem 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-item {
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.partner-item span {
  color: #555;
  font-size: 1rem;
  font-weight: 600;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.partner-item:hover img {
  opacity: 1;
}

.partners-footer {
  margin-top: 2.25rem;
  text-align: center;
}

.partners-footer-text {
  font-size: 0.9rem;
  color: #666;
}

.partners-footer-link {
  color: #aaa;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1px;
  margin-left: 0.3rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.partners-footer-link:hover {
  color: #b41616;
  border-bottom-color: #b41616;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(180, 22, 22, 0.08) 0%, transparent 100%);
  padding: 6rem 2rem;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 22, 22, 0.4), transparent);
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(180, 22, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   OUR IMPACT SECTION
   ============================================ */
.impact-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2.5rem;
  margin-bottom: 3.5rem;
}

.impact-header-text {
  max-width: 600px;
}

.impact-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b41616;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.impact-header-text .section-title {
  margin-bottom: 0;
}

.impact-subhead {
  font-size: 0.975rem;
  color: #888;
  line-height: 1.75;
  margin-top: 0.75rem;
}

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

.impact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
}

.impact-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.impact-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  margin-top: 2px;
}

.impact-card-label-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.impact-card-index {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b41616;
  opacity: 0.8;
  line-height: 1;
}

.impact-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}

.impact-desc {
  font-size: 0.825rem;
  color: #777;
  line-height: 1.7;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 8rem;
    min-height: 100svh;
  }

  .hero-title {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
  }

  .hero-stats {
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-arrow {
    width: 38px;
    height: 38px;
  }

  .scroll-text {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .home-section {
    padding: 3rem 1.5rem;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .problem-stat-block {
    text-align: center;
  }

  .problem-number {
    font-size: 3.5rem;
  }

  .problem-number-label {
    margin-left: auto;
    margin-right: auto;
  }

  .problem-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 22, 22, 0.4), transparent);
    margin: 0 auto;
  }

  .problem-text-block {
    text-align: center;
  }

  .problem-heading {
    font-size: 1.3rem;
  }

  .problem-link {
    justify-content: center;
  }

  .gap-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .gap-step {
    max-width: 100%;
  }

  .gap-connector {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0;
  }

  .gap-response {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .volunteer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .volunteer-heading { font-size: 1.6rem; }

  .pillars-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillars-section {
    padding: 4rem 1.5rem;
  }

  /* Impact */
  .impact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .impact-number {
    font-size: 2rem;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-header {
    position: static;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .features-section {
    padding: 4rem 1.5rem;
  }

  .features-header {
    margin-bottom: 2.5rem;
  }

  .features-teaser-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.75rem 1.5rem;
  }

  .testimonials-track {
    min-height: 300px;
  }

  .testimonial-inner {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-quote {
    font-size: 0.925rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-item {
    height: 110px;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-title {
    font-size: 1.9rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn.large {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .impact-number {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.65rem;
  }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-teaser-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .features-teaser-grid .feature-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials-layout {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
  }
}
