/*
 * program-page.css
 * Reusable stylesheet for JIS Management Studies program detail pages.
 * Works with MBA, BBA, and any future program pages.
 * ─────────────────────────────────────────────────────────────────────────────
 * USAGE
 *   <link rel="stylesheet" href="program-page.css">
 *
 * TOKENS (override per program by redefining in a <style> block or per-page CSS)
 *   --prog-primary   : accent / brand colour for this program
 *   --prog-secondary : gradient end colour
 *   --prog-accent    : highlight / CTA colour
 * ─────────────────────────────────────────────────────────────────────────────
 */
/* =========================================================
   0. RESET & GLOBAL TOKENS
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* ── Palette (neutral defaults — override per program) ── */
  --prog-primary:   #667eea;
  --prog-secondary: #764ba2;
  --prog-accent:    #ed64a6;
  /* ── Derived ── */
  --prog-gradient:      linear-gradient(135deg, var(--prog-primary), var(--prog-secondary));
  --prog-gradient-full: linear-gradient(135deg, var(--prog-primary), var(--prog-secondary), var(--prog-accent));
  --prog-lt:            color-mix(in srgb, var(--prog-primary) 12%, white);
  --prog-mid:           color-mix(in srgb, var(--prog-primary) 25%, white);
  /* ── Neutrals ── */
  --dark:    #0f1419;
  --dark-2:  #1a1f35;
  --ink:     #0f1419;
  --ink-2:   #1a1f35;
  --text:    #2d3748;
  --muted:   #556080;
  --muted-2: #64748b;
  --cream:   #f8f9fd;
  --sand:    #f1f5f9;
  --white:   #ffffff;
  --border:  rgba(15, 20, 35, 0.08);
  /* ── Semantic colours (kept consistent) ── */
  --teal:    #14b8a6;
  --teal-lt: #ccfbf1;
  --rust:    #f43f5e;
  /* ── Layout ── */
  --sidebar-w: 300px;
  --radius:    20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  /* ── Typography ── */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'Sora', sans-serif;
  --font-mono:    'Courier New', monospace;
}
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* =========================================================
   1. HERO — MAGAZINE EDITORIAL SPLIT
   ========================================================= */
.prog-hero {
  margin-top: -150px;
  padding-top: 150px;
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* ── Left pane ── */
.prog-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px 80px;
  background: linear-gradient(135deg, #0a0d1a 0%, #0f1419 60%, #16213e 100%);
}
.prog-hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, #0f1419);
  z-index: 3;
}
.prog-hero-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--prog-primary) 15%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
/* ── Right pane ── */
.prog-hero-right {
  position: relative;
  overflow: hidden;
}
.prog-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(1.1);
}
.prog-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f1419 0%, transparent 40%, rgba(102,126,234,0.12) 100%);
  z-index: 1;
}
/* ── Floating badge ── */
.hero-img-badge {
  position: absolute;
  bottom: 48px; right: 40px;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--prog-gradient);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon i { font-size: 1.4rem; color: #fff; }
.hero-badge-text strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; }
.hero-badge-text span   { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }
/* ── Hero content ── */
.prog-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102,126,234,0.15);
  border: 1px solid rgba(102,126,234,0.3);
  color: #a5b4fc;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  align-self: flex-start;
}
.prog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.prog-hero-title .title-sub {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-style: italic;
}
.prog-hero-title .title-accent {
  background: linear-gradient(135deg, #a5b4fc 0%, #e879f9 60%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prog-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 24px 0 40px;
}
/* ── Pills ── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-pill i { color: #a5b4fc; font-size: 0.9rem; }
.hero-pill:hover {
  background: rgba(102,126,234,0.2);
  border-color: rgba(102,126,234,0.4);
}
/* ── CTA buttons ── */
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--prog-gradient);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--prog-primary) 40%, transparent);
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
}
.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--prog-primary) 55%, transparent);
}
.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.35s ease;
}
.btn-brochure:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: color-mix(in srgb, var(--prog-primary) 80%, white);
  animation: scrollSweep 2s ease-in-out infinite;
}
@keyframes scrollSweep {
  0%   { left: -100%; }
  100% { left:  100%; }
}
/* ── Wave ── */
.prog-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 5;
  line-height: 0;
}
/* =========================================================
   2. PAGE LAYOUT
   ========================================================= */
.page-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 48px 80px;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 48px;
  align-items: start;
}
.main-content { min-width: 0; }
.sidebar { position: sticky; top: 84px; }
/* =========================================================
   3. SECTION BASE
   ========================================================= */
.section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 28px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--prog-primary);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--prog-primary);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}
/* =========================================================
   4. ABOUT / INFO GRID
   ========================================================= */
.about-lead {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-item {
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.about-item-label {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.about-item-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
/* =========================================================
   5. SPECIALIZATIONS
   ========================================================= */
.spec-grid { display: flex; flex-direction: column; gap: 14px; }
.spec-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.spec-card:hover {
  background: var(--white);
  border-color: var(--prog-primary);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--prog-primary) 12%, transparent);
  transform: translateX(4px);
}
.spec-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--prog-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.spec-icon i { color: var(--prog-primary); font-size: 1.2rem; transition: color 0.25s; }
.spec-card:hover .spec-icon { background: var(--prog-primary); }
.spec-card:hover .spec-icon i { color: var(--white); }
.spec-name { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.spec-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.spec-ai-tag {
  display: inline-block;
  background: var(--teal-lt); color: var(--teal);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 3px 9px; border-radius: 20px; margin-top: 8px;
}
/* Dual-spec layout */
.dual-spec-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.dual-spec-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--prog-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--prog-lt);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dual-spec-col-title i { font-size: 0.85rem; }
/* =========================================================
   6. HIGHLIGHTS / BENTO
   ========================================================= */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.hl-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hl-card:hover {
  background: var(--white);
  border-color: var(--prog-primary);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--prog-primary) 12%, transparent);
  transform: translateY(-4px);
}
.hl-card.wide { grid-column: span 2; }
.hl-card.accent {
  background: var(--ink);
  border-color: var(--ink);
}
.hl-card.accent:hover { border-color: var(--prog-primary); transform: translateY(-4px); }
.hl-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--prog-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.hl-icon i { color: var(--prog-primary); font-size: 1.1rem; }
.hl-card.accent .hl-icon { background: color-mix(in srgb, var(--prog-primary) 20%, transparent); }
.hl-card.accent .hl-icon i { color: color-mix(in srgb, var(--prog-primary) 80%, white); }
.hl-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--prog-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hl-card.accent .hl-num { color: color-mix(in srgb, var(--prog-primary) 80%, white); }
.hl-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.hl-card.accent .hl-title { color: var(--white); }
.hl-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.hl-card.accent .hl-desc { color: rgba(250,248,244,0.55); }
/* =========================================================
   7. CURRICULUM TABS
   ========================================================= */
.curriculum-tabs { margin-top: 28px; }
.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none; border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: -2px;
  font-family: var(--font-body);
}
.tab-btn i { font-size: 0.8rem; }
.tab-btn:hover { color: var(--prog-primary); }
.tab-btn.active { color: var(--prog-primary); border-bottom-color: var(--prog-primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── Table ── */
.table-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.curriculum-table {
  width: 100%; border-collapse: collapse; font-size: 0.875rem;
}
.curriculum-table thead tr { background: var(--ink); }
.curriculum-table thead th {
  padding: 14px 16px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: rgba(250,248,244,0.55);
  text-align: left;
}
.curriculum-table thead th:first-child { padding-left: 24px; }
.curriculum-table thead th:last-child  { padding-right: 24px; }
.curriculum-table .group-row th {
  background: linear-gradient(90deg, var(--prog-lt), var(--sand));
  padding: 12px 24px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--prog-primary);
  text-transform: uppercase; letter-spacing: 1px;
  border-left: 3px solid var(--prog-primary);
}
.curriculum-table tbody tr td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted); vertical-align: middle;
}
.curriculum-table tbody tr td:first-child { padding-left: 24px; color: var(--muted-2); font-weight: 600; }
.curriculum-table tbody tr td:last-child  { padding-right: 24px; }
.curriculum-table tbody tr:last-child td  { border-bottom: none; }
.curriculum-table tbody tr:hover td { background: var(--cream); }
.course-name { font-weight: 600; color: var(--ink); }
.course-code { font-family: var(--font-mono); font-size: 0.8rem; color: var(--teal); font-weight: 600; }
.type-badge {
  display: inline-block; padding: 3px 8px;
  border-radius: 6px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.type-pc  { background: color-mix(in srgb, var(--prog-primary) 12%, white); color: var(--prog-primary); }
.type-bs  { background: rgba(20,184,166,0.12); color: var(--teal); }
.type-mc  { background: rgba(244,63,94,0.10); color: var(--rust); }
.type-cc  { background: color-mix(in srgb, var(--prog-primary) 12%, white); color: var(--prog-primary); }
.type-aec { background: rgba(20,184,166,0.12); color: var(--teal); }
.type-sec { background: rgba(244,63,94,0.10); color: var(--rust); }
.type-vac { background: rgba(100,116,139,0.12); color: var(--muted-2); }
.type-md  { background: rgba(100,116,139,0.12); color: var(--muted-2); }
.credits-cell { font-weight: 700; color: var(--teal); }
.subtotal-row td {
  background: var(--cream) !important;
  font-weight: 700; color: var(--ink);
  border-top: 2px solid var(--border);
  font-size: 0.85rem;
}
.total-row td {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--prog-primary) 8%, white),
    color-mix(in srgb, var(--prog-primary) 4%, white)) !important;
  font-weight: 800; color: var(--prog-primary);
  font-size: 0.95rem;
  border-top: 2px solid color-mix(in srgb, var(--prog-primary) 20%, transparent);
}
.note-banner {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--prog-lt);
  border: 1px solid color-mix(in srgb, var(--prog-primary) 25%, transparent);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.875rem; color: var(--ink-2); line-height: 1.6;
}
.note-banner i { color: var(--prog-primary); margin-top: 2px; flex-shrink: 0; }
/* =========================================================
   8. CAREER OUTCOMES
   ========================================================= */
.career-cats { display: flex; flex-direction: column; gap: 14px; }
.career-cat  { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.career-cat-hdr {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--cream);
  border-bottom: 1px solid transparent;
  cursor: pointer; transition: background 0.2s; user-select: none;
}
.career-cat-hdr:hover { background: var(--sand); }
.career-cat.open .career-cat-hdr { border-bottom-color: var(--border); }
.cat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--prog-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cat-icon i { color: var(--prog-primary); font-size: 0.9rem; }
.cat-name   { font-size: 0.95rem; font-weight: 700; color: var(--ink); flex: 1; }
.cat-toggle { color: var(--muted); font-size: 0.75rem; transition: transform 0.3s ease; }
.career-cat.open .cat-toggle { transform: rotate(180deg); }
.career-cat-body { display: none; padding: 18px 20px; }
.career-cat.open .career-cat-body { display: block; }
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 10px; }
.role-pill {
  padding: 12px 14px; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all 0.2s;
}
.role-pill:hover { background: var(--prog-lt); border-color: color-mix(in srgb, var(--prog-primary) 30%, transparent); }
.role-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.role-co   { font-size: 0.73rem; color: var(--muted-2); }
.entrepreneurship-box {
  margin-top: 20px; padding: 24px;
  background: linear-gradient(135deg, var(--prog-lt), color-mix(in srgb, var(--prog-primary) 4%, white));
  border: 1px solid color-mix(in srgb, var(--prog-primary) 22%, transparent);
  border-radius: var(--radius-md);
}
.entrepreneurship-box h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; color: var(--prog-primary); margin-bottom: 10px;
}
.entrepreneurship-box p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
/* =========================================================
   9. SIDEBAR
   ========================================================= */
.sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
}
.swgt-head {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.swgt-head h3 { font-size: 0.8rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.8px; }
.swgt-head i  { color: var(--prog-primary); font-size: 0.85rem; }
.swgt-body { padding: 18px 20px; }
/* ── Apply widget ── */
.apply-widget {
  background: var(--ink); border-radius: var(--radius);
  padding: 28px 22px; margin-bottom: 20px;
  text-align: center; position: relative; overflow: hidden;
}
.apply-widget::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, color-mix(in srgb, var(--prog-primary) 20%, transparent), transparent 65%);
  pointer-events: none;
}
.aw-icon {
  width: 52px; height: 52px;
  background: color-mix(in srgb, var(--prog-primary) 15%, transparent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.aw-icon i { color: color-mix(in srgb, var(--prog-primary) 80%, white); font-size: 1.3rem; }
.apply-widget h3 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--white); margin-bottom: 6px; }
.apply-widget p  { font-size: 0.8rem; color: rgba(250,248,244,0.5); margin-bottom: 20px; line-height: 1.55; }
.btn-aw-apply {
  display: block; background: var(--prog-primary); color: var(--white);
  padding: 13px; border-radius: 10px; font-size: 0.9rem; font-weight: 700;
  text-decoration: none; margin-bottom: 9px; transition: all 0.25s;
}
.btn-aw-apply:hover {
  background: var(--prog-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--prog-primary) 35%, transparent);
}
.btn-aw-advisor {
  display: block; background: transparent; color: rgba(250,248,244,0.55);
  padding: 11px; border-radius: 10px; font-size: 0.82rem; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(250,248,244,0.15); transition: all 0.25s;
}
.btn-aw-advisor:hover { color: var(--white); border-color: rgba(250,248,244,0.35); }
/* ── Downloads ── */
.dl-list { display: flex; flex-direction: column; gap: 9px; }
.dl-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--cream);
  text-decoration: none; transition: all 0.25s;
}
.dl-item:hover { background: var(--prog-lt); border-color: color-mix(in srgb, var(--prog-primary) 30%, transparent); transform: translateX(3px); }
.dl-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dl-icon.pdf { background: rgba(244,63,94,0.1); } .dl-icon.pdf i { color: var(--rust); font-size: 0.9rem; }
.dl-icon.doc { background: rgba(20,184,166,0.1); } .dl-icon.doc i { color: var(--teal); font-size: 0.9rem; }
.dl-icon.lnk { background: var(--prog-lt); } .dl-icon.lnk i { color: var(--prog-primary); font-size: 0.9rem; }
.dl-info { flex: 1; min-width: 0; }
.dl-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-meta { font-size: 0.7rem; color: var(--muted-2); }
.dl-arrow { color: var(--muted-2); font-size: 0.7rem; }
.dl-item:hover .dl-arrow { color: var(--prog-primary); }
/* ── Quick facts ── */
.fact-list { display: flex; flex-direction: column; }
.fact-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.fact-row:last-child { border-bottom: none; }
.fact-key { display: flex; align-items: center; gap: 8px; font-size: 0.79rem; color: var(--muted); font-weight: 500; }
.fact-key i { color: var(--prog-primary); font-size: 0.75rem; width: 14px; text-align: center; }
.fact-val { font-size: 0.81rem; font-weight: 700; color: var(--ink); text-align: right; }
.fact-tag { display: inline-block; background: var(--teal-lt); color: var(--teal); padding: 2px 8px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; }
/* ── On-page nav ── */
.pg-nav { display: flex; flex-direction: column; gap: 2px; }
.pg-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  font-size: 0.84rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: all 0.2s;
}
.pg-nav-item i { font-size: 0.78rem; width: 16px; text-align: center; color: var(--muted-2); }
.pg-nav-item:hover, .pg-nav-item.active { background: var(--prog-lt); color: var(--prog-primary); }
.pg-nav-item:hover i, .pg-nav-item.active i { color: var(--prog-primary); }
/* =========================================================
   10. CTA STRIP (footer)
   ========================================================= */
.prog-cta-strip {
  background: var(--prog-gradient-full);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.prog-cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 40%);
}
.cta-strip-container {
  max-width: 900px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.cta-strip-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff;
  margin-bottom: 16px; line-height: 1.2;
}
.cta-strip-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  margin-bottom: 40px; line-height: 1.7;
}
.cta-strip-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--prog-secondary);
  padding: 18px 40px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.35s ease;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  padding: 18px 36px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.35s ease;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
/* =========================================================
   11. SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
/* =========================================================
   12. RESPONSIVE
   ========================================================= */
@media only screen and (max-width: 1100px) {
  .page-layout { grid-template-columns: 1fr; padding: 40px 28px 60px; }
  .sidebar { position: static; }
  .dual-spec-wrap { grid-template-columns: 1fr; }
}
@media only screen and (max-width: 1024px) {
  .prog-hero { grid-template-columns: 1fr; min-height: auto; }
  .prog-hero-right { height: 360px; order: -1; }
  .prog-hero-left { padding: 80px 40px 80px; }
  .prog-hero-left::after { display: none; }
  .hero-scroll-hint { display: none; }
}
@media only screen and (max-width: 768px) {
  .prog-hero-left { padding: 60px 28px 80px; }
  .prog-hero-right { height: 300px; }
  .hero-img-badge { bottom: 20px; right: 20px; padding: 14px 18px; }
  .about-grid, .highlights-grid { grid-template-columns: 1fr; }
  .hl-card.wide { grid-column: span 1; }
  .tab-nav { gap: 4px; }
  .tab-btn { padding: 10px 14px; font-size: 0.8rem; }
}
@media only screen and (max-width: 640px) {
  .page-layout { padding: 24px 16px 48px; }
  .section { padding: 24px 18px; }
  .curriculum-table { font-size: 0.78rem; min-width: 680px; }
  .curriculum-table th, .curriculum-table td { padding: 10px 8px; white-space: nowrap; }
  .cta-strip-buttons { flex-direction: column; align-items: center; }
}
@media only screen and (max-width: 480px) {
  .prog-hero-title { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; }
  .btn-apply, .btn-brochure { width: 100%; justify-content: center; }
}