:root {
  --brand-blue: #2e3092;
  --brand-blue-deep: #1f235f;
  --brand-blue-soft: #5a7bf0;
  --brand-red: #ed1c24;
  --brand-red-deep: #bf1821;
  --ink: #1d2340;
  --muted: #5b6480;
  --paper: #f7f2ea;
  --paper-soft: #fffdf9;
  --paper-alt: #efe7da;
  --paper-blue: #eef2ff;
  --line: rgba(46, 48, 146, 0.12);
  --line-strong: rgba(46, 48, 146, 0.2);
  --shadow-soft: 0 20px 50px rgba(22, 26, 74, 0.1);
  --shadow-card: 0 28px 72px rgba(22, 26, 74, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, #faf5ef 0%, #f3ecdf 52%, #fbf8f3 100%);
  line-height: 1.65;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(46, 48, 146, 0.08), transparent 18rem),
    radial-gradient(circle at 85% 18%, rgba(237, 28, 36, 0.08), transparent 18rem),
    radial-gradient(circle at 88% 86%, rgba(46, 48, 146, 0.06), transparent 22rem);
}

body::after {
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(46, 48, 146, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 48, 146, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.35) 100%);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

.narrow {
  width: min(920px, calc(100% - 40px));
}

.section-pad {
  padding: 96px 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.hero-copy,
.hero-card,
.section-heading,
.copy-block,
.sticky-intro,
.lead-form,
.detail-form,
.final-card {
  min-width: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Lora", serif;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(52px, 7vw, 88px);
}

h2 {
  font-size: clamp(38px, 4.8vw, 64px);
}

h3 {
  font-size: clamp(26px, 2.9vw, 38px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(46, 48, 146, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-bottom: 3px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-blue-deep);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-soft));
  box-shadow: 0 12px 30px rgba(46, 48, 146, 0.2);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 64px;
  width: 540px;
  height: 540px;
  border-radius: 46px;
  background:
    linear-gradient(160deg, rgba(46, 48, 146, 0.1), rgba(46, 48, 146, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
  transform: rotate(-8deg);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 22%, rgba(46, 48, 146, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 110px;
  height: 26px;
  border-radius: 999px;
  background: rgba(237, 28, 36, 0.11);
  border: 1px solid rgba(237, 28, 36, 0.14);
  transform: rotate(-6deg);
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 0;
}

.quick-facts div {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quick-facts div:nth-child(1) {
  transform: rotate(-1.5deg);
}

.quick-facts div:nth-child(2) {
  transform: rotate(1.2deg);
}

.quick-facts div:nth-child(3) {
  transform: rotate(-1deg);
}

.quick-facts div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -10px;
  width: 70px;
  height: 18px;
  border-radius: 999px;
  background: rgba(46, 48, 146, 0.12);
  border: 1px solid rgba(46, 48, 146, 0.1);
}

.quick-facts dt {
  font-family: "Lora", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue);
}

.quick-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-card,
.lead-form,
.detail-form,
.final-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(46, 48, 146, 0.1);
  box-shadow: var(--shadow-card);
}

.hero-card::before,
.hero-card::after,
.lead-form::before,
.detail-form::before,
.final-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16px -10px -16px 18px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(46, 48, 146, 0.08);
  transform: rotate(-2deg);
}

.hero-card::after {
  inset: -12px 12px 16px -12px;
  background: rgba(46, 48, 146, 0.06);
  transform: rotate(2.2deg);
}

.hero-card {
  padding: 28px;
}

.hero-card h2 {
  font-size: clamp(32px, 3vw, 44px);
  color: var(--brand-blue-deep);
}

.hero-photo,
.final-photo {
  position: relative;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.4)),
    url("assets/ntu-hero-bg.png") center/cover no-repeat,
    #f0f2ff;
  border: 1px solid rgba(46, 48, 146, 0.1);
}

.hero-photo {
  min-height: 350px;
  padding: 26px 18px 0;
}

.hero-photo::before,
.final-photo::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 18px;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: rgba(237, 28, 36, 0.14);
  border: 1px solid rgba(237, 28, 36, 0.16);
  transform: rotate(-8deg);
}

.hero-photo::after {
  content: "NTU 2026";
  position: absolute;
  right: 20px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(46, 48, 146, 0.1);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 34px rgba(33, 35, 95, 0.18));
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--brand-red) 0 32%, transparent 33% 100%),
    var(--paper-soft);
  border: 2px solid var(--brand-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.9;
  transform: none;
}

.btn.is-loading {
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-soft));
  box-shadow: 0 14px 30px rgba(46, 48, 146, 0.22);
}

.btn-soft {
  color: var(--brand-blue-deep);
  background: #fff;
  border: 1px solid rgba(46, 48, 146, 0.16);
  box-shadow: 0 10px 24px rgba(46, 48, 146, 0.08);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red-deep), var(--brand-red));
  box-shadow: 0 14px 30px rgba(237, 28, 36, 0.18);
}

.full {
  width: 100%;
}

.contact-box {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-box span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-box a {
  display: block;
  margin-top: 4px;
  font-size: 21px;
  font-weight: 800;
}

.contact-box.light {
  background: #fff;
  color: var(--brand-blue-deep);
  border: 1px solid var(--line);
  box-shadow: none;
}

.mini-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-blue);
  font-weight: 800;
}

.form-band,
.reasons,
.majors,
.admission,
.detail-form-section,
.faq,
.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(46, 48, 146, 0.08);
  border-bottom: 1px solid rgba(46, 48, 146, 0.08);
}

.form-band {
  background:
    linear-gradient(180deg, rgba(46, 48, 146, 0.03), transparent),
    linear-gradient(180deg, #fdfaf5 0%, #f5efe4 100%);
}

.form-band::before,
.reasons::before,
.majors::before,
.admission::before,
.detail-form-section::before,
.faq::before,
.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: min(1240px, calc(100% - 44px));
  height: calc(100% - 68px);
  border-radius: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(46, 48, 146, 0.08);
  box-shadow: 0 28px 80px rgba(22, 26, 74, 0.06);
  z-index: 0;
}

.form-band::after,
.reasons::after,
.majors::after,
.admission::after,
.detail-form-section::after,
.faq::after,
.final-cta::after {
  content: "";
  position: absolute;
  right: max(20px, calc(50% - 606px));
  top: 58px;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(90, 123, 240, 0.12), rgba(237, 28, 36, 0.08));
  transform: rotate(16deg);
  z-index: 0;
}

.form-band::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 238, 0.6));
}

.reasons::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(249, 243, 231, 0.58));
}

.majors::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 244, 255, 0.5));
}

.admission::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 232, 0.58));
}

.detail-form-section::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(248, 242, 233, 0.6));
}

.faq::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 246, 255, 0.48));
}

.final-cta::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 238, 228, 0.58));
}

.form-band .container,
.reasons .container,
.majors .container,
.admission .container,
.detail-form-section .container,
.faq .container,
.final-cta .container {
  position: relative;
  z-index: 1;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: start;
}

.section-heading p,
.copy-block p,
.sticky-intro p,
.overview-card p,
.pathway-copy p:not(.eyebrow),
.admission .section-heading p,
.admission-card p,
.study-lane p:not(.lane-tag),
.reason-card p,
.faq-list p,
.final-card p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 19px;
  line-height: 1.6;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

.lead-form,
.detail-form {
  padding: 30px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--brand-blue-deep);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(46, 48, 146, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(46, 48, 146, 0.03);
}

textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(46, 48, 146, 0.5);
  box-shadow: 0 0 0 4px rgba(46, 48, 146, 0.08);
}

.lead-form .full,
.lead-form .form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 46px;
  align-items: start;
}

.copy-block p {
  margin: 0 0 18px;
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.timeline div {
  position: relative;
  padding: 24px 20px;
  border-radius: 22px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.timeline div::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-red);
  opacity: 0.12;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Lora", serif;
  font-size: 38px;
  color: var(--brand-blue);
}

.timeline span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.reasons {
  background:
    linear-gradient(180deg, rgba(46, 48, 146, 0.03), transparent),
    linear-gradient(180deg, #faf6ee 0%, #f5ecdd 100%);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
  align-items: stretch;
}

.reason-card {
  position: relative;
  grid-column: span 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 239, 0.94));
  border: 1px solid rgba(46, 48, 146, 0.1);
  box-shadow: var(--shadow-soft);
}

.reason-card:nth-child(5) {
  grid-column: span 4;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  border-color: transparent;
}

.reason-card::before,
.admission-card::before,
.overview-card::before,
.pathway-card::before,
.study-lane::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -10px;
  width: 68px;
  height: 18px;
  border-radius: 999px;
  background: rgba(46, 48, 146, 0.11);
  border: 1px solid rgba(46, 48, 146, 0.08);
}

.reason-card:nth-child(even)::before,
.overview-card:nth-child(even)::before,
.pathway-card:nth-child(even)::before {
  background: rgba(237, 28, 36, 0.12);
  border-color: rgba(237, 28, 36, 0.1);
}

.reason-card.with-image {
  padding: 0 0 24px;
  overflow: hidden;
}

.reason-card.with-image img {
  height: 248px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.reason-card.with-image span,
.reason-card.with-image h3,
.reason-card.with-image p {
  margin-left: 24px;
  margin-right: 24px;
}

.reason-card.with-image span {
  display: block;
  margin-top: 22px;
}

.reason-card span,
.admission-card span {
  color: var(--brand-red);
  font-family: "Lora", serif;
  font-size: 50px;
  font-weight: 700;
}

.reason-card h3,
.admission-card h3 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.reason-card p,
.admission-card p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.58;
}

.reason-card:nth-child(5)::before {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
}

.reason-card:nth-child(5) span {
  color: #ffd8db;
}

.reason-card:nth-child(5) h3,
.reason-card:nth-child(5) p {
  color: #fff;
}

.reason-card:nth-child(5) p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.84);
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.study-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.study-lane {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(46, 48, 146, 0.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.study-lane::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  background: rgba(46, 48, 146, 0.05);
  transform: rotate(18deg);
}

.lane-business {
  background: linear-gradient(135deg, rgba(46, 48, 146, 0.06), rgba(255, 255, 255, 0.96));
}

.lane-technology {
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.05), rgba(255, 255, 255, 0.96));
}

.lane-health {
  background: linear-gradient(135deg, rgba(46, 48, 146, 0.04), rgba(255, 251, 248, 0.96));
}

.lane-languages {
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.04), rgba(255, 255, 255, 0.96));
}

.lane-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(46, 48, 146, 0.2);
}

.lane-tag {
  margin: 18px 0 10px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.study-lane h3 {
  position: relative;
  z-index: 1;
  max-width: 90%;
}

.study-lane p:not(.lane-tag) {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 15px;
}

.lane-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.lane-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(46, 48, 146, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.study-lane a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
}

.major-overview {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.overview-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 239, 0.94));
  border: 1px solid rgba(46, 48, 146, 0.1);
  box-shadow: var(--shadow-soft);
}

.featured-overview {
  grid-row: span 2;
}

.major-overview .overview-card:last-child {
  grid-column: 2 / 4;
}

.overview-card h3 {
  margin-top: 12px;
  font-size: 30px;
}

.overview-card p {
  margin: 14px 0 0;
  font-size: 15px;
}

.overview-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
}

.overview-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(46, 48, 146, 0.08);
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-overview {
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  border-color: transparent;
  color: #fff;
}

.featured-overview::before {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}

.featured-overview .overview-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.featured-overview h3,
.featured-overview p,
.featured-overview a {
  color: #fff;
}

.featured-overview p {
  opacity: 0.84;
}

.featured-overview a {
  color: #ffd5d6;
}

.pathway-board {
  margin-top: 26px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(46, 48, 146, 0.06), rgba(237, 28, 36, 0.04)),
    rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(46, 48, 146, 0.1);
  box-shadow: var(--shadow-soft);
}

.pathway-copy {
  display: grid;
  gap: 8px;
}

.pathway-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 740px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pathway-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(46, 48, 146, 0.1);
}

.pathway-card strong {
  font-size: 18px;
}

.pathway-card span {
  color: var(--muted);
  font-size: 14px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 8px 0;
}

.catalog {
  background: linear-gradient(180deg, #f9f5ee 0%, #f3ebde 100%);
}

.catalog-meta {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  text-align: center;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.catalog-card,
.catalog-combos {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
}

.catalog-card h3,
.catalog-combos h3 {
  font-size: 24px;
}

.catalog-card ul,
.catalog-combos p {
  margin-top: 12px;
}

.catalog-card li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.45;
}

.catalog-card li strong {
  color: var(--ink);
  margin-right: 6px;
}

.catalog-card li em {
  display: block;
  margin-top: 2px;
  color: var(--brand-blue);
  font-style: normal;
  font-weight: 700;
}

.admission {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2ebde 100%);
}

.admission-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.admission-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 239, 0.94));
  border: 1px solid rgba(46, 48, 146, 0.1);
  box-shadow: var(--shadow-soft);
}

.admission-card strong {
  display: block;
  margin-top: 16px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-form-section {
  background: linear-gradient(180deg, #f7f2ea 0%, #fdfaf5 100%);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 34px;
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 10px;
}

.sticky-intro p {
  margin: 0;
}

.detail-form {
  padding: 36px;
}

fieldset {
  margin: 0 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

legend {
  padding: 0 10px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wide {
  grid-column: 1 / -1;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

details {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(46, 48, 146, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 239, 0.94));
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-red));
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 15px;
}

.final-cta {
  padding-top: 52px;
}

.final-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(46, 48, 146, 0.06), rgba(237, 28, 36, 0.04)),
    rgba(255, 253, 249, 0.96);
}

.final-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.final-card h2,
.final-card p,
.final-card .hero-actions,
.final-card .eyebrow {
  text-align: left;
}

.final-card p:not(.eyebrow) {
  margin: 18px 0 0;
  font-size: 17px;
}

.final-photo {
  min-height: 380px;
  height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.centered-actions {
  justify-content: flex-start;
}

.site-footer {
  padding: 62px 0 86px;
  background:
    radial-gradient(circle at top right, rgba(90, 123, 240, 0.18), transparent 18rem),
    linear-gradient(180deg, #20245e 0%, #171b47 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.84fr;
  gap: 32px;
  align-items: start;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 32px;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.site-footer address strong {
  color: #fff;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-hotlines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 4px;
}

.footer-hotlines a {
  flex: 0 0 calc(50% - 12px);
  white-space: nowrap;
}

.footer-contact strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a,
.site-footer address a {
  color: #fff;
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-soft));
  box-shadow: 0 14px 26px rgba(46, 48, 146, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.floating-cta a:first-child {
  background: linear-gradient(135deg, var(--brand-red-deep), var(--brand-red));
  box-shadow: 0 14px 26px rgba(237, 28, 36, 0.18);
}

.remote-cta-link {
  color: #fff !important;
}

.mobile-sticky {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  z-index: 80;
  width: min(520px, calc(100% - 32px));
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  box-shadow: var(--shadow-card);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1,
.delay-2,
.delay-3 {
  transition-delay: 0s;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(18, 22, 66, 0.48);
  backdrop-filter: blur(10px);
}

.popup-overlay.open {
  display: flex;
}

.popup-card {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(90, 123, 240, 0.1), rgba(255, 255, 255, 0)),
    var(--brand-blue-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  color: #fff;
}

.popup-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
}

.popup-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.popup-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-blue-deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.popup-form {
  margin-top: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popup-form::before {
  display: none;
}

.popup-form .field label {
  color: #fff;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
  background: #fff;
}

.success-card {
  width: min(560px, 100%);
}

.success-card .success-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

@media (max-width: 1080px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-card,
  .reason-card:nth-child(1),
  .reason-card:nth-child(2),
  .reason-card:nth-child(3),
  .reason-card:nth-child(4),
  .reason-card:nth-child(5) {
    grid-column: auto;
  }

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

  .featured-overview,
  .major-overview .overview-card:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .admission-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .admission-card {
    grid-column: span 3;
  }

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

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .two-col,
  .form-layout,
  .footer-grid,
  .final-card {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 58px;
  }

  .hero-card,
  .final-card {
    margin-top: 10px;
  }

  .sticky-intro {
    position: static;
  }

  .centered-actions {
    justify-content: flex-start;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 760px) {
  .quick-facts,
  .timeline,
  .lead-form,
  .form-grid,
  .catalog-grid,
  .major-overview,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .admission-grid {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .reason-card:nth-child(1),
  .reason-card:nth-child(2),
  .reason-card:nth-child(3),
  .reason-card:nth-child(4),
  .reason-card:nth-child(5),
  .admission-card {
    grid-column: auto;
  }

  .section-pad {
    padding: 78px 0;
  }

  .hero-photo,
  .final-photo {
    min-height: 300px;
  }

  .lead-form,
  .detail-form,
  .pathway-board {
    padding: 22px;
  }

  .wide {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-card,
  .lead-form,
  .detail-form,
  .study-lane,
  .pathway-board,
  .final-card {
    border-radius: 26px;
  }

  .hero-card,
  .lead-form,
  .detail-form,
  .final-card {
    padding: 20px;
  }

  .quick-facts div {
    transform: none !important;
  }

  .hero-photo {
    min-height: 280px;
    padding: 16px 12px 0;
  }

  .hero-photo::after {
    right: 14px;
    top: 14px;
    font-size: 10px;
  }

  .mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(28, 33, 84, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(12, 16, 44, 0.24);
  }

  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 10px;
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .mobile-sticky a:first-child {
    background: linear-gradient(135deg, var(--brand-red-deep), var(--brand-red));
  }

  .mobile-sticky .wide-link {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}
