/* =========================================
   PROGRAM HERO
========================================= */

.program-hero {
  background: var(--navy);

  color: var(--white);

  padding: 6rem 2rem 5rem;

  position: relative;
  overflow: hidden;
}

.program-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  border: 90px solid rgba(245, 166, 35, 0.06);

  top: -220px;
  right: -180px;
}

.program-hero::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  border: 70px solid rgba(11, 122, 99, 0.08);

  bottom: -180px;
  left: -140px;
}

.program-hero-inner {
  max-width: 1100px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-block;

  background: rgba(245, 166, 35, 0.12);

  border: 1px solid rgba(245, 166, 35, 0.3);

  color: var(--gold);

  padding: 0.45rem 1rem;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 1.5rem;

  text-transform: uppercase;
}

.program-hero h1 {
  font-family: "Lora", serif;

  font-size: 4rem;

  line-height: 1.1;

  max-width: 820px;

  margin-bottom: 1rem;
}

.program-hero h1 em {
  color: var(--gold);
}

.program-hero p {
  max-width: 700px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;

  font-size: 1.05rem;

  margin-bottom: 2rem;
}

.program-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   STATS
========================================= */

.program-stats {
  background: var(--white);

  border-bottom: 1px solid var(--border);

  padding: 2rem;
}

.program-stats-inner {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1rem;
}

.program-stat {
  text-align: center;
}

.program-stat h3 {
  font-size: 2rem;

  color: var(--navy);

  font-weight: 800;
}

.program-stat p {
  color: var(--text-muted);

  margin-top: 0.4rem;
}

/* =========================================
   FEATURED PROGRAM
========================================= */

.featured-program {
  background: var(--cream);

  padding: 6rem 2rem;
}

.featured-program-inner {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 3rem;

  align-items: center;
}

.featured-program-image img {
  width: 100%;

  min-height: 520px;

  object-fit: cover;

  border-radius: 24px;
}

.featured-program-content {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 24px;

  padding: 2rem;
}

.featured-program-content h2 {
  font-family: "Lora", serif;

  font-size: 2.5rem;

  color: var(--navy);

  margin-bottom: 1rem;
}

.featured-program-content p {
  color: var(--text-muted);

  line-height: 1.8;
}

.featured-points {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin-top: 2rem;
}

.featured-point {
  display: flex;
  gap: 0.8rem;
}

.featured-point span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--teal);

  margin-top: 0.45rem;

  flex-shrink: 0;
}

/* =========================================
   PROGRAM GRID
========================================= */

.program-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

.program-card {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 2rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.program-icon {
  width: 60px;
  height: 60px;

  border-radius: 16px;

  background: var(--gold-light);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;

  margin-bottom: 1.25rem;
}

.program-card h3 {
  color: var(--navy);

  margin-bottom: 0.75rem;

  font-size: 1.1rem;
}

.program-card p {
  color: var(--text-muted);

  line-height: 1.75;
}

/* =========================================
   JOURNEY
========================================= */

.journey-section {
  background: var(--cream);
}

.journey-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

  margin-top: 2rem;
}

.journey-item {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 2rem;
}

.journey-number {
  font-size: 2.5rem;

  font-weight: 800;

  color: rgba(245, 166, 35, 0.18);

  margin-bottom: 1rem;
}

.journey-item h3 {
  color: var(--navy);

  margin-bottom: 0.75rem;
}

.journey-item p {
  color: var(--text-muted);

  line-height: 1.7;
}

/* =========================================
   CTA
========================================= */

.program-cta {
  background: var(--navy);

  padding: 6rem 2rem;
}

.program-cta-box {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.program-cta-box h2 {
  font-family: "Lora", serif;

  font-size: 2.8rem;

  color: var(--white);

  margin-bottom: 1rem;
}

.program-cta-box p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  margin-bottom: 2rem;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .program-hero h1 {
    font-size: 2.6rem;
  }

  .program-stats-inner,
  .featured-program-inner,
  .program-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .featured-program-image img {
    min-height: 320px;
  }
}
