/* ============================================
   PROGRAM PAGE STYLES (v3)
   ============================================ */

/* Page hero handled in styles.css */

/* --- Right Fit / Checklist --- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
}

.check-icon--muted {
  background: var(--warm-100);
  border: 1px solid var(--warm-200);
  color: var(--text-muted);
  font-size: 0.7rem;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-700);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1.5px solid var(--teal-100);
  margin-bottom: 14px;
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step__timeline {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-700);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
}

/* --- MAP Section --- */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-section__text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Pricing --- */
.pricing p {
  max-width: 100%;
}

.pricing__lead {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text-heading);
  line-height: 1;
}

.pricing__per {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}

.pricing__card--best {
  border: 1px solid var(--border-card);
  overflow: hidden;
}

.pricing__card--best::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
}

.pricing__card h3 {
  margin-bottom: 0.75rem;
}

.pricing__card-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-heading);
  line-height: 1.2;
  max-width: 100%;
}

.pricing__card-amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing__card p {
  max-width: 100%;
  font-size: 0.92rem;
}

.pricing__card-total {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--teal-700) !important;
}

.pricing__whats-included {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing__checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  text-align: left;
  max-width: 460px;
  margin: 0 auto;
}

.pricing__checklist li {
  font-size: 0.95rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing__checklist .icon-container {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
}

.pricing__checklist .icon-container svg {
  width: 16px;
  height: 16px;
}

.pricing__footer {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Referral --- */
.referral__inner {
  position: relative;
  padding: 2.5rem 0;
  padding-left: 2rem;
}

.referral__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal-500), var(--teal-400));
  border-radius: 2px;
}

/* --- CTA Final (reuse from home) --- */
.cta-final {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

.cta-final h2 {
  margin-bottom: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .tracks-detail__primary {
    grid-template-columns: 1fr;
  }

  .tracks-detail__secondary {
    grid-template-columns: 1fr;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

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

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
