.program-journey-section {
  position: relative;
  z-index: 3;
  padding: 70px 0 40px;
  background: #f7f8fc;
}

.program-journey__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.program-journey__header h2 {
  color: #1b2559;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.35;
}

.program-journey__header p {
  color: #6b7280;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  margin: 0;
}

.program-journey__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.program-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 22px 24px;
  box-shadow: 0 10px 30px rgba(27, 37, 89, 0.08);
  border-top: 5px solid #a670f2;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}

.program-card--purple { border-top-color: #a670f2; }
.program-card--gold { border-top-color: #e8b923; }
.program-card--navy { border-top-color: #2f3a8f; }

.program-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.program-card--purple .program-card__badge {
  background: rgba(166, 112, 242, 0.12);
  color: #7b46c7;
}

.program-card--gold .program-card__badge {
  background: rgba(232, 185, 35, 0.16);
  color: #b8860b;
}

.program-card--navy .program-card__badge {
  background: rgba(47, 58, 143, 0.1);
  color: #2f3a8f;
}

.program-card h3 {
  color: #1b2559;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.program-card__desc {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 16px;
  min-height: 4.8em;
}

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.program-card__tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #f9fafb;
  color: #475467;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.program-card__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: start;
  flex: 1;
}

.program-card__features li {
  position: relative;
  padding-inline-start: 28px;
  margin-bottom: 10px;
  color: #344054;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: start;
}

.program-card__features li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #12b76a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.2 11.3 2.9 8l1.1-1.1 2.2 2.2 5-5L12.3 5z'/%3E%3C/svg%3E") center/12px no-repeat;
}

.program-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.program-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.program-card__btn--primary {
  color: #fff;
  border: none;
}

.program-card--purple .program-card__btn--primary { background: #a670f2; }
.program-card--gold .program-card__btn--primary { background: #e8b923; color: #1a1408; }
.program-card--navy .program-card__btn--primary { background: #2f3a8f; }

.program-card__btn--primary:hover {
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
  filter: brightness(0.95);
}

.program-card--gold .program-card__btn--primary:hover {
  color: #1a1408;
}

.program-card__btn--secondary {
  background: #fff;
  color: #a670f2;
  border: 1.5px solid #a670f2;
}

.program-card__btn--secondary:hover {
  background: rgba(166, 112, 242, 0.06);
  color: #8d5dd9;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .program-journey__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .program-card__desc {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .program-journey-section {
    padding: 48px 0 24px;
  }

  .program-card {
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .program-card h3 {
    font-size: 1.25rem;
  }
}
