:root {
  --ink: #17131f;
  --muted: #676174;
  --line: #e6e0f3;
  --panel: #ffffff;
  --soft: #f8f5ff;
  --brand: #5943f4;
  --brand-strong: #3f2dd4;
  --accent: #fb5607;
  --accent-soft: #fff0e8;
  --dark: #17131f;
  --shadow: 0 22px 60px rgba(36, 25, 70, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdfa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.top-strip {
  background: var(--dark);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.top-strip a {
  display: block;
  padding: 0.7rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 224, 243, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 220px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #3a3348;
  font-size: 0.94rem;
  font-weight: 700;
}

.login-link {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 116px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: -1;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(251, 86, 7, 0.08), rgba(89, 67, 244, 0.1) 54%, rgba(255, 253, 250, 0));
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(100deg, #17131f 0%, #17131f 48%, #fb5607 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 2.2rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(89, 67, 244, 0.24);
}

.btn.primary:hover {
  background: var(--brand-strong);
}

.btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 640px;
}

.trust-row div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1.65rem;
  line-height: 1;
}

.trust-row span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 31, 0) 30%, rgba(23, 19, 31, 0.76) 100%);
}

.hero-visual img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  border-radius: 8px;
  padding: 1rem 1.05rem;
  background: #fff;
  box-shadow: 0 16px 42px rgba(36, 25, 70, 0.18);
}

.floating-card strong {
  font-size: 1.35rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.placement-card {
  left: 1rem;
  bottom: 1rem;
  max-width: 190px;
}

.cohort-card {
  right: 1rem;
  top: 1rem;
}

.logo-band {
  padding: 1.7rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.logo-band > span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 1rem;
}

.logo-track {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-track b {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: #4b4458;
}

.feature-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-strip article {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 1.4rem;
  border: 1px solid rgba(89, 67, 244, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 240, 232, 0.96), rgba(240, 236, 255, 0.98));
  box-shadow: 0 16px 38px rgba(36, 25, 70, 0.08);
  isolation: isolate;
}

.feature-strip article::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -38px;
  width: 118px;
  aspect-ratio: 1;
  border: 18px solid rgba(251, 86, 7, 0.16);
  border-radius: 50%;
  z-index: -1;
}

.feature-strip article::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  bottom: 1.25rem;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.feature-strip span {
  max-width: 92%;
  color: var(--muted);
  padding-bottom: 1.35rem;
}

.split-showcase,
.enterprise,
.lead-section {
  width: min(1180px, calc(100% - 32px));
  margin: 4.5rem auto 0;
  border-radius: 8px;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark);
  color: #fff;
}

.showcase-image img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.showcase-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.showcase-copy .eyebrow {
  color: #ffb18a;
}

.showcase-copy ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 1.8rem;
  padding-left: 1.25rem;
  color: #eee8ff;
}

.programs {
  width: min(1180px, calc(100% - 32px));
  margin: 5rem auto 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.category-tabs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.7rem;
  margin-bottom: 1.2rem;
}

.category-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  background: #fff;
  color: #443b55;
  font-weight: 900;
  cursor: pointer;
}

.category-tabs button.active {
  border-color: var(--brand);
  background: #eeeaff;
  color: var(--brand-strong);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(36, 25, 70, 0.07);
}

.program-card.is-hidden {
  display: none;
}

.program-media {
  height: 142px;
  background-size: cover;
  background-position: center;
}

.ai-media {
  background-image: linear-gradient(rgba(89, 67, 244, 0.08), rgba(23, 19, 31, 0.12)), url("https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=900&q=80");
}

.data-media {
  background-image: linear-gradient(rgba(89, 67, 244, 0.08), rgba(23, 19, 31, 0.12)), url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80");
}

.cloud-media {
  background-image: linear-gradient(rgba(89, 67, 244, 0.08), rgba(23, 19, 31, 0.12)), url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=900&q=80");
}

.cyber-media {
  background-image: linear-gradient(rgba(89, 67, 244, 0.08), rgba(23, 19, 31, 0.12)), url("https://images.unsplash.com/photo-1563206767-5b18f218e8de?auto=format&fit=crop&w=900&q=80");
}

.design-media {
  background-image: linear-gradient(rgba(89, 67, 244, 0.08), rgba(23, 19, 31, 0.12)), url("https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?auto=format&fit=crop&w=900&q=80");
}

.genai-media {
  background-image: linear-gradient(rgba(89, 67, 244, 0.08), rgba(23, 19, 31, 0.12)), url("https://images.unsplash.com/photo-1639322537504-6427a16b0a28?auto=format&fit=crop&w=900&q=80");
}

.program-content {
  padding: 1.15rem;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 8px;
  padding: 0.28rem 0.55rem;
  background: var(--accent-soft);
  color: #b83a00;
  font-size: 0.74rem;
  font-weight: 900;
}

.program-content p {
  color: var(--muted);
}

.program-content dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}

.program-content dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.program-content dd {
  margin: 0.2rem 0 0;
  font-weight: 900;
}

.program-content a {
  color: var(--brand);
  font-weight: 900;
}

.enterprise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, #fff0e8, #f0ecff);
}

.enterprise p {
  color: #5b5068;
  font-size: 1.07rem;
}

.enterprise-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.enterprise-points span {
  min-height: 82px;
  display: grid;
  align-items: center;
  border: 1px solid rgba(89, 67, 244, 0.18);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  font-weight: 900;
}

.reviews {
  width: min(1180px, calc(100% - 32px));
  margin: 5rem auto 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid rgba(89, 67, 244, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #fff4ee 48%, #f1edff 100%);
  box-shadow: 0 18px 44px rgba(36, 25, 70, 0.08);
  isolation: isolate;
}

.review-grid article::before {
  content: "“";
  position: absolute;
  top: -0.55rem;
  right: 1rem;
  z-index: -1;
  color: rgba(251, 86, 7, 0.18);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.review-grid article::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.review-grid p {
  margin-top: 1.5rem;
  color: #443b55;
  font-size: 1.02rem;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid strong {
  margin-top: 1.35rem;
  color: var(--ink);
}

.review-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--dark);
  color: #fff;
}

.lead-copy {
  align-self: center;
}

.lead-copy .eyebrow {
  color: #ffb18a;
}

.lead-copy p:not(.eyebrow) {
  color: #eee8ff;
  font-size: 1.08rem;
}

.lead-form {
  display: grid;
  gap: 0.95rem;
  border-radius: 8px;
  padding: 1.1rem;
  background: #fff;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  color: #443b55;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font: inherit;
}

.site-footer {
  margin-top: 4rem;
  background: var(--dark);
  color: #fff;
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand img {
  width: 220px;
  height: 62px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 380px;
  margin: 1.2rem 0;
  color: #eee8ff;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.footer-socials a {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffb18a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.footer-links h3 {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.footer-links a,
.footer-links span {
  color: #fff;
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:active {
  color: #ffb18a;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.1rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #cfc7e6;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

.footer-bottom a:hover,
.footer-bottom a:active {
  color: #ffb18a;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.enquiry-modal.is-open {
  display: flex;
}

.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 31, 0.72);
  backdrop-filter: blur(8px);
}

.enquiry-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 1.5rem;
  border: 1px solid rgba(89, 67, 244, 0.2);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(145deg, rgba(255, 240, 232, 0.98), rgba(240, 236, 255, 0.98)),
    #fff;
  box-shadow: 0 30px 90px rgba(23, 19, 31, 0.36);
}

.enquiry-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(89, 67, 244, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.enquiry-copy {
  align-self: center;
  padding-right: 0.5rem;
}

.enquiry-logo {
  width: 180px;
  height: 51px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.enquiry-copy h2 {
  color: transparent;
  background: linear-gradient(100deg, #17131f 0%, #17131f 48%, #fb5607 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.enquiry-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.enquiry-form {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(89, 67, 244, 0.16);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
}

.enquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: #443b55;
  font-weight: 900;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  outline: 3px solid rgba(89, 67, 244, 0.15);
  border-color: var(--brand);
}

.login-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(251, 86, 7, 0.1), rgba(89, 67, 244, 0.12) 56%, rgba(255, 253, 250, 0.95)),
    #fffdfa;
}

.login-header {
  position: relative;
}

.login-back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  background: #fff;
  color: var(--brand);
  font-weight: 900;
}

.login-main {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.login-intro h1 {
  max-width: 650px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  color: transparent;
  background: linear-gradient(100deg, #17131f 0%, #17131f 46%, #fb5607 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.login-intro p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.login-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.login-highlights span {
  border: 1px solid rgba(89, 67, 244, 0.16);
  border-radius: 8px;
  padding: 0.62rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  color: #443b55;
  font-weight: 900;
}

.login-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(89, 67, 244, 0.16);
  border-radius: 8px;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(36, 25, 70, 0.14);
}

.login-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.login-card-heading h2 {
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
}

.login-card-heading p {
  color: var(--muted);
}

.login-card label {
  display: grid;
  gap: 0.38rem;
  color: #443b55;
  font-weight: 900;
}

.login-card input[type="text"],
.login-card input[type="password"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.login-card input:focus {
  outline: 3px solid rgba(89, 67, 244, 0.15);
  border-color: var(--brand);
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.remember-option {
  display: inline-flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 0.45rem !important;
  font-weight: 800 !important;
}

.remember-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}

.login-options a,
.signup-note a {
  color: var(--accent);
  font-weight: 900;
}

.signup-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.5rem;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .split-showcase,
  .enterprise,
  .lead-section,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-strip,
  .program-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-panel {
    grid-template-columns: 1fr;
  }

  .enquiry-dialog {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip {
    font-size: 0.82rem;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    padding-top: 2.3rem;
  }

  h1 {
    font-size: clamp(2.4rem, 16vw, 3.35rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-row,
  .feature-strip,
  .program-grid,
  .review-grid,
  .enterprise-points {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

  .floating-card {
    max-width: 165px;
    padding: 0.85rem;
  }

  .logo-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-content dl {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 3rem;
  }

  .footer-shell {
    width: min(100% - 24px, 1180px);
    padding: 2.3rem 0;
  }

  .footer-brand img {
    width: 190px;
    height: 54px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    width: min(100% - 24px, 1180px);
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .login-main {
    width: min(100% - 24px, 1120px);
  }

  .login-back-link {
    padding: 0.6rem 0.75rem;
    font-size: 0.88rem;
  }

  .login-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .enquiry-modal {
    padding: 0.75rem;
  }

  .enquiry-dialog {
    max-height: 94vh;
    padding: 1rem;
  }
}
