

/* Scoped to Career Accelerator page only */
.career-university-page *, .career-university-page *::before, .career-university-page *::after { box-sizing: border-box; }
.career-university-page {
  font-family: 'Inter', sans-serif;
  background: #F7F8FA;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.career-university-page img { max-width: 100%; display: block; }
.career-university-page button { cursor: pointer; font-family: inherit; }
.career-university-page input { font-family: inherit; }

/* ─── TOKENS ───────────────────────────────────────────────────────── */
:root {
  --brand:        #0D5F3F;
  --brand-mid:    #18845A;
  --brand-lt:     #E8F7F0;
  --brand-lter:   #F0FAF5;
  --gold:         #D97706;
  --gold-lt:      #FEF3C7;
  --indigo:       #3730A3;
  --indigo-lt:    #EEF2FF;
  --rose:         #BE185D;
  --rose-lt:      #FDF2F8;
  --sky:          #0369A1;
  --sky-lt:       #E0F2FE;
  --teal:         #0F766E;
  --teal-lt:      #F0FDFA;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-300:     #D1D5DB;
  --gray-400:     #9CA3AF;
  --gray-500:     #6B7280;
  --gray-600:     #4B5563;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --white:        #FFFFFF;
  --surface:      #FFFFFF;
  --page-bg:      #F7F8FA;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:       0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.10);
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────── */
.display { font-family: 'Plus Jakarta Sans', sans-serif; }
h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; line-height: 1.25; color: var(--gray-900); }
h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 600; color: var(--gray-900); }
h3 { font-size: 16px; font-weight: 600; color: var(--gray-900); }

/* ─── LAYOUT ───────────────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }
.career-university-page { width: 100%; max-width: none; }
.career-university-page .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 16px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 700; color: var(--gray-900); text-decoration: none; }
.nav-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.nav-links { display: flex; gap: 4px; }
.nav-link { padding: 6px 10px; border-radius: var(--radius-sm); font-size: 13px; color: var(--gray-600); font-weight: 500; border: none; background: none; transition: all 0.15s; }
.nav-link:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-link.active-link { color: var(--brand); background: var(--brand-lt); }
.nav-cta { padding: 8px 18px; background: var(--brand); color: var(--white); border-radius: var(--radius); font-size: 13px; font-weight: 600; border: none; transition: all 0.15s; }
.nav-cta:hover { background: var(--brand-mid); }

/* ─── CHIP / BADGE ─────────────────────────────────────────────────── */
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.chip-green { background: var(--brand-lt); color: var(--brand); }
.chip-gold { background: var(--gold-lt); color: var(--gold); }
.chip-indigo { background: var(--indigo-lt); color: var(--indigo); }
.chip-rose { background: var(--rose-lt); color: var(--rose); }
.chip-gray { background: var(--gray-100); color: var(--gray-600); }
.chip-sky { background: var(--sky-lt); color: var(--sky); }
.chip-teal { background: var(--teal-lt); color: var(--teal); }

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: none; transition: all 0.15s; }
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--gray-500); }
.btn-ghost { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-ghost:hover { background: var(--brand-lt); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: var(--radius-lg); }

/* ─── CARD ─────────────────────────────────────────────────────────── */
.card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; }

/* ────────────────────────────────────────────────────────────────────
   PAGE 1 — COURSE DISCOVERY
─────────────────────────────────────────────────────────────────────*/

/* HERO — Amity-inspired full-width */
.discovery-hero {
  background: linear-gradient(135deg, #084530 0%, #0D5F3F 50%, #18845A 100%);
  padding: 48px 24px 40px;
  color: var(--white);
  border-bottom: none;
}
.discovery-hero .container { max-width: 1280px; }
.discovery-hero h1 { font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 12px; }
.discovery-hero h1 span { color: #A7F3D0; }
.discovery-hero .hero-sub { color: rgba(255,255,255,0.82); font-size: 16px; max-width: 640px; }
.discovery-hero .hero-eyebrow-text { color: rgba(255,255,255,0.85); }
.discovery-hero .hero-eyebrow-text strong { color: #6EE7B7; }
.discovery-hero .search-wrap { background: rgba(255,255,255,0.95); border-color: transparent; max-width: 560px; }
.discovery-hero .hero-stats {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  margin-top: 28px;
}
.discovery-hero .hstat { border-color: rgba(255,255,255,0.15); }
.discovery-hero .hstat-n { color: var(--white); font-size: 20px; }
.discovery-hero .hstat-l { color: rgba(255,255,255,0.65); }

.disc-section { padding: 32px 24px; max-width: 1280px; margin: 0 auto; }
.disc-section--programs .prog-card { margin-bottom: 16px; }

@media (min-width: 640px) {
  .disc-section--programs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: stretch; }
  .disc-section--programs .sec-header { grid-column: 1 / -1; }
  .disc-section--programs .cu-prog-card { margin-top: 0 !important; height: 100%; display: block; }
  .disc-section--programs.cu-programs-grid--solo { grid-template-columns: 1fr; }
  .disc-section--programs.cu-programs-grid--solo .cu-prog-card--coming-soon { display: none; }
}

.discovery-hero .filter-pill { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); }
.discovery-hero .filter-pill.active { background: var(--white); border-color: var(--white); color: var(--brand); }
.discovery-hero .filter-pill:hover:not(.active) { border-color: rgba(255,255,255,0.6); color: var(--white); }

.demand-ticker { max-width: none; }
.demand-ticker-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #10B981; animation: blink 2s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero-eyebrow-text { font-size: 13px; color: var(--gray-600); }
.hero-eyebrow-text strong { color: var(--brand); }
.hero-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }
.search-wrap { display: flex; align-items: center; gap: 8px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 10px 14px; margin-bottom: 14px; transition: border-color 0.2s; }
.search-wrap:focus-within { border-color: var(--brand); background: var(--white); }
.search-icon { font-size: 16px; color: var(--gray-400); flex-shrink: 0; }
.search-wrap input { flex: 1; border: none; background: transparent; font-size: 14px; color: var(--gray-900); outline: none; }
.search-wrap input::placeholder { color: var(--gray-400); }
.filter-scroll { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-pill { flex-shrink: 0; padding: 5px 12px; border-radius: 20px; border: 1.5px solid var(--gray-200); font-size: 12px; font-weight: 500; color: var(--gray-600); background: var(--white); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.filter-pill.active { background: var(--brand); border-color: var(--brand); color: var(--white); }
.filter-pill:hover:not(.active) { border-color: var(--brand); color: var(--brand); }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 20px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; }
.hstat { padding: 12px 8px; text-align: center; border-right: 1px solid var(--gray-200); }
.hstat:last-child { border-right: none; }
.hstat-n { font-size: 16px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.hstat-l { font-size: 10px; color: var(--gray-400); margin-top: 2px; }

/* DEMAND TICKER */
.demand-ticker { background: var(--brand); padding: 10px 16px; overflow: hidden; }
.demand-ticker-inner { display: flex; gap: 24px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.demand-ticker-inner::-webkit-scrollbar { display: none; }
.demand-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }
.demand-item { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.demand-item-dot { width: 6px; height: 6px; border-radius: 50%; background: #6EE7B7; }
.demand-item-name { font-size: 12px; color: rgba(255,255,255,0.95); font-weight: 500; }
.demand-item-count { font-size: 11px; color: #6EE7B7; font-weight: 600; }
.demand-item-count::before { content: '↑ '; }

/* SECTION WRAPPER */
.disc-section { padding: 24px 16px; }
.disc-section + .disc-section { border-top: 1px solid var(--gray-200); }
.sec-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.sec-title { font-size: 16px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.sec-sub { font-size: 12px; color: var(--gray-400); }
.see-all-btn { font-size: 12px; color: var(--brand); font-weight: 600; border: none; background: none; cursor: pointer; }

/* CAREER TRACKS — one row, compact cards */
.disc-section--tracks { padding-bottom: 20px; }
.tracks-scroll {
  overflow-x: auto;
  margin: 0 -4px;
  padding: 2px 4px 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tracks-scroll::-webkit-scrollbar { display: none; }
.tracks-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
}
@media (min-width: 1100px) {
  .tracks-grid { width: 100%; justify-content: space-between; }
  .tracks-grid .track-card { flex: 1 1 0; min-width: 0; max-width: none; width: auto; }
}
.track-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 10px 12px; cursor: pointer; transition: all 0.18s;
  display: flex; flex-direction: column; align-items: flex-start;
  flex: 0 0 auto; width: 132px; min-width: 132px;
  text-decoration: none; color: inherit;
}
.track-card:hover { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-lt); transform: translateY(-1px); }
.track-card--more {
  width: 148px; min-width: 148px;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--brand) 35%, var(--gray-300));
  background: linear-gradient(160deg, var(--brand-lter) 0%, var(--white) 100%);
  text-align: left;
}
.track-card--more:hover {
  border-color: var(--brand);
  border-style: dashed;
  background: linear-gradient(160deg, var(--brand-lt) 0%, var(--white) 100%);
}
.track-icon-wrap--more {
  background: var(--brand-lt) !important;
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-card--more .track-name { color: var(--brand); font-weight: 700; font-size: 11px; line-height: 1.35; }
.track-card--more .track-jobs,
.track-card--more .track-sal { color: var(--gray-500); font-size: 9px; line-height: 1.35; margin-top: 2px; }

.cu-prog-card--coming-soon {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--brand) 35%, var(--gray-300));
  background: linear-gradient(160deg, var(--brand-lter) 0%, var(--white) 100%);
  cursor: default;
}
.cu-prog-card--coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: color-mix(in srgb, var(--brand) 35%, var(--gray-300));
}
.cu-prog-coming-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 100%; padding: 48px 24px;
}
.cu-prog-coming-soon__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--brand-lt);
  color: var(--brand); font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.cu-prog-coming-soon__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--brand); margin-bottom: 8px;
}
.cu-prog-coming-soon__text {
  font-size: 13px; color: var(--gray-500); line-height: 1.6; max-width: 260px; margin: 0 0 14px;
}
.cu-prog-coming-soon__badge {
  font-size: 11px; font-weight: 600; color: var(--gray-600);
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 5px 12px; border-radius: 20px;
}
.track-icon-wrap { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; font-size: 15px; flex-shrink: 0; }
.track-name { font-size: 11px; font-weight: 600; color: var(--gray-900); margin-bottom: 3px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.track-jobs { font-size: 10px; color: var(--brand); font-weight: 600; line-height: 1.3; white-space: nowrap; }
.track-sal { font-size: 9px; color: var(--gray-400); margin-top: 2px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* AI REC */
.ai-rec-card { background: linear-gradient(135deg, #F0FAF5 0%, #EEF2FF 100%); border: 1.5px solid #C7D7F0; border-radius: var(--radius-lg); padding: 16px; }
.ai-rec-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ai-rec-score { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; flex-direction: column; flex-shrink: 0; }
.ai-rec-pct { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1; }
.ai-rec-match { font-size: 8px; color: rgba(255,255,255,0.75); }
.ai-rec-info {}
.ai-rec-tag { font-size: 10px; font-weight: 600; color: var(--indigo); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.ai-rec-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.ai-rec-reason { font-size: 12px; color: var(--gray-600); line-height: 1.6; border-left: 3px solid var(--brand); padding-left: 10px; }

/* SALARY BROWSE */
.salary-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.salary-row::-webkit-scrollbar { display: none; }
.sal-chip { flex-shrink: 0; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 12px 14px; cursor: pointer; min-width: 110px; transition: all 0.15s; }
.sal-chip:hover, .sal-chip.hot { border-color: var(--brand); }
.sal-chip.hot { background: var(--brand-lt); }
.sal-range { font-size: 14px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.sal-role { font-size: 11px; color: var(--gray-400); margin-top: 3px; }
.sal-jobs { font-size: 11px; color: var(--brand); margin-top: 6px; font-weight: 500; }

/* PROGRAM CARD */
.prog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all 0.18s; }
.prog-card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); transform: translateY(-2px); }
.prog-card + .prog-card { margin-top: 12px; }
.card-top-bar { height: 4px; }
.card-body { padding: 16px; }
.card-domain-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.card-title { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.35; margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif; }
.card-tagline { font-size: 12px; color: var(--gray-500); margin-bottom: 14px; line-height: 1.6; }
.outcome-row { display: flex; gap: 0; background: var(--gray-50); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; border: 1px solid var(--gray-100); }
.outcome-cell { flex: 1; padding: 10px 12px; text-align: center; }
.outcome-cell + .outcome-cell { border-left: 1px solid var(--gray-200); }
.outcome-key { font-size: 9px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.outcome-val { font-size: 14px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.outcome-sub { font-size: 10px; color: var(--brand); margin-top: 2px; }
.card-meta-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 12px; }
.meta-cell { background: var(--gray-50); border-radius: var(--radius-sm); padding: 8px 6px; text-align: center; border: 1px solid var(--gray-100); }
.meta-v { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.meta-k { font-size: 10px; color: var(--gray-400); margin-top: 2px; }
.hiring-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.hiring-label { font-size: 11px; color: var(--gray-500); white-space: nowrap; }
.hiring-track { flex: 1; height: 5px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.hiring-fill { height: 100%; border-radius: 3px; background: var(--brand); }
.hiring-count { font-size: 11px; font-weight: 600; color: var(--brand); white-space: nowrap; }
.employers-row { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.emp-tag { font-size: 11px; color: var(--gray-600); background: var(--gray-100); border-radius: 5px; padding: 3px 8px; }
.emp-more { font-size: 11px; color: var(--brand); font-weight: 500; }
.card-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--gray-100); flex-wrap: wrap; }
.price-block--website { flex: 1; min-width: 0; }
.price-from-label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.cu-card-tier-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.cu-card-tier-price {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 8px 6px; text-align: center;
}
.cu-card-tier-price.is-featured { border-color: var(--brand); background: var(--brand-lt); }
.cu-card-tier-price__name { display: block; font-size: 9px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; }
.cu-card-tier-price__amt { display: block; font-size: 13px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; margin-top: 2px; }

/* Website plans — discovery section */
.cu-website-plans-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 768px) { .cu-website-plans-grid { grid-template-columns: repeat(3, 1fr); } }
.cu-website-plan {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px 18px; position: relative;
}
.cu-website-plan.is-featured { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(13,95,63,0.1); }
.cu-website-plan__badge {
  display: inline-block; font-size: 10px; font-weight: 700; color: var(--brand);
  background: var(--brand-lt); padding: 3px 8px; border-radius: 4px; margin-bottom: 10px;
}
.cu-website-plan__name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cu-website-plan__duration { font-size: 12px; color: var(--gray-500); margin-bottom: 14px; }
.cu-website-plan__label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.cu-website-plan__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--gray-900); margin: 4px 0 14px;
}
.cu-website-plan__feats { list-style: none; padding: 0; margin: 0 0 16px; }
.cu-website-plan__feats li { font-size: 12px; color: var(--gray-600); padding: 4px 0; }

/* Checkout tier picker */
.cu-checkout-tiers { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .cu-checkout-tiers { grid-template-columns: repeat(3, 1fr); } }
.cu-checkout-tier {
  position: relative; text-align: left; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 14px; cursor: pointer; transition: all 0.15s;
}
.cu-checkout-tier.is-selected { border-color: var(--brand); background: var(--brand-lter); box-shadow: 0 0 0 2px rgba(13,95,63,0.1); }
.cu-checkout-tier__name { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); }
.cu-checkout-tier__dur { display: block; font-size: 11px; color: var(--gray-500); margin-top: 2px; }
.cu-checkout-tier__label { display: block; font-size: 9px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 10px; }
.cu-checkout-tier__price { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--brand); margin-top: 2px; }
.cu-checkout-tier__badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; font-weight: 700; color: var(--gold); background: var(--gold-lt);
  padding: 2px 6px; border-radius: 4px;
}

.pr-val.green { color: var(--brand); font-weight: 600; }

.cu-seat-banner, .cu-seat-done-banner {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(135deg, var(--brand-lter) 0%, var(--white) 100%);
  border: 1.5px solid #B5DEC9; border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.cu-seat-banner__icon, .cu-seat-done-banner__icon { font-size: 28px; flex-shrink: 0; }
.cu-seat-banner strong, .cu-seat-done-banner strong { display: block; font-size: 14px; color: var(--gray-900); margin-bottom: 4px; }
.cu-seat-banner p, .cu-seat-done-banner p { font-size: 12px; color: var(--gray-600); line-height: 1.65; margin: 0; }
.cu-purchased-plan-banner { border: 1px solid #BBF7D0; background: #F0FDF4; border-radius: var(--radius-lg); padding: 16px 18px; margin-bottom: 8px; }
.prog-card.is-purchased { box-shadow: 0 0 0 2px #0D5F3F33, var(--shadow); }

.price-block {}
.price-was { font-size: 11px; color: var(--gray-400); text-decoration: line-through; }
.price-now { font-size: 20px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.price-emi { font-size: 11px; color: var(--brand); margin-top: 1px; }
.card-ctas { display: flex; gap: 8px; }
.card-btn-outline { padding: 8px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius); font-size: 13px; font-weight: 500; color: var(--gray-700); background: transparent; transition: all 0.15s; display: inline-block; text-align: center; text-decoration: none; }
.card-btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.card-btn-primary { padding: 8px 16px; background: var(--brand); border: none; border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--white); transition: all 0.15s; display: inline-block; text-align: center; text-decoration: none; }
.card-btn-primary:hover { background: var(--brand-mid); color: var(--white); }
.card-rating-row { display: flex; align-items: center; gap: 6px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; }
.rating-n { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.rating-ct { font-size: 12px; color: var(--gray-400); }
.rating-badge { margin-left: auto; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }

/* ────────────────────────────────────────────────────────────────────
   PAGE 2 — COURSE DETAIL
─────────────────────────────────────────────────────────────────────*/
.detail-hero { background: var(--white); padding: 20px 16px 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; }
.breadcrumb span { color: var(--gray-600); cursor: pointer; }
.breadcrumb span:hover { color: var(--brand); }
.detail-hero h1 { font-size: 24px; margin-bottom: 8px; letter-spacing: -0.3px; }
.detail-hero-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; line-height: 1.7; }
.detail-meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.detail-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-500); }
.detail-meta-item strong { color: var(--gray-900); }
.detail-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.instructor-bar { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--gray-100); margin-top: 4px; }
.instr-av { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-lt); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--brand); flex-shrink: 0; }
.instr-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.instr-cred { font-size: 11px; color: var(--gray-400); margin-top: 1px; }
.detail-section { background: var(--white); margin-top: 8px; padding: 20px 16px; }
.detail-section + .detail-section { }
.ds-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; font-family: 'Plus Jakarta Sans', sans-serif; }
.ds-sub { font-size: 12px; color: var(--gray-400); margin-top: -10px; margin-bottom: 14px; }

/* OUTCOME STATS */
.outcome-4grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.out-box { background: var(--gray-50); border-radius: var(--radius-lg); padding: 16px; text-align: center; border: 1px solid var(--gray-100); }
.out-box-val { font-size: 24px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.out-box-key { font-size: 11px; color: var(--gray-400); margin-top: 4px; }
.out-box-sub { font-size: 11px; color: var(--brand); margin-top: 3px; font-weight: 500; }

/* SALARY BARS */
.sal-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; padding: 0 0 0; }
.sal-bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sal-bar-v { font-size: 11px; font-weight: 600; color: var(--gray-700); }
.sal-bar-b { width: 100%; border-radius: 5px 5px 0 0; }
.sal-bar-l { font-size: 10px; color: var(--gray-400); text-align: center; }
.arrow-sep { font-size: 12px; color: var(--gray-300); margin-bottom: 20px; }

/* COMPANY GRID */
.company-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.company-cell { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 10px 6px; text-align: center; font-size: 11px; font-weight: 600; color: var(--gray-700); }
.live-jobs-row { display: flex; align-items: center; gap: 10px; background: var(--brand-lt); border-radius: var(--radius-lg); padding: 12px 14px; margin-top: 12px; 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; flex: 1; }

/* TIERS */
.tiers-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .tiers-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
.tier-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.15s; }
.tier-card.featured { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(13,95,63,0.12); }
.tier-head { padding: 12px 10px; border-bottom: 1px solid var(--gray-100); text-align: center; }
.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; }
.tier-name { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.tier-wks { font-size: 10px; color: var(--gray-400); margin-top: 2px; }
.tier-price { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-top: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.tier-price-label { font-size: 9px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.tier-card.is-selected { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(13,95,63,0.12); }
.tier-emi { font-size: 10px; color: var(--brand); }
.tier-feats { padding: 10px; }
.tier-feat { display: flex; align-items: flex-start; gap: 6px; font-size: 11px; color: var(--gray-600); padding: 3px 0; line-height: 1.4; }
.feat-check { color: var(--brand); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.feat-cross { color: var(--gray-300); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.tier-cta-wrap { padding: 10px; border-top: 1px solid var(--gray-100); }
.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; transition: all 0.15s; }
.tier-cta-btn.primary { background: var(--brand); border-color: var(--brand); color: var(--white); }
.tier-cta-btn:hover { opacity: 0.85; }

/* EMI CALC */
.emi-calc { background: var(--gray-50); border-radius: var(--radius-lg); padding: 16px; border: 1px solid var(--gray-100); }
.emi-plans-row { display: flex; gap: 6px; margin: 10px 0 12px; }
.emi-opt { flex: 1; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 10px 6px; text-align: center; cursor: pointer; background: var(--white); transition: all 0.15s; }
.emi-opt.active { border-color: var(--brand); background: var(--brand-lt); }
.emi-opt-m { font-size: 12px; font-weight: 700; color: var(--gray-900); }
.emi-opt-a { font-size: 11px; color: var(--brand); margin-top: 3px; }
.emi-opt-t { font-size: 10px; color: var(--gray-400); margin-top: 2px; }
.emi-note { font-size: 11px; color: var(--gray-500); line-height: 1.6; }

/* CURRICULUM */
.curr-item { border: 1px solid var(--gray-100); border-radius: var(--radius); margin-bottom: 6px; overflow: hidden; }
.curr-header { padding: 12px 14px; background: var(--white); display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.curr-header:hover { background: var(--gray-50); }
.curr-left {}
.curr-mod-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.curr-mod-meta { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.curr-body { background: var(--gray-50); padding: 2px 14px 10px; }
.curr-lesson { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.curr-lesson:last-child { border-bottom: none; }
.curr-lesson-icon { font-size: 13px; color: var(--gray-300); }
.curr-lesson-name { font-size: 12px; color: var(--gray-600); }
.curr-expanded { display: block; }
.curr-collapsed { display: none; }

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

/* ALUMNI */
.alumni-item { border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 14px; background: var(--white); margin-bottom: 10px; }
.alumni-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.alumni-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.alumni-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.alumni-role { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.alumni-sal-badge { margin-left: auto; background: var(--brand-lt); color: var(--brand); font-size: 11px; padding: 3px 8px; border-radius: 6px; font-weight: 600; white-space: nowrap; }
.before-after { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.ba-before { font-size: 12px; color: var(--gray-400); }
.ba-arrow { font-size: 12px; color: var(--brand); font-weight: 700; }
.ba-after { font-size: 12px; color: var(--brand); font-weight: 600; }
.alumni-quote { font-size: 12px; color: var(--gray-600); line-height: 1.7; border-left: 3px solid var(--brand); padding-left: 10px; font-style: italic; }

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

/* FAQ */
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--gray-900); gap: 10px; }
.faq-q .faq-icon { font-size: 16px; color: var(--gray-400); flex-shrink: 0; transition: transform 0.2s; }
.faq-a { font-size: 12px; color: var(--gray-500); line-height: 1.7; padding-bottom: 13px; }

/* SCHOLARSHIP BANNER */
.schol-banner { background: linear-gradient(135deg, var(--brand-lt), #EEF2FF); border: 1.5px solid #B5DEC9; border-radius: var(--radius-lg); padding: 14px; display: flex; align-items: center; gap: 12px; }
.schol-icon { font-size: 24px; flex-shrink: 0; }
.schol-title { font-size: 13px; font-weight: 700; color: var(--brand); }
.schol-sub { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
.schol-cta { margin-left: auto; padding: 7px 14px; background: var(--brand); color: var(--white); border: none; border-radius: var(--radius); font-size: 12px; font-weight: 600; white-space: nowrap; cursor: pointer; }

/* STICKY BUY */
.sticky-buy { position: sticky; bottom: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--gray-200); padding: 12px 16px; z-index: 100; box-shadow: 0 -4px 24px rgba(0,0,0,0.08); }
.sb-inner { display: flex; align-items: center; gap: 12px; }
.sb-price-block {}
.sb-was { font-size: 11px; color: var(--gray-300); text-decoration: line-through; }
.sb-plan-label { font-size: 10px; font-weight: 600; color: var(--gray-500); margin-bottom: 2px; }
.sb-now { font-size: 20px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.sb-emi { font-size: 11px; color: var(--brand); }
.sb-discount-badge { background: var(--gold-lt); color: var(--gold); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 5px; margin-left: 6px; }
.sb-ctas { display: flex; gap: 8px; margin-left: auto; }
.sb-wish { width: 40px; height: 40px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 16px; background: transparent; transition: all 0.15s; }
.sb-wish:hover { border-color: var(--rose); color: var(--rose); }
.sb-enroll { padding: 10px 20px; background: var(--brand); color: var(--white); border: none; border-radius: var(--radius); font-size: 14px; font-weight: 700; transition: all 0.15s; }
.sb-enroll:hover { background: var(--brand-mid); }

/* ────────────────────────────────────────────────────────────────────
   PAGE 3 — CHECKOUT
─────────────────────────────────────────────────────────────────────*/
.checkout-nav { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0 16px; height: 56px; display: flex; align-items: center; justify-content: space-between; }
.checkout-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.checkout-logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.checkout-secure { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-500); }
.checkout-secure span { color: var(--brand); font-weight: 600; }
.checkout-help { font-size: 12px; color: var(--brand); font-weight: 500; cursor: pointer; }

/* PROGRESS STEPS */
.prog-steps { background: var(--white); padding: 14px 16px; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; gap: 0; }
.prog-step { display: flex; align-items: center; gap: 6px; }
.ps-circle { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--gray-400); flex-shrink: 0; }
.ps-circle.done { background: var(--brand); border-color: var(--brand); color: var(--white); }
.ps-circle.active { border-color: var(--brand); color: var(--brand); }
.ps-label { font-size: 12px; color: var(--gray-400); white-space: nowrap; }
.ps-label.active { color: var(--gray-900); font-weight: 600; }
.ps-line { flex: 1; height: 2px; background: var(--gray-100); margin: 0 6px; }
.ps-line.done { background: var(--brand); }

/* URGENCY BAR */
.urgency-bar { background: #ECFDF5; border-bottom: 1px solid #A7F3D0; padding: 10px 16px; display: flex; align-items: center; gap: 10px; }
.urgency-live { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #065F46; flex: 1; }
.urgency-timer { background: #065F46; color: var(--white); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-sm); font-variant-numeric: tabular-nums; }

/* CHECKOUT BODY */
.co-section { background: var(--white); margin-top: 8px; padding: 16px; }
.co-label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }

/* SELECTED PROGRAM CARD */
.sel-prog-card { display: flex; align-items: flex-start; gap: 12px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 14px; }
.sel-prog-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--brand-lt); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.sel-prog-info { flex: 1; }
.sel-prog-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.sel-prog-tier { display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; }
.sel-prog-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.sel-feat { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray-500); }
.sel-feat .ck { color: var(--brand); font-size: 11px; }
.sel-change { font-size: 12px; color: var(--brand); font-weight: 500; cursor: pointer; white-space: nowrap; text-decoration: none; }
.sel-change:hover { text-decoration: underline; }

/* SCHOLARSHIP APPLIED */
.schol-applied { display: flex; align-items: center; gap: 8px; background: var(--brand-lt); border-radius: var(--radius); padding: 10px 12px; margin-top: 10px; border: 1px solid #B5DEC9; }
.sa-icon { font-size: 16px; }
.sa-text { flex: 1; font-size: 12px; color: #0B4D30; }
.sa-remove { font-size: 11px; color: var(--brand); cursor: pointer; font-weight: 500; }

/* PRICE BREAKDOWN */
.price-rows { }
.pr-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-50); font-size: 13px; }
.pr-row:last-child { border-bottom: none; padding-top: 12px; border-top: 1.5px solid var(--gray-200); margin-top: 4px; }
.pr-key { color: var(--gray-500); }
.pr-val { color: var(--gray-900); font-weight: 500; }
.pr-val.green { color: var(--brand); }
.pr-total-key { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.pr-total-val { font-size: 20px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.gst-note { font-size: 10px; color: var(--gray-400); text-align: right; margin-top: 4px; }

/* COUPON */
.coupon-row { display: flex; gap: 8px; }
.coupon-inp { flex: 1; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 10px 12px; font-size: 13px; color: var(--gray-900); background: var(--gray-50); outline: none; transition: border-color 0.2s; }
.coupon-inp:focus { border-color: var(--brand); background: var(--white); }
.coupon-btn { padding: 10px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--gray-700); background: var(--white); cursor: pointer; transition: all 0.15s; }
.coupon-btn:hover { border-color: var(--brand); color: var(--brand); }
.ref-link { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--brand); margin-top: 8px; cursor: pointer; }

/* EMI SELECTOR */
.emi-opts { display: flex; flex-direction: column; gap: 6px; }
.emi-opt-row { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 12px 14px; cursor: pointer; background: var(--white); transition: all 0.15s; }
.emi-opt-row.sel { border-color: var(--brand); background: var(--brand-lter); }
.emi-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--gray-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.15s; }
.emi-radio.sel { border-color: var(--brand); }
.emi-radio-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }
.emi-opt-info { flex: 1; }
.emi-opt-label { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.emi-opt-sub { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.emi-recommend { font-size: 10px; font-weight: 700; background: var(--gold-lt); color: var(--gold); padding: 2px 7px; border-radius: 4px; }

/* PAYMENT METHOD */
.pay-opts { display: flex; flex-direction: column; gap: 6px; }
.pay-opt { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 12px 14px; cursor: pointer; background: var(--white); transition: all 0.15s; }
.pay-opt.sel { border-color: var(--brand); }
.pay-opt-ic { width: 32px; height: 22px; background: var(--gray-100); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--gray-600); flex-shrink: 0; }
.pay-opt-name { font-size: 13px; font-weight: 500; color: var(--gray-900); flex: 1; }
.pay-opt-sub { font-size: 11px; color: var(--gray-400); margin-top: 1px; }
.pay-offer-badge { font-size: 10px; font-weight: 600; background: var(--gold-lt); color: var(--gold); padding: 2px 8px; border-radius: 4px; }

/* UPSELL */
.upsell-section { background: var(--white); margin-top: 8px; padding: 16px; border-top: 3px solid var(--gold-lt); }
.upsell-eyebrow { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.upsell-card { border: 1.5px solid #FDE68A; border-radius: var(--radius-lg); padding: 14px; margin-bottom: 8px; background: var(--white); }
.upsell-top { display: flex; gap: 10px; margin-bottom: 10px; }
.upsell-icon { width: 40px; height: 40px; background: var(--gold-lt); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.upsell-name { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.upsell-desc { font-size: 11px; color: var(--gray-500); margin-top: 3px; line-height: 1.6; }
.upsell-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.upsell-price { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.upsell-price small { font-size: 11px; color: var(--gray-400); font-weight: 400; }
.upsell-add-btn { padding: 7px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 12px; font-weight: 600; color: var(--gray-700); background: transparent; cursor: pointer; transition: all 0.15s; }
.upsell-add-btn:hover { border-color: var(--brand); color: var(--brand); }
.upsell-add-btn.added { background: var(--brand-lt); border-color: var(--brand); color: var(--brand); }

/* TRUST ROW */
.trust-row3 { display: flex; gap: 8px; background: var(--white); padding: 14px 16px; margin-top: 8px; flex-wrap: wrap; }
.trust3-item { display: flex; align-items: flex-start; gap: 8px; flex: 1; min-width: 130px; }
.trust3-icon { font-size: 18px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.trust3-text { font-size: 11px; color: var(--gray-500); line-height: 1.5; }
.trust3-text strong { color: var(--gray-800); display: block; font-size: 12px; margin-bottom: 1px; }

/* TESTIMONIAL IN CHECKOUT */
.co-testimonial { background: var(--gray-50); margin: 8px 16px 0; border-radius: var(--radius-lg); padding: 14px; display: flex; gap: 10px; border: 1px solid var(--gray-100); }
.co-test-av { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-lt); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--brand); flex-shrink: 0; }
.co-test-q { font-size: 12px; color: var(--gray-600); line-height: 1.7; font-style: italic; }
.co-test-name { font-size: 11px; font-weight: 600; color: var(--gray-700); margin-top: 6px; }
.co-test-role { font-size: 10px; color: var(--gray-400); }

/* CHECKOUT CTA */
.checkout-cta { position: sticky; bottom: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--gray-200); padding: 14px 16px; z-index: 100; box-shadow: 0 -4px 24px rgba(0,0,0,0.08); }
.cu-checkout-spacer { height: 140px; }
.cta-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cta-total-label { font-size: 12px; color: var(--gray-500); }
.cta-total-main { font-size: 20px; font-weight: 700; color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.cta-total-sub { font-size: 11px; color: var(--brand); margin-top: 2px; }
.cta-total-right { text-align: right; }
.cta-total-r-label { font-size: 11px; color: var(--gray-400); }
.cta-total-r-val { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.cta-main-btn { width: 100%; padding: 16px; background: var(--brand); border: none; border-radius: var(--radius-lg); font-size: 16px; font-weight: 700; color: var(--white); display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: all 0.15s; font-family: 'Plus Jakarta Sans', sans-serif; }
.cta-main-btn:hover { background: var(--brand-mid); transform: translateY(-1px); }
.cta-trust-note { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* UTILS */
.spacer { height: 100px; }
.divider { height: 1px; background: var(--gray-100); margin: 0 16px; }
.emoji { font-style: normal; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
.fade-in { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ── MULTI-PROGRAM PANELS ───────────────────────────────────────── */
.cu-program-panel { display: none; animation: fadeIn 0.35s ease; }
.cu-program-panel.is-active { display: block; }
.price-from-label { font-size: 11px; color: var(--gray-400); margin-bottom: 2px; }
.tier-emi { font-size: 10px; color: var(--brand); margin-top: 6px; line-height: 1.4; }
.cu-checkout-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200); padding: 0 16px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.cu-checkout-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cu-checkout-logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.cu-checkout-sub { font-size: 13px; font-weight: 400; color: var(--gray-500); }
.cu-program-panel .pg-back-top.cu-back-top { opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.cu-program-panel .pg-back-top.cu-back-top.is-visible { opacity: 1; pointer-events: auto; }
.pg-faq-item.hidden { display: none; }
.track-card { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.prog-card { transition: transform 0.18s ease, box-shadow 0.18s ease; }

/* ── MOBILE — Career Accelerator discovery & checkout ─────────────── */
@media (max-width: 767.98px) {
  .career-university-page .container { padding: 0 12px; }

  /* Discovery hero */
  .discovery-hero { padding: 24px 12px 20px; }
  .discovery-hero h1 { font-size: 24px; line-height: 1.28; margin-bottom: 10px; }
  .discovery-hero .hero-sub { font-size: 13px; margin-bottom: 16px; }
  .discovery-hero .search-wrap { margin-bottom: 12px; padding: 9px 12px; }
  .discovery-hero .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }
  .discovery-hero .hstat {
    padding: 10px 6px;
    border-color: rgba(255,255,255,0.15);
  }
  .discovery-hero .hstat:nth-child(2) { border-right: none; }
  .discovery-hero .hstat:nth-child(1),
  .discovery-hero .hstat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .discovery-hero .hstat-n { font-size: 16px; }

  .demand-ticker { padding: 8px 12px; }
  .demand-ticker-inner { padding: 0; gap: 16px; }
  .disc-section { padding: 18px 12px; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 12px; }
  .sec-title { font-size: 15px; }

  /* Program cards */
  .card-body { padding: 14px; }
  .card-title { font-size: 15px; }
  .card-tagline { font-size: 11px; margin-bottom: 12px; }
  .outcome-row { flex-direction: column; }
  .outcome-cell { padding: 10px 12px; text-align: left; }
  .outcome-cell + .outcome-cell { border-left: none; border-top: 1px solid var(--gray-200); }
  .outcome-val { font-size: 13px; }
  .card-meta-row { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .meta-cell { padding: 6px 4px; }
  .meta-v { font-size: 11px; }
  .meta-k { font-size: 9px; }
  .employers-row { gap: 4px; margin-bottom: 10px; }
  .emp-tag { font-size: 10px; padding: 2px 6px; }
  .hiring-row { flex-wrap: wrap; gap: 6px; }
  .hiring-label { width: 100%; }

  .card-price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
  }
  .price-block--website { width: 100%; }
  .cu-card-tier-prices { gap: 4px; }
  .cu-card-tier-price { padding: 6px 4px; }
  .cu-card-tier-price__amt { font-size: 11px; }
  .cu-card-tier-price__name { font-size: 8px; }
  .card-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .card-btn-outline,
  .card-btn-primary {
    width: 100%;
    padding: 10px 8px;
    font-size: 12px;
    text-align: center;
  }
  .card-rating-row { flex-wrap: wrap; gap: 4px; }
  .rating-badge { margin-left: 0; width: 100%; text-align: left; }

  /* Checkout / book-seat */
  .cu-checkout-page { padding-bottom: env(safe-area-inset-bottom); }
  .cu-registration-page {
    display: flex;
    flex-direction: column;
  }
  .cu-registration-page > .cu-checkout-nav { order: 0; }
  .cu-registration-page > .prog-steps { order: 1; }
  .cu-registration-page > .cu-reg-section--program { order: 2; }
  .cu-registration-page > .cu-reg-section--details { order: 3; }
  .cu-registration-page > .cu-reg-section--payment { order: 4; }
  .cu-registration-page > .cu-registration-banner { order: 5; }
  .cu-registration-page > .trust-row3 { order: 6; }
  .cu-registration-page > .cu-checkout-spacer { order: 7; height: 120px; }
  .cu-registration-page > .checkout-cta { order: 8; }
  .cu-checkout-nav {
    height: auto;
    min-height: 52px;
    padding: 10px 12px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .cu-checkout-logo {
    font-size: 15px;
    flex-wrap: wrap;
    line-height: 1.3;
  }
  .cu-checkout-sub { font-size: 11px; }

  .prog-steps {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 12px;
    gap: 0;
  }
  .prog-steps::-webkit-scrollbar { display: none; }
  .prog-step {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 68px;
  }
  .ps-circle { width: 22px; height: 22px; font-size: 10px; }
  .ps-label {
    font-size: 9px;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
    max-width: 68px;
  }
  .ps-line { flex: 0 0 8px; min-width: 8px; margin: 0 2px; align-self: center; margin-bottom: 18px; }

  .co-section { padding: 14px 12px; margin-top: 6px; }
  .cu-seat-banner,
  .cu-seat-done-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .cu-seat-banner strong,
  .cu-seat-done-banner strong { font-size: 13px; }

  .sel-prog-card { flex-wrap: wrap; gap: 10px; padding: 12px; }
  .sel-prog-icon { width: 40px; height: 40px; font-size: 18px; }
  .sel-prog-name { font-size: 13px; line-height: 1.35; }
  .sel-change { margin-left: auto; align-self: flex-start; }

  .trust-row3 {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }
  .trust3-item { min-width: 0; width: 100%; }

  .checkout-cta {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  }
  .cta-main-btn { font-size: 14px; padding: 14px 12px; }
  .cta-total-main { font-size: 18px; }
  .pr-total-val { font-size: 18px; }

  .spacer { height: 48px; }
}

@media (max-width: 399.98px) {
  .discovery-hero h1 { font-size: 21px; }
  .card-ctas { grid-template-columns: 1fr; }
  .prog-step { min-width: 60px; }
  .ps-label { max-width: 60px; font-size: 8px; }
}

