:root {
  --ink: #18222f;
  --muted: #5c6878;
  --line: #d8e0e8;
  --paper: #f7f8f6;
  --white: #ffffff;
  --navy: #12314b;
  --green: #2f684f;
  --gold: #c99a42;
  --sky: #dfeaf1;
  --shadow: 0 18px 46px rgba(16, 37, 56, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  z-index: 20;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 232, 0.8);
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 238px;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 18px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: var(--sky);
}
.site-nav .nav-cta {
  color: var(--white);
  background: var(--green);
  margin-left: 4px;
}
.lang-toggle {
  min-width: 70px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.lang-toggle:hover {
  border-color: var(--green);
  background: var(--sky);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.subpage-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 49, 75, 0.96), rgba(18, 49, 75, 0.78)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1700&q=80") center / cover;
}
.subpage-hero > div {
  max-width: 1180px;
  margin: 0 auto;
  padding: 118px 24px 72px;
}
.subpage-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.subpage-hero p:last-child {
  max-width: 740px;
  color: #dce8f0;
  font-size: 18px;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 32, 50, 0.92), rgba(12, 32, 50, 0.66) 44%, rgba(12, 32, 50, 0.26)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80") center / cover;
}
.hero-content {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 148px 24px 86px;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 670px;
  font-size: 19px;
  color: #e7eef4;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(7, 23, 36, 0.5);
  backdrop-filter: blur(10px);
}
.hero-proof div {
  padding: 18px 20px;
}
.hero-proof div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-proof strong,
.hero-proof span {
  display: block;
}
.hero-proof strong {
  color: var(--white);
  font-size: 20px;
}
.hero-proof span {
  color: #c8d7e1;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}
.button.primary {
  background: var(--gold);
  color: #111820;
}
.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.button.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.identity-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.identity-band dl {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.course-finder {
  background: var(--navy);
  color: var(--white);
}
.course-finder-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}
.course-finder .eyebrow {
  color: #f1c86d;
}
.course-finder h2 {
  font-size: clamp(30px, 4vw, 44px);
}
.course-finder p {
  color: #c8d7e1;
}
.finder-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.finder-options a {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
}
.finder-options a:hover {
  background: var(--green);
}
.finder-options span {
  display: block;
  color: #f1c86d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.finder-options strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}
.section.muted {
  max-width: none;
  background: #eef3f0;
}
.section.muted > * {
  max-width: 1132px;
  margin-left: auto;
  margin-right: auto;
}
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f1c86d; }
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}
.prose p:first-child { margin-top: 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid .section-heading {
  grid-column: 1 / -1;
}
.feature-grid article,
.info-columns article,
.compliance-grid article,
.timeline article,
.source-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.feature-grid p,
.info-columns p,
.compliance-grid p,
.timeline p {
  color: var(--muted);
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}

.course-section { padding-top: 70px; }
.course-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.course-summary {
  padding: 32px;
  color: var(--white);
  background: var(--navy);
}
.course-summary p { color: #dbe7ef; }
.tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #111820 !important;
  background: var(--gold);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.course-details {
  padding: 28px;
}
.course-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.course-details div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.fee-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.fee-panel p {
  color: var(--muted);
}
.fee-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
.fee-panel dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.info-columns,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.compliance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
ul {
  padding-left: 20px;
}
li + li { margin-top: 8px; }
.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.link-list a {
  color: var(--green);
  font-weight: 800;
}
.notice-box {
  max-width: 1132px;
  margin: 24px auto 0;
  padding: 22px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.notice-box p {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.timeline span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.policy-grid a {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.policy-grid a:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.faq-section {
  padding-top: 42px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.faq-grid details {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.faq-grid summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}
.faq-grid p {
  color: var(--muted);
}
.policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 18px;
}
.policy-toc a,
.source-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}
.policy-docs {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}
.policy-docs article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.policy-docs article:target {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.compact-hero > div {
  padding-top: 94px;
  padding-bottom: 52px;
}
.policy-docs h2 {
  font-size: clamp(26px, 3vw, 34px);
}
.policy-docs p {
  color: var(--muted);
}
.source-link {
  margin-top: 8px;
}

.apply-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.application-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: start;
}
.application-side {
  position: sticky;
  top: 102px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.application-side h2 {
  font-size: 30px;
}
.application-side p {
  color: var(--muted);
}
.application-form {
  display: grid;
  gap: 18px;
}
.form-card {
  position: relative;
  margin: 0;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.form-card::after {
  content: "";
  display: block;
  clear: both;
}
.form-card-title {
  display: block;
  float: none;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
}
.form-grid {
  clear: both;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.application-form textarea {
  margin-top: 10px;
}
.privacy-note {
  clear: both;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: var(--muted);
  background: #fff8e8;
  font-size: 14px;
  font-weight: 700;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
label {
  display: grid;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #b9c5d0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }
.check-row {
  clear: both;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  max-width: 100%;
  font-weight: 700;
}
.check-row + .check-row {
  margin-top: 14px;
}
.check-row input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  margin: 2px 0 0;
}
.check-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}
.contact-section {
  padding-top: 40px;
}
.contact-card dl {
  display: grid;
  gap: 16px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: #dce8f0;
  background: #0f2538;
}
.site-footer p {
  margin: 6px 0 0;
  color: #b8c7d2;
}
.site-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 24px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .static-nav {
    position: static;
    display: flex;
    padding: 0;
    box-shadow: none;
    border-bottom: 0;
  }
  .site-nav.open {
    display: grid;
  }
  .identity-band dl,
  .course-finder-inner,
  .finder-options,
  .feature-grid,
  .info-columns,
  .compliance-grid,
  .timeline,
  .policy-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .course-panel,
  .fee-panel,
  .apply-section,
  .contact-section,
  .application-layout {
    grid-template-columns: 1fr;
  }
  .application-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 16px; }
  .brand { min-width: 0; }
  .brand small { font-size: 11px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 126px 18px 58px; }
  .hero h1 { font-size: 46px; }
  .section { padding: 58px 18px; }
  .subpage-hero > div { padding: 104px 18px 54px; }
  .static-nav { display: none; }
  .lang-toggle {
    min-width: 58px;
    padding: 8px 10px;
  }
  .identity-band dl,
  .hero-proof,
  .course-finder-inner,
  .finder-options,
  .feature-grid,
  .info-columns,
  .compliance-grid,
  .timeline,
  .policy-grid,
  .faq-grid,
  .course-details dl,
  .fee-panel dl,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  .site-footer {
    display: block;
    padding: 28px 18px;
  }
}
