:root {
  --navy: #012A60;
  --navy-700: #01204A;
  --navy-800: #001A3D;
  --navy-900: #000F28;
  --gold: #B48C42;
  --gold-600: #9A7534;
  --gold-300: #D4AF6A;
  --gold-100: #F4E8CC;
  --cream: #F7F5F1;
  --paper: #FFFcf8;
  --ink: #122033;
  --muted: #5C6B7A;
  --line: rgba(1, 42, 96, 0.10);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(1, 42, 96, 0.10);
  --radius: 18px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-600); }

.container-xl {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-sans);
  color: var(--navy-800);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 650; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 650; }
h3 { font-size: 1.25rem; }

.gold-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-300));
  border: 0;
  margin: 16px 0 20px;
  position: relative;
}
.gold-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold);
}

.eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-muted { color: var(--muted); max-width: 640px; }

/* Buttons */
.btn-gold,
.btn-navy,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: 0.22s ease;
}
.btn-gold {
  background: linear-gradient(180deg, #c9a35a, var(--gold));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(180, 140, 66, 0.28);
}
.btn-gold:hover { color: var(--navy-900); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-300); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(1,42,96,.2);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: 0.22s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-600); }

/* Topbar + Header */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--gold-300); }
.topbar .gold { color: var(--gold-300); }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1040;
}
.site-header.is-stuck {
  box-shadow: 0 10px 30px rgba(1,42,96,.08);
}
.site-header.is-stuck .navbar-brand img { height: 40px; }
.site-header .navbar { padding-top: 4px; padding-bottom: 4px; }
.navbar-brand img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: height 0.28s ease;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-800) !important;
  padding: 8px 12px !important;
}
.nav-link:hover,
.nav-link.active { color: var(--gold-600) !important; }
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 240px;
}
.dropdown-item { border-radius: 8px; font-size: 0.92rem; }
.dropdown-item:hover { background: var(--cream); color: var(--navy); }
.dropdown-menu-areas {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  min-width: 280px;
}

.header-cta { margin-left: 8px; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(180,140,66,.16), transparent 28%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy) 100%);
  color: #fff;
  overflow-x: clip;
  overflow-y: visible;
  padding: 72px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 70% 40%, #000 20%, transparent 70%);
  pointer-events: none;
}
.hero h1 { color: #fff; max-width: min(22ch, 100%); }
.hero .lead { color: rgba(255,255,255,.78); max-width: min(52ch, 100%); font-size: 1.08rem; }
.hero-visual {
  position: relative;
  min-height: 420px;
}
.tech-stage {
  position: relative;
  height: 430px;
  border: 1px solid rgba(180,140,66,.28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.tech-stage svg { width: 100%; height: 100%; }
.float-card {
  position: absolute;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(180,140,66,.35);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  min-width: 128px;
  animation: floatY 6s ease-in-out infinite;
}
.float-card b { display: block; color: var(--gold-300); font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; }
.float-card:nth-child(2) { top: 28px; left: 24px; animation-delay: .2s; }
.float-card:nth-child(3) { top: 70px; right: 22px; animation-delay: 1s; }
.float-card:nth-child(4) { bottom: 90px; left: 30px; animation-delay: 1.6s; }
.float-card:nth-child(5) { bottom: 28px; right: 36px; animation-delay: .8s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.code-pane {
  position: absolute;
  left: 18%;
  top: 28%;
  width: 64%;
  background: rgba(0, 15, 40, .72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #c9d6e5;
  line-height: 1.7;
}
.code-pane .g { color: var(--gold-300); }
.code-pane .b { color: #8fb4e8; }

/* Stats */
.stats-strip {
  background: #fff;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--navy);
}
.stat span { color: var(--muted); font-size: 0.9rem; }

/* Sections */
.section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy-900);
  color: #fff;
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { margin-bottom: 36px; }

/* Cards */
.course-card,
.category-card,
.blog-card,
.faculty-card,
.testimonial-card,
.location-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(1,42,96,.04);
  height: 100%;
  transition: 0.22s ease;
  overflow: hidden;
}
.course-card:hover,
.category-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180,140,66,.45);
  box-shadow: 0 18px 40px rgba(1,42,96,.10);
}
.course-card { display: flex; flex-direction: column; position: relative; }
.course-card-visual {
  height: 148px;
  overflow: hidden;
  background: #012A60;
}
.course-card-visual .media-frame { margin: 0; height: 100%; }
.course-card-visual .media-img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transform: scale(1);
  transition: transform .45s ease;
}
.course-card:hover .course-card-visual .media-img { transform: scale(1.04); }
.course-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-300), transparent);
}
.course-card-body { padding: 20px 20px 16px; flex: 1; }
.course-card-foot {
  padding: 0 20px 18px;
  display: flex;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--navy);
  margin: 0 6px 6px 0;
}
.chip-gold { background: var(--gold-100); color: var(--gold-600); }
.category-card { padding: 0; }
.category-card-body { padding: 24px; }
.category-card .count { color: var(--gold-600); font-family: var(--font-sans); font-size: 0.82rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-item {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }

.cta-banner {
  background:
    linear-gradient(135deg, rgba(180,140,66,.16), transparent 40%),
    var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 42px;
}
.cta-banner h2 { color: #fff; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
}
.faq-item .faq-body { padding: 0 18px 16px; color: var(--muted); display: none; }
.faq-item.open .faq-body { display: block; }

.breadcrumb {
  background: transparent;
  padding: 18px 0 0;
  font-size: 0.88rem;
}
.breadcrumb-item + .breadcrumb-item::before { content: "›"; }

.course-hero {
  background: linear-gradient(180deg, var(--navy-900), var(--navy));
  color: #fff;
  padding: 28px 0 48px;
}
.course-hero h1 { color: #fff; }
.meta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.meta-pills span {
  border: 1px solid rgba(180,140,66,.4);
  color: var(--gold-100);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
}

.sticky-cta {
  position: sticky;
  top: 92px;
}

.filter-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.mobile-dock {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  z-index: 1050;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.mobile-dock a {
  text-align: center;
  border-radius: 10px;
  padding: 8px 6px;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.dock-call { background: var(--navy); color: #fff !important; }
.dock-wa { background: #128C7E; color: #fff !important; }
.dock-en { background: var(--gold); color: var(--navy-900) !important; }

.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding: 56px 0 24px;
}
.site-footer h3, .site-footer h4 { color: #fff; font-size: 1rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold-300); }
.footer-logo-plate {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 16px;
}
.footer-logo { height: 54px; margin-bottom: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.85rem;
}

.search-suggest {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 100%;
  z-index: 20;
  box-shadow: var(--shadow);
  display: none;
}
.search-suggest a {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.form-control, .form-select {
  min-height: 48px;
  border-radius: 12px;
  border-color: rgba(1,42,96,.16);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(180,140,66,.18);
}

.alert-brand {
  border-radius: 12px;
  border: 0;
}

.compare-check { accent-color: var(--gold); }

@media (max-width: 991.98px) {
  .navbar-brand img { height: 46px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 28px 0 8px; }
  .hero-visual { min-height: 200px; margin-top: 16px; }
  .tech-stage { height: 220px; }
  .mobile-dock { display: grid; }
  body { padding-bottom: 72px; }
  .header-cta { display: none !important; }
}
@media (max-width: 575.98px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 28px 20px; }
}

.hero-slider-wrap { padding: 0 0 12px; }
.hero-slider-wrap .carousel-inner { padding-bottom: 44px; }
.hero-slider-wrap .carousel-item { min-height: 0; }
.hero-slide { padding: 48px 0 24px; position: relative; z-index: 1; }
.hero-slide-solo { max-width: 46rem; }
.hero-slider-wrap h1,
.hero-h { color: #fff; max-width: min(22ch, 100%); }
.hero-h { font-size: clamp(1.55rem, 3.4vw, 3rem); font-weight: 650; word-break: break-word; }
.hero-kicker {
  color: var(--gold-300);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(.72rem, 2.2vw, .82rem);
  font-family: var(--font-sans);
  margin-top: 12px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero-slider-wrap .carousel-indicators {
  margin-bottom: 6px;
  position: absolute;
  bottom: 0;
}
.hero-slider-wrap .carousel-control-prev,
.hero-slider-wrap .carousel-control-next { width: 48px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  position: relative;
  z-index: 1;
  padding: 8px 0 20px;
}
.trust-strip span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(180,140,66,.28);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .85rem;
  text-align: center;
  color: rgba(255,255,255,.88);
  overflow-wrap: anywhere;
}

/* Brand-first hero */
.brand-hero { padding: 0 0 12px; }
.brand-hero .hero-slide { padding: 64px 0 36px; }
.brand-hero h1 {
  max-width: 28ch;
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.9);
  margin: 0;
}
.brand-kicker {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 2.1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
.brand-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 14ch;
}
.brand-stage {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(180,140,66,.35);
  background:
    radial-gradient(circle at 50% 40%, rgba(180,140,66,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.25));
  overflow: hidden;
}
.brand-stage img {
  width: min(88%, 340px);
  height: auto;
  position: relative;
  z-index: 1;
}
.stage-logo-plate {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.stage-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(180,140,66,.28);
  animation: floatY 8s ease-in-out infinite;
}
.contact-strip {
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  padding: 10px 0;
  border-bottom: 1px solid rgba(180,140,66,.45);
}
.contact-strip a {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.contact-strip a:hover { color: var(--gold-300); }
.strip-brand {
  font-family: var(--font-serif);
  color: var(--gold-300);
  font-size: 1.05rem;
}
.facts-wrap { padding: 0 0 8px; position: relative; z-index: 3; }
.facts-wrap.is-overlap { margin-top: -22px; }
.facts-bar {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.fact {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1.1;
}
.fact span { color: var(--muted); font-size: 0.88rem; }

.enquire-card,
.reach-card,
.studio-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(1,42,96,.05);
}
.reach-list { margin: 0; }
.reach-list > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.reach-list > div:last-child { border-bottom: 0; }
.reach-list dt {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 4px;
}
.reach-list dd { margin: 0; color: var(--ink); }
.honesty-note {
  background: var(--gold-100);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 16px 18px;
}
.editorial-more {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.editorial-more summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}
.editorial-more summary::-webkit-details-marker { display: none; }
.editorial-more summary::after { content: " +"; color: var(--gold-600); }
.editorial-more[open] summary::after { content: " –"; }
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  color: inherit;
  transition: 0.2s ease;
}
.path-card:hover {
  border-color: rgba(180,140,66,.5);
  transform: translateY(-3px);
  color: inherit;
}
.path-card h3 { font-size: 1.05rem; }
.pathway-pills .nav-link {
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  margin-right: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.pathway-pills .nav-link.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.course-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: thin;
}
.course-rail-item {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
}
.finder-panel { padding: 32px; }
.section-navy p { color: rgba(255,255,255,.8); }
.section-navy a { color: var(--gold-300); }
.section-navy a:hover { color: var(--gold-100); }
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(180,140,66,.35);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1040;
  background: #128C7E;
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-family: var(--font-sans);
  box-shadow: 0 12px 30px rgba(18,140,126,.35);
  align-items: center;
  justify-content: center;
}
.wa-float:hover { color: #fff !important; background: #0e7a6e; }
.quick-facts { list-style: none; padding: 0; margin: 0; }
.quick-facts li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.article-body p { margin-bottom: 1rem; }
.course-copy p { margin-bottom: 1rem; }
.js-finder-results .course-card { height: 100%; }
.faq-item button { position: relative; padding-right: 42px; }
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 16px;
  color: var(--gold-600);
  font-size: 1.2rem;
}
.faq-item.open button::after { content: "–"; }

.career-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.career-steps li {
  position: relative;
  padding: 16px 16px 16px 48px;
  border-left: 2px solid var(--gold);
  margin-left: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
}
.career-steps li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.aeo-list { display: grid; gap: 12px; }
.aeo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
}
.aeo-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.last-updated { font-size: .85rem; color: var(--muted, #5b6b7c); margin: 8px 0 0; }
.video-frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; background: #012A60; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.topic-web { padding-top: 8px; }

.media-frame { margin: 0; }
.media-frame img.media-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  background: #012A60;
}
.media-frame figcaption {
  font-size: .75rem;
  color: #6b7785;
  margin-top: 8px;
  line-height: 1.4;
}
.brand-stage {
  position: relative;
  min-height: 0;
}
.brand-stage .stage-orb { display: none; }
.stage-logo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  z-index: 2;
}
.stage-logo-badge img { height: 40px; width: auto; display: block; }
.navbar-brand img { height: 48px; width: auto; max-width: 240px; object-fit: contain; }
.footer-logo { height: 56px; width: auto; max-width: 280px; object-fit: contain; }
.brand-film { position: relative; overflow: hidden; border-radius: 24px; }
.brand-hero .brand-stage .media-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}
.brand-film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s ease;
}
.brand-film-video.is-on { opacity: 1; }
.brand-film-end {
  position: absolute;
  inset: auto 16px 16px auto;
  z-index: 3;
  text-align: right;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-points span {
  border: 1px solid rgba(180,140,66,.4);
  color: rgba(255,255,255,.88);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .78rem;
}
.course-hero .media-frame img { border-radius: 24px; }
.brand-hero .media-frame figcaption,
.course-hero .media-frame figcaption {
  color: rgba(255,255,255,.55);
}
.mixed-media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px 12px 18px;
  height: 100%;
}
.mixed-media-card h3 { font-size: 1.05rem; margin: 12px 0 6px; }
.media-reveal { animation: mediaIn .7s ease both; }
@keyframes mediaIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .course-card, .category-card, .blog-card, .course-card-visual .media-img, .stage-orb, .media-reveal, .brand-film-video,
  .quick-card, .path-card, .why-item, .choice-btn, .filter-chip, .header-cta .btn-outline {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 991.98px) {
  .contact-strip { display: none; }
  .hero-slider-wrap .carousel-item,
  .brand-hero .carousel-item { min-height: 0; }
  .hero-slide { padding: 32px 0 20px; }
  .facts-bar { grid-template-columns: 1fr 1fr; }
  .fact { border-bottom: 1px solid var(--line); }
  .fact:nth-last-child(-n+2) { border-bottom: 0; }
  .brand-tagline,
  .brand-hero h1.brand-tagline { max-width: 100%; }
  .facts-wrap,
  .facts-wrap.is-overlap { margin-top: 12px; }
}

/* —— Design system extensions —— */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  background: var(--gold);
  color: var(--navy-900);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.header-cta .btn-outline,
.header-cta .btn-gold {
  min-height: 40px;
  padding: 0 14px;
  font-size: .82rem;
}
.mega-label {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
  font-weight: 600;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 420px;
}
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .mega-host { position: static; }
  .mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, calc(100vw - 48px));
    padding: 18px 20px;
  }
}
.navbar-toggler {
  border: 1px solid var(--line);
  padding: 8px 10px;
}
.navbar-toggler-icon {
  width: 1.3em;
  height: 1.3em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23012A60' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-drawer { width: min(420px, 100vw); }
.drawer-link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1px solid var(--line);
}
.drawer-link:hover { color: var(--gold-600); }

.hero-slider-wrap .carousel-indicators [data-bs-target] {
  width: 36px;
  height: 3px;
  border-radius: 0;
  background: rgba(255,255,255,.28);
}
.hero-slider-wrap .carousel-indicators .active { background: var(--gold); }
.brand-hero h1.brand-tagline {
  max-width: min(12ch, 100%);
  font-size: clamp(1.85rem, 7vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}
.hero-actions {
  margin-top: 24px;
  width: 100%;
}
.hero .lead {
  max-width: min(52ch, 100%);
  overflow-wrap: anywhere;
}

.quick-actions {
  background: var(--paper);
  padding: 16px 0 8px;
  position: relative;
  z-index: 3;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 12px;
}
.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 92px;
  color: inherit;
  box-shadow: 0 10px 24px rgba(1,42,96,.04);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180,140,66,.45);
  color: inherit;
  box-shadow: 0 16px 32px rgba(1,42,96,.08);
}
.quick-card strong {
  font-family: var(--font-sans);
  color: var(--navy-800);
  font-size: .95rem;
}
.quick-card span:last-child { color: var(--muted); font-size: .82rem; }
.quick-ico {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 8px;
}

.search-panel { max-width: 720px; }
.search-panel .form-label {
  font-family: var(--font-sans);
  font-weight: 650;
  color: var(--navy-800);
  font-size: 1.15rem;
}
.search-suggest a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-suggest small { font-size: .78rem; }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
}
.filter-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .88rem;
  transition: .25s ease;
}
.filter-chip:hover,
.filter-chip.is-on {
  border-color: var(--gold);
  background: var(--gold-100);
  color: var(--navy-800);
}

.why-grid .why-item {
  transition: transform .28s ease, border-color .28s ease;
}
.why-grid .why-item::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--gold-100);
  border: 1px solid rgba(180,140,66,.45);
}
.why-grid .why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(180,140,66,.4);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.choice-btn {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-800);
  transition: .25s ease;
}
.choice-btn:hover,
.choice-btn.is-on {
  border-color: var(--gold);
  background: var(--gold-100);
}
.wizard-step { display: none; }
.wizard-step.is-on { display: block; animation: mediaIn .35s ease; }
.wizard-q {
  font-family: var(--font-sans);
  font-weight: 650;
  color: var(--navy-800);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.wizard-bar {
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  margin-bottom: 22px;
  overflow: hidden;
}
.wizard-bar span {
  display: block;
  height: 100%;
  width: 33%;
  background: var(--gold);
  transition: width .35s ease;
}

.career-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.career-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  position: relative;
}
.career-node strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--navy-800);
}
.career-node span { color: var(--muted); font-size: .82rem; }
.career-node:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-600);
  z-index: 1;
}

.offer-card {
  border: 1px solid rgba(180,140,66,.35);
  background: linear-gradient(180deg, #fff, var(--gold-100));
  border-radius: 18px;
  padding: 22px;
  height: 100%;
}
.offer-card h3 { font-size: 1.1rem; }

.location-pick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  max-width: 640px;
  box-shadow: var(--shadow);
}

.curriculum {
  display: grid;
  gap: 10px;
}
.curriculum-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.curriculum-item > button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px 16px 64px;
  position: relative;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
}
.curriculum-item > button .num {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: grid;
  place-items: center;
  font-size: .78rem;
}
.curriculum-body {
  display: none;
  padding: 0 18px 16px 64px;
  color: var(--muted);
}
.curriculum-item.open .curriculum-body { display: block; }
.curriculum-item.open > button::after { content: "–"; }
.curriculum-item > button::after {
  content: "+";
  position: absolute;
  right: 16px;
  color: var(--gold-600);
}

.compare-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-table th { background: var(--cream); color: var(--navy); font-family: var(--font-sans); }

.category-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  height: 100%;
  transition: .28s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180,140,66,.45);
  color: inherit;
}
.showcase-card .body { padding: 20px; }
.showcase-card ul { margin: 0; padding-left: 18px; color: var(--muted); }

@media (max-width: 1199.98px) {
  .facts-wrap.is-overlap { margin-top: 12px; }
  .career-flow { grid-template-columns: 1fr 1fr; }
  .career-node:not(:last-child)::after { display: none; }
  .category-showcase { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991.98px) {
  .quick-actions { padding: 12px 0 4px; }
  .header-cta { display: none !important; }
  .mega-grid { min-width: 0; }
  main { padding-bottom: 8px; }
  .hero-slider-wrap .carousel-control-prev,
  .hero-slider-wrap .carousel-control-next { display: none; }
  .brand-stage { max-height: 240px; min-height: 0; }
  .stage-logo-badge { left: 12px; bottom: 12px; }
  .stage-logo-badge img { height: 32px; }
  .hero-actions a {
    flex: 1 1 100%;
    width: 100%;
  }
  .facts-wrap.is-overlap { margin-top: 12px; }
  .fact strong { font-size: 1.35rem; }
}
@media (max-width: 575.98px) {
  .category-showcase { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .hero-slide { padding: 28px 0 16px; }
  .brand-hero .hero-slide { padding: 32px 0 16px; }
}
