
/* ═══════════════════════════════════════════════════════════════════
   PROGRAM DETAIL PAGE — Full-width Amity-inspired layout
═══════════════════════════════════════════════════════════════════ */

#page-detail,
#page-discovery,
#page-checkout { width: 100%; max-width: none; }

/* Hero split */
#page-detail .pg-hero {
  background: linear-gradient(165deg, #084530 0%, #0D5F3F 42%, #18845A 100%);
  color: var(--white);
  padding: 0 0 0;
}
#page-detail .pg-hero__inner { max-width: 1280px; margin: 0 auto; padding: 32px 24px 28px; }
.pg-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; }
.pg-breadcrumb__link {
  background: none; border: none; color: rgba(255,255,255,0.75); cursor: pointer; padding: 0;
  font-size: 13px;
}
.pg-breadcrumb__link:hover { color: #fff; }
.pg-breadcrumb__sep, .pg-breadcrumb__current { color: rgba(255,255,255,0.55); }
.pg-breadcrumb__current { color: rgba(255,255,255,0.9); font-weight: 500; }

.pg-hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start;
}
@media (min-width: 960px) {
  .pg-hero__grid { grid-template-columns: 1fr 340px; gap: 40px; }
}

#page-detail .pg-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
#page-detail .pg-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em;
}
#page-detail .pg-hero__headline {
  font-size: 17px; font-weight: 600; color: #A7F3D0; margin-bottom: 12px; line-height: 1.5;
}
#page-detail .pg-hero__intro { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 18px; }
.pg-hero__meta-row { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-bottom: 22px; }
.pg-hero__meta { font-size: 13px; color: rgba(255,255,255,0.85); }
#page-detail .pg-hero__cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
#page-detail .pg-hero__cta-row .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.45); }
#page-detail .pg-hero__cta-row .btn-ghost:hover { background: rgba(255,255,255,0.12); }

.pg-hero__stars {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
#page-detail .pg-hero__stars .stars { color: #FCD34D; font-size: 14px; letter-spacing: 1px; }
#page-detail .pg-hero__stars .rating-n { font-size: 14px; font-weight: 700; color: var(--white); }
#page-detail .pg-hero__stars .rating-ct { font-size: 13px; color: rgba(255,255,255,0.7); }
#page-detail .pg-hero__stars .rating-badge {
  margin-left: auto; font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 6px;
}

.pg-instructor-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding: 12px 14px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.pg-instructor-bar__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: var(--white);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pg-instructor-bar__name { font-size: 14px; font-weight: 600; color: var(--white); }
.pg-instructor-bar__cred { font-size: 12px; color: rgba(255,255,255,0.72); margin-top: 2px; }

.pg-hero-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.18); color: var(--gray-900);
}
.pg-hero-card__tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-100);
}
.pg-hero-card__tab {
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  border-radius: var(--radius-sm); padding: 8px 4px;
  font-size: 10px; font-weight: 600; color: var(--gray-600); cursor: pointer;
  transition: all 0.15s; line-height: 1.3;
}
.pg-hero-card__tab.is-active { border-color: var(--brand); background: var(--brand-lt); color: var(--brand); }
.pg-hero-card__pane { display: none; }
.pg-hero-card__pane.is-active { display: block; }
.pg-hero-card__badge {
  display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--brand); background: var(--brand-lt);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
}
.pg-hero-card__tier { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.pg-hero-card__price-label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.pg-hero-card__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 700; color: var(--gray-900); line-height: 1.1;
}
.pg-hero-card__note { font-size: 12px; color: var(--gray-500); margin-bottom: 16px; }
.pg-hero-card__list { list-style: none; padding: 0; margin: 0 0 18px; }
.pg-hero-card__list li { font-size: 13px; color: var(--gray-600); padding: 5px 0; }
.pg-hero-card__trust { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 12px; }

.pg-trust-strip {
  background: var(--white); border-top: 1px solid rgba(255,255,255,0.15);
  padding: 0;
}
.pg-trust-strip__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--gray-200);
}
@media (min-width: 768px) { .pg-trust-strip__inner { grid-template-columns: repeat(4, 1fr); } }
.pg-trust-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--gray-200);
}
.pg-trust-item:last-child { border-right: none; }
.pg-trust-item__n {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--gray-900);
}
.pg-trust-item__l { display: block; font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* Insights / charts band */
.pg-insights { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 32px 24px; }
.pg-insights__inner { max-width: 1280px; margin: 0 auto; }
.pg-scroll-end-spacer { height: 96px; }

.pg-scroll-block { margin-bottom: 16px; }
.pg-scroll-block:last-child { margin-bottom: 0; }
.pg-scroll-block--card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.pg-scroll-block__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 14px;
}
.pg-scroll-block__sub {
  font-size: 12px;
  color: var(--gray-500);
  margin: -8px 0 14px;
  line-height: 1.6;
}
.pg-scroll-block__note {
  font-size: 10px;
  color: var(--gray-400);
  margin: 8px 0 0;
}

.pg-insights .tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 640px) {
  .pg-insights .tools-grid { grid-template-columns: repeat(3, 1fr); }
}
.pg-insights .tool-cell {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
}
.pg-insights .tool-name { font-size: 12px; font-weight: 600; color: var(--gray-800); }
.pg-insights .tool-cat { font-size: 10px; color: var(--gray-400); margin-top: 3px; }

.pg-insights .curr-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 6px;
  overflow: hidden;
}
.pg-insights .curr-item:last-child { margin-bottom: 0; }
.pg-insights .curr-header {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background 0.2s ease;
}
.pg-insights .curr-header:hover { background: var(--gray-50); }
.pg-insights .curr-mod-name { font-size: 13px; font-weight: 600; color: var(--gray-900); line-height: 1.4; }
.pg-insights .curr-mod-meta { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.pg-insights .curr-body { background: var(--gray-50); padding: 2px 14px 12px; }
.pg-insights .curr-lesson {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pg-insights .curr-lesson:last-child { border-bottom: none; }
.pg-insights .curr-lesson-icon { font-size: 13px; color: var(--gray-300); flex-shrink: 0; margin-top: 1px; }
.pg-insights .curr-lesson-name { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

.pg-curriculum-scroll .pg-curr-phases { display: flex; flex-direction: column; gap: 8px; }
.pg-curr-phase {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.pg-curr-phase__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: none;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.pg-curr-phase__head:hover { background: var(--gray-50); }
.pg-curr-phase.is-open .pg-curr-phase__head { background: #FAFBFC; border-bottom: 1px solid var(--gray-100); }
.pg-curr-phase__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.pg-curr-phase__meta { font-size: 11px; color: var(--gray-500); margin-top: 3px; line-height: 1.5; }
.pg-curr-phase__icon,
.pg-curr-mod__icon {
  font-size: 12px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.pg-curr-phase.is-open .pg-curr-phase__icon { color: var(--brand); }

.pg-curr-animate {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.pg-curr-animate.is-open { grid-template-rows: 1fr; }
.pg-curr-animate__inner { overflow: hidden; min-height: 0; }
.pg-curr-phase > .pg-curr-animate > .pg-curr-animate__inner { padding: 10px 10px 12px; background: var(--gray-50); }

.pg-curr-mod { background: var(--white); }
.pg-curr-mod .pg-curr-animate > .pg-curr-animate__inner.curr-body { padding: 2px 14px 12px; }

.pg-curr-detail {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--gray-200);
}
.pg-curr-detail__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.pg-curr-detail__text {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.pg-curr-detail__list {
  margin: 0;
  padding-left: 16px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}
.pg-curr-detail__list li + li { margin-top: 4px; }

.pg-insights .trust-grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .pg-insights .trust-grid3 { grid-template-columns: repeat(3, 1fr); }
}
.pg-insights .trust-item {
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 16px 10px;
  border: 1px solid var(--gray-100);
}
.pg-insights .trust-icon { font-size: 22px; margin-bottom: 8px; }
.pg-insights .trust-label { font-size: 12px; font-weight: 600; color: var(--gray-900); line-height: 1.4; }
.pg-insights .trust-sub { font-size: 10px; color: var(--gray-400); margin-top: 3px; }

.pg-scroll-faq-list { margin-top: 4px; }
.pg-scroll-faq-item { border-bottom: 1px solid var(--gray-100); }
.pg-scroll-faq-item:last-child { border-bottom: none; }
.pg-scroll-faq-item .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-900);
  text-align: left;
}
.pg-scroll-faq-item .faq-icon { font-size: 16px; color: var(--gray-400); flex-shrink: 0; }
.pg-scroll-faq-item .faq-a { font-size: 12px; color: var(--gray-500); line-height: 1.7; padding-bottom: 13px; }

.pg-insights .tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .pg-insights .tiers-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
.pg-insights .tier-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pg-insights .tier-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(13, 95, 63, 0.12);
}
.pg-insights .tier-head { padding: 12px 10px; border-bottom: 1px solid var(--gray-100); text-align: center; }
.pg-insights .tier-pop-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-lt);
  border-radius: 4px;
  padding: 2px 7px;
  display: inline-block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pg-insights .tier-name { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.pg-insights .tier-wks { font-size: 10px; color: var(--gray-400); margin-top: 2px; }
.pg-insights .tier-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pg-insights .tier-emi { font-size: 10px; color: var(--brand); }
.pg-insights .tier-feats { padding: 10px; }
.pg-insights .tier-feat {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-600);
  padding: 3px 0;
  line-height: 1.4;
}
.pg-insights .feat-check { color: var(--brand); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pg-insights .feat-cross { color: var(--gray-300); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pg-insights .tier-cta-wrap { padding: 10px; border-top: 1px solid var(--gray-100); }
.pg-insights .tier-cta-btn {
  width: 100%;
  padding: 9px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
}
.pg-insights .tier-cta-btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.pg-outcome-4grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px;
}
@media (min-width: 768px) { .pg-outcome-4grid { grid-template-columns: repeat(4, 1fr); } }
.out-box {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px 16px; text-align: center;
}
.out-box-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--gray-900);
}
.out-box-key { font-size: 11px; color: var(--gray-500); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.out-box-sub { font-size: 11px; color: var(--brand); margin-top: 4px; font-weight: 500; }

.pg-charts-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 900px) { .pg-charts-row { grid-template-columns: 1fr 1fr; } }

.pg-chart-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px;
}
.pg-chart-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pg-chart-card__sub { font-size: 12px; color: var(--gray-500); margin-bottom: 18px; }

.sal-bars {
  display: flex; align-items: flex-end; justify-content: center; gap: 6px;
  height: 120px; padding-top: 8px;
}
.sal-bar-group { flex: 1; max-width: 72px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sal-bar-v { font-size: 12px; font-weight: 700; color: var(--gray-800); }
.sal-bar-b { width: 100%; min-height: 8px; border-radius: 6px 6px 0 0; transition: height 0.4s ease; }
.sal-bar-l { font-size: 10px; color: var(--gray-500); text-align: center; }
.arrow-sep { font-size: 14px; color: var(--gray-300); align-self: flex-end; margin-bottom: 24px; }

.pg-demand-meter {
  height: 10px; background: var(--gray-100); border-radius: 6px; overflow: hidden; margin-bottom: 10px;
}
.pg-demand-meter__fill { height: 100%; border-radius: 6px; transition: width 0.5s ease; }
.pg-demand-meter__label { font-size: 13px; color: var(--gray-600); margin-bottom: 16px; }

.pg-trend-chart { margin-bottom: 16px; }
.pg-trend-chart__label { font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.pg-trend-bars {
  display: flex; align-items: flex-end; gap: 8px; height: 64px;
  padding: 0 4px;
}
.pg-trend-bar-wrap { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.pg-trend-bar {
  width: 100%; min-height: 4px; border-radius: 4px 4px 0 0;
  opacity: 0.85; transition: height 0.4s ease;
}
.pg-trend-months {
  display: flex; justify-content: space-between; gap: 4px;
  margin-top: 6px; font-size: 10px; color: var(--gray-400);
}
.pg-trend-months span { flex: 1; text-align: center; }

.company-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 14px;
}
@media (min-width: 480px) { .company-grid { grid-template-columns: repeat(4, 1fr); } }
.company-grid--alumni { margin-bottom: 0; }
.company-cell {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 10px 8px; text-align: center;
  font-size: 11px; font-weight: 600; color: var(--gray-700);
}
.company-cell--more { color: var(--brand); background: var(--brand-lt); border-color: #B5DEC9; }

.live-jobs-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--brand-lt); border-radius: var(--radius-lg);
  padding: 12px 14px; border: 1px solid #B5DEC9;
}
.lj-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex-shrink: 0; animation: blink 2s infinite; }
.lj-text { font-size: 12px; color: #0B4D30; line-height: 1.5; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* Section pills (mobile/tablet) */
.pg-pills-wrap {
  position: sticky; top: 124px; z-index: 140;
  background: rgba(247,248,250,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200); padding: 10px 0;
}
.pg-pills {
  display: flex; gap: 8px; overflow-x: auto; padding: 0 24px;
  scrollbar-width: none; max-width: 1280px; margin: 0 auto;
}
.pg-pills::-webkit-scrollbar { display: none; }
.pg-pill {
  flex-shrink: 0; padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid var(--gray-200); background: var(--white);
  font-size: 12px; font-weight: 600; color: var(--gray-600); transition: all 0.15s;
}
.pg-pill:hover, .pg-pill.active { border-color: var(--brand); color: var(--brand); background: var(--brand-lt); }

/* 3-column layout */
.pg-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 0; max-width: 1280px; margin: 0 auto; padding: 0 24px 80px;
}
.pg-sidebar, .pg-enroll-sidebar { display: none; }
.pg-main { min-width: 0; }

@media (min-width: 900px) {
  .pg-pills-wrap { display: none; }
  .pg-layout {
    grid-template-columns: 220px minmax(0, 1fr) 280px;
    gap: 32px; padding: 28px 24px 100px;
  }
  .pg-sidebar {
    display: block; position: sticky; top: 130px;
    align-self: start; max-height: calc(100vh - 150px); overflow-y: auto;
  }
  .pg-enroll-sidebar {
    display: block; position: sticky; top: 130px; align-self: start;
  }
  .pg-sidebar__label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 10px; padding: 0 10px;
  }
  .pg-sidebar__link {
    display: block; width: 100%; text-align: left;
    padding: 8px 10px; border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 500; color: var(--gray-600);
    border: none; background: none; transition: all 0.15s; line-height: 1.4;
  }
  .pg-sidebar__link:hover { background: var(--gray-100); color: var(--gray-900); }
  .pg-sidebar__link.active { background: var(--brand-lt); color: var(--brand); font-weight: 600; }
  #page-detail .sticky-buy { display: none; }
}

/* Sections */
.pg-section {
  scroll-margin-top: 140px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.pg-section:last-child { border-bottom: none; }
.pg-section__head {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px;
}
.pg-section__num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-lt); color: var(--brand);
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pg-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--gray-900); margin: 0 0 4px;
}
.pg-section__sub { font-size: 13px; color: var(--gray-500); margin: 0; }
.pg-subhead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--gray-900);
  margin: 24px 0 14px;
}

/* Cards & text */
.pg-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 18px; margin-bottom: 14px;
}
.pg-card--highlight { background: linear-gradient(135deg, var(--brand-lter) 0%, var(--white) 100%); border-color: #C7E8D8; }
.pg-card--ai { background: linear-gradient(135deg, #EEF2FF 0%, var(--white) 100%); border-color: #C7D7F0; }
.pg-card__title { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.pg-lead { font-size: 15px; line-height: 1.75; color: var(--gray-700); font-weight: 500; }
.pg-text { font-size: 14px; line-height: 1.75; color: var(--gray-600); margin-bottom: 12px; }
.pg-list { padding-left: 18px; margin: 0; }
.pg-list li { font-size: 14px; line-height: 1.7; color: var(--gray-600); margin-bottom: 8px; }
.pg-list--sm li { font-size: 13px; margin-bottom: 6px; }
.pg-list--check li::marker { color: var(--brand); }
.pg-grid-2 { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
@media (min-width: 640px) { .pg-grid-2 { grid-template-columns: 1fr 1fr; } }

.pg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pg-tag {
  display: inline-block; padding: 5px 11px; border-radius: 20px;
  background: var(--gray-100); color: var(--gray-700);
  font-size: 12px; font-weight: 500; line-height: 1.4;
}
.pg-tag--sm { font-size: 11px; padding: 4px 9px; }

/* Personas */
.pg-persona-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pg-persona-grid { grid-template-columns: 1fr 1fr; } }
.pg-persona-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 18px; transition: border-color 0.15s;
}
.pg-persona-card:hover { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-lt); }
.pg-persona-card__title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.pg-persona-card__desc { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }
.pg-persona-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Career outcomes */
.pg-outcomes-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .pg-outcomes-grid { grid-template-columns: 1fr 1fr; } }
.pg-outcome-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.pg-outcome-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pg-outcome-card__idx { font-size: 11px; font-weight: 700; color: var(--gray-400); }
.pg-outcome-card__sal {
  font-size: 11px; font-weight: 700; color: var(--brand);
  background: var(--brand-lt); padding: 3px 8px; border-radius: 12px;
}
.pg-outcome-card__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.pg-outcome-card__overview { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 10px; }
.pg-details summary {
  font-size: 12px; font-weight: 600; color: var(--brand); cursor: pointer; list-style: none;
}
.pg-details summary::-webkit-details-marker { display: none; }
.pg-growth { font-size: 12px; color: var(--gray-500); margin-top: 8px; line-height: 1.6; }

/* Skills */
.pg-skills-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pg-skills-grid { grid-template-columns: 1fr 1fr; } }
.pg-skill-cat {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.pg-skill-cat__title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.pg-skill-cat__desc { font-size: 12px; color: var(--gray-500); margin-bottom: 12px; line-height: 1.6; }

/* Accordion */
.pg-accordion { display: flex; flex-direction: column; gap: 10px; }
.pg-acc-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.pg-acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px; border: none; background: none; text-align: left; gap: 12px;
}
.pg-acc-phase { display: block; font-size: 10px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; }
.pg-acc-name { display: block; font-size: 14px; font-weight: 600; color: var(--gray-900); margin-top: 2px; }
.pg-acc-icon { font-size: 12px; color: var(--gray-400); flex-shrink: 0; }
.pg-acc-body {
  display: none; padding: 0 16px 16px; border-top: 1px solid var(--gray-100);
}
.pg-acc-body.is-open { display: block; }
.pg-acc-objective, .pg-acc-outcome { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }
.pg-acc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .pg-acc-grid { grid-template-columns: repeat(3, 1fr); } }
.pg-acc-grid h4 { font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Foundation modules */
.pg-module-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pg-module-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .pg-module-grid { grid-template-columns: repeat(3, 1fr); } }
.pg-module-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.pg-module-card__title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.pg-module-card__obj { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; line-height: 1.6; }
.pg-module-card__ex { font-size: 11px; color: var(--brand); margin-top: 10px; }

/* Projects */
.pg-project-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pg-project-grid { grid-template-columns: 1fr 1fr; } }
.pg-project-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.pg-project-card--major { border-left: 4px solid var(--brand); }
.pg-project-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.pg-project-card p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 8px; }
.pg-mini-projects { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 640px) { .pg-mini-projects { grid-template-columns: 1fr 1fr; } }
.pg-mini-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.pg-mini-card strong { font-size: 13px; color: var(--gray-900); }
.pg-mini-card span { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* Tools */
.pg-tools-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pg-tools-grid { grid-template-columns: 1fr 1fr; } }
.pg-tool-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.pg-tool-card__name { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.pg-tool-card__purpose { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* Certification */
.pg-cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 700px) { .pg-cert-grid { grid-template-columns: repeat(4, 1fr); } }
.pg-cert-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px; text-align: center;
}
.pg-cert-card__icon { font-size: 28px; display: block; margin-bottom: 8px; }
.pg-cert-card h3 { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.pg-cert-pass { font-size: 11px; color: var(--gray-500); margin-top: 8px; }

/* Placement */
.pg-placement-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pg-placement-grid { grid-template-columns: 1fr 1fr; } }
.pg-placement-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
  border-left: 3px solid var(--brand);
}
.pg-placement-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.pg-placement-card p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* Journey timeline */
.pg-journey { position: relative; padding-left: 28px; }
.pg-journey::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: var(--brand-lt);
}
.pg-journey__step { position: relative; padding-bottom: 24px; }
.pg-journey__step:last-child { padding-bottom: 0; }
.pg-journey__dot {
  position: absolute; left: -28px; top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pg-journey__content h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.pg-journey__content p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 6px; }
.pg-journey__dur {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--brand); background: var(--brand-lt); padding: 3px 8px; border-radius: 12px;
}

/* Features */
.pg-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
@media (min-width: 700px) { .pg-features-grid { grid-template-columns: repeat(3, 1fr); } }
.pg-feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.pg-feature-card__icon { font-size: 22px; display: block; margin-bottom: 8px; }
.pg-feature-card h3 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.pg-feature-card p { font-size: 12px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* FAQ filters */
.pg-faq-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.pg-faq-filter {
  padding: 6px 12px; border-radius: 20px; border: 1.5px solid var(--gray-200);
  background: var(--white); font-size: 12px; font-weight: 600; color: var(--gray-600);
}
.pg-faq-filter.active, .pg-faq-filter:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-lt); }
.pg-faq-item.hidden { display: none; }
.pg-faq-item .faq-q { width: 100%; text-align: left; border: none; background: none; cursor: pointer; }

/* Enroll sidebar */
.pg-enroll-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow);
}
.pg-enroll-card__plan-label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.pg-enroll-card__plan-name { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.pg-enroll-card__was { font-size: 12px; color: var(--gray-400); text-decoration: line-through; display: block; }
.pg-enroll-card__now {
  font-size: 26px; font-weight: 700; color: var(--gray-900);
  font-family: 'Plus Jakarta Sans', sans-serif; display: block;
}
.pg-enroll-card__emi { font-size: 12px; color: var(--brand); display: block; margin-bottom: 14px; }
.pg-enroll-card__list { list-style: none; padding: 0; margin: 0 0 16px; }
.pg-enroll-card__list li { font-size: 12px; color: var(--gray-600); padding: 5px 0; }
.pg-enroll-card__trust { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 10px; }

/* Back to top */
.pg-back-top {
  position: fixed; bottom: 90px; right: 20px; z-index: 180;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: var(--white); border: none;
  font-size: 18px; font-weight: 700; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.pg-back-top.is-visible { opacity: 1; pointer-events: auto; }
@media (min-width: 900px) { .pg-back-top { bottom: 24px; } }

.pg-bottom-spacer { height: 40px; }

.emi-calc__selected { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.emi-calc__selected strong { color: var(--gray-900); }

#page-checkout .cu-checkout-nav,
#page-checkout .prog-steps,
#page-checkout .co-section,
#page-checkout .checkout-cta {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
#page-checkout .cu-checkout-nav { width: 100%; padding-left: 24px; padding-right: 24px; }

@media (max-width: 480px) {
  .pg-outcome-4grid { grid-template-columns: 1fr 1fr; }
  .pg-trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .pg-trust-item:nth-child(2) { border-right: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRAM PAGE — Polished UI (scoped to .pg-program)
═══════════════════════════════════════════════════════════════════ */

.pg-program {
  --pg-accent: #0D5F3F;
  --pg-accent-soft: #E8F7F0;
  --pg-accent-gradient: linear-gradient(135deg, #084530 0%, #0D5F3F 45%, #18845A 100%);
}

/* Hero — domain accent */
.pg-program .pg-hero {
  background: var(--pg-accent-gradient);
  position: relative;
  overflow: hidden;
}
.pg-program .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255,255,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.pg-program .pg-hero__inner,
.pg-program .pg-trust-strip { position: relative; z-index: 1; }
.pg-program .pg-hero__headline { color: color-mix(in srgb, var(--pg-accent-soft) 85%, #fff); }
.pg-program .pg-hero__cta-row .btn-primary {
  background: var(--white);
  color: var(--pg-accent);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.pg-program .pg-hero__cta-row .btn-primary:hover {
  background: var(--pg-accent-soft);
  color: var(--pg-accent);
  transform: translateY(-1px);
}
.pg-program .pg-hero-card {
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.pg-program .pg-hero-card__tab.is-active {
  border-color: var(--pg-accent);
  background: var(--pg-accent-soft);
  color: var(--pg-accent);
}
.pg-program .pg-hero-card__badge { color: var(--pg-accent); background: var(--pg-accent-soft); }
.pg-program .pg-trust-strip {
  background: var(--white);
  border-top: none;
}
.pg-program .pg-trust-item__n { color: var(--pg-accent); }

/* Insights band */
.pg-program .pg-insights {
  background:
    radial-gradient(circle at 20% 0%, var(--pg-accent-soft) 0%, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(13,95,63,0.04) 0%, transparent 40%),
    #F4F6F8;
  padding: 48px 24px 56px;
}
.pg-program .pg-insights__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pg-program .pg-scroll-block { margin-bottom: 0; }

/* Section cards */
.pg-program .pg-scroll-block--card {
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 28px 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pg-program .pg-scroll-block--card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 16px 48px rgba(0,0,0,0.07);
}

/* Section headers */
.pg-program .pg-scroll-block__head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}
.pg-program .pg-scroll-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pg-accent);
  background: var(--pg-accent-soft);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.pg-program .pg-scroll-block__title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.pg-program .pg-scroll-block__sub {
  font-size: 13px;
  color: var(--gray-500);
  margin: 8px 0 0;
  line-height: 1.6;
  max-width: 52ch;
}
.pg-program .pg-scroll-block__note {
  font-size: 11px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--gray-200);
}

/* Outcome stat boxes */
.pg-program .pg-scroll-block--outcomes .pg-outcome-4grid { margin-bottom: 0; gap: 14px; }
.pg-program .out-box {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFC 100%);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 22px 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pg-program .out-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pg-accent-gradient);
  opacity: 0.85;
}
.pg-program .out-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,95,63,0.1);
  border-color: color-mix(in srgb, var(--pg-accent) 25%, var(--gray-200));
}
.pg-program .out-box-val {
  font-size: clamp(20px, 2.5vw, 26px);
  background: var(--pg-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pg-program .out-box-sub { color: var(--pg-accent); }
.pg-program .out-box-icon {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1;
  filter: grayscale(0.1);
}

/* Salary chart */
.pg-program .sal-bars {
  height: 140px;
  padding: 16px 12px 0;
  background: linear-gradient(180deg, var(--pg-accent-soft) 0%, transparent 100%);
  border-radius: 16px;
  margin-top: 4px;
}
.pg-program .sal-bar-b {
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 12px rgba(13,95,63,0.15);
}
.pg-program .sal-bar-group:last-of-type .sal-bar-b {
  box-shadow: 0 -2px 16px rgba(13,95,63,0.25);
}
.pg-program .arrow-sep { color: var(--pg-accent); opacity: 0.4; font-weight: 700; }

/* Company grid */
.pg-program .company-grid { gap: 10px; margin-bottom: 18px; }
.pg-program .company-cell {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px 10px;
  font-size: 12px;
  transition: all 0.2s ease;
}
.pg-program .company-cell:hover {
  border-color: var(--pg-accent);
  background: var(--pg-accent-soft);
  color: var(--pg-accent);
  transform: scale(1.02);
}
.pg-program .company-cell--more {
  background: var(--pg-accent-soft);
  border-color: color-mix(in srgb, var(--pg-accent) 30%, transparent);
  color: var(--pg-accent);
  font-weight: 700;
}
.pg-program .live-jobs-row {
  background: linear-gradient(90deg, var(--pg-accent-soft), color-mix(in srgb, var(--pg-accent-soft) 60%, #fff));
  border-color: color-mix(in srgb, var(--pg-accent) 25%, transparent);
}

/* Tier cards */
.pg-program .pg-scroll-block--tiers .tiers-grid { gap: 16px; }
.pg-program .tier-card {
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
}
.pg-program .tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.pg-program .tier-card.featured {
  border-color: var(--pg-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--pg-accent) 20%, transparent), 0 16px 48px rgba(13,95,63,0.12);
  transform: scale(1.02);
}
.pg-program .tier-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pg-program .tier-head--featured {
  background: var(--pg-accent-soft);
}
.pg-program .tier-price--accent { color: var(--pg-accent); }
.pg-program .tier-pop-badge {
  color: var(--pg-accent);
  background: var(--pg-accent-soft);
}
.pg-program .tier-cta-btn {
  transition: all 0.2s ease;
  border-radius: 10px;
}
.pg-program .tier-cta-btn:hover {
  border-color: var(--pg-accent);
  color: var(--pg-accent);
  background: var(--pg-accent-soft);
}
.pg-program .tier-cta-btn.primary {
  background: var(--pg-accent);
  border-color: var(--pg-accent);
}
.pg-program .tier-cta-btn.primary:hover {
  background: color-mix(in srgb, var(--pg-accent) 85%, #000);
  color: var(--white);
}

/* Tools grid */
.pg-program .tool-cell {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 16px 12px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.pg-program .tool-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pg-accent-gradient);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.pg-program .tool-cell:hover {
  border-color: var(--pg-accent);
  box-shadow: 0 6px 20px rgba(13,95,63,0.08);
  transform: translateY(-2px);
}
.pg-program .tool-cell:hover::before { transform: scaleX(1); }
.pg-program .tool-cell--more {
  background: linear-gradient(160deg, var(--pg-accent-soft) 0%, var(--white) 100%);
  border-style: dashed;
  border-color: color-mix(in srgb, var(--pg-accent) 35%, var(--gray-200));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.pg-program .tool-cell--more[style*="grid-column: span 2"],
.pg-program .tool-cell--more[style*="grid-column: span 3"] {
  min-height: 100px;
}
.pg-program .tool-cell--more::before { display: none; }
.pg-program .tool-cell--more:hover {
  border-color: var(--pg-accent);
  border-style: dashed;
  transform: translateY(-2px);
}
.pg-program .tool-cell--more .tool-name { color: var(--pg-accent); }
.pg-program .tool-cell--more .tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pg-accent-soft);
  color: var(--pg-accent);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.pg-program .tool-name { font-size: 13px; font-weight: 700; }
.pg-program .tool-icon {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1;
}

/* Curriculum */
.pg-program .pg-curr-phase {
  border-radius: 16px;
  border-color: var(--gray-100);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pg-program .pg-curr-phase.is-open {
  border-color: color-mix(in srgb, var(--pg-accent) 35%, var(--gray-200));
  box-shadow: 0 4px 20px rgba(13,95,63,0.06);
}
.pg-program .pg-curr-phase.is-open .pg-curr-phase__head {
  background: linear-gradient(90deg, var(--pg-accent-soft), transparent);
}
.pg-program .pg-curr-phase.is-open .pg-curr-phase__icon { color: var(--pg-accent); }
.pg-program .pg-curr-phase__title { font-size: 15px; }

/* Why Hirevoo */
.pg-program .pg-scroll-block--trust .trust-item {
  background: linear-gradient(160deg, var(--white) 0%, var(--pg-accent-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--pg-accent) 15%, var(--gray-100));
  border-radius: 16px;
  padding: 24px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pg-program .pg-scroll-block--trust .trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,95,63,0.1);
}
.pg-program .trust-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 14px;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* FAQ */
.pg-program .pg-scroll-block--faq {
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFC 100%);
}
.pg-program .pg-scroll-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pg-program .pg-scroll-faq-item:last-child { margin-bottom: 0; }
.pg-program .pg-scroll-faq-item:hover { border-color: color-mix(in srgb, var(--pg-accent) 30%, var(--gray-200)); }
.pg-program .pg-scroll-faq-item .faq-q {
  padding: 16px 18px;
  font-size: 14px;
}
.pg-program .pg-scroll-faq-item .faq-a {
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--gray-600);
}

/* Mobile sticky bar */
@media (max-width: 899px) {
  .pg-program .cu-mobile-buy {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  }
  .pg-program .cu-mobile-buy .sb-now { color: var(--pg-accent); }
  .pg-program .cu-mobile-buy .sb-enroll {
    background: var(--pg-accent);
    border-radius: 12px;
    padding: 12px 22px;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--pg-accent) 35%, transparent);
  }
  .pg-program .cu-mobile-buy .sb-enroll:hover {
    background: color-mix(in srgb, var(--pg-accent) 88%, #000);
  }
}

/* Back to top */
.pg-program .pg-back-top {
  background: var(--pg-accent);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--pg-accent) 40%, transparent);
}
.pg-program .pg-back-top:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--pg-accent) 88%, #000);
}

@media (max-width: 480px) {
  .pg-program .pg-insights { padding: 32px 16px 48px; }
  .pg-program .pg-scroll-block--card { padding: 22px 18px; border-radius: 16px; }
  .pg-program .tier-card.featured { transform: none; }
  .pg-program .tier-card.featured:hover { transform: translateY(-2px); }
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRAM HERO — Smooth premium polish
═══════════════════════════════════════════════════════════════════ */

.pg-program .pg-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 32px;
}

.pg-program .pg-breadcrumb { margin-bottom: 24px; }
.pg-program .pg-breadcrumb__link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pg-program .pg-breadcrumb__link:hover { color: #fff; }
.pg-program .pg-breadcrumb__current { color: rgba(255,255,255,0.95); }

.pg-program .pg-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
}
.pg-program .pg-hero__headline {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 14px;
}
.pg-program .pg-hero__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
  max-width: 54ch;
}

.pg-program .pg-hero-chip {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
}
.pg-program .pg-hero-chip.chip-gold {
  background: rgba(251, 191, 36, 0.2) !important;
  border-color: rgba(251, 191, 36, 0.35);
  color: #FDE68A !important;
}
.pg-program .pg-hero__badges { gap: 8px; margin-bottom: 18px; }

.pg-program .pg-hero__stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.pg-program .pg-hero__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.pg-program .pg-hero__stat-val { font-weight: 700; color: #fff; }
.pg-program .pg-hero__stat-lbl { color: rgba(255,255,255,0.65); font-size: 12px; }
.pg-program .pg-hero__stat-stars { color: #FCD34D; font-size: 12px; letter-spacing: 1px; }
.pg-program .pg-hero__stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
.pg-program .pg-hero__stat-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.pg-program .pg-instructor-bar {
  margin-bottom: 24px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.pg-program .pg-instructor-bar__av {
  width: 44px;
  height: 44px;
  font-size: 14px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.25);
}

.pg-program .pg-btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--pg-accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--pg-accent) 45%, transparent);
}
.pg-program .pg-btn-enroll:hover {
  background: color-mix(in srgb, var(--pg-accent) 88%, #000);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--pg-accent) 40%, transparent);
}
.pg-program .pg-btn-enroll--hero {
  background: #fff;
  color: var(--pg-accent);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.pg-program .pg-btn-enroll--hero:hover {
  background: var(--pg-accent-soft);
  color: var(--pg-accent);
}
.pg-program .pg-btn-enroll--card { width: 100%; padding: 15px 20px; }
.pg-program .pg-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pg-program .pg-btn-outline--hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.pg-program .pg-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pg-program .pg-hero__grid { align-items: start; gap: 32px; }
@media (min-width: 960px) {
  .pg-program .pg-hero__grid {
    grid-template-columns: 1fr 360px;
    gap: 48px;
  }
  .pg-program .pg-hero__card {
    position: sticky;
    top: 140px;
  }
  .pg-program .pg-btn-enroll--hero { display: none; }
}

.pg-program .pg-hero-card {
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 24px 60px rgba(0,0,0,0.14);
  transition: box-shadow 0.3s ease;
}
.pg-program .pg-hero-card:hover {
  box-shadow: 0 8px 12px rgba(0,0,0,0.06), 0 32px 72px rgba(0,0,0,0.16);
}

.pg-program .pg-hero-card__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--gray-100);
  background: #FAFBFC;
}
.pg-program .pg-hero-card__tab {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 14px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.2s ease;
}
.pg-program .pg-hero-card__tab:hover {
  color: var(--pg-accent);
  background: rgba(255,255,255,0.6);
}
.pg-program .pg-hero-card__tab.is-active {
  color: var(--pg-accent);
  background: #fff;
  border-bottom-color: var(--pg-accent);
}

.pg-program .pg-hero-card__body { position: relative; min-height: 340px; }
.pg-program .pg-hero-card__pane {
  display: none;
  padding: 22px 22px 20px;
  animation: pgPaneIn 0.3s ease;
}
.pg-program .pg-hero-card__pane.is-active { display: block; }
@keyframes pgPaneIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pg-program .pg-hero-card__tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.pg-program .pg-hero-card__price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pg-program .pg-hero-card__note {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.pg-program .pg-hero-card__list { margin-bottom: 20px; }
.pg-program .pg-hero-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.45;
}
.pg-program .pg-hero-card__check {
  color: var(--pg-accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pg-program .pg-hero-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.pg-program .cu-sticky-enroll {
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
}
.pg-program .cu-sticky-enroll .sb-inner {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.pg-program .cu-sticky-enroll .sb-now {
  font-size: 22px;
  font-weight: 800;
  color: var(--pg-accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pg-program .cu-sticky-enroll .sb-enroll {
  background: var(--pg-accent);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 960px) {
  .pg-program .cu-sticky-enroll { display: none; }
}

@media (max-width: 959px) {
  .pg-program .pg-hero__stat-divider { display: none; }
  .pg-program .pg-hero__stat-badge { margin-left: 0; width: 100%; text-align: center; }
}
