/* ===== PAGE-SPECIFIC: HOMEPAGE ===== */

/* =============================================
   HERO v2 — Cinematic Immersive Design
   ============================================= */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background carousel */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Carousel slides — crossfade + slow zoom */
.hero-v2-slide {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 30s ease-in-out infinite, heroZoom 30s ease-in-out infinite;
  will-change: opacity, transform;
}

/* 5 slides, 6s each, 30s total cycle
   Each: fade-in 3.3% (1s), hold 13.4% (4s), fade-out 3.3% (1s) */
.hero-v2-slide-1 {
  background-image: url('../images/gallery/gallery-06.jpg');
  animation-delay: 0s;
}
.hero-v2-slide-2 {
  background-image: url('../images/gallery/gallery-03.jpg');
  animation-delay: 6s;
}
.hero-v2-slide-3 {
  background-image: url('../images/gallery/gallery-08.jpg');
  background-position: center 40%;
  animation-delay: 12s;
}
.hero-v2-slide-4 {
  background-image: url('../images/gallery/gallery-05.jpg');
  animation-delay: 18s;
}
.hero-v2-slide-5 {
  background-image: url('../images/agapeBG/agapePARTNER.webp');
  background-position: center 30%;
  animation-delay: 24s;
}

@keyframes heroFade {
  0%      { opacity: 0; }
  3.33%   { opacity: 1; }
  20%     { opacity: 1; }
  23.33%  { opacity: 0; }
  100%    { opacity: 0; }
}
@keyframes heroZoom {
  0%      { transform: scale(1); }
  23.33%  { transform: scale(1.08); }
  100%    { transform: scale(1); }
}

/* Gradient overlay — sits above all slides */
.hero-v2-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg,
      rgba(10, 22, 42, 0.93) 0%,
      rgba(15, 34, 64, 0.86) 25%,
      rgba(26, 54, 93, 0.80) 50%,
      rgba(35, 78, 130, 0.75) 75%,
      rgba(43, 122, 120, 0.70) 100%
    );
}

/* Dot grid — topmost background layer */
.hero-v2-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-v2-slide { animation-duration: 150s; }
}

/* Floating particles */
.hero-v2-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: heroFloat linear infinite;
}
.hero-particle-1 {
  width: 6px; height: 6px;
  background: rgba(43, 122, 120, 0.4);
  top: 20%; left: 10%;
  animation-duration: 18s;
  animation-delay: 0s;
}
.hero-particle-2 {
  width: 4px; height: 4px;
  background: rgba(255, 255, 255, 0.15);
  top: 60%; left: 85%;
  animation-duration: 22s;
  animation-delay: 3s;
}
.hero-particle-3 {
  width: 8px; height: 8px;
  background: rgba(43, 122, 120, 0.25);
  top: 40%; left: 70%;
  animation-duration: 20s;
  animation-delay: 6s;
}
.hero-particle-4 {
  width: 5px; height: 5px;
  background: rgba(255, 255, 255, 0.1);
  top: 75%; left: 25%;
  animation-duration: 24s;
  animation-delay: 2s;
}
.hero-particle-5 {
  width: 3px; height: 3px;
  background: rgba(43, 122, 120, 0.35);
  top: 15%; left: 55%;
  animation-duration: 16s;
  animation-delay: 8s;
}
.hero-particle-6 {
  width: 7px; height: 7px;
  background: rgba(255, 255, 255, 0.08);
  top: 50%; left: 40%;
  animation-duration: 26s;
  animation-delay: 5s;
}
@keyframes heroFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(-200px) translateX(40px);
  }
}

/* Main content */
.hero-v2 > .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-v2-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  padding: 8rem 0 4rem;
}

/* Badge */
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.8s ease-out 0.2s both;
}
.hero-v2-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(43, 122, 120, 0.6);
  animation: heroPulse 2.5s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(43, 122, 120, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 16px rgba(43, 122, 120, 0.8); }
}

/* Title */
.hero-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  animation: heroFadeUp 0.8s ease-out 0.4s both;
}
.hero-v2-accent {
  background: linear-gradient(135deg, var(--gold) 0%, #5cbfba 50%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeUp 0.8s ease-out 0.5s both, heroShimmer 6s ease-in-out infinite 1.5s;
}
@keyframes heroShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Description */
.hero-v2-desc {
  max-width: 560px;
  margin: 0 auto 2.75rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  animation: heroFadeUp 0.8s ease-out 0.6s both;
}

/* Action buttons */
.hero-v2-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease-out 0.8s both;
}
.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-v2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Scroll indicator */
.hero-v2-scroll {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  animation: heroFadeUp 0.8s ease-out 1.2s both;
}
.hero-v2-scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}
.hero-v2-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: heroScrollLine 2s ease-in-out infinite;
}
@keyframes heroScrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* Fade-up animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats bar */
.hero-v2-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(10, 22, 42, 0.45);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-v2-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 2rem 0;
}
.hero-v2-stat {
  text-align: center;
  padding: 0.25rem 1rem;
}
.hero-v2-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-v2-stat-plus {
  color: var(--gold);
  font-weight: 700;
}
.hero-v2-stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-v2-stat-sep {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.service-card-hp {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card-hp:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.service-icon-hp {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-card-hp:hover .service-icon-hp {
  background: var(--gold);
  color: var(--white);
}
.service-card-hp h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card-hp p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-card-hp .learn-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  align-self: flex-start;
}
.service-card-hp .learn-more:hover {
  background: var(--navy);
  color: var(--white);
}
.services-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  font-size: 0.92rem;
  color: var(--gray-700);
}
.services-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Courses Dark Section */
.courses-section {
  background: var(--navy);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.courses-section .section-eyebrow { color: var(--gold-light); }
.courses-section .section-title { color: var(--white); }
.courses-section .section-desc { color: rgba(255,255,255,0.7); }
.courses-section .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.courses-section .btn-primary:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.course-card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.course-card-dark:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.course-card-top-dark {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex: 1;
}
.course-id-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.course-card-dark h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.course-card-dark p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}
.course-card-body-dark {
  padding: 1.25rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.course-meta-dark {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.course-meta-dark span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.course-meta-dark span::before {
  content: '\2022';
  color: var(--gold);
  opacity: 0.6;
}
/* Cohort Banner */
.courses-cohort-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(43,122,120,0.15) 0%, rgba(43,122,120,0.08) 100%);
  border: 1px solid rgba(43,122,120,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  animation: cohortGlow 3s ease-in-out infinite;
}
.courses-cohort-banner p {
  color: #fff;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}
.courses-cohort-banner strong {
  color: var(--gold-light);
  font-size: 1.1rem;
}
.courses-cohort-banner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.cohort-pulse {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(43,122,120,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(43,122,120,0); }
}
@keyframes cohortGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(43,122,120,0.1); }
  50% { box-shadow: 0 0 30px rgba(43,122,120,0.2); }
}
@media (max-width: 768px) {
  .courses-cohort-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
  }
  .cohort-pulse { display: none; }
}

.courses-footer {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Mission Section */
.mission-section {
  padding: 6rem 0;
}
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-left .section-desc {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.mission-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.mission-stat {
  text-align: center;
}
.mission-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.mission-stat-lbl {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 0.35rem;
  font-weight: 500;
}
.mission-stat-sep {
  width: 1px;
  background: var(--gray-200);
}
.mission-right {
  position: relative;
}
.bible-verse-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(43,122,120,0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45,52,54,0.25);
}
.bible-verse-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(43,122,120,0.1);
}
.bible-verse-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(43,122,120,0.06);
}
.bible-verse-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.bible-verse-cross {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
.bible-verse-cross img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bible-word {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.bible-word-def {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.bible-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.bible-ref {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.bible-deco-quote {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(43,122,120,0.07);
  line-height: 1;
  z-index: 0;
}

/* Testimonials */
.testimonials-section {
  background: var(--gray-50);
  padding: 5.5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card-hp {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.25s ease;
}
.testimonial-card-hp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.t-quote-mark {
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
}
.t-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: #E6A817;
  font-size: 1rem;
}
.t-text {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
  padding-top: 1.5rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.t-role {
  font-size: 0.76rem;
  color: var(--gray-500);
}

/* Events Section */
.events-section {
  padding: 5.5rem 0;
}
.events-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.event-card-hp {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  transition: all 0.25s ease;
  border-left: 4px solid transparent;
}
.event-card-hp:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}
.event-date-block {
  min-width: 80px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  flex-shrink: 0;
}
.event-date-block .e-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}
.event-date-block .e-day {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.15rem 0;
}
.event-date-block .e-year {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}
.event-info-hp .event-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.event-info-hp h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.event-meta-hp {
  display: flex;
  gap: 1.5rem;
}
.event-meta-hp span {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.event-action {
  flex-shrink: 0;
}

/* Agape TV Section */
.tv-section {
  padding: 5.5rem 0;
  background: var(--gray-50);
}
.tv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tv-video-embed {
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  background: var(--navy);
}
.tv-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.tv-powervision {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tv-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.tv-right .section-desc {
  max-width: 100%;
}

/* Donate Band */
.donate-band {
  background: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(43,122,120,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(43,122,120,0.05) 0%, transparent 50%);
}
.donate-band-content {
  position: relative;
  z-index: 1;
}
.donate-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.donate-band p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
.donate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.donate-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.donate-trust-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.donate-trust-item::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
}

/* === HOMEPAGE RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-layout { grid-template-columns: 1fr; gap: 3rem; }
  .tv-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-v2-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .hero-v2-stat-sep { display: none; }
}
@media (max-width: 768px) {
  .hero-v2 { min-height: 100svh; }
  .hero-v2-content { padding: 6rem 0 3rem; }
  .hero-v2-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-v2-desc { font-size: 1rem; margin-bottom: 2rem; }
  .hero-v2-scroll { margin-top: 2rem; }
  .hero-v2-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem 0; }
  .hero-v2-stat-sep { display: none; }
  .hero-v2-stat-num { font-size: 1.6rem; }
  .hero-v2-badge { font-size: 0.65rem; padding: 0.45rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .event-card-hp { grid-template-columns: auto 1fr; }
  .event-action { grid-column: 1 / -1; }
  .mission-stats-row { flex-direction: column; gap: 1.25rem; }
  .mission-stat-sep { width: 100%; height: 1px; }
  .tv-layout { grid-template-columns: 1fr; }
}
