:root {
  --navy: #08244c;
  --navy-deep: #041934;
  --navy-soft: #123b70;
  --orange: #f26a10;
  --orange-dark: #d95400;
  --ink: #17233a;
  --muted: #667085;
  --line: #dfe5ed;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(8, 36, 76, .08);
  --shadow-lg: 0 24px 60px rgba(8, 36, 76, .14);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Mukta", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
address { font-style: normal; }

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { top: 16px; }

.announcement {
  background: var(--navy-deep);
  color: #fff;
  font-size: 12px;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.announcement__inner span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--orange);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.announcement__inner p {
  margin: 0;
  color: rgba(255,255,255,.72);
}
.announcement__inner a {
  margin-left: auto;
  font-weight: 800;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(8,36,76,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.university-brand {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 455px;
  min-width: 280px;
}
.university-brand__seal {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
}
.university-brand__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.university-brand__content {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 7px 0 7px 16px;
  border-left: 1px solid var(--orange);
}
.university-brand__content strong,
.university-brand__content small {
  display: block;
  line-height: 1.15;
}
.university-brand__content strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.university-brand__content small {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #3e4a61;
  font-size: 12px;
  font-weight: 600;
}
.university-brand__content small i {
  width: 1px;
  height: 12px;
  background: var(--orange);
  display: inline-block;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a {
  position: relative;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aspire-logo {
  width: 88px;
  height: 50px;
  object-fit: contain;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 3px;
}
.mobile-nav {
  display: none;
  padding: 16px 20px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav.is-open {
  display: grid;
  gap: 4px;
}
.mobile-nav > a:not(.btn) {
  padding: 10px 0;
  color: var(--navy);
  font-weight: 700;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242,106,16,.24);
}
.btn--primary:hover { background: var(--orange-dark); }
.btn--outline {
  border-color: var(--navy);
  background: #fff;
  color: var(--navy);
}
.btn--small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
}

.section {
  padding: 96px 0;
}
.section--soft {
  background: var(--soft);
}
.section-pattern {
  position: relative;
  overflow: hidden;
}
.section-pattern::before,
.section-pattern::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 180px;
  opacity: .055;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, var(--navy) 1px, transparent 1px),
    linear-gradient(var(--navy) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: rotate(17deg);
}
.section-pattern::before { top: 90px; left: -120px; }
.section-pattern::after { right: -100px; bottom: 40px; }

.kicker {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.kicker--light { color: #ffad73; }
.kicker--light span { background: #ffad73; }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.15; }
h1 em, h2 em, h3 em { color: var(--orange); font-style: normal; }

.hero {
  padding: 74px 0 0;
  background: #fff;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 70px;
  align-items: center;
}
.hero__copy h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -.045em;
}
.hero__statement {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 600;
}
.hero__statement strong { color: var(--orange); }
.hero__programme {
  max-width: 620px;
  padding: 18px 0 18px 20px;
  border-left: 4px solid var(--orange);
}
.hero__programme span,
.hero__programme strong,
.hero__programme small { display: block; }
.hero__programme span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.hero__programme strong {
  color: var(--navy);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
}
.hero__programme small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.hero__visual {
  min-width: 0;
}
.hero__image-wrap {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  border: 1px solid #d9e2ee;
  border-radius: 44px 14px 44px 14px;
  box-shadow: var(--shadow-lg);
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: none;
}
.hero__badges {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hero__badges > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.hero__badges svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  background: #fff3eb;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__badges span { min-width: 0; }
.hero__badges strong,
.hero__badges small { display: block; }
.hero__badges strong {
  color: var(--navy);
  font-size: 12px;
}
.hero__badges small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 18px 18px 0 0;
  background: var(--navy);
  box-shadow: 0 22px 45px rgba(8,36,76,.18);
}
.hero-stats article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.13);
}
.hero-stats article:last-child { border-right: 0; }
.hero-stats svg {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-stats strong,
.hero-stats span { display: block; }
.hero-stats strong { font-size: 16px; }
.hero-stats span {
  margin-top: 2px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
}

.programme-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.wafer-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.wafer-card img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: none;
}
.wafer-card__caption {
  padding: 20px;
  background: var(--navy);
  color: #fff;
}
.wafer-card__caption strong,
.wafer-card__caption span { display: block; }
.wafer-card__caption strong { font-size: 15px; }
.wafer-card__caption span {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
}
.programme-copy h2,
.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.035em;
}
.programme-copy > p:not(.kicker),
.section-heading > p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.pathway-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pathway-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.pathway-card__title span {
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff0e7;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}
.pathway-card__title strong {
  color: var(--navy);
  font-size: 16px;
}
.pathway-steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.pathway-steps article {
  min-width: 0;
  padding: 15px;
  border-radius: 12px;
  background: var(--soft);
}
.pathway-steps small,
.pathway-steps strong,
.pathway-steps span { display: block; }
.pathway-steps small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pathway-steps strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 14px;
}
.pathway-steps span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.pathway-steps > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.learning-route {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 3px;
}
.learning-route span {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}
.learning-route i {
  flex: 1 0 24px;
  height: 1px;
  background: var(--orange);
  position: relative;
}
.learning-route i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: rotate(45deg);
}

.section-heading {
  margin-bottom: 38px;
}
.section-heading--center {
  text-align: center;
}
.section-heading--center .kicker { justify-content: center; }
.section-heading--center > p:not(.kicker) { margin-inline: auto; }

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8,36,76,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: #ffbd8f;
  box-shadow: var(--shadow-sm);
}
.info-card > svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid #ffd4b5;
  border-radius: 13px;
  background: #fff8f3;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card small {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}
.info-card h3 {
  margin: 8px 0 10px;
  font-size: 21px;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.semester-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.semester-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
}
.semester-card--light {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.semester-card--dark {
  border: 1px solid var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.semester-card__head {
  padding: 26px 28px 18px;
}
.semester-card__head span {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.semester-card__head h3 {
  margin: 14px 0 0;
  font-size: 30px;
}
.semester-card--dark .semester-card__head h3 { color: #fff; }
.subject-list {
  list-style: none;
  margin: 0;
  padding: 0 28px 28px;
}
.subject-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  padding: 16px 0;
  border-top: 1px dashed #d7dde6;
}
.semester-card--dark .subject-list li { border-color: rgba(255,255,255,.19); }
.subject-list b {
  color: var(--orange);
  font-size: 16px;
}
.subject-list strong,
.subject-list span { display: block; }
.subject-list strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
}
.subject-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.semester-card--dark .subject-list strong { color: #fff; }
.semester-card--dark .subject-list span { color: rgba(255,255,255,.66); }

.practical-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.practical-feature__copy {
  min-width: 0;
  padding: 42px;
}
.label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e7;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.practical-feature__copy h3 {
  margin: 12px 0 12px;
  color: var(--orange);
  font-size: 42px;
}
.practical-feature__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.check-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.check-grid span {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}
.check-grid svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1px solid #ffb782;
  border-radius: 50%;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.practical-feature__image {
  min-width: 0;
  background: var(--navy);
}
.practical-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.lab-grid article {
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
}
.lab-grid svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: #fff4ec;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lab-grid strong {
  color: var(--navy);
  font-size: 11px;
  line-height: 1.35;
}
.stage-heading {
  margin-top: 58px;
  text-align: center;
}
.stage-heading span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.stage-heading h3 {
  margin: 8px 0 24px;
  font-size: 30px;
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.stage-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.stage-card img {
  width: 100%;
  aspect-ratio: 2.25 / 1;
  object-fit: cover;
}
.stage-card__body {
  padding: 22px;
}
.stage-card small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.stage-card h3 {
  margin: 8px 0 10px;
  font-size: 26px;
}
.stage-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: var(--orange);
}
.stage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.skills-card,
.pathways-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.skills-card > h3,
.pathways-card > h3 {
  margin-bottom: 22px;
  font-size: 30px;
}
.skill-list {
  display: grid;
  gap: 10px;
}
.skill-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid #e5e9ef;
  border-radius: 12px;
}
.skill-list svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid #ffd0ae;
  border-radius: 50%;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skill-list strong,
.skill-list span { display: block; }
.skill-list strong {
  color: var(--navy);
  font-size: 13px;
}
.skill-list span {
  margin-top: 3px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-work {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 19px;
  border: 1px solid #ffb17a;
  border-radius: 14px;
  background: #fffaf7;
}
.project-work svg {
  width: 50px;
  height: 50px;
  padding: 11px;
  border-radius: 12px;
  background: #fff0e7;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.project-work strong {
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.project-work p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.pathways-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pathways-card li {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid #e7ebf0;
}
.pathways-card li:first-child { border-top: 0; padding-top: 0; }
.pathways-card b {
  color: var(--orange);
  font-size: 21px;
}
.pathways-card strong,
.pathways-card span { display: block; }
.pathways-card strong {
  color: var(--navy);
  font-size: 13px;
}
.pathways-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.eligibility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 34px;
  align-items: start;
}
.eligibility-cards {
  display: grid;
  gap: 12px;
}
.eligibility-cards article {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.eligibility-cards article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.eligibility-cards h3 {
  margin-bottom: 6px;
  font-size: 17px;
}
.eligibility-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.journey-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--navy);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.journey-card__head {
  padding: 26px 28px;
  background: var(--navy);
}
.journey-card__head span {
  color: #ffb27d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.journey-card__head h3 {
  margin: 7px 0 0;
  color: #fff;
  font-size: 31px;
}
.journey-card ol {
  list-style: none;
  margin: 0;
  padding: 10px 26px 0;
}
.journey-card li {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
}
.journey-card li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff0e7;
  color: var(--orange);
  font-weight: 800;
}
.journey-card strong,
.journey-card small { display: block; }
.journey-card strong {
  color: var(--navy);
  font-size: 13px;
}
.journey-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.journey-card__footer {
  margin: 20px;
  padding: 21px;
  border: 1px solid #ffb37c;
  border-radius: 14px;
  background: #fffaf6;
  text-align: center;
}
.journey-card__footer strong,
.journey-card__footer span { display: block; }
.journey-card__footer strong {
  color: var(--orange);
  font-size: 18px;
}
.journey-card__footer span {
  margin: 5px 0 15px;
  color: var(--muted);
  font-size: 10px;
}

.enquiry-section {
  padding: 82px 0;
  background: var(--navy);
}
.enquiry-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 52px;
  align-items: center;
}
.enquiry-card__copy h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 60px);
  letter-spacing: -.035em;
}
.enquiry-card__copy > p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.68);
}
.contact-number {
  margin-top: 26px;
}
.contact-number small,
.contact-number a { display: block; }
.contact-number small {
  color: #ffb27d;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.contact-number a {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}
.enquiry-card address {
  max-width: 550px;
  margin-top: 15px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.enquiry-form {
  min-width: 0;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.enquiry-form__head {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}
.enquiry-form__head span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.enquiry-form__head h3 {
  margin: 5px 0 0;
  font-size: 28px;
}
.enquiry-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}
.enquiry-form input,
.enquiry-form select {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,106,16,.12);
}
.enquiry-form .consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}
.enquiry-form .consent input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}
.enquiry-form .btn { grid-column: 1 / -1; width: 100%; }

.site-footer {
  padding: 58px 0 22px;
  background: var(--navy-deep);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .65fr .8fr .9fr;
  gap: 34px;
}
.footer-university__brand {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.footer-university__seal {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
}
.footer-university__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-university__text {
  min-width: 0;
}
.footer-university__text strong,
.footer-university__text span {
  display: block;
}
.footer-university__text strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}
.footer-university__text span {
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 600;
}
.footer-university p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.footer-university p strong { color: var(--orange); }
.site-footer h3 {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.65);
  font-size: 11px;
}
.footer-aspire img {
  width: 130px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.footer-aspire p {
  color: rgba(255,255,255,.55);
  font-size: 10px;
}
.footer-note {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.footer-note p {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: #fff;
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .navbar__actions { margin-left: auto; }
  .hero__grid { gap: 46px; }
  .programme-grid { gap: 48px; }
}

@media (max-width: 920px) {
  .announcement__inner p { display: none; }
  .university-brand { width: 390px; min-width: 0; grid-template-columns: 60px minmax(0, 1fr); gap: 11px; }
  .university-brand__content { padding-left: 13px; }
  .university-brand__seal { width: 60px; height: 60px; }
  .university-brand__content strong { font-size: 16px; }
  .university-brand__content small { font-size: 11px; gap: 8px; }
  .aspire-logo { display: none; }
  .hero { padding-top: 58px; }
  .hero__grid,
  .programme-grid,
  .practical-feature,
  .career-layout,
  .eligibility-layout,
  .enquiry-card {
    grid-template-columns: 1fr;
  }
  .hero__copy { order: 1; }
  .hero__visual { order: 2; max-width: 620px; width: 100%; margin-inline: auto; }
  .hero__image-wrap { aspect-ratio: 4 / 4.3; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 18px 18px 0 0; }
  .hero-stats article:nth-child(2) { border-right: 0; }
  .hero-stats article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .wafer-card { max-width: 500px; margin-inline: auto; }
  .semester-grid { grid-template-columns: 1fr; }
  .practical-feature__image { min-height: 390px; }
  .lab-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .enquiry-card { gap: 38px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .announcement__inner { justify-content: space-between; }
  .announcement__inner span { font-size: 9px; }
  .announcement__inner a { margin-left: 0; font-size: 10px; }
  .navbar { min-height: 72px; gap: 12px; }
  .university-brand { width: min(100%, 300px); grid-template-columns: 48px minmax(0, 1fr); gap: 8px; }
  .university-brand__content { padding: 4px 0 4px 10px; }
  .university-brand__seal { width: 48px; height: 48px; }
  .university-brand__content { gap: 4px; }
  .university-brand__content strong { font-size: 12px; }
  .university-brand__content small { font-size: 9px; gap: 6px; }
  .university-brand__content small i { height: 9px; }
  .navbar__actions .btn { display: none; }
  .mobile-nav { padding-inline: 14px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 46px; }
  .hero__copy h1 { font-size: clamp(40px, 12vw, 57px); }
  .hero__statement { font-size: 20px; }
  .hero__programme strong { font-size: 27px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__image-wrap { border-radius: 30px 12px 30px 12px; }
  .hero__badges { grid-template-columns: 1fr; }
  .hero-stats { margin-top: 44px; }
  .hero-stats article { padding: 18px; }
  .programme-copy h2,
  .section-heading h2 { font-size: 40px; }
  .pathway-steps { grid-template-columns: 1fr; }
  .pathway-steps > svg { transform: rotate(90deg); justify-self: center; }
  .learning-route { justify-content: flex-start; }
  .highlight-grid { grid-template-columns: 1fr; }
  .semester-card__head { padding: 22px 20px 15px; }
  .subject-list { padding: 0 20px 22px; }
  .practical-feature__copy { padding: 28px; }
  .check-grid { grid-template-columns: 1fr; }
  .practical-feature__image { min-height: 300px; }
  .lab-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-card { max-width: 520px; width: 100%; margin-inline: auto; }
  .eligibility-layout { gap: 22px; }
  .enquiry-section { padding: 68px 0; }
  .enquiry-form { grid-template-columns: 1fr; padding: 24px; }
  .enquiry-form__head,
  .enquiry-form .consent,
  .enquiry-form .btn { grid-column: 1; }
  .footer-note { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 500px) {
  .announcement__inner { min-height: 34px; }
  .announcement__inner span { padding: 4px 7px; }
  .university-brand { width: min(100%, 258px); }
  .university-brand__content strong { font-size: 11px; }
  .university-brand__content small { font-size: 8px; gap: 5px; }
  .menu-button { width: 40px; height: 40px; padding: 8px; }
  .hero__copy h1 { font-size: 40px; }
  .hero__programme { padding-left: 14px; }
  .hero__programme strong { font-size: 25px; }
  .hero-stats article { gap: 10px; padding: 15px 12px; }
  .hero-stats svg { flex-basis: 34px; width: 34px; height: 34px; }
  .hero-stats strong { font-size: 13px; }
  .hero-stats span { font-size: 9px; }
  .programme-copy h2,
  .section-heading h2 { font-size: 35px; }
  .pathway-card { padding: 18px; }
  .pathway-card__title { align-items: flex-start; flex-direction: column; }
  .info-card { padding: 22px; }
  .semester-card__head h3 { font-size: 26px; }
  .subject-list li { grid-template-columns: 38px minmax(0, 1fr); }
  .practical-feature__copy h3 { font-size: 36px; }
  .lab-grid { grid-template-columns: 1fr 1fr; }
  .lab-grid article { min-height: 116px; padding: 14px 10px; }
  .skills-card,
  .pathways-card { padding: 20px; }
  .project-work { grid-template-columns: 1fr; }
  .journey-card__head { padding: 22px; }
  .journey-card ol { padding-inline: 20px; }
  .enquiry-card__copy h2 { font-size: 37px; }
  .contact-number a { font-size: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-university__brand { grid-template-columns: 54px minmax(0, 1fr); gap: 12px; }
  .footer-university__seal { width: 54px; height: 54px; }
  .footer-university__text strong { font-size: 16px; }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}


@media (max-width: 360px) {
  .navbar { gap: 8px; }
  .university-brand {
    width: min(100%, 228px);
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 7px;
  }
  .university-brand__seal { width: 40px; height: 40px; }
  .university-brand__content { padding-left: 8px; }
  .university-brand__content strong { font-size: 9.5px; }
  .university-brand__content small { font-size: 7px; gap: 4px; }
  .menu-button { flex: 0 0 38px; width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Overflow safeguards for narrow screens and long bilingual labels. */
.programme-copy,
.programme-grid > *,
.learning-route,
.pathway-card,
.pathway-steps,
.wafer-card {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 920px) {
  .programme-grid > * { width: 100%; }
  .learning-route { width: 100%; }
}

/* Django enquiry-state additions */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.enquiry-form button[disabled] {
  cursor: wait;
  opacity: .72;
}
.form-status {
  min-height: 1.35rem;
  margin: .3rem 0 0;
  font-size: .88rem;
  line-height: 1.4;
}
.form-status.is-success { color: #137a49; }
.form-status.is-error { color: #b42318; }
