.programs-main {
  overflow-x: hidden;
}
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-24) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5,5,5,0.9) 0%, rgba(18,18,18,0.7) 50%, rgba(157,0,255,0.2) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 800px;
}
.hero-content h1 {
  font-size: var(--text-5xl);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  margin-bottom: var(--space-6);
}
.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-100);
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  margin-bottom: var(--space-8);
}
.showcase-section {
  padding: var(--space-16) 0;
  background-color: var(--bg-base);
}
.showcase-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
}
@media (min-width: 992px) {
  .showcase-row {
    flex-direction: row;
    justify-content: space-between;
  }
  .showcase-row.reverse {
    flex-direction: row-reverse;
  }
}
.showcase-row:last-child {
  margin-bottom: 0;
}
.showcase-image {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
}
.showcase-image img {
  border-radius: inherit;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.neon-accent,
.amber-accent,
.emerald-accent {
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: -15px;
  right: -15px;
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.5;
  filter: blur(20px);
  transition: opacity var(--transition-slow);
}
.showcase-image:hover .neon-accent,
.showcase-image:hover .amber-accent,
.showcase-image:hover .emerald-accent {
  opacity: 0.8;
}
.neon-accent { background: var(--primary); }
.amber-accent { background: var(--warning); }
.emerald-accent { background: var(--secondary); }
.showcase-content {
  flex: 1;
  max-width: 500px;
}
.showcase-content h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}
.showcase-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}
.showcase-row.reverse .showcase-content h2::after {
  background-color: var(--warning);
}
.showcase-row:nth-child(4) .showcase-content h2::after {
  background-color: var(--secondary);
}
.features-section {
  padding: var(--space-16) 0;
  background-color: var(--bg-surface);
}
@media (max-width: 768px) {
  .features-section .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bg-surface-alt);
}
.feature-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: var(--primary);
}
.feature-link {
  margin-top: auto;
  display: inline-block;
  padding-top: var(--space-4);
  font-weight: 700;
  color: var(--accent);
}
.feature-link:hover {
  color: var(--primary);
}
.cta-section {
  padding: var(--space-24) 0;
  background: linear-gradient(to top, var(--bg-base), var(--bg-surface-alt));
  position: relative;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: var(--text-5xl);
  background: -webkit-linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}