:root {
  --ink: #12243b;
  --muted: #607087;
  --blue: #1769e0;
  --blue-dark: #0c3f88;
  --blue-pale: #eef6ff;
  --line: #dce5ef;
  --white: #ffffff;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: min(calc(100% - 48px), var(--max));
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.wordmark small {
  display: block;
  margin-top: 4px;
  color: #78869a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.wordmark-icon {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.desktop-nav a {
  padding: 10px 0 10px;
  border-bottom: 2px solid transparent;
  color: #526176;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
  border-color: var(--blue);
}
.button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 9px 24px rgba(23, 105, 224, 0.16);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 76%
  );
  transform: translateX(-125%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.button > span {
  position: relative;
  transition: transform 0.25s ease;
}
.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(12, 63, 136, 0.24);
}
.button:hover::before {
  transform: translateX(125%);
}
.button:hover > span {
  transform: translate(2px, -2px);
}
.button:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(12, 63, 136, 0.18);
}
.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.28);
  outline-offset: 4px;
}
.button-small {
  min-height: 42px;
  padding: 0 17px;
  gap: 15px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: var(--blue);
}
h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 700px;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: 0.98;
}
h1 em {
  color: var(--blue);
  font-weight: 400;
}
.hero-slider {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: var(--blue-dark);
  color: white;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 118px;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 0.8s ease,
    transform 1.2s ease,
    visibility 0.8s;
}
.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-slide::before {
  z-index: -2;
  background: url("./assets/education-students.jpg") center 38% / cover
    no-repeat;
  transform: scale(1.02);
}
.hero-slide::after {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(5, 28, 59, 0.94) 0%,
    rgba(8, 48, 99, 0.78) 46%,
    rgba(7, 38, 77, 0.18) 76%,
    rgba(4, 24, 51, 0.42) 100%
  );
}
.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.slide-two::before {
  background-position: 65% 44%;
  filter: saturate(0.75) contrast(1.08);
}
.slide-three::before {
  background-position: 44% 25%;
  filter: grayscale(0.25) saturate(0.85);
  transform: scale(1.08);
}
.slide-content {
  position: relative;
  z-index: 2;
  width: min(690px, 72vw);
}
.hero-slider h1 {
  color: white;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.16);
}
.hero-slider h1 em {
  color: #91c4ff;
}
.hero-slider .eyebrow-light {
  color: #a9d0ff;
}
.hero-slider .eyebrow-light span {
  background: #a9d0ff;
}
.hero-intro {
  max-width: 610px;
  margin: 32px 0;
  color: rgba(238, 246, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #9aa8b8;
  padding-bottom: 6px;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    gap 0.22s ease;
}
.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  gap: 18px;
}
.text-link-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.text-link-light:hover {
  color: #b9d9ff;
  border-color: #b9d9ff;
}
.reveal-section {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.25, 1);
  will-change: opacity, transform;
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.slider-controls {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(6, 35, 72, 0.2);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: white;
  color: var(--blue-dark);
  outline: none;
}
.slider-dots {
  display: flex;
  gap: 9px;
}
.slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.slider-dot.is-active {
  width: 28px;
  background: white;
}
.slider-count {
  min-width: 58px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.slider-count strong {
  color: white;
  font-size: 14px;
}
.slider-progress {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}
.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #7db7ff;
}
.hero-slider.is-playing .slider-progress span {
  animation: slider-progress 6s linear forwards;
}
@keyframes slider-progress {
  to {
    width: 100%;
  }
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 110px 0;
}
h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  border-top: 1px solid var(--line);
}
.intro-copy {
  padding-top: 38px;
}
.intro-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.intro-copy .text-link {
  margin-top: 18px;
}

.scholarship {
  padding-top: 35px;
  padding-bottom: 135px;
}
.scholarship-card {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 80px;
  padding: 82px 78px 180px;
  border-radius: 34px;
  background: var(--blue-pale);
  overflow: visible;
}
.eyebrow-light {
  color: #87bcff;
}
.scholarship-message {
  align-self: center;
}
.scholarship-message h2 {
  max-width: 650px;
  color: var(--ink);
}
.scholarship-message h2 em {
  position: relative;
  color: var(--blue);
  font-weight: 400;
  white-space: nowrap;
}
.scholarship-message h2 em::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -5%;
  bottom: -7px;
  height: 12px;
  border: 3px solid #69a2ef;
  border-top: 0;
  border-radius: 0 0 50% 50%;
  transform: rotate(-2deg);
  opacity: 0.8;
}
.scholarship-message > p:not(.eyebrow) {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.scholarship-benefits {
  display: grid;
  align-content: center;
  gap: 30px;
}
.scholarship-benefits article {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 22px;
}
.benefit-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: white;
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(25, 75, 131, 0.08);
  font-family: Georgia, serif;
  font-size: 24px;
}
.scholarship-benefits h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}
.scholarship-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.scholarship-stats {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: min(790px, 70%);
  min-height: 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 28px;
  padding: 38px 52px 28px;
  border-radius: 0 200px 0 0;
  background: white;
  box-shadow: none;
}
@media (min-width: 1180px) {
  .scholarship-stats {
    border-radius: 0;
    padding-right: 100px;
    -webkit-clip-path: path(
      "M 0 0 H 575 C 650 0 670 20 710 78 C 750 138 770 160 790 160 H 0 Z"
    );
    clip-path: path(
      "M 0 0 H 575 C 650 0 670 20 710 78 C 750 138 770 160 790 160 H 0 Z"
    );
  }
}
.scholarship-stats strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
.scholarship-stats span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.scholarship-note {
  position: absolute;
  right: 70px;
  bottom: 28px;
  max-width: 340px;
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}
.section-heading > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eligibility-grid article {
  min-height: 190px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.eligibility-grid article:last-child {
  border-right: 0;
}
.eligibility-grid article > span {
  color: #91a1b5;
  font-size: 10px;
  font-weight: 700;
}
.eligibility-grid h3 {
  margin: 38px 0 8px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}
.eligibility-grid p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.eligibility-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 34px;
}
.eligibility-note p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.button-outline {
  background: white;
  color: var(--blue);
}
.button-outline:hover {
  color: white;
}

.process {
  background: #f8fbff;
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-grid article {
  padding: 0 34px 0 0;
}
.process-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(30, 80, 130, 0.1);
}
.process-grid h3 {
  margin: 26px 0 12px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.apply {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  background: var(--blue);
  color: white;
}
.apply-copy {
  align-self: end;
}
.apply-copy p {
  max-width: 530px;
  margin: 0 0 30px;
  color: #d9eaff;
  font-size: 15px;
  line-height: 1.75;
}
.button-white {
  background: white;
  border-color: white;
  color: var(--blue);
}
.button-white:hover {
  background: var(--ink);
  border-color: var(--ink);
}

footer {
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 25px;
  background: #0b1c31;
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.6fr 0.8fr;
  gap: 55px;
  padding-bottom: 60px;
}
.wordmark-light small {
  color: #8394aa;
}
.footer-top > p {
  max-width: 310px;
  margin: 0;
  color: #94a5b9;
  font-size: 13px;
  line-height: 1.7;
}
.footer-top h3 {
  margin: 0 0 18px;
  color: #71849b;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-top div a {
  display: block;
  margin: 0 0 12px;
  color: #d7e1ed;
  font-size: 12px;
}
.footer-top div p {
  margin: 0;
  color: #a4b3c4;
  font-size: 12px;
  line-height: 1.7;
}
.contact-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: #7f94ac;
  font-size: 13px;
}
.footer-top .contact-list a {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid #20344c;
  color: #6f8197;
  font-size: 10px;
}

body.modal-open {
  overflow: hidden;
}
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.enquiry-modal[hidden] {
  display: none;
}
.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 45, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.enquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 54px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 90px rgba(5, 29, 63, 0.32);
  animation: enquiry-in 0.3s ease both;
}
@keyframes enquiry-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}
.enquiry-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}
.enquiry-close:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: rotate(5deg);
}
.enquiry-dialog h2 {
  font-size: clamp(38px, 5vw, 54px);
}
.enquiry-heading[hidden] {
  display: none;
}
.enquiry-intro {
  max-width: 540px;
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.enquiry-form {
  display: grid;
  gap: 18px;
}
.enquiry-form[hidden] {
  display: none;
}
.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.enquiry-form label {
  display: grid;
  gap: 8px;
}
.enquiry-form label > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.enquiry-form input,
.enquiry-form select {
  height: 48px;
  padding: 0 14px;
}
.enquiry-form textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.1);
}
.enquiry-submit {
  justify-self: start;
  margin-top: 4px;
}
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.form-status {
  min-height: 18px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.form-status.is-success {
  color: #16835a;
}
.form-status.is-error {
  color: #b42318;
}
.enquiry-success {
  padding: 24px 0 10px;
  text-align: center;
}
.enquiry-success[hidden] {
  display: none;
}
.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 32px;
  box-shadow: 0 12px 32px rgba(23, 105, 224, 0.12);
}
.enquiry-success .eyebrow {
  margin-bottom: 15px;
}
.enquiry-success h2 {
  max-width: 520px;
  margin: auto;
}
.enquiry-success > p:not(.eyebrow) {
  max-width: 470px;
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.application-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}
.application-actions .button {
  min-width: 205px;
}

@media (max-width: 900px) {
  .desktop-nav,
  .site-header > .button {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: white;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    right: 24px;
    top: 72px;
    z-index: 10;
    width: 190px;
    padding: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(15, 43, 74, 0.15);
  }
  .mobile-nav.is-open {
    display: block;
  }
  .mobile-nav a {
    display: block;
    padding: 11px;
    font-size: 13px;
  }
  .hero-slide {
    padding-top: 60px;
  }
  .slide-content {
    width: min(680px, 84vw);
  }
  .intro,
  .apply {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .scholarship {
    padding-bottom: 125px;
  }
  .scholarship-card {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 65px 54px 135px;
  }
  .scholarship-benefits {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 24px;
  }
  .scholarship-benefits article {
    display: block;
  }
  .benefit-icon {
    margin-bottom: 18px;
  }
  .scholarship-stats {
    width: calc(100% - 48px);
  }
  .scholarship-note {
    right: 52px;
    bottom: 92px;
  }
  .eligibility-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .eligibility-grid article:nth-child(2) {
    border-right: 0;
  }
  .process-grid {
    gap: 42px 0;
  }
  .process-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 36px);
    height: 78px;
  }
  .section {
    width: calc(100% - 36px);
  }
  .hero-slider {
    min-height: calc(100svh - 78px);
  }
  .hero-slide {
    padding: 48px 18px 118px;
    align-items: end;
  }
  .hero-slide::before {
    background-position: 61% center;
  }
  .hero-slide::after {
    background: linear-gradient(
      0deg,
      rgba(4, 25, 54, 0.97) 0%,
      rgba(8, 47, 95, 0.72) 64%,
      rgba(4, 24, 51, 0.25) 100%
    );
  }
  .slide-content {
    width: 100%;
  }
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 40px;
  }
  .hero-intro {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .slider-controls {
    right: 18px;
    bottom: 28px;
    gap: 11px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-count {
    display: none;
  }
  .section {
    padding: 78px 0;
  }
  .intro {
    gap: 25px;
  }
  .scholarship {
    width: calc(100% - 36px);
    padding: 34px 0 78px;
  }
  .scholarship-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 50px 24px 28px;
    border-radius: 24px;
    overflow: hidden;
  }
  .scholarship-message h2 em {
    white-space: normal;
  }
  .scholarship-benefits {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .scholarship-benefits article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 17px;
  }
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    font-size: 21px;
  }
  .scholarship-stats {
    position: static;
    width: calc(100% + 48px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 4px -24px -28px;
    padding: 24px;
    border-radius: 28px 28px 0 0;
    box-shadow: none;
  }
  .scholarship-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .scholarship-stats div:last-child {
    border-bottom: 0;
  }
  .scholarship-stats span {
    max-width: 150px;
    margin: 0;
    text-align: right;
  }
  .scholarship-note {
    position: static;
    max-width: none;
    margin-top: 20px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 42px;
  }
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
  .eligibility-grid article {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .eligibility-grid article:last-child {
    border-bottom: 0;
  }
  .eligibility-grid h3 {
    margin-top: 24px;
  }
  .eligibility-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .process,
  .apply {
    width: 100%;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-grid article,
  .process-grid article + article {
    padding: 0 0 0 54px;
    border: 0;
    position: relative;
  }
  .process-grid span {
    position: absolute;
    left: 0;
    top: 0;
  }
  .process-grid h3 {
    margin-top: 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .enquiry-modal {
    padding: 12px;
  }
  .enquiry-dialog {
    max-height: calc(100vh - 24px);
    padding: 46px 22px 28px;
    border-radius: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .application-actions {
    flex-direction: column;
  }
  .application-actions .button {
    width: 100%;
  }
}

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