.page-home .hero-copy h1 {
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 52%, #bfdbfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .hero-copy .lead {
  color: rgba(226, 232, 240, 0.88);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 62.4375rem;
  background: rgba(255, 255, 255, 0.14);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(0.5rem);
}

.trust-pill strong {
  position: relative;
}

.trust-pill strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(110, 231, 183, 0.9),
    rgba(255, 255, 255, 0)
  );
}

.page-home .trust-pill,
.page-home .trust-pill span,
.page-home .trust-pill strong {
  color: #eff6ff;
}

.home-stats,
.home-programs,
.home-faq {
  background: var(--color-surface);
}

.home-trust {
  background: linear-gradient(180deg, #f3faf1 0%, #e9f4e7 100%);
}

.home-testimonials .testimonial-card {
  background: rgba(238, 244, 234, 0.96);
}

.home-story .story-quote {
  background: linear-gradient(
    135deg,
    rgba(171, 122, 69, 0.12),
    rgba(238, 244, 234, 0.72)
  );
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(238, 244, 234, 0.96);
  box-shadow: var(--shadow-sm);
  border: 0.0625rem solid rgba(79, 143, 97, 0.18);
}

.stat-card strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--color-primary);
}

.stat-card span {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 0.4rem;
}

@media (max-width: 67.5rem) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) {
  .page-home .hero-copy {
    padding: 0.2rem 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .page-home .hero-copy .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #ecfdf5;
  }

  .page-home .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.95rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .page-home .hero-copy .lead {
    max-width: none;
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.88);
  }

  .trust-strip {
    display: none;
  }

  .stat-grid {
    gap: 0.75rem;
  }

  .stat-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
  }

  .stat-card strong {
    grid-row: 1 / 3;
    font-size: 1.6rem;
  }

  .stat-card span {
    margin-top: 0;
    font-size: 0.9rem;
  }

  .stat-card p {
    grid-column: 2;
    margin-bottom: 0;
    font-size: 0.83rem;
    line-height: 1.4;
  }
}
