@font-face {
  font-family: JostLocal;
  src: url("fonts/main-font/Jost,Oleo_Script,Tajawal/Jost/Jost-VariableFont_wght.ttf");
}

@font-face {
  font-family: TajawalLocal;
  src: url("fonts/main-font/Jost,Oleo_Script,Tajawal/Tajawal/Tajawal-Bold.ttf");
  font-weight: 700;
}

:root {
  --navy: #102e68;
  --navy-deep: #06152f;
  --red: #ff3b3f;
  --ink: #151821;
  --muted: #5d6270;
  --paper: #f5f7fb;
  --mist: #eaf0f8;
  --blue-mist: #dce8fb;
  --white: #ffffff;
  --line: rgba(18, 34, 66, 0.12);
  --shadow: 0 20px 60px rgba(6, 21, 47, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: JostLocal, TajawalLocal, system-ui, sans-serif;
  overflow-x: hidden;
}

body.menu-open,
body.search-open,
body.fees-list-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 30px;
  left: 50%;
  z-index: 50;
  width: min(1240px, calc(100% - 56px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: top 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, opacity 0.32s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.scrolled {
  top: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

body.chrome-hidden .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -145%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 650;
}

.icon-btn,
.round-action,
.close-btn {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
}

.icon-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
}

.icon-btn span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px 0;
  background: currentColor;
}

.round-action {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
}

.site-header.scrolled .round-action {
  background: rgba(16, 46, 104, 0.08);
}

.pill-action {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 800;
}

.site-header.scrolled .pill-action {
  color: #fff;
  background: var(--navy);
}

.tour-action {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 11px 15px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.site-header.scrolled .tour-action {
  border-color: rgba(16, 46, 104, 0.12);
  background: rgba(16, 46, 104, 0.08);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.26);
}

.whatsapp-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.whatsapp-icon::after {
  content: "";
  width: 10px;
  height: 16px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 0 9px;
  transform: rotate(-42deg) translate(1px, -1px);
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  width: min(390px, 100%);
  padding: 72px 32px 28px;
  background: #fff;
  box-shadow: 16px 0 80px rgba(0, 0, 0, 0.22);
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: auto;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu h2 {
  margin: 14px 0 14px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.side-menu a {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.side-menu a:nth-of-type(2)::after,
.side-menu a:nth-of-type(3)::after,
.side-menu a:nth-of-type(5)::after,
.side-menu a:nth-of-type(6)::after {
  content: "›";
  font-size: 24px;
  line-height: 0.8;
}

.close-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 28px;
  color: #6a6f7b;
}

.menu-mini {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.menu-mini img {
  height: 64px;
  object-fit: contain;
}

.menu-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.search-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 11, 22, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-layer.open {
  opacity: 1;
  pointer-events: auto;
}

.search-card {
  width: min(760px, 100%);
  min-height: 360px;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.search-card label {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
}

.search-card input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
}

.search-tabs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.search-tabs button {
  border: 0;
  border-radius: 12px;
  padding: 11px 16px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 700;
}

.search-card p {
  margin: 60px 0 0;
  text-align: center;
  color: var(--muted);
}

.scene-section {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

.hero {
  min-height: max(860px, 100svh);
  margin-bottom: 0;
  color: #fff;
  overflow: visible;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform-origin: 55% 42%;
  will-change: transform;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(-0.8%, -0.8%, 0);
  }

  to {
    transform: scale(1.12) translate3d(1.2%, 1%, 0);
  }
}

.hero-shade {
  background:
    radial-gradient(circle at 52% 56%, rgba(16, 46, 104, 0.12), rgba(3, 8, 18, 0.7) 55%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) 45%, #050914);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(185px, 28svh, 300px);
  text-align: center;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  margin: 16px auto 22px;
  font-size: clamp(18px, 1.8vw, 26px);
}

.hero-search {
  width: min(650px, 100%);
  height: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 0 auto;
  padding: 7px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.hero-search input {
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.hero-search button,
.apply-form button,
.admin-toolbar button {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  background: var(--navy);
  font-weight: 850;
}

.hero-search button {
  padding: 0 22px;
}

.hero-whatsapp {
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #fff;
  background: rgba(5, 9, 20, 0.36);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-whatsapp div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-whatsapp strong {
  font-size: 14px;
  font-weight: 900;
}

.hero-whatsapp a {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

.slider-dots {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.slider-dots .active {
  width: 32px;
  border-radius: 999px;
  background: #fff;
}

.service-strip {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 4vh, 46px);
  z-index: 3;
  width: min(980px, calc(100% - 88px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transform: translateX(-50%);
}

.service-card {
  min-width: 0;
  min-height: 148px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(6, 21, 47, 0.18);
}

.service-icon {
  color: #8d94a4;
  font-size: 34px;
  line-height: 1;
}

.service-card strong {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.service-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manifest {
  position: relative;
  min-height: calc(100svh * 9.2);
  margin-top: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 88% 8%, rgba(220, 232, 251, 0.74), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(255, 59, 63, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.9) 68%, rgba(229, 238, 252, 0.82)),
    #fff;
}

.manifest-pin {
  position: relative;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 110px);
  align-items: center;
  min-height: 100svh;
  padding: 150px 8vw 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(220, 232, 251, 0.74), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(255, 59, 63, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.9) 68%, rgba(229, 238, 252, 0.82)),
    #fff;
}

.manifest.is-active .manifest-pin {
  position: fixed;
  inset: 0;
  z-index: 2;
}

.manifest.is-after .manifest-pin {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
}

.manifest-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vh, 42px);
  z-index: 6;
  width: clamp(82px, 8vw, 128px);
  height: clamp(118px, 15vh, 188px);
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.manifest-scroll-cue span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(16, 46, 104, 0.18));
  animation: cueDrop 1.55s ease-in-out infinite;
}

.manifest-scroll-cue span::before,
.manifest-scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
}

.manifest-scroll-cue span::before {
  top: 4px;
  width: clamp(5px, 0.54vw, 8px);
  height: calc(100% - 42px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(16, 46, 104, 0.08), var(--navy) 28%, var(--red) 100%);
  transform: translateX(-50%);
}

.manifest-scroll-cue span::after {
  bottom: 6px;
  width: clamp(42px, 4.8vw, 74px);
  height: clamp(42px, 4.8vw, 74px);
  border-right: clamp(6px, 0.66vw, 10px) solid var(--red);
  border-bottom: clamp(6px, 0.66vw, 10px) solid var(--red);
  border-radius: 0 0 8px 0;
  transform: translateX(-50%) rotate(45deg);
}

@keyframes cueDrop {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(-10px);
  }

  50% {
    opacity: 1;
    transform: translateY(12px);
  }
}

.manifest-stage-cue {
  position: absolute;
  right: max(8vw, 24px);
  bottom: clamp(36px, 6vh, 72px);
  z-index: 6;
  display: grid;
  grid-template-columns: auto auto 18px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(16, 46, 104, 0.12);
  border-radius: 999px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(16, 46, 104, 0.1);
  backdrop-filter: blur(12px);
  opacity: 0.82;
  pointer-events: none;
}

.manifest-stage-cue small {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.manifest-stage-cue strong {
  max-width: 280px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 900;
}

.manifest-stage-cue i {
  width: 16px;
  height: 34px;
  position: relative;
  display: block;
}

.manifest-stage-cue i::before,
.manifest-stage-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.manifest-stage-cue i::before {
  top: 0;
  width: 2px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(16, 46, 104, 0.15), var(--navy));
  animation: cueLine 1.5s ease-in-out infinite;
}

.manifest-stage-cue i::after {
  bottom: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes cueLine {
  0%,
  100% {
    opacity: 0.34;
    clip-path: inset(0 0 70% 0);
  }

  50% {
    opacity: 1;
    clip-path: inset(0);
  }
}

.manifest-copy h2 {
  display: grid;
  margin: 0;
  color: var(--navy);
  font-size: clamp(56px, 8vw, 126px);
  line-height: 0.9;
  letter-spacing: 0;
}

.manifest-copy h2 span:nth-child(2) {
  color: #526b9f;
}

.manifest-copy p:last-child {
  max-width: 590px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.orbit-graphic {
  position: relative;
  min-height: min(720px, 80vw);
  display: grid;
  place-items: center;
}

.stipple-stage {
  position: relative;
  width: min(720px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  --marker-radius: min(312px, 35.5vw);
  --ring-size: clamp(30px, 3vw, 44px);
  --lens-scale: 1;
  --lens-fit: contain;
  --lens-x: 50%;
  --lens-y: 50%;
  --stipple-mask: radial-gradient(ellipse 45% 44% at 54% 56%, #000 0 72%, rgba(0, 0, 0, 0.9) 80%, rgba(0, 0, 0, 0.34) 90%, transparent 98%);
  --edge-feather: radial-gradient(ellipse 46% 45% at 54% 56%, transparent 0 66%, rgba(0, 0, 0, 0.38) 76%, #000 86%, transparent 98%);
  --image-bottom-mask: linear-gradient(180deg, #000 0 54%, rgba(0, 0, 0, 0.92) 61%, rgba(0, 0, 0, 0.36) 72%, transparent 86%);
  --bottom-feather: linear-gradient(180deg, transparent 0 48%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.82) 78%, #000 100%);
}

.stipple-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(255, 255, 255, 0.72), transparent 48%),
    radial-gradient(ellipse at 74% 18%, rgba(229, 238, 252, 0.52), transparent 46%),
    radial-gradient(ellipse at 74% 92%, rgba(229, 238, 252, 0.66), transparent 50%);
  mask-image: var(--edge-feather);
  -webkit-mask-image: var(--edge-feather);
}

.stipple-stage canvas,
.stipple-lens {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  mask-image: var(--stipple-mask);
  -webkit-mask-image: var(--stipple-mask);
  z-index: 1;
  overflow: hidden;
}

.stipple-lens::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 48% 100%, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.92) 34%, rgba(229, 238, 252, 0.34) 60%, transparent 80%),
    linear-gradient(180deg, transparent 48%, rgba(246, 249, 255, 0.34) 62%, rgba(229, 238, 252, 0.98) 100%);
  mask-image: var(--bottom-feather);
  -webkit-mask-image: var(--bottom-feather);
}

.stipple-lens::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 66%, rgba(246, 249, 255, 0.1) 78%, rgba(229, 238, 252, 0.58) 100%),
    radial-gradient(ellipse at 14% 100%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.22) 34%, transparent 62%),
    radial-gradient(ellipse at 100% 100%, rgba(229, 238, 252, 0.62), rgba(229, 238, 252, 0.2) 38%, transparent 68%);
  mask-image: var(--edge-feather);
  -webkit-mask-image: var(--edge-feather);
}

.stipple-fallback {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: var(--lens-fit);
  object-position: var(--lens-x) var(--lens-y);
  transform: scale(var(--lens-scale));
  transform-origin: center;
  mask-image: var(--stipple-mask), var(--image-bottom-mask);
  mask-composite: intersect;
  -webkit-mask-image: var(--stipple-mask), var(--image-bottom-mask);
  -webkit-mask-composite: source-in;
  filter: none;
  mix-blend-mode: multiply;
  opacity: 1;
  transition: transform 0.62s ease, object-position 0.62s ease;
}

.stipple-stage canvas {
  display: none;
}

.loading-ring {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: transform 0.18s linear;
  overflow: visible;
}

.loading-ring circle {
  fill: none;
  stroke: rgba(16, 46, 104, 0.72);
  stroke-width: 6.4;
  stroke-linecap: round;
  stroke-dasharray: 26 74;
  transform: rotate(96deg);
  transform-origin: 50% 50%;
}

.loading-ring-soft {
  display: none;
}

.orbit-markers {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  transition: transform 0.18s linear;
}

.orbit-markers span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ring-size);
  height: var(--ring-size);
  border-radius: 50%;
  background: rgba(16, 46, 104, 0.92);
  transform:
    translate(-50%, -50%)
    rotate(var(--a))
    translateY(calc(var(--marker-radius) * -1));
}

.orbit-markers span:nth-child(n + 9):nth-child(-n + 14) {
  border-radius: 7px;
}

.orbit-markers span:nth-child(1) { --a: 300deg; opacity: 0.14; }
.orbit-markers span:nth-child(2) { --a: 318deg; opacity: 0.24; }
.orbit-markers span:nth-child(3) { --a: 336deg; opacity: 0.36; }
.orbit-markers span:nth-child(4) { --a: 354deg; opacity: 0.5; }
.orbit-markers span:nth-child(5) { --a: 12deg; opacity: 0.64; }
.orbit-markers span:nth-child(6) { --a: 30deg; opacity: 0.78; }
.orbit-markers span:nth-child(7) { --a: 48deg; opacity: 0.9; }
.orbit-markers span:nth-child(8) { --a: 66deg; opacity: 0.98; }
.orbit-markers span:nth-child(9) { --a: 84deg; opacity: 0.9; }
.orbit-markers span:nth-child(10) { --a: 102deg; opacity: 0.8; }
.orbit-markers span:nth-child(11) { --a: 120deg; opacity: 0.68; }
.orbit-markers span:nth-child(12) { --a: 138deg; opacity: 0.56; }
.orbit-markers span:nth-child(13) { --a: 156deg; opacity: 0.44; }
.orbit-markers span:nth-child(14) { --a: 174deg; opacity: 0.3; }
.orbit-markers span:nth-child(n + 15) { display: none; }

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

.section-pad {
  position: relative;
  z-index: 1;
  padding: 110px max(8vw, 24px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.96;
}

.section-head p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.programs {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: var(--paper);
}

.programs .section-head {
  grid-column: 1 / -1;
}

.program-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  box-shadow: var(--shadow);
}

.program-card.large {
  grid-row: span 2;
}

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

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 13, 30, 0.82));
}

.program-card div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
}

.program-card span,
.promise-pills span,
.fee-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.program-card h3 {
  margin: 18px 0 8px;
  font-size: 34px;
}

.program-card p {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.immersive {
  position: relative;
  min-height: calc(100svh * 7.8);
  overflow: visible;
  color: #fff;
  background: #020711;
}

.immersive-pin {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #020711;
}

.immersive.is-active .immersive-pin {
  position: fixed;
  inset: 0;
  z-index: 2;
}

.immersive.is-after .immersive-pin {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
}

.immersive-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.92), rgba(2, 7, 17, 0.25), rgba(2, 7, 17, 0.8)),
    url("images/library.jpg") center / cover;
  filter: saturate(0.82) contrast(1.08);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.32s ease, transform 0.72s ease;
  will-change: opacity, transform;
}

.immersive-bg-next {
  z-index: 0;
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
}

.immersive-bg-next.visible {
  opacity: 1;
  transform: scale(1);
}

.immersive-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 59, 63, 0.34), transparent 22%),
    radial-gradient(circle at 58% 72%, rgba(44, 111, 212, 0.32), transparent 34%);
}

.vertical-tabs {
  position: absolute;
  left: 3vw;
  top: 48%;
  z-index: 2;
  display: grid;
  gap: 16px;
  transform: translateY(-50%);
}

.vertical-tabs button {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  font-size: 22px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.vertical-tabs .active {
  color: var(--red);
}

.immersive-copy {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 48px));
  margin-left: auto;
  padding: 34vh 8vw 0 0;
}

.immersive-copy h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.96;
}

.immersive-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.5;
}

.promise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.fees,
.admissions {
  background: #fff;
}

.virtual-tour {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 211, 102, 0.12), transparent 26%),
    radial-gradient(circle at 90% 78%, rgba(255, 59, 63, 0.1), transparent 28%),
    #fff;
}

.virtual-tour-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.virtual-tour-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.94;
}

.virtual-tour-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.48;
}

.tour-note {
  max-width: 600px;
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid rgba(16, 46, 104, 0.12);
  border-radius: 18px;
  background: rgba(245, 247, 251, 0.82);
}

.tour-note strong {
  color: var(--navy-deep);
  font-size: 15px;
}

.tour-note span {
  color: var(--muted);
  line-height: 1.45;
}

.virtual-tour-action {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 42px rgba(255, 59, 63, 0.24);
  font-weight: 900;
}

.virtual-tour-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.virtual-tour-media::after {
  content: "360";
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 46, 104, 0.82);
  backdrop-filter: blur(10px);
  font-size: 22px;
  font-weight: 950;
}

.virtual-tour-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.48s ease;
}

.virtual-tour-media:hover img {
  transform: scale(1.035);
}

.fees.section-pad {
  min-height: calc(100svh + var(--fees-scroll-distance, 0px));
  padding: 0 0 18px;
}

.fees-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px max(8vw, 24px) 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(220, 232, 251, 0.84), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.fees .section-head {
  max-width: 980px;
  margin-bottom: 20px;
}

.fees .section-head h2 {
  font-size: clamp(40px, 5vw, 76px);
}

.fees-tools {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.fees-scroll-note {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(16, 46, 104, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(16, 46, 104, 0.07);
  font-size: 13px;
}

.fees-scroll-note span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.fees-scroll-note strong {
  color: var(--navy-deep);
}

.fees-list-trigger {
  min-height: 48px;
  display: inline-grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 32px rgba(255, 59, 63, 0.24);
  cursor: pointer;
  text-align: left;
}

.fees-list-trigger span {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.fees-list-trigger span::before,
.fees-list-trigger span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 0 #fff, 0 12px 0 #fff;
}

.fees-list-trigger span::before {
  top: 8px;
}

.fees-list-trigger span::after {
  display: none;
}

.fees-list-trigger strong,
.fees-list-trigger small {
  line-height: 1.05;
}

.fees-list-trigger strong {
  font-size: 13px;
  font-weight: 950;
}

.fees-list-trigger small {
  opacity: 0.82;
  font-size: 11px;
  font-weight: 850;
}

.fees-list-modal {
  width: min(960px, calc(100vw - 34px));
  max-height: min(820px, calc(100svh - 34px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 90px rgba(6, 21, 47, 0.28);
}

.fees-list-modal::backdrop {
  background: rgba(6, 21, 47, 0.58);
  backdrop-filter: blur(6px);
}

.fees-list-shell {
  max-height: min(820px, calc(100svh - 34px));
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  overflow: auto;
}

.fees-list-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
}

.fees-list-head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}

.fees-list-head p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 16px;
}

.fees-list-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--navy-deep);
  background: rgba(16, 46, 104, 0.08);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.fees-list-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.fees-list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.fees-list-row:nth-child(even):not(.fees-list-header) {
  background: #f8fbff;
}

.fees-list-row:last-child {
  border-bottom: 0;
}

.fees-list-header {
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.fees-list-row strong {
  color: var(--navy-deep);
  font-size: 18px;
}

.fees-list-header strong {
  color: #fff;
}

.fees-extra-list {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 59, 63, 0.07);
}

.fees-extra-list h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 22px;
}

.fees-extra-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fees-extra-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
}

.fees-extra-list strong {
  color: var(--red);
  white-space: nowrap;
}

.fees-grid {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  margin: 0 max(-8vw, -96px);
  padding: 28px max(8vw, 24px) 42px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(8vw, 24px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fees-grid::-webkit-scrollbar {
  display: none;
}

.fee-card {
  position: relative;
  z-index: 1;
  flex: 0 0 clamp(270px, 24vw, 360px);
  min-height: 306px;
  padding: clamp(26px, 2.6vw, 38px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 14px 35px rgba(16, 46, 104, 0.08);
  transform: scale(0.92);
  transform-origin: center;
  transition: transform 0.32s ease, color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.fee-card.active {
  z-index: 3;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 59, 63, 0.48), transparent 34%),
    linear-gradient(140deg, #173a7d 0%, #102e68 42%, #07152d 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(6, 21, 47, 0.24);
  transform: scale(1.05);
}

.fee-card span {
  color: var(--navy);
  background: rgba(16, 46, 104, 0.08);
}

.fee-card.active span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.fee-card h3 {
  margin: 24px 0 8px;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 0.98;
}

.fee-card.extra-fees h3 {
  font-size: clamp(31px, 2.7vw, 42px);
}

.fee-card p,
.fee-card li {
  color: inherit;
  opacity: 0.72;
}

.fee-card.active p,
.fee-card.active li {
  opacity: 0.86;
}

.fee-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.fees-scroll-track {
  height: 5px;
  margin: 0 max(0px, 6vw);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(16, 46, 104, 0.1);
}

.fees-scroll-track span {
  display: block;
  width: var(--fees-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transition: width 0.12s linear;
}

.campus {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 59, 63, 0.12), transparent 28%),
    var(--mist);
}

.campus-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
}

.campus-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.campus-grid figure:first-child {
  grid-row: span 2;
}

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

.campus-grid figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 21, 47, 0.72);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.admissions-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(16, 46, 104, 0.95), rgba(6, 21, 47, 0.94)),
    url("images/11.jpg") center / cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.apply-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
}

.apply-copy p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

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

.apply-form input,
.apply-form select,
.apply-form textarea,
.admin-toolbar input,
.admin-toolbar select {
  width: 100%;
  border: 1px solid rgba(16, 46, 104, 0.12);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.apply-form input,
.apply-form select {
  height: 54px;
  padding: 0 16px;
}

.apply-form textarea {
  padding: 16px;
  resize: vertical;
}

.apply-form button {
  grid-column: 1 / -1;
  height: 58px;
  background: var(--red);
}

.admissions-whatsapp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
}

.admissions-whatsapp a {
  min-height: 156px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.admissions-whatsapp strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.admissions-whatsapp small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.admin {
  background: var(--paper);
}

.admin-shell {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px 150px;
  gap: 12px;
}

.admin-toolbar input,
.admin-toolbar select {
  height: 52px;
  padding: 0 14px;
}

.request-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.request-card {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.request-card strong {
  display: block;
  font-size: 18px;
}

.request-card small {
  color: var(--muted);
}

.status-select {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 10px;
}

.delete-request {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 8vw 112px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer > div:first-child,
.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 50px;
  height: 60px;
  object-fit: contain;
}

.site-footer p {
  color: var(--muted);
}

.footer-whatsapp {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(37, 211, 102, 0.11);
  font-weight: 900;
}

.footer-whatsapp .whatsapp-icon,
.bottom-dock .whatsapp-icon {
  width: 26px;
  height: 26px;
  box-shadow: none;
}

.footer-whatsapp .whatsapp-icon::before,
.bottom-dock .whatsapp-icon::before {
  inset: 5px;
  border-width: 1.5px;
}

.footer-whatsapp .whatsapp-icon::after,
.bottom-dock .whatsapp-icon::after {
  width: 8px;
  height: 12px;
  border-left-width: 2px;
  border-bottom-width: 2px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 70;
  display: grid;
  gap: 8px;
}

.whatsapp-float a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 10px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 999px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(6, 21, 47, 0.18);
  backdrop-filter: blur(14px);
  font-size: 14px;
}

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  width: min(720px, calc(100% - 48px));
  height: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(16, 46, 104, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%);
  transition: opacity 0.28s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.dock-visible .bottom-dock {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

body.chrome-hidden .bottom-dock {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%);
}

.bottom-dock a {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.bottom-dock a:first-child {
  color: var(--navy);
}

.bottom-dock a:last-child {
  color: #128c4a;
}

.bottom-dock a:last-child {
  border-right: 0;
}

.cis-tour-popover {
  max-width: min(380px, calc(100vw - 36px));
  border-radius: 18px;
  color: var(--ink);
  font-family: JostLocal, TajawalLocal, system-ui, sans-serif;
}

.cis-tour-popover .driver-popover-title {
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.16;
}

.cis-tour-popover .driver-popover-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.tour-deadline-note {
  display: block;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 191, 0, 0.46);
  border-radius: 12px;
  color: #8a4b00;
  background: rgba(255, 191, 0, 0.18);
  font-weight: 950;
}

.cis-tour-popover .driver-popover-next-btn,
.cis-tour-popover .driver-popover-prev-btn,
.cis-tour-popover .driver-popover-done-btn {
  border-radius: 999px;
  text-shadow: none;
  font-weight: 850;
}

.uk-study-page {
  min-height: 100vh;
  color: var(--navy-deep);
  background: #eef3f8;
}

.uk-study-page [hidden] {
  display: none !important;
}

.uk-study-page [data-lang="en"],
.uk-study-page[data-language="en"] [data-lang="ar"] {
  display: none;
}

.uk-study-page[data-language="en"] [data-lang="en"] {
  display: revert;
}

.uk-study-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(5vw, 18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.uk-study-brand {
  color: var(--navy-deep);
}

.uk-study-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.uk-study-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(16, 46, 104, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.uk-study-hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(460px, 1.16fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  padding: 44px max(6vw, 22px) 54px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 59, 63, 0.08), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(16, 46, 104, 0.12), transparent 32%),
    #fff;
}

.uk-study-copy {
  max-width: 720px;
}

.uk-deadline-sticker {
  width: fit-content;
  display: grid;
  gap: 2px;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 59, 63, 0.26);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #ff3b3f, #102e68);
  box-shadow: 0 16px 34px rgba(255, 59, 63, 0.22);
  transform: rotate(-1.2deg);
}

.uk-deadline-sticker span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  opacity: 0.9;
}

.uk-deadline-sticker strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1;
}

.language-switch {
  width: fit-content;
  display: inline-flex;
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.language-switch .active {
  color: #fff;
  background: var(--navy);
}

.uk-study-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.08;
}

.uk-study-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.uk-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.uk-study-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 950;
}

.uk-study-actions a:last-child {
  color: var(--navy);
  background: rgba(37, 211, 102, 0.14);
}

.uk-study-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 46, 104, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  box-shadow: 0 22px 56px rgba(16, 46, 104, 0.14);
}

.uk-study-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.uk-study-section {
  padding: 76px max(6vw, 22px);
}

.uk-study-section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.uk-study-section-head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
}

.uk-study-section-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.uk-feature-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.uk-feature-grid article,
.package-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 46, 104, 0.07);
}

.uk-feature-grid strong {
  font-size: 30px;
}

.uk-feature-grid h3 {
  margin: 14px 0 8px;
  color: var(--navy-deep);
  font-size: 22px;
}

.uk-feature-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.package-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
}

.package-grid span {
  color: var(--muted);
  font-weight: 900;
}

.package-grid strong {
  color: var(--red);
  font-size: 34px;
}

.uk-registration {
  background: linear-gradient(180deg, #fff, #eaf1fb);
}

.uk-registration-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 46, 104, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(16, 46, 104, 0.1);
}

.uk-registration-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-weight: 900;
}

.uk-registration-form input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  outline: 0;
  background: #fff;
}

.uk-registration-form input[type="radio"] {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  border: 0;
  accent-color: var(--red);
}

.uk-registration-form input:focus {
  border-color: rgba(16, 46, 104, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 46, 104, 0.08);
}

.uk-registration-form fieldset {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f9fc;
}

.uk-registration-form legend {
  padding: 0 8px;
  color: var(--red);
  font-weight: 950;
}

.uk-registration-form fieldset label {
  min-height: 84px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 46, 104, 0.07);
  border-radius: 12px;
  background: #fff;
}

.uk-registration-form fieldset label span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.28;
}

.uk-registration-form button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-weight: 950;
}

.uk-registration-form.is-submitting {
  opacity: 0.72;
  pointer-events: none;
}

.uk-registration-form button:disabled {
  cursor: progress;
}

.form-alert {
  max-width: 1040px;
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 900;
}

.form-alert.success {
  color: #0e5a2d;
  background: rgba(37, 211, 102, 0.14);
}

.form-alert.error {
  color: #8b1014;
  background: rgba(255, 59, 63, 0.12);
}

.registration-success-dialog {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  padding: 34px;
  border: 0;
  border-radius: 26px;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 211, 102, 0.16), transparent 34%),
    radial-gradient(circle at 86% 6%, rgba(255, 59, 63, 0.1), transparent 30%),
    #fff;
  box-shadow: 0 28px 80px rgba(9, 24, 56, 0.28);
  text-align: center;
}

.registration-success-dialog[open] {
  animation: success-dialog-in 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.registration-success-dialog::backdrop {
  background: rgba(7, 18, 42, 0.58);
  backdrop-filter: blur(8px);
}

.success-dialog-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(16, 46, 104, 0.08);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.success-animation {
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.success-animation svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.success-orbit {
  fill: none;
  stroke: rgba(37, 211, 102, 0.34);
  stroke-width: 3;
  stroke-dasharray: 18 12;
  transform-origin: center;
  animation: success-spin 8s linear infinite;
}

.success-orbit.secondary {
  stroke: rgba(16, 46, 104, 0.18);
  stroke-dasharray: 8 14;
  animation-duration: 11s;
  animation-direction: reverse;
}

.success-disc {
  fill: #25d366;
  filter: drop-shadow(0 16px 26px rgba(37, 211, 102, 0.35));
  transform-origin: center;
  animation: success-pop 0.55s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.success-check {
  fill: none;
  stroke: #fff;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 72;
  stroke-dashoffset: 72;
  animation: success-check-draw 0.58s 0.36s ease forwards;
}

.success-spark {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0;
  transform-origin: center;
  animation: success-sparkle 1.6s ease-in-out infinite;
}

.success-spark.spark-b {
  stroke: var(--navy);
  animation-delay: 0.22s;
}

.success-spark.spark-c {
  stroke: #25d366;
  animation-delay: 0.44s;
}

.registration-success-dialog h2 {
  max-width: 420px;
  margin: 8px auto 10px;
  color: var(--navy-deep);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.registration-success-dialog p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.success-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.success-dialog-actions button,
.success-dialog-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 950;
}

.success-dialog-actions button {
  color: var(--navy);
  background: rgba(16, 46, 104, 0.09);
}

.success-dialog-actions a {
  color: #fff;
  background: #25d366;
}

@keyframes success-dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes success-pop {
  from {
    opacity: 0;
    transform: scale(0.76);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes success-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes success-sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.74);
  }

  45% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1020px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .brand span,
  .main-nav a,
  .pill-action,
  .tour-action {
    display: none;
  }

  .brand {
    min-width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand img {
    width: 42px;
  }

  .campus-grid,
  .programs,
  .manifest-pin,
  .admissions-panel {
    grid-template-columns: 1fr;
  }

  .service-strip {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(900px, calc(100% - 32px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 34px auto 120px;
    transform: none;
  }

  .fees-grid {
    margin-inline: -24px;
    padding-inline: 24px;
    scroll-padding-inline: 24px;
  }

  .fee-card {
    flex-basis: min(340px, 38vw);
  }

  .fees-pin {
    padding-inline: 24px;
  }

  .virtual-tour-panel,
  .admissions-whatsapp {
    grid-template-columns: 1fr;
  }

  .manifest-pin {
    padding: 90px 24px;
  }

  .program-card,
  .campus-grid figure,
  .campus-grid figure:first-child {
    min-height: 430px;
    grid-row: auto;
  }

  .immersive-copy {
    margin: 0;
    padding: 32vh 24px 0 72px;
  }

  .admin-toolbar,
  .request-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 18px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 76px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .site-header.scrolled {
    top: 18px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .main-nav,
  .header-actions {
    display: contents;
  }

  .icon-btn {
    position: absolute;
    left: 0;
    top: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(5, 9, 20, 0.2);
    backdrop-filter: blur(8px);
  }

  .icon-btn span {
    width: 18px;
    height: 1.5px;
    margin: 2.25px 0;
  }

  .site-header.scrolled .icon-btn {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
  }

  .round-action {
    position: absolute;
    right: 0;
    top: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(5, 9, 20, 0.2);
    backdrop-filter: blur(8px);
    font-size: 22px;
    line-height: 1;
  }

  .site-header.scrolled .round-action {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
  }

  .brand img {
    width: 48px;
    height: 56px;
  }

  .hero {
    width: 100vw;
    min-height: 920px;
    overflow: hidden;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 350px;
  }

  .hero h1 {
    max-width: 300px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 268px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .hero-search {
    display: none;
  }

  .hero-whatsapp {
    width: min(302px, calc(100vw - 48px));
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .hero-whatsapp div {
    display: grid;
    gap: 4px;
  }

  .hero-whatsapp strong,
  .hero-whatsapp a {
    font-size: 13px;
    line-height: 1.2;
  }

  .slider-dots {
    margin-top: 16px;
  }

  .service-strip {
    width: min(304px, calc(100vw - 56px));
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 76px;
  }

  .service-card {
    width: 100%;
    min-height: 104px;
    aspect-ratio: auto;
    padding: 15px 18px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  }

  .service-icon {
    font-size: 26px;
  }

  .service-card strong {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.15;
  }

  .service-card small {
    max-width: 226px;
    font-size: 11.5px;
    line-height: 1.34;
  }

  .manifest-copy h2 {
    font-size: clamp(38px, 12.5vw, 48px);
    line-height: 0.9;
    text-align: center;
  }

  .manifest-copy p:last-child {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15.5px;
    line-height: 1.36;
    text-align: center;
  }

  .manifest .eyebrow {
    text-align: center;
  }

  .manifest-pin {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    gap: 12px;
    padding: 86px 18px 24px;
  }

  .manifest-scroll-cue {
    position: relative;
    left: auto;
    bottom: auto;
    order: 4;
    justify-self: center;
    width: 56px;
    height: 58px;
    margin-top: 0;
    transform: none;
  }

  .manifest-scroll-cue span {
    filter: drop-shadow(0 10px 16px rgba(16, 46, 104, 0.14));
  }

  .manifest-scroll-cue span::before {
    width: 4px;
    height: calc(100% - 24px);
  }

  .manifest-scroll-cue span::after {
    bottom: 2px;
    width: 28px;
    height: 28px;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-radius: 0 0 5px 0;
  }

  .manifest-stage-cue {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 1;
    width: 100%;
    justify-self: stretch;
    grid-template-columns: auto 1fr 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    opacity: 1;
  }

  .manifest-stage-cue strong {
    max-width: none;
    font-size: 12px;
  }

  .orbit-graphic {
    order: 2;
    min-height: 0;
  }

  .manifest-copy {
    order: 3;
  }

  .stipple-stage {
    width: min(292px, 78vw);
    --marker-radius: min(126px, 32vw);
    --ring-size: clamp(16px, 5.2vw, 22px);
  }

  .stipple-stage canvas,
  .stipple-lens {
    inset: 0;
    width: auto;
    height: auto;
  }

  .stipple-fallback {
    inset: -3%;
    width: 106%;
    height: 106%;
  }

  .manifest-copy {
    order: 2;
  }

  .immersive-bg {
    background-position: center;
  }

  .immersive {
    min-height: calc(100svh * 7.4);
  }

  .immersive-pin {
    min-height: 100svh;
    overflow: hidden;
  }

  .vertical-tabs {
    left: 16px;
    top: 50%;
    gap: 12px;
  }

  .vertical-tabs button {
    font-size: 19px;
    line-height: 1;
  }

  .immersive-copy {
    width: calc(100% - 92px);
    margin-left: 78px;
    padding: 27vh 14px 0 0;
  }

  .immersive-copy h2 {
    max-width: 260px;
    font-size: 44px;
    line-height: 1;
  }

  .immersive-copy p:not(.eyebrow) {
    max-width: 252px;
    font-size: 19px;
    line-height: 1.45;
  }

  .promise-pills {
    display: grid;
    justify-items: start;
    gap: 10px;
  }

  .promise-pills span {
    padding: 10px 14px;
    font-size: 12px;
  }

  .program-card h3 {
    font-size: 26px;
  }

  .fees-grid {
    gap: 14px;
    margin-inline: -18px;
    padding: 18px 18px 26px;
    scroll-padding-inline: 18px;
  }

  .fees-pin {
    justify-content: center;
    padding: 84px 18px 54px;
  }

  .fees .section-head {
    margin-bottom: 12px;
  }

  .fees .section-head h2 {
    font-size: 38px;
    line-height: 0.98;
  }

  .fees .section-head p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.38;
  }

  .fees-scroll-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    border-radius: 16px;
    font-size: 12.5px;
  }

  .fees-tools {
    display: grid;
    gap: 10px;
  }

  .fees-list-trigger {
    width: 100%;
    grid-template-columns: 34px 1fr;
    justify-content: start;
    border-radius: 16px;
    padding: 12px;
  }

  .fees-list-trigger span {
    width: 34px;
    height: 34px;
  }

  .fees-list-trigger strong {
    font-size: 14px;
  }

  .fees-list-trigger small {
    font-size: 12px;
  }

  .fees-list-modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    border-radius: 18px;
  }

  .fees-list-shell {
    max-height: calc(100svh - 20px);
    gap: 14px;
    padding: 18px;
  }

  .fees-list-head {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .fees-list-head h2 {
    font-size: 30px;
  }

  .fees-list-head p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.4;
  }

  .fees-list-close {
    width: 40px;
    height: 40px;
  }

  .fees-list-row {
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
  }

  .fees-list-table {
    gap: 8px;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .fees-list-header {
    display: none;
  }

  .fees-list-row strong {
    font-size: 17px;
  }

  .fees-extra-list {
    padding: 14px;
  }

  .fees-extra-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .fee-card {
    flex-basis: min(300px, calc(100vw - 78px));
    min-height: 296px;
    padding: 26px 22px;
    border-radius: 18px;
    transform: scale(0.94);
  }

  .fee-card.active {
    transform: scale(1);
  }

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

  .fee-card ul {
    margin-top: 20px;
  }

  .fees-scroll-track {
    margin-inline: 0;
  }

  .virtual-tour-panel {
    gap: 22px;
  }

  .virtual-tour-copy h2 {
    font-size: 38px;
    line-height: 0.98;
  }

  .virtual-tour-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.42;
  }

  .tour-note {
    margin: 18px 0;
    padding: 14px;
    border-radius: 16px;
  }

  .virtual-tour-action {
    width: 100%;
  }

  .virtual-tour-media {
    border-radius: 18px;
  }

  .virtual-tour-media::after {
    width: 54px;
    height: 54px;
    right: 12px;
    top: 12px;
    font-size: 17px;
  }

  .virtual-tour-media img {
    aspect-ratio: 4 / 3;
  }

  .apply-form {
    grid-template-columns: 1fr;
  }

  .admissions-panel {
    padding: 26px;
  }

  .admissions-whatsapp a {
    min-height: 116px;
    padding: 20px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 92px;
    gap: 6px;
  }

  .whatsapp-float a {
    min-height: 46px;
    gap: 7px;
    padding: 7px 10px 7px 8px;
    font-size: 12px;
    box-shadow: 0 12px 28px rgba(6, 21, 47, 0.16);
  }

  .whatsapp-float .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .side-menu {
    width: min(340px, 88vw);
    padding: 62px 24px 120px;
  }

  .side-menu .close-btn,
  .search-layer .close-btn {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(16, 46, 104, 0.06);
    font-size: 24px;
    line-height: 1;
  }

  .side-menu h2 {
    margin: 10px 0 10px;
    font-size: 16px;
  }

  .side-menu a {
    padding: 11px 0;
    font-size: 14px;
  }

  .search-layer {
    padding: 18px;
  }

  .search-card {
    min-height: 300px;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .search-card input {
    height: 52px;
    border-radius: 12px;
  }

  .bottom-dock {
    width: min(350px, calc(100% - 32px));
    height: 64px;
    grid-template-columns: repeat(4, 1fr);
  }

  .bottom-dock a {
    font-size: 11.5px;
  }

  .site-footer {
    display: grid;
    gap: 16px;
    padding-bottom: 108px;
  }

  .footer-whatsapp {
    justify-content: flex-start;
  }

  .uk-study-header {
    align-items: stretch;
    flex-direction: column;
    min-height: auto;
    padding: 12px 16px;
  }

  .uk-study-brand {
    position: static;
    transform: none;
  }

  .uk-study-brand span {
    display: inline;
  }

  .uk-study-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .uk-study-nav a {
    flex: 0 0 auto;
  }

  .uk-study-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 16px 40px;
  }

  .uk-study-copy h1 {
    font-size: 29px;
    line-height: 1.14;
  }

  .uk-study-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }

  .uk-study-actions {
    display: grid;
    gap: 10px;
  }

  .uk-study-actions a {
    width: 100%;
    min-height: 50px;
  }

  .uk-study-image {
    border-radius: 16px;
  }

  .uk-study-image img {
    aspect-ratio: 3 / 2;
  }

  .uk-study-section {
    padding: 48px 16px;
  }

  .uk-study-section-head {
    margin-bottom: 20px;
  }

  .uk-study-section-head h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .uk-feature-grid,
  .package-grid,
  .uk-registration-form,
  .uk-registration-form fieldset {
    grid-template-columns: 1fr;
  }

  .uk-feature-grid article,
  .package-grid article {
    min-height: auto;
    padding: 18px;
  }

  .package-grid strong {
    font-size: 30px;
  }

  .uk-registration-form fieldset {
    padding: 14px;
  }

  .uk-registration-form {
    padding: 16px;
    border-radius: 18px;
  }

  .uk-registration-form fieldset label {
    min-height: 62px;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
  }

  .uk-registration-form input[type="radio"] {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .uk-registration-form fieldset label span {
    font-size: 15px;
  }

  .uk-study-page .whatsapp-float {
    position: static;
    width: calc(100% - 32px);
    margin: 0 auto 24px;
    padding: 0;
  }

  .uk-study-page .whatsapp-float a {
    width: 100%;
    justify-content: center;
  }

  .registration-success-dialog {
    padding: 28px 18px 20px;
    border-radius: 22px;
  }

  .success-animation {
    width: 132px;
    height: 132px;
  }

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