/* MAHE Dubai Roadshow 2026 — static page from Figma (node 404:1226) */

:root {
  --orange-top: #fe9130;
  --orange-bottom: #e64205;
  --orange-solid: #ff5e00;
  --blue-deep: #033788;
  --blue-dark: #062679;
  --text-dark: #000;
  --text-muted: #dfdfdf;
  --text-body: #333;
  --white-71: rgba(255, 255, 255, 0.71);
  --glass-hero: rgba(255, 255, 255, 0.44);
  --shadow-soft: 2px 4px 14px rgba(0, 0, 0, 0.12);
  --shadow-cta: 0 14px 22px rgba(0, 0, 0, 0.4);
  --radius-pill: 200px;
  --radius-card: 24px;
  --radius-large: 60px;
  --page-max: 1920px;
  --pad-section: 100px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow-x: hidden;
}

/* --- Gradient text utility --- */
.text-gradient-orange {
  background: linear-gradient(180deg, var(--orange-top) 0%, var(--orange-bottom) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 40px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  text-transform: capitalize;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-top) 0%, var(--orange-bottom) 100%);
  box-shadow: var(--shadow-cta);
  transition: filter 0.2s ease, transform 0.15s ease;
}

.btn-gradient:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-gradient--schedule {
  box-shadow: 0 4px 12px rgba(254, 145, 48, 0.8);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 1308px;
  padding: 30px var(--pad-section) 380px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__left {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1059px;
  display: flex;
  flex-direction: column;
  gap: 78px;
}

.hero__brand {
  display: block;
}

.hero__logo {
  width: 295px;
  height: auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.hero__tagline-block {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.hero__tagline {
  font-size: 36px;
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
}

.hero__headline {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.hero__headline .accent {
  background: linear-gradient(180deg, var(--orange-top) 0%, var(--orange-bottom) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__ribbon {
  display: inline-flex;
  align-self: flex-start;
  padding: 20px 30px;
  background: var(--orange-solid);
  border-radius: 20px;
}

.hero__ribbon p {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #fff;
}

.hero__ribbon-br {
  display: none;
}

.hero__ribbon-sub {
  white-space: nowrap;
}

.hero__pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--white-71);
  border: 1px solid #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.pill__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
/*   object-fit: contain; */
}

.pill__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.pill__text--stack .pill__line1 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0;
  text-transform: capitalize;
}

.pill__text--stack .pill__line2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.pill--cities {
  flex-wrap: wrap;
}

.cities {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cities__name {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  background:var(--orange-solid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cities__sep {
  width: 1px;
  height: 35px;
  background: rgba(0, 0, 0, 0.15);
}

.hero__glass {
  position: relative;
  z-index: 1;
  flex-shrink: 1;
  width: 554px;
  min-height: 750px;
  border-radius: 30px;
  background: var(--glass-hero);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  box-shadow: 7px 10px 44px rgba(0, 0, 0, 0.19);
  padding: 24px;
}

.mobile-enquiry-slot {
  display: none;
  padding: 0 var(--pad-section) 48px;
  background: #000;
}

.mobile-enquiry-slot h2 {
  margin: 0 0 16px;
  text-align: center;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

.enquire-card {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(3, 55, 136, 0.82) 0%, rgba(1, 24, 62, 0.88) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquire-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.formGroup {
  margin-bottom: 1px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.formGroup label {
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.enquire-card input,
.enquire-card select {
  width: 100%;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px 16px;
  color: #ffffff;
  background: transparent;
  font-size: 16px;
  letter-spacing: -0.2px;
  font-family: var(--font);
  font-weight: 500;
  line-height: normal;
}

.enquire-card input::placeholder {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.enquire-card select option {
  color: #000;
}

.captcha-row {
  width: 100%;
  display: flex;
  gap: 8px;
}

.captcha-row--math {
  align-items: center;
}

.captcha-math {
  min-width: 92px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #ffffff;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

#robotAnswer {
  flex: 1 1 auto;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}

.captcha-refresh:hover {
  background: rgba(255, 255, 255, 0.12);
}

.captcha-error-hint {
  color: #ffd6d6;
  font-size: 13px;
  margin: 4px 0 0;
  line-height: 1.2;
  font-weight: 600;
}

.error-text {
  color: #ffd6d6;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.2;
  text-align: left;
  min-height: 15px;
  font-weight: 600;
}

.input-error {
  border-color: #ff0000 !important;
}

.enquire-card .select2-container {
  width: 100% !important;
}

.enquire-card .select2-container .select2-selection--single {
  height: auto;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}

.enquire-card .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
  padding-left: 0;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  line-height: normal;
}

.enquire-card .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.enquire-card .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

.enquire-card .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}

.enquire-card .select2-container--default.select2-container--disabled .select2-selection--single {
  opacity: 0.7;
  cursor: not-allowed;
}

.select2-dropdown {
  border-radius: 8px;
}

.select2-container .select2-results__option {
  font-family: var(--font);
  font-size: 14px;
}

.form-error {
  color: #ffd6d6;
  font-size: 14px;
  margin-bottom: 8px;
  display: none;
  font-weight: 600;
}

.form-submit {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  box-shadow: none;
  font-size: 17px;
}

.submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* 1200px–1920px: fluid scale so hero stays one row; padding tracks viewport */
@media (min-width: 1199px) {
  :root {
    --pad-section: clamp(48px, calc(48px + (100vw - 1200px) * 0.07222), 100px);
  }

  .hero {
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: clamp(20px, calc(20px + (100vw - 1200px) * 0.03889), 48px);
    min-height: clamp(820px, calc(820px + (100vw - 1200px) * 0.6778), 1308px);
    padding-top: clamp(24px, 2vw + 6px, 30px);
    padding-bottom: clamp(180px, calc(180px + (100vw - 1200px) * 0.2778), 380px);
    padding-left: var(--pad-section);
    padding-right: var(--pad-section);
  }

  .hero__left {
    flex: 1 1 0;
    min-width: 0;
    max-width: min(
      1059px,
      calc(
        100vw - 2 * var(--pad-section) - clamp(300px, calc(300px + (100vw - 1200px) * 0.3528), 554px) -
          clamp(20px, calc(20px + (100vw - 1200px) * 0.03889), 48px)
      )
    );
    gap: clamp(40px, calc(40px + (100vw - 1200px) * 0.05278), 78px);
  }

  .hero__content {
    gap: clamp(26px, calc(26px + (100vw - 1200px) * 0.01667), 38px);
  }

  .hero__tagline-block {
    gap: clamp(14px, calc(14px + (100vw - 1200px) * 0.00972), 21px);
  }

  .hero__logo {
    width: clamp(220px, calc(220px + (100vw - 1200px) * 0.1042), 295px);
  }

  .hero__tagline {
    font-size: clamp(26px, calc(26px + (100vw - 1200px) * 0.01389), 36px);
  }

  .hero__headline {
    font-size: clamp(40px, calc(40px + (100vw - 1200px) * 0.05556), 80px);
  }

  .hero__ribbon {
    padding: clamp(14px, calc(14px + (100vw - 1200px) * 0.01111), 20px)
      clamp(20px, calc(20px + (100vw - 1200px) * 0.01389), 30px);
    border-radius: clamp(16px, 0.6vw + 8px, 20px);
  }

  .hero__ribbon p {
    font-size: clamp(20px, calc(20px + (100vw - 1200px) * 0.01111), 28px);
    letter-spacing: clamp(0.06em, 0.1vw + 0.04em, 0.1em);
  }

  .pill {
    padding: clamp(14px, calc(14px + (100vw - 1200px) * 0.01111), 20px);
    gap: clamp(8px, 1vw, 10px);
  }

  .pill__icon {
    width: clamp(28px, calc(28px + (100vw - 1200px) * 0.01111), 36px);
    height: clamp(28px, calc(28px + (100vw - 1200px) * 0.01111), 36px);
  }

  .pill__text {
    font-size: clamp(16px, calc(16px + (100vw - 1200px) * 0.00556), 20px);
  }

  .pill__text--stack .pill__line1 {
    font-size: clamp(13px, calc(13px + (100vw - 1200px) * 0.00417), 16px);
  }

  .pill__text--stack .pill__line2 {
    font-size: clamp(16px, calc(16px + (100vw - 1200px) * 0.00556), 20px);
  }

  .cities {
    gap: clamp(12px, 1.4vw, 20px);
  }

  .cities__name {
    font-size: clamp(20px, calc(20px + (100vw - 1200px) * 0.01111), 28px);
  }

  .cities__sep {
    height: clamp(26px, 3vw, 35px);
  }

  .hero__glass {
    flex-shrink: 1;
    width: clamp(300px, calc(300px + (100vw - 1200px) * 0.3528), 554px);
    max-width: min(554px, 46vw);
    height: auto;
    min-height: 0; background: #ffffff;
    aspect-ratio: 554 / 750;
    border-radius: clamp(22px, 1.2vw + 8px, 30px);
  }
  .hero__glass h2{ text-align: center; text-transform: uppercase; }
}

/* ========== BANNER FORM (below hero) ========== */
.banner-form {
  position: relative;
  z-index: 2;
  padding: 56px var(--pad-section) 64px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.banner-form__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.banner-form__head {
  margin-bottom: 32px;
  text-align: center;
}

.banner-form__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.banner-form__lede {
  margin: 0;
  max-width: 52ch;
  margin-inline: auto;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
}

.banner-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.banner-form__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}

.banner-form__field--full {
  grid-column: 1 / -1;
}

.banner-form__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.banner-form__optional {
  font-weight: 500;
  color: var(--text-body);
}

.banner-form__field input,
.banner-form__field select {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-dark);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.banner-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.banner-form__field input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.banner-form__field input:hover,
.banner-form__field select:hover {
  border-color: rgba(0, 0, 0, 0.22);
}

.banner-form__field input:focus,
.banner-form__field select:focus {
  outline: none;
  border-color: var(--orange-solid);
  box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.2);
}

.banner-form__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.banner-form__submit {
  min-width: min(280px, 100%);
}

@media (max-width: 640px) {
  .banner-form__fields {
    grid-template-columns: 1fr;
  }
  .trusted {
/*     display: flex; */
/*     flex-direction: column; */
/*     align-items: stretch; */
    gap: 100px;
/*     padding: 50px 24px 0; */
  }
}

/* ========== SECTION: DARK (Why attend + Valuable) ========== */
.section-dark {
  position: relative;
  padding: 0 var(--pad-section) 120px;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  background: linear-gradient(
      90deg,
      rgba(6, 0, 0, 0.2) 0%,
      rgba(6, 0, 0, 0.2) 100%
    ),
    linear-gradient(180deg, #000 0%, #200901 55%, #7a2505 100%);
  overflow: hidden;
}

.section-dark__glass {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
  height: 1163px;
  pointer-events: none;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  mix-blend-mode: multiply;
}

.section-dark__glass img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.7;
}

.section-dark__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Why attend panel */
.why-panel {
  position: relative;
  width: 100%;
  padding: 100px;
  border-radius: var(--radius-large);
  background: linear-gradient(
    122.13deg,
    rgb(6, 38, 121) 1.58%,
    rgb(1, 91, 173) 50.8%,
    rgb(1, 115, 150) 100%
  );
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: stretch;
}

/* Figma Frame 86: heading vertically centered in column aligned to the cards column height */
.why-panel__title-col {
  flex: 1 1 380px;
  max-width: 848px;
  display: flex;
  align-items: center;
  align-self: stretch;
  min-width: 0;
}

.why-panel__title {
  margin: 0;
  width: 100%;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  color: #fff;
}

.why-panel__list {
  flex: 1 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 731px;
}

.why-card {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 48px;
  border-radius: var(--radius-card);
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: #fff;
  text-transform: capitalize;
}

.why-card__num {
  width: 65px;
  flex-shrink: 0;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
}

.why-card__text {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.why-panel__cta {
  position: absolute;
  left: 100px;
  bottom: 100px;
}

/* "What Makes This Interaction Valuable" — matches Figma node 404:1445; mobile slider 404:2701 */
.valuable {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 64px;
  row-gap: 64px;
  align-items: end;
  width: 100%;
}

.valuable__head {
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.valuable__title {
  margin: 0;
  min-width: 0;
  text-transform: capitalize;
}

.valuable__title-line {
  display: block;
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  color: #fff;
}

.valuable__title-line--accent {
  color: #fe9130;
}

.valuable__cta {
  grid-column: 2;
  grid-row: 1;
  flex-shrink: 0;
  justify-self: end;
  align-self: end;
}

.valuable__slider {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
}

.valuable__slider-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.valuable__slider-track > .valuable-card:nth-child(1),
.valuable__slider-track > .valuable-card:nth-child(2),
.valuable__slider-track > .valuable-card:nth-child(3) {
  grid-column: span 2;
}

.valuable__slider-track > .valuable-card:nth-child(4),
.valuable__slider-track > .valuable-card:nth-child(5) {
  grid-column: span 3;
}

.valuable__slider-track > .valuable-card:nth-child(-n + 3) {
  min-height: 324px;
}

.valuable__slider-track > .valuable-card:nth-child(-n + 3) .valuable-card__media {
  flex: 1 1 236px;
  min-width: 0;
  width: auto;
  height: 276px;
  min-height: 276px;
  max-height: 276px;
}

.valuable__slider-track > .valuable-card:nth-child(-n + 3) .valuable-card__body {
  justify-content: flex-start;
}

.valuable__slider-track > .valuable-card:nth-child(n + 4) {
  min-height: 265px;
  align-items: stretch;
}

.valuable__slider-track > .valuable-card:nth-child(n + 4) .valuable-card__body {
  justify-content: center;
}

.valuable-card {
  flex: 1 1 300px;
  display: flex;
  gap: 32px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: linear-gradient(
    180deg,
    rgba(128, 158, 215, 0.19) 0%,
    rgba(159, 108, 108, 0.19) 100%
  );
  min-height: 0;
}

.valuable-card__media {
  position: relative;
  flex: 1 1 236px;
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 11px 14px 24px rgba(0, 0, 0, 0.16);
}

.valuable-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.valuable__slider-track > .valuable-card:nth-child(n + 4) .valuable-card__media {
  flex: 1 1 382px;
  height: 217px;
  min-height: 217px;
  max-height: 217px;
}

.valuable-card__body {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  min-width: 0;
}

.valuable-card__title {
  margin: 0;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  text-transform: capitalize;
}

.valuable-card__title b {
  font-weight: 700;
}

.valuable-card__desc {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #dfdfdf;
}

/* ========== LIGHT SECTION ========== */
.section-light {
  position: relative;
  padding-top: 120px;
}

.section-light__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-light__bg img {
  position: absolute;
  top: -73%;
  left: 0;
  width: 100%;
  height: 174%;
  object-fit: cover;
}

.section-light__content {
  position: relative;
  z-index: 1;
}

.programmes {
  display: flex;
  gap: 52px;
  padding: 0 var(--pad-section) 120px;
  flex-wrap: wrap;
  align-items: stretch;
}

.programmes__list {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prog-card {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-card);
  box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.prog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(243, 243, 243, 0.5) 100%);
  z-index: 0;
}

.prog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 7px 7px 30px rgba(255, 255, 255, 1);
  pointer-events: none;
  z-index: 2;
}

.prog-card > * {
  position: relative;
  z-index: 1;
}

.prog-card__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}

.prog-card__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prog-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--blue-deep);
  text-transform: capitalize;
}

.prog-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}

.programmes__intro {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.programmes__heading {
  margin: 0;
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: capitalize;
}

.programmes-kicker {
  font-weight: 800;
}

.programmes__heading .strong {
  font-weight: 800;
  line-height: 1.3;
  color: #000;
}

.programmes__sub {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

/* Event schedule — Figma node 404:1550 */
.schedule-wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 var(--pad-section) 120px;
}

.schedule__title {
  margin: 0;
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  text-transform: capitalize;
  width: 100%;
}

.schedule__grid {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

/* Default card: gap 32px between [hero + details] and CTA; gap 24px between hero and details (404:1554) */
.schedule-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 0;
  min-width: 0;
}

.schedule-card__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* Hyderabad: outer shadow + radius (404:1579); gap 24 hero → lower; gap 32 details → button inside lower (404:1582) */
.schedule-card--hyderabad {
  border-radius: 32px;
  filter: drop-shadow(4px 15px 22px rgba(184, 190, 202, 0.37));
  gap: 24px;
}

.schedule-card--hyderabad .schedule-card__hyderabad-lower {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.schedule-card--hyderabad .schedule-card__hero {
  flex-shrink: 0;
  border-radius: 32px;
}

.schedule-card__hero {
  position: relative;
/*   height: 163px; */
/*   padding: 24px 44px 0; */
/*   background: var(--blue-deep); */
/*   border-radius: 32px; */
/*   display: flex; */
/*   align-items: flex-end; */
/*   justify-content: center; */
/*   overflow: hidden; */
}

.schedule-card__hero img {
  display: block;
  width: 100%;
}

.schedule-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.schedule-card__city {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  text-transform: capitalize;
}

.schedule-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-meta__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.schedule-meta__row img {
  display: block;
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.schedule-meta__row span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  text-transform: capitalize;
}

.schedule-meta__row--venue span {
  font-weight: 700;
  color: var(--blue-deep);
}

.schedule-card .btn-gradient--schedule {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
}

/* Study abroad strip — Figma 404:1654; single 40px radius on full section */
.study {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  max-width: 1720px;
  min-height: 800px;
  margin: 0 var(--pad-section) 120px;
  background: transparent;
  border-radius: 40px;
  overflow: hidden;
  transition: padding 0.35s ease, background 0.35s ease;
}

.study__visual {
  position: relative;
  flex: 1 1 860px;
  min-width: 0;
  max-width: 860px;
  height: 800px;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, #033788 0%, #010e22 100%);
}

.study__visual-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;
}

.study__panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.study__copy {
  flex: 1 1 860px;
  min-width: 0;
  max-width: 860px;
  box-sizing: border-box;
  height: 800px;
  min-height: 800px;
  padding: 80px 100px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  color: #fff;
  border-radius: 0;
  background: linear-gradient(180deg, #033788 0%, #010e22 100%);
}

.study__copy-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.study__copy h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
}

.study__copy p {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.study__lede {
  margin-top: 26px;
}

.study__emph {
  margin-top: 24px;
}

.study__copy em {
  font-style: italic;
  font-weight: 600;
}

.study__copy .btn-gradient {
  align-self: flex-start;
}

.study__copy .btn-gradient img {
  width: 20px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.study__copy {
  position: relative;
  overflow: hidden;
}

/* Step 4 state: whole study section becomes one full-width report panel */
.study.is-step-final-report {
  display: block;
  max-width: 1720px;
  min-height: 0;
  margin: 0 var(--pad-section) 120px;
  padding: 60px 100px;
  background: linear-gradient(180deg, #033788 0%, #010e22 100%);
}

.study.is-step-final-report .study__visual {
  display: none;
}

.study.is-step-final-report .study__copy {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.study.is-step-final-report .study__step {
  display: none;
}

.study.is-step-final-report .study__step--final-report {
  display: flex;
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: none;
}

.study__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.study__step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.study__step--intro {
  padding: inherit;
}

.study__step--quiz {
  padding: inherit;
  gap: 36px;
}

.study__step--report {
  padding: inherit;
  gap: 32px;
}

.study-quiz {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.study-quiz__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.study-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.study-quiz__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.study-quiz__option span:last-child {
  flex: 1 1 auto;
}

.study-quiz__box {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.study-quiz__box img {
  width: 14px;
  height: 14px;
/*   object-fit: contain; */
}

.study-quiz__option.is-selected {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(243, 243, 243, 0.1) 100%);
}

.study-quiz__option.is-selected .study-quiz__box {
  border: none;
  background: linear-gradient(180deg, var(--orange-top) 0%, var(--orange-bottom) 100%);
}

.study-quiz__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.study-quiz__back {
  min-width: 152px;
  padding: 18px 30px;
  border-radius: 200px;
  border: 1px solid var(--orange-top);
  background: transparent;
  color: var(--orange-top);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
}

.study-quiz__continue {
  align-self: flex-end;
}

.study-report {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.study-report__title {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  max-width: 90%;
}

.study-report__panel {
  width: 100%;
  height: 389px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(243, 243, 243, 0.1) 100%);
  box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.08);
}

.study__step--final-report {
  padding: inherit;
  gap: 24px;
}

.study-final-report {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.study-final-report__main-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.study-final-report__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 393px;
  gap: 64px;
  align-items: start;
}

.study-final-report__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.study-final-report__item h4 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffb573;
}

.study-final-report__item {
  position: relative;
  padding-left: 84px;
}

.study-final-report__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
/*   object-fit: contain; */
}

.study-final-report__item p {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
}

.study-final-report__item ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.study-final-report__item li {
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
}

.study-final-report__right {
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(243, 243, 243, 0.07) 100%);
  box-shadow: 2px 8px 14px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.study-final-report__right h4 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffb573;
}

.study-final-report__right p {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  color: #fff;
}

.study-final-report__right p strong {
  font-size: 24px;
}

.study-final-report__right img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center bottom;
}

/* Scholarships + image */
.scholar-section {
  display: flex;
  gap: 32px;
  padding: 0 var(--pad-section) 120px;
  flex-wrap: wrap;
  align-items: stretch;
}

.scholar-copy {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.scholar-copy h2 {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
}

.scholar-title {
  display: block;
}

.scholar-title__grad {
  display: block;
  background: linear-gradient(180deg, var(--orange-top) 0%, var(--orange-bottom) 48.5%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scholar-title__dark {
  display: block;
  color: #000;
}

.scholar-lead--spaced {
  margin-top: 32px;
}

.scholar-body--spaced {
  margin-top: 16px;
}

.scholar-cards--spaced {
  margin-top: 24px;
}

.scholar-pct {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-deep);
}

.scholar-lead {
  font-size: 36px;
  line-height: 1.1;
}

.scholar-lead strong {
  font-size: 46px;
  font-weight: 800;
  color: var(--blue-deep);
}

.scholar-body {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.scholar-sub {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.scholar-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.scholar-card {
  position: relative;
  flex: 1 1 240px;
  padding: 34px;
  border-radius: 38px;
  border: 1px solid #c4ddea;
  box-shadow: 3px 8px 17px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.scholar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #edf3ff 0%, #fff 61%);
  z-index: 0;
}

.scholar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 2px 4px 9px rgba(255, 255, 255, 0.76);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.scholar-card > * {
  position: relative;
  z-index: 1;
}

.scholar-card h3 {
  margin: 0 0 32px;
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
  text-transform: capitalize;
}

.scholar-card h3 small {
  font-size: 32px;
  font-weight: 500;
  color: #000;
}

.scholar-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scholar-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.scholar-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
/*   object-fit: contain; */
}

.scholar-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.scholar-item strong {
  font-size: 24px;
}

.scholar-photo {
  position: relative;
  flex: 1 1 400px;
  min-height: 600px;
}

.scholar-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Trusted — Figma node 404:1685 (image flush to page left; gap + copy column on the right) */
.trusted {
  display: flex;
  align-items: stretch;
  gap: 100px;
  padding: 0 var(--pad-section) 0 0;
  flex-wrap: wrap;
}

.trusted__media {
  flex: 0 0 968px;
  width: 968px;
  max-width: min(100%, 968px);
  height: 835px;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

.trusted__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 72%,
    rgba(0, 0, 0, 0.4) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 72%,
    rgba(0, 0, 0, 0.4) 90%,
    transparent 100%
  );
}

.trusted__text {
  flex: 1 1 360px;
  min-width: 0;
  box-sizing: border-box;
  min-height: 835px;
  padding: 0 100px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.trusted__text-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 61px;
  width: 100%;
  min-height: 0;
}

.trusted__title {
  margin: 0;
  font-size: 100px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.trusted__title-line {
  display: block;
}

.trusted__title-line--world {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.trusted__world-text {
  flex: 0 0 auto;
}

@keyframes trusted-globe-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.trusted__globe-o {
  flex-shrink: 0;
  width: 93px;
  height: 101px;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  animation: trusted-globe-rotate 22s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .trusted__globe-o {
    animation: none;
  }
}

.trusted__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}

.trusted__tag {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  background: linear-gradient(180deg, var(--orange-top) 0%, var(--orange-bottom) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trusted__cols {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trusted__cols p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-dark);
}

.site-footer {
  width: 100%;
  padding: 15px var(--pad-section);
  background: var(--blue-deep);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-family: "Open Sans", var(--font);
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}

/* ========== Responsive (desktop 1920 → 1200) ========== */
@media (max-width: 1800px) {
  .btn-gradient {
    padding: 20px 36px;
    font-size: 17px;
  }

  .hero__glass {
    width: 100%;
    max-width: 554px;
    margin: 0 auto;
    min-height: 0;
  }

  .section-dark {
    padding: 0 var(--pad-section) 112px;
  }

  .section-dark__inner {
    gap: 112px;
  }

  .why-panel {
    padding: 88px;
    gap: 30px;
  }

  .why-panel__title {
    font-size: 59px;
  }

  .why-panel__list {
    min-height: 686px;
  }

  .why-card {
    gap: 28px;
    padding: 26px 44px;
  }

  .why-card__num {
    width: 60px;
    font-size: 40px;
  }

  .why-card__text {
    font-size: 22px;
  }

  .why-panel__cta {
    left: 88px;
    bottom: 88px;
  }

  .valuable {
    gap: 60px;
    row-gap: 60px;
    column-gap: 60px;
  }

  .valuable__title-line {
    font-size: 59px;
  }

  .valuable__slider-track {
    gap: 28px;
  }

  .valuable__slider-track > .valuable-card:nth-child(-n + 3) {
    min-height: 304px;
  }

  .valuable__slider-track > .valuable-card:nth-child(-n + 3) .valuable-card__media {
    height: 258px;
    min-height: 258px;
    max-height: 258px;
  }

  .valuable__slider-track > .valuable-card:nth-child(n + 4) {
    min-height: 248px;
  }

  .valuable-card {
    gap: 28px;
    padding: 22px;
  }

  .valuable__slider-track > .valuable-card:nth-child(n + 4) .valuable-card__media {
    height: 203px;
    min-height: 203px;
    max-height: 203px;
  }

  .valuable-card__body {
    gap: 22px;
  }

  .valuable-card__title {
    font-size: 30px;
  }

  .section-light {
    padding-top: 112px;
  }

  .programmes {
    gap: 48px;
    padding: 0 var(--pad-section) 112px;
  }

  .prog-card {
    padding: 22px;
    gap: 22px;
  }

  .prog-card__icon {
    width: 46px;
    height: 46px;
  }

  .prog-card__text {
    gap: 22px;
  }

  .prog-card__title {
    font-size: 22px;
  }

  .programmes__intro {
    gap: 22px;
  }

  .programmes__heading {
    font-size: 59px;
  }

  .programmes__sub {
    font-size: 19px;
  }

  .schedule-wrap {
    gap: 60px;
    padding: 0 var(--pad-section) 112px;
  }

  .schedule__title {
    font-size: 67px;
  }

  .schedule__grid {
    gap: 22px;
  }

  .schedule-card {
    gap: 28px;
  }

  .schedule-card__stack {
    gap: 22px;
  }

  .schedule-card__hero {
/*     height: 152px; */
/*     padding: 22px 40px 0; */
  }

  .schedule-card__hero img {
/*     max-height: 132px; */
  }

  .schedule-card__city {
    font-size: 30px;
  }

  .schedule-meta__row img {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .schedule-meta__row span {
    font-size: 22px;
  }

  .study {
    min-height: 750px;
    margin: 0 var(--pad-section) 112px;
    max-width: min(1720px, calc(100vw - 2 * var(--pad-section)));
  }

  .study__visual {
    max-width: min(860px, 50%);
    height: 750px;
  }

  .study__copy {
    max-width: min(860px, 50%);
    height: 750px;
    min-height: 750px;
    padding: 74px 94px 74px 46px;
  }

  .study__copy h2 {
    font-size: 45px;
  }

  .study__copy p {
    font-size: 22px;
  }

  .study__lede {
    margin-top: 24px;
  }

  .study__emph {
    margin-top: 22px;
  }

  .scholar-section {
    gap: 28px;
    padding: 0 var(--pad-section) 112px;
  }

  .scholar-copy {
    gap: 52px;
  }

  .scholar-copy h2 {
    font-size: 59px;
  }

  .scholar-lead {
    font-size: 34px;
  }

  .scholar-lead strong {
    font-size: 42px;
  }

  .scholar-body {
    font-size: 19px;
  }

  .scholar-sub {
    font-size: 30px;
  }

  .scholar-pct {
    font-size: 38px;
  }

  .scholar-card {
    padding: 32px;
    border-radius: 36px;
  }

  .scholar-card h3 {
    font-size: 38px;
  }

  .scholar-card h3 small {
    font-size: 30px;
  }

  .scholar-item p {
    font-size: 19px;
  }

  .scholar-item strong {
    font-size: 22px;
  }

  .scholar-photo {
    min-height: 562px;
  }

  .trusted {
    gap: 88px;
    padding: 0 var(--pad-section) 0 0;
  }

  .trusted__media {
    flex: 1 1 880px;
    width: min(968px, 52vw);
    height: min(835px, 43vw);
    max-height: 760px;
  }

  .trusted__text {
    min-height: min(835px, 43vw);
    padding: 0 88px 52px 0;
  }

  .trusted__text-inner {
    gap: 56px;
  }

  .trusted__title {
    font-size: 74px;
  }

  .trusted__globe-o {
    width: 86px;
    height: 94px;
  }

  .trusted__tag {
    font-size: 32px;
  }

  .trusted__cols p {
    font-size: 17px;
  }

  .site-footer {
    padding: 28px var(--pad-section);
  }

  .site-footer p {
    font-size: 19px;
  }
}

/* Keep schedule hero images full/non-stretched below 1700px */
@media (max-width: 1700px) {
  .schedule-card__hero {
    height: auto;
    min-height: 150px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .schedule-card__hero img {
    width: 100%;
    max-width: none;
/*     height: auto; */
    max-height: 100%;
/*     object-fit: cover; */
    margin: 0;
  }
}

@media (max-width: 1600px) {
  .btn-gradient {
    padding: 18px 32px;
    font-size: 16px;
    gap: 8px;
  }

  .section-dark {
    padding: 0 var(--pad-section) 100px;
  }

  .section-dark__inner {
    gap: 100px;
  }

  .why-panel {
    padding: 72px;
    gap: 26px;
    border-radius: 52px;
  }

  .why-panel__title {
    font-size: 66px;
  }

  .why-panel__list {
    min-height: 620px;
    gap: 14px;
  }

  .why-card {
    gap: 26px;
    padding: 24px 40px;
    border-radius: 22px;
  }

  .why-card__num {
    width: 56px;
    font-size: 38px;
  }

  .why-card__text {
    font-size: 20px;
  }

  .why-panel__cta {
    left: 72px;
    bottom: 72px;
  }

  .valuable {
    gap: 52px;
    row-gap: 52px;
    column-gap: 52px;
  }

  .valuable__title-line {
    font-size: 66px;
  }

  .valuable__slider-track {
    gap: 26px;
  }

  .valuable__slider-track > .valuable-card:nth-child(-n + 3) {
    min-height: 288px;
  }

  .valuable__slider-track > .valuable-card:nth-child(-n + 3) .valuable-card__media {
    flex: 1 1 200px;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
  }

  .valuable__slider-track > .valuable-card:nth-child(n + 4) {
    min-height: 248px;
  }

  .valuable-card {
    gap: 26px;
    padding: 20px;
    border-radius: 22px;
  }

  .valuable-card__media {
    border-radius: 14px;
  }

  .valuable__slider-track > .valuable-card:nth-child(n + 4) .valuable-card__media {
    flex: 1 1 320px;
    height: 196px;
    min-height: 196px;
    max-height: 196px;
  }

  .valuable-card__body {
    gap: 20px;
  }

  .valuable-card__title {
    font-size: 28px;
  }

  .valuable-card__desc {
    font-size: 15px;
  }

  .section-light {
    padding-top: 100px;
  }

  .programmes {
    gap: 44px;
    padding: 0 var(--pad-section) 100px;
  }

  .prog-card {
    padding: 20px;
    gap: 20px;
  }

  .prog-card__icon {
    width: 44px;
    height: 44px;
  }

  .prog-card__text {
    gap: 20px;
  }

  .prog-card__title {
    font-size: 21px;
  }

  .prog-card__desc {
    font-size: 15px;
  }

  .programmes__intro {
    gap: 20px;
  }

  .programmes__heading {
    font-size: 66px;
  }

  .programmes__sub {
    font-size: 18px;
  }

  .schedule-wrap {
    gap: 52px;
    padding: 0 var(--pad-section) 100px;
  }

  .schedule__title {
    font-size: 74px;
  }

  .schedule__grid {
    gap: 20px;
  }

  .schedule-card {
    gap: 26px;
  }

  .schedule-card__stack {
    gap: 20px;
  }

  .schedule-card__hero {
/*     height: 148px; */
    padding:0;
    border-radius: 28px;
  }

  .schedule-card__hero img {
/*     max-height: 126px; */
/*     margin: 0 auto; */
width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
  }

  .schedule-card__city {
    font-size: 28px;
  }

  .schedule-meta {
    gap: 14px;
  }

  .schedule-meta__row {
    gap: 14px;
  }

  .schedule-meta__row img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
  }

  .schedule-meta__row span {
    font-size: 20px;
  }

  .study {
    min-height: 680px;
    margin: 0 var(--pad-section) 100px;
  }

  .study__visual {
    flex: 1 1 50%;
    max-width: min(860px, 50%);
    height: min(680px, 42vw);
    min-height: 560px;
  }

  .study__copy {
    flex: 1 1 50%;
    max-width: min(860px, 50%);
    height: min(680px, 42vw);
    min-height: 560px;
    padding: 64px 80px 64px 40px;
  }

  .study__copy h2 {
    font-size: 50px;
  }

  .study__copy p {
    font-size: 20px;
  }

  .study__lede {
    margin-top: 22px;
  }

  .study__emph {
    margin-top: 20px;
  }

  .scholar-section {
    gap: 26px;
    padding: 0 var(--pad-section) 100px;
  }

  .scholar-copy {
    gap: 46px;
  }

  .scholar-copy h2 {
    font-size: 66px;
  }

  .scholar-lead {
    font-size: 32px;
  }

  .scholar-lead strong {
    font-size: 40px;
  }

  .scholar-body {
    font-size: 18px;
  }

  .scholar-sub {
    font-size: 28px;
  }

  .scholar-pct {
    font-size: 36px;
  }

  .scholar-cards {
    gap: 20px;
  }

  .scholar-card {
    padding: 28px;
    border-radius: 34px;
  }

  .scholar-card h3 {
    font-size: 36px;
    margin: 0 0 28px;
  }

  .scholar-card h3 small {
    font-size: 28px;
  }

  .scholar-list {
    gap: 20px;
  }

  .scholar-item {
    gap: 20px;
  }

  .scholar-item img {
    width: 28px;
    height: 28px;
  }

  .scholar-item p {
    font-size: 18px;
  }

  .scholar-item strong {
    font-size: 22px;
  }

  .scholar-photo {
    min-height: 520px;
  }

  .trusted {
    gap: 72px;
    padding: 0 var(--pad-section) 0 0;
  }

  .trusted__media {
    flex: 1 1 min(720px, 48%);
    width: min(968px, 48vw);
    height: auto;
    min-height: min(720px, 45vw);
    max-height: 700px;
    aspect-ratio: 968 / 835;
  }

  .trusted__text {
    flex: 1 1 320px;
    min-height: 0;
    padding: 0 72px 48px 0;
  }

  .trusted__text-inner {
    gap: 48px;
  }

  .trusted__title {
    font-size: 80px;
  }

  .trusted__globe-o {
    width: 78px;
    height: 86px;
  }

  .trusted__tag {
    font-size: 30px;
  }

  .trusted__body {
    gap: 18px;
  }

  .site-footer {
    padding: 26px var(--pad-section);
  }

  .site-footer p {
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .why-panel__title {
    font-size: 53px;
  }

  .why-panel {
    padding: 48px var(--pad-section) 120px;
  }

  .why-panel__cta {
    left: var(--pad-section);
    bottom: clamp(24px, 3vw, 32px);
  }

  .schedule-wrap {
    gap: 48px;
  }

  .schedule__title {
    font-size: clamp(42px, 4.4vw, 51px);
  }

  .programmes__heading,
  .valuable__title-line,
  .scholar-copy h2 {
    font-size: clamp(32px, 4.16vw, 51px);
  }

  .study__copy h2 {
    font-size: 40px;
  }

  .trusted__title {
    font-size: clamp(38px, 4vw, 64px);
  }
}

/* Mobile / tablet: 360px–1200px — layout matches Figma frame 404:1226 */
@media (max-width: 1200px) {
  :root {
    --pad-section: clamp(16px, 4.2vw + 6px, 48px);
    --radius-mobile-hero: clamp(28px, 7vw, 40px);
  }

  body {
    overflow-x: hidden;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    min-height: 0;
    padding: 24px var(--pad-section) 64px;
    gap: 36px;
  }

  .hero__left {
    max-width: 100%;
    gap: 48px;
  }

  .hero__logo {
    width: min(256px, 42vw);
  }

  .hero__tagline {
    font-size: clamp(26px, 3.2vw, 32px);
  }

  .hero__headline {
    font-size: clamp(40px, 6vw, 56px);
  }

  .hero__ribbon p {
    font-size: clamp(20px, 2.4vw, 24px);
    letter-spacing: 0.08em;
  }

  .pill__text {
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .pill__text--stack .pill__line2 {
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .cities__name {
    font-size: clamp(20px, 2.5vw, 24px);
  }

  .hero__glass {
    width: 100%;
    max-width: min(480px, 92vw);
    flex-shrink: 0;
    margin: 0 auto;
    height: auto;
    min-height: min(420px, 120vw);
    aspect-ratio: 554 / 750;
  }

  .section-dark {
    padding: 0 var(--pad-section) clamp(48px, 10vw, 80px);
    border-radius: 0 0 clamp(28px, 8vw, var(--radius-large)) clamp(28px, 8vw, var(--radius-large));
  }

  .section-dark__inner {
    gap: clamp(48px, 11vw, 72px);
  }

  .why-panel {
    flex-direction: column;
    align-items: stretch;
    padding: clamp(40px, 10vw, 50px) 24px clamp(42px, 11vw, 50px);
    border-radius: clamp(28px, 7vw, 30px);
    gap: 34px;
  }

  .why-panel__title-col {
    flex: none;
    max-width: none;
    align-self: stretch;
    align-items: flex-start;
  }

  .why-panel__list {
    flex: none;
    width: 100%;
    min-height: 0;
    gap: 16px;
  }

  .why-panel__cta {
    position: static;
    margin-top: 0;
    width: 100%;
  }

  .why-panel__cta .btn-gradient {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
  }

  .why-panel__title {
    font-size: clamp(32px, 9vw, 40px);
    font-weight: 600;
    line-height: 1.1;
  }

  .why-card {
    align-items: center;
    padding: 16px 24px;
    gap: 16px;
    border-radius: 8px;
  }

  .why-card__num {
    width: 34px;
    min-width: 34px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
  }

  .why-card__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
  }

  .valuable {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(24px, 6vw, 32px);
  }

  .valuable__head {
    margin: 0;
  }

  .valuable__cta {
    order: 3;
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  .valuable__cta.btn-gradient {
    width: 100%;
    justify-content: center;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
  }

  .valuable__title-line {
    font-size: clamp(32px, 10vw, 40px);
    font-weight: 800;
  }

  .valuable__slider {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    margin-inline: calc(-1 * var(--pad-section));
    padding-inline: var(--pad-section);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--pad-section);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    container-type: inline-size;
    container-name: valuable-carousel;
  }

  .valuable__slider::-webkit-scrollbar {
    display: none;
  }

  .valuable__slider-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    padding-bottom: 6px;
  }

  /* ~1.2 cards visible: card width = scrollport / 1.2 (peek hints more slides) */
  .valuable__slider-track > .valuable-card {
    flex: 0 0 calc((100vw - 2 * var(--pad-section)) / 1.2);
    width: calc((100vw - 2 * var(--pad-section)) / 1.2);
    max-width: none;
    min-height: 0;
    scroll-snap-align: start;
    flex-direction: column;
    padding: 20px;
    gap: 24px;
    border-radius: 24px;
  }

  @supports (width: 1cqw) {
    .valuable__slider-track > .valuable-card {
      flex: 0 0 calc(100cqw / 1.2);
      width: calc(100cqw / 1.2);
    }
  }

  .valuable__slider-track > .valuable-card .valuable-card__media {
    flex: none;
    width: 100%;
    height: 229px;
    min-height: 229px;
    max-height: 229px;
    aspect-ratio: auto;
  }

  .valuable__slider-track > .valuable-card .valuable-card__body {
    flex: 1 1 auto;
    gap: 16px;
    justify-content: flex-start;
  }

  .valuable__slider-track > .valuable-card .valuable-card__title {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.1;
  }

  .valuable__slider-track > .valuable-card .valuable-card__title b {
    font-weight: 700;
  }

  .valuable__slider-track > .valuable-card .valuable-card__desc {
    font-size: 14px;
    line-height: 1.3;
  }

  .section-light {
    padding-top: clamp(48px, 12vw, 80px);
  }

  .programmes {
    flex-direction: column;
    gap: clamp(28px, 7vw, 40px);
    padding: 0 var(--pad-section) clamp(48px, 12vw, 80px);
  }

  .programmes__list {
    flex: none;
    width: 100%;
    order: 1;
  }

  .programmes__intro {
    order: -1;
    flex: none;
    width: 100%;
  }

  .programmes__heading {
    font-size: clamp(28px, 6.5vw, 56px);
  }

  .programmes__sub {
    font-size: clamp(15px, 3.5vw, 20px);
  }

  .prog-card {
    padding: clamp(18px, 4vw, 24px);
    gap: clamp(14px, 3vw, 24px);
  }

  .prog-card__icon {
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
  }

  .prog-card__title {
    font-size: clamp(17px, 4vw, 22px);
  }

  .schedule-wrap {
    padding: 0 var(--pad-section) clamp(48px, 12vw, 80px);
    gap: clamp(28px, 6vw, 40px);
  }

  .schedule__title {
    font-size: clamp(32px, 7vw, 56px);
  }

  .schedule__grid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: clamp(22px, 5vw, 32px);
  }

  .schedule-card {
    flex: 1 1 calc(50% - clamp(11px, 2.5vw, 16px));
    width: calc(50% - clamp(11px, 2.5vw, 16px));
    max-width: calc(50% - clamp(11px, 2.5vw, 16px));
    min-width: 0;
    gap: clamp(22px, 4vw, 32px);
  }

  .schedule-card--hyderabad {
    border-radius: clamp(24px, 5vw, 32px);
  }

  .schedule-card__hero {
    height: auto;
    min-height: clamp(120px, 28vw, 163px);
    padding: 0;
    border-radius: clamp(24px, 5vw, 32px);
  }

  .schedule-card__hero img {
/*     max-height: clamp(100px, 26vw, 140px); */
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
  }

  .schedule-card__city {
    font-size: clamp(22px, 5vw, 28px);
  }

  .schedule-meta__row span {
    font-size: clamp(16px, 3.6vw, 20px);
  }

  .btn-gradient--schedule {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .study {
    flex-wrap: wrap;
    min-height: 0;
    max-width: 100%;
    margin: 0 var(--pad-section) clamp(40px, 10vw, 80px);
    border-radius: var(--radius-mobile-hero);
  }

  .study.is-step-final-report {
    margin: 0 var(--pad-section) clamp(40px, 10vw, 80px);
    padding: clamp(24px, 5.5vw, 40px);
    border-radius: var(--radius-mobile-hero);
  }

  .study.is-step-final-report .study__copy {
    overflow: visible;
  }

  .study__visual {
    flex: 1 1 100%;
    max-width: 100%;
    height: min(56vw, 420px);
    min-height: min(220px, 62vw);
  }

  .study__copy {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: clamp(28px, 7vw, 40px) var(--pad-section) clamp(36px, 8vw, 48px);
    gap: clamp(20px, 4vw, 28px);
  }

  .study__step {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .study__step--quiz {
    display: none;
  }

  .study__step--report {
    display: none;
  }

  .study__step--final-report {
    display: none;
  }

  #study-readiness.is-step-quiz .study__step--intro,
  #study-readiness.is-step-report .study__step--intro,
  #study-readiness.is-step-final-report .study__step--intro {
    display: none;
  }

  #study-readiness.is-step-quiz .study__step--quiz {
    display: flex;
  }

  #study-readiness.is-step-report .study__step--report {
    display: flex;
  }

  #study-readiness.is-step-final-report .study__step--final-report {
    display: flex;
  }

  .study-quiz__title {
    font-size: clamp(26px, 6.5vw, 40px);
  }

  .study-quiz__option {
    padding: 14px 16px;
    gap: 12px;
    font-size: 14px;
  }

  .study-quiz__box {
    width: 20px;
    height: 20px;
  }

  .study-quiz__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .study-quiz__back {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    font-size: 16px;
  }

  .study-quiz__continue {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }

  .study-report__title {
    max-width: 100%;
    font-size: clamp(24px, 6.2vw, 38px);
  }

  .study-report__panel {
    height: clamp(200px, 42vw, 320px);
  }

  .study-final-report__main-title {
    font-size: clamp(24px, 6.2vw, 38px);
    text-align: left;
  }

  .study-final-report__grid {
    grid-template-columns: 1fr;
  }

  .study-final-report__item h4 {
    font-size: 22px;
  }

  .study-final-report__item {
    padding-left: 0;
    text-align: left;
  }

  .study-final-report__icon {
    position: static;
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    display: block;
  }

  .study-final-report__item p,
  .study-final-report__item li {
    font-size: 15px;
    text-align: left;
  }

  .study-final-report__item ul {
    list-style: none;
    padding-left: 0;
  }

  .study-final-report__right h4 {
    font-size: 28px;
    text-align: left;
  }

  .study-final-report__right p {
    font-size: 16px;
    text-align: left;
  }

  .study-final-report__right p strong {
    font-size: 19px;
  }

  .study__copy h2 {
    font-size: clamp(32px, 4vw, 44px);
  }

  .study__copy p {
    font-size: clamp(17px, 2vw, 20px);
  }

  .study__copy .btn-gradient {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }

  .scholar-section {
    flex-direction: column;
    gap: clamp(24px, 6vw, 32px);
    padding: 0 var(--pad-section) clamp(40px, 10vw, 80px);
  }

  .scholar-copy {
    flex: none;
    width: 100%;
    gap: clamp(28px, 6vw, 40px);
  }

  .scholar-copy h2 {
    font-size: clamp(28px, 6.5vw, 56px);
  }

  .scholar-lead {
    font-size: clamp(22px, 5vw, 32px);
  }

  .scholar-lead strong {
    font-size: clamp(28px, 6vw, 40px);
  }

  .scholar-sub {
    font-size: clamp(18px, 4.5vw, 28px);
  }

  .scholar-card h3 {
    font-size: clamp(24px, 5.5vw, 34px);
  }

  .scholar-photo {
    flex: none;
    width: 100%;
/*     min-height: min(280px, 72vw); */
/*     max-height: min(520px, 95vw); */
  }

  .trusted {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
    padding: 0 var(--pad-section);
  }

  .trusted__media {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: min(52vw, 420px);
    max-height: none;
    aspect-ratio: 968 / 835;
    align-self: stretch;
    margin: 0;
  }

  .trusted__media img {
    object-fit: cover;
    object-position: center center;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 70%,
      rgba(0, 0, 0, 0.75) 88%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 70%,
      rgba(0, 0, 0, 0.75) 88%,
      transparent 100%
    );
  }

  .trusted__text {
    min-height: 0;
    padding: 0 0 40px;
    box-sizing: border-box;
  }

  .trusted__text-inner {
    justify-content: flex-start;
    gap: 40px;
  }

  .trusted__title {
    font-size: clamp(44px, 7vw, 72px);
  }

  .trusted__tag {
    font-size: clamp(26px, 3.2vw, 32px);
  }

  .site-footer {
    padding: 24px var(--pad-section);
  }
}

/* Tablet-only tweak: keep scholarship student fully visible around 800px */
@media (max-width: 1200px) and (min-width: 769px) {
  .scholar-photo {
    min-height: clamp(420px, 62vw, 580px);
    max-height: none;
    aspect-ratio: 5 / 6;
  }

  .scholar-photo img {
    object-fit: contain;
    object-position: center bottom;
  }
}

/* ≤992px — banner matches Figma 404:2514 (360–992) */
@media (max-width: 992px) {
  :root {
    --hero-banner-inline: 24px;
  }

  .mobile-enquiry-slot {
    display: block;
    padding: 0 var(--hero-banner-inline) 40px;
    background: #000;
  }

  .hero {
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px var(--hero-banner-inline) 50px;
    gap: 0;
    min-height: 0;
    background: #000;
  }

  .hero__bg img {
    object-fit: cover;
    object-position: 42% 32%;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 240, 230, 0.08) 16%,
      transparent 34%,
      transparent 58%,
      rgba(0, 0, 0, 0.55) 82%,
      #000 100%
    );
  }

  .hero__left {
    position: relative;
    z-index: 1;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hero__brand {
/*     width: calc(100% + 2 * var(--hero-banner-inline)); */
/*     margin-left: calc(-1 * var(--hero-banner-inline)); */
/*     margin-right: calc(-1 * var(--hero-banner-inline)); */
    box-sizing: border-box;
    padding: clamp(22px, 5.5vw, 36px) var(--hero-banner-inline) clamp(18px, 4.5vw, 28px);
/*     background: #fff; */
/*     box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); */
  }

  .hero__logo {
    width: min(220px, 62vw);
    margin: 0 auto;
    display: block;
  }

  .hero__content {
    align-items: center;
    width: 100%;
    gap: 24px;
  }

  .hero__tagline-block {
    align-self: stretch;
    align-items: left;
    gap: 0;
  }

  .hero__tagline {
    margin: 0 0 16px;
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 0.9;
    max-width: 100%;
    color: #000;
  }

  .hero__headline {
    margin: 0 0 40px;
    text-align: left;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
  }

  .hero__headline .line {
    display: block;
  }

  .hero__ribbon {
/*     align-self: center; */
    margin: 0;
    width: auto;
    max-width: 100%;
    padding: 8px 16px;
    background: var(--orange-solid);
    border-radius: 8px;
  }

  .hero__ribbon p {
    margin: 0;
    font-size: clamp(12px, 3.5vw, 16px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
  }

  .hero__ribbon-br {
    display: block;
  }

  .hero__ribbon-sub {
    white-space: normal;
  }

  .hero__pills {
    align-self: stretch;
    gap: 8px;
  }

  .pill {
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .pill--cities {
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .pill--cities .cities {
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
/*     flex-wrap: nowrap; */
    white-space: nowrap;
    overflow: hidden;
    row-gap: 0;
  }

  .pill__icon {
    width: 30px;
    height: 30px;
  }

  .pill__text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    text-align: left;
  }

  .pill__text--stack {
    text-align: left;
  }

  .hero__pills .pill:first-child {
    align-items: flex-start;
  }

  .pill__text--stack .pill__line1 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
  }

  .pill__text--stack .pill__line2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
  }

  .cities__name {
    font-size: 18px;
    font-weight: 600;
  }

  .cities__sep {
    height: 16px;
  }

  /* Study readiness block — mobile frame 404:2919 */
  .study {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    width: calc(100% - (2 * clamp(16px, 5vw, 24px)));
    margin: 0 auto clamp(32px, 8vw, 64px);
    box-sizing: border-box;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #033788 0%, #010e22 100%);
  }

  .study__copy {
    order: 1;
    max-width: 100%;
    min-height: 0;
    padding: 24px 24px 0;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: transparent;
  }

  .study__copy-inner {
    gap: 26px;
  }

  .study__copy h2 {
    font-size: clamp(24px, 4.4vw, 34px);
    font-weight: 700;
    line-height: 1.1;
  }

  .study__copy p {
    font-size: 14px;
    line-height: 1.2;
  }

  .study__lede,
  .study__emph {
    margin-top: 0;
  }

  .study__copy .btn-gradient {
    align-self: center;
    width: auto;
    min-width: 210px;
    min-height: 51px;
    margin-top: 12px;
    padding: 16px 40px;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
  }

  .study__copy .btn-gradient img {
    width: 16.83px;
    height: 14px;
  }

  .study__visual {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 213px;
    min-height: 213px;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .study__visual-gradient {
    display: none;
  }

  .study__panel-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  /* Trusted + footer — mobile frame 404:2958 */
  .trusted {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 80px;
    padding: 50px 24px 0;
  }

  .trusted__text {
    order: 1;
    min-height: 0;
    padding: 0 0 32px;
  }

  .trusted__text-inner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
  }

  .trusted__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .trusted__title-line--world {
    flex-wrap: nowrap;
  }

  .trusted__globe-o {
    width: 37.57px;
    height: 40.55px;
    max-height: none;
  }

  .trusted__body {
    gap: 24px;
  }

  .trusted__tag {
    font-size: 26px;
    line-height: 1.1;
  }

  .trusted__cols {
    gap: 8px;
  }

  .trusted__cols p {
    font-size: 14px;
    line-height: 1.4;
  }

  .trusted__media {
    order: 2;
    flex: none;
    width: calc(100% + 48px);
    max-width: none;
    margin: 12px -24px 0;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    aspect-ratio: auto;
  }

  .trusted__media img {
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .site-footer {
    padding: 10px 10px;
  }

  .site-footer p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__glass {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-section: 20px;
    --radius-mobile-hero: clamp(22px, 5.5vw, 32px);
  }

  .hero__headline {
    font-size: clamp(28px, 9vw, 48px);
  }

  .enquire-card h2 {
    font-size: 28px;
  }

  .why-panel__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .study {
    width: calc(100% - (2 * clamp(16px, 5vw, 20px)));
    margin: 0 auto clamp(32px, 8vw, 64px);
  }

  .study__copy h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .study__copy p {
    font-size: 14px;
  }

  .schedule__grid {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .schedule-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .trusted__globe-o {
    width: 37.57px;
    height: 40.55px;
    max-height: none;
  }

  .trusted__tag {
    font-size: 26px;
  }
}
