:root {
  --ink: #101421;
  --paper: #f7f4ef;
  --paper-2: #ffffff;
  --muted: #70727b;
  --line: rgba(20, 24, 35, 0.12);
  --night: #090d18;
  --night-2: #151927;
  --accent: #df8d00;
  --accent-2: #ffb23d;
  --soft: #ebe6dc;
  --shadow: 0 26px 70px rgba(18, 22, 32, 0.15);
  --container: 1100px;
  --gutter: max(24px, calc((100vw - var(--container)) / 2));
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Wix Madefor Display", "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: default;
}

@media (pointer: fine) {
  body.has-lava-cursor,
  body.has-lava-cursor * {
    cursor: none;
  }

  body.has-lava-cursor input,
  body.has-lava-cursor select,
  body.has-lava-cursor textarea {
    cursor: auto;
  }
}

main,
footer {
  position: relative;
  z-index: 1;
}

body.is-loading {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  display: grid;
  justify-items: center;
  animation: logoFloat 1.8s ease both;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  background: #05070d;
  object-position: center;
}

.brand-logo--stacked {
  width: min(190px, 48vw);
  height: min(190px, 48vw);
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.brand-logo--horizontal {
  width: clamp(138px, 13vw, 172px);
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(45deg);
}

.brand-mark::first-letter {
  transform: rotate(-45deg);
}

.brand-word {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

@keyframes logoFloat {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#lava-canvas {
  display: none;
}

.ambient-lava {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-lava span {
  position: absolute;
  display: block;
  width: clamp(120px, 18vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 202, 99, 0.55), rgba(223, 141, 0, 0.34) 35%, rgba(223, 141, 0, 0.12) 64%, transparent 74%);
  filter: blur(16px);
  opacity: 0.58;
  transform: translate3d(0, 0, 0) scale(1);
  animation: lavaFloat 16s ease-in-out infinite;
}

.ambient-lava span:nth-child(1) {
  top: 18%;
  left: 9%;
}

.ambient-lava span:nth-child(2) {
  top: 38%;
  right: 12%;
  width: clamp(90px, 14vw, 190px);
  animation-delay: -4s;
}

.ambient-lava span:nth-child(3) {
  top: 74%;
  left: 26%;
  width: clamp(80px, 12vw, 170px);
  animation-delay: -8s;
}

.ambient-lava span:nth-child(4) {
  top: 9%;
  right: 30%;
  width: clamp(70px, 10vw, 150px);
  opacity: 0.4;
  animation-delay: -11s;
}

.ambient-lava span:nth-child(5) {
  bottom: 8%;
  right: 24%;
  width: clamp(110px, 16vw, 230px);
  animation-delay: -2s;
}

@keyframes lavaFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 48% 52% 46% 54%;
  }
  32% {
    transform: translate3d(34px, -42px, 0) scale(1.16);
    border-radius: 56% 44% 58% 42%;
  }
  66% {
    transform: translate3d(-28px, 30px, 0) scale(0.92);
    border-radius: 42% 58% 47% 53%;
  }
}

.lava-cursor {
  position: fixed;
  z-index: 7999;
  width: 8px;
  height: 8px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  border: 0;
  opacity: 0;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(223, 141, 0, 0.24);
  mix-blend-mode: normal;
  transform: translate3d(-120px, -120px, 0);
  transition:
    width 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.18s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform, opacity;
}

.lava-cursor::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, rgba(223, 141, 0, 0.16), transparent 62%);
  transition: opacity 0.2s ease;
}

.lava-cursor.is-active {
  opacity: 1;
}

.lava-cursor.is-button {
  width: 8.8px;
  height: 8.8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  mix-blend-mode: difference;
}

.lava-cursor.is-link,
.lava-cursor.is-media {
  width: 8.8px;
  height: 8.8px;
  background: rgba(223, 141, 0, 0.9);
  box-shadow: none;
  mix-blend-mode: difference;
}

.lava-cursor.is-button::after,
.lava-cursor.is-link::after,
.lava-cursor.is-media::after,
.lava-cursor.is-hidden {
  opacity: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: #fff;
  background: rgba(10, 14, 25, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 17, 28, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}

.logo .brand-mark {
  width: 38px;
  font-size: 22px;
}

.logo small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
}

.mobile-lang-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.lang-current,
.lang-option,
.mobile-lang-switcher .lang-option {
  height: 38px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 68px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.lang-current svg {
  width: 14px;
  height: 14px;
  transition: transform 0.24s ease;
}

.lang-switcher.is-open .lang-current svg {
  transform: rotate(180deg);
}

.lang-current:hover,
.lang-switcher.is-open .lang-current {
  border-color: rgba(223, 141, 0, 0.7);
  background: rgba(223, 141, 0, 0.12);
  box-shadow: 0 12px 28px rgba(223, 141, 0, 0.14);
}

.lang-current:active,
.lang-option:active,
.mobile-lang-switcher .lang-option:active {
  transform: translateY(1px);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 4px;
  min-width: 174px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 12, 21, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 0 10px;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
}

.lang-option small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-option.is-active,
.mobile-lang-switcher .lang-option.is-active {
  background: var(--accent);
  color: #fff;
}

.lang-option.is-active small {
  color: rgba(255, 255, 255, 0.82);
}

.mobile-lang-switcher .lang-option {
  justify-content: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-lang-switcher .lang-option:hover {
  border-color: rgba(223, 141, 0, 0.58);
  box-shadow: 0 10px 22px rgba(223, 141, 0, 0.16);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: currentColor;
  background: transparent;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.icon-button:hover {
  box-shadow: 0 12px 24px rgba(223, 141, 0, 0.2);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 2000;
  width: min(380px, 100vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  color: #fff;
  background: rgba(10, 14, 25, 0.96);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 22px;
  font-family: var(--font-display);
}

.menu-close {
  align-self: flex-end;
}

.section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(224, 141, 0, 0.16), transparent 34%),
    radial-gradient(circle at 18% 85%, rgba(223, 141, 0, 0.12), transparent 36%),
    linear-gradient(135deg, var(--night), var(--night-2));
}

.section-dark > :not(.ambient-lava) {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px var(--gutter) 170px;
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(7, 9, 18, 0.9) 0%, rgba(7, 9, 18, 0.42) 50%, rgba(7, 9, 18, 0.85) 100%),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=85") center / cover;
  transform: scale(1.04);
  animation: slowZoom 15s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.11);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(46px, 5.7vw, 76px);
}

h2 {
  font-size: clamp(34px, 4.1vw, 54px);
}

em {
  color: var(--accent-2);
  font-style: normal;
  font-weight: 700;
}

.hero__lead {
  width: min(650px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.primary-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f0a51a);
  box-shadow: 0 22px 44px rgba(223, 141, 0, 0.28);
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.34s ease;
}

.primary-button::before,
.carousel-button::before {
  display: none;
}

.service-item span::before,
.result-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 178, 61, 0.08), rgba(223, 141, 0, 0.04) 18%, transparent 44%);
  transition: opacity 0.24s ease;
}

.service-item:hover span::before,
.result-box:hover::before {
  opacity: 1;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(223, 141, 0, 0.38);
}

.primary-button svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}

.primary-button:active,
.carousel-button:active,
.icon-button:active {
  transform: translateY(0) scale(0.98);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.program-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: -92px auto 90px;
}

.program-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: 48px 68px 1fr;
  align-content: start;
  min-height: 258px;
  padding: 32px 28px;
  background: var(--paper-2);
  border: 1px solid rgba(20, 24, 35, 0.06);
  box-shadow: 0 20px 50px rgba(18, 22, 32, 0.1);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition:
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.48s ease;
  will-change: transform, box-shadow;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-2)) left top / 0 4px no-repeat,
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(223, 141, 0, 0.13), transparent 36%) center / 100% 100% no-repeat;
  box-shadow:
    0 44px 104px rgba(18, 22, 32, 0.2),
    0 18px 44px rgba(223, 141, 0, 0.1);
  transform: translate3d(0, 12px, 0) scale(0.985);
  transition:
    opacity 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    background-size 0.54s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(223, 141, 0, 0.05), transparent 36%);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card::after,
.review::after {
  content: "↑";
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent);
  border: 1px solid rgba(223, 141, 0, 0.22);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.84);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s ease, color 0.35s ease;
}

.program-card.reveal.is-visible {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
}

.program-card:hover,
.program-card.reveal.is-visible:hover {
  border-color: rgba(223, 141, 0, 0.18);
  box-shadow: 0 22px 54px rgba(18, 22, 32, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-12px) scale(1.012);
}

.program-card:active,
.program-card.reveal.is-visible:active {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-7px) scale(0.998);
}

.program-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  background-size: 100% 4px, 100% 100%;
}

.review:hover::before {
  opacity: 1;
}

.program-card:hover::after,
.review:hover::after {
  opacity: 1;
  background: var(--accent);
  color: #fff;
  transform: translateY(0) scale(1);
}

.program-card svg {
  position: relative;
  z-index: 1;
  color: var(--accent);
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  transition:
    color 0.35s ease,
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card h3,
.service-item h3,
.country h3,
.review strong,
.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 700;
  word-break: normal;
}

.primary-button span {
  min-width: 0;
}

.program-card h3 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  overflow-wrap: normal;
  font-size: clamp(20px, 1.55vw, 24px);
}

.program-card h3,
.program-card p {
  position: relative;
  z-index: 1;
  transition:
    color 0.35s ease,
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card p,
.service-item p,
.country p,
.review p,
.step p {
  margin: 10px 0 0;
  color: var(--muted);
}

.program-card p {
  margin-top: 0;
}

.program-card:hover svg {
  color: #f1a11c;
  transform: translateY(-4px) scale(1.06);
}

.program-card:hover h3 {
  transform: translateY(-2px);
}

.program-card:hover p {
  color: rgba(16, 20, 33, 0.68);
  transform: translateY(-1px);
}

.about {
  padding-top: 36px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: rgba(16, 20, 33, 0.78);
  font-size: 18px;
}

.about-copy p {
  margin: 0;
}

.about-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 22px;
  margin-top: 58px;
  align-items: end;
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  background: var(--night);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-photo:nth-child(2) {
  min-height: 520px;
}

.about-photo:nth-child(3) {
  min-height: 360px;
}

.about-photo:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  box-shadow: 0 34px 78px rgba(18, 22, 32, 0.18);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.why-section {
  padding: 108px var(--gutter);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.why-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.why-card:hover {
  border-color: rgba(233, 194, 125, 0.55);
  background: rgba(255, 255, 255, 0.09);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-6px);
}

.why-card strong {
  display: block;
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
}

.why-card strong.is-counted,
.fact strong.is-counted {
  animation: counterSettle 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes counterSettle {
  0% {
    filter: brightness(1);
    transform: scale(1);
  }
  45% {
    filter: brightness(1.16);
    transform: scale(1.045);
  }
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
}

.why-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.universities {
  position: relative;
  padding-top: 40px;
}

.universities::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto;
  height: 240px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0), var(--paper));
}

.university-shell {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
  margin-top: 48px;
}

.university-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 360px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 28px;
  scrollbar-width: none;
}

.university-track::-webkit-scrollbar {
  display: none;
}

.university-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  background: var(--night);
  box-shadow: 0 22px 50px rgba(18, 22, 32, 0.14);
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.university-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  box-shadow: 0 34px 72px rgba(18, 22, 32, 0.22);
}

.university-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.university-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.06);
}

.university-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.06), rgba(7, 10, 18, 0.84)),
    radial-gradient(circle at var(--spot-x, 22%) var(--spot-y, 80%), rgba(255, 190, 74, 0.34), transparent 28%),
    radial-gradient(circle at 22% 80%, rgba(223, 141, 0, 0.36), transparent 36%);
  transition: background 0.35s ease;
}

.university-card::before {
  content: "↑";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transform: translateY(0);
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.university-card:hover::before {
  background: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(223, 141, 0, 0.35);
}

.university-card div {
  width: 100%;
  padding: 28px;
}

.university-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.university-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.12;
}

.university-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.carousel-button {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16, 20, 33, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(18, 22, 32, 0.1);
  overflow: hidden;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.34s ease,
    color 0.34s ease,
    box-shadow 0.34s ease;
}

.carousel-button:hover {
  box-shadow: 0 12px 30px rgba(223, 141, 0, 0.25);
}

.carousel-button svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.section {
  padding: 100px var(--gutter);
}

.section-head {
  width: min(780px, 100%);
}

.section-copy {
  width: min(560px, 100%);
  margin: 24px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 54px;
}

.services .service-grid {
  grid-column: 1 / -1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.service-item {
  position: relative;
  padding-top: 12px;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-6px);
}

.service-item span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  color: #fff;
  background:
    radial-gradient(circle, var(--night-2) 0 48%, transparent 49%),
    conic-gradient(from 25deg, var(--accent), #f5bd4d, var(--accent));
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.service-item:hover span {
  box-shadow: 0 18px 38px rgba(223, 141, 0, 0.18);
  transform: rotate(360deg);
}

.service-item svg {
  width: 28px;
  height: 28px;
}

.move-fear {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), #ede9df);
}

.move-fear::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(209, 161, 89, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(209, 161, 89, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  opacity: 0.32;
}

.move-fear > * {
  position: relative;
  z-index: 2;
}

.move-fear__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: end;
}

.move-fear__head .section-copy {
  margin-left: 0;
}

.move-fear__board {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 58px;
}

.move-fear__summary {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--night), #2c281f);
  box-shadow: 0 26px 70px rgba(18, 22, 32, 0.18);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.move-fear__summary:hover,
.move-fear__summary.is-pointer {
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(209, 161, 89, 0.16), transparent 32%),
    linear-gradient(145deg, var(--night), #2c281f);
  box-shadow: 0 34px 84px rgba(18, 22, 32, 0.24);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-6px);
}

.move-fear.motion-section.is-inview .section-aura {
  opacity: 0;
}

.move-fear.motion-section.is-hovered .section-aura {
  opacity: 0.16;
}

.move-fear__summary > span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.move-fear__summary > strong {
  display: block;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.04;
}

.move-fear__summary > p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.72);
}

.move-fear__summary .primary-button {
  margin-top: auto;
}

.move-fear__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 420px;
  border: 1px solid rgba(20, 24, 35, 0.12);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 60px rgba(18, 22, 32, 0.09);
}

.move-fear__timeline div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 30px;
}

.move-fear__timeline div + div {
  border-left: 1px solid rgba(20, 24, 35, 0.12);
}

.move-fear__timeline div:nth-child(odd) {
  border-left: 0;
}

.move-fear__timeline div:nth-child(n + 3) {
  border-top: 1px solid rgba(20, 24, 35, 0.12);
}

.move-fear__timeline div::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--accent);
}

.move-fear__timeline span {
  position: absolute;
  top: 62px;
  left: 30px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}

.move-fear__timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
}

.move-fear__timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  overflow-wrap: normal;
}

.move-fear__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.move-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(20, 24, 35, 0.08);
  box-shadow: 0 16px 42px rgba(18, 22, 32, 0.07);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.move-card:hover {
  border-color: rgba(209, 161, 89, 0.32);
  box-shadow: 0 24px 58px rgba(18, 22, 32, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-5px);
}

.move-card svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.move-card h3 {
  margin: 34px 0 0;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.1;
  overflow-wrap: normal;
}

.move-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  overflow-wrap: normal;
}

.facts {
  padding: 120px var(--gutter);
}

.facts .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 76px;
}

.fact {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}

.fact:hover {
  border-color: rgba(255, 178, 61, 0.7);
  transform: translateY(-6px);
}

.fact strong {
  display: block;
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.country {
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background: #121722;
  text-decoration: none;
  isolation: isolate;
  outline: none;
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.country::before,
.country::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.country::before {
  background: var(--country-image, none) center / cover;
}

.country::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.15), rgba(7, 10, 18, 0.82));
}

.country:hover::before,
.country:focus-visible::before {
  transform: scale(1.08);
}

.country:hover,
.country:focus-visible {
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  box-shadow: 0 34px 78px rgba(18, 22, 32, 0.18);
}

.country div::after {
  content: "↑";
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transform: translateY(0);
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.country:hover div::after,
.country:focus-visible div::after {
  background: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(223, 141, 0, 0.35);
}

.country--china::before {
  background-image: url("https://images.unsplash.com/photo-1548919973-5cef591cdbc9?auto=format&fit=crop&w=900&q=85");
}

.country--turkey::before {
  background-image: url("https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=900&q=85");
}

.country--italy::before {
  background-image: url("https://images.unsplash.com/photo-1529260830199-42c24126f198?auto=format&fit=crop&w=900&q=85");
}

.country h3 {
  margin-top: 8px;
  font-size: clamp(38px, 4vw, 58px);
}

.country p,
.country li,
.country span {
  color: rgba(255, 255, 255, 0.82);
}

.country ul {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.country li::before {
  content: "- ";
  color: var(--accent-2);
}

.country span {
  width: fit-content;
  border-top: 2px solid var(--accent);
  padding-top: 12px;
  font-weight: 800;
}

.country__more {
  position: relative;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.country:hover .country__more,
.country:focus-visible .country__more {
  border-color: rgba(255, 178, 61, 0.5);
  background: rgba(223, 141, 0, 0.92);
  transform: translateY(-2px);
}

.country-details {
  position: relative;
  padding-top: 20px;
}

.country-detail-tabs {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 54px;
}

.country-detail-nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.country-detail-tab {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid rgba(20, 24, 35, 0.1);
  padding: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 22, 32, 0.05);
  text-align: left;
  transition:
    color 0.34s ease,
    background 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-detail-tab::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-detail-tab span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(16, 20, 33, 0.24);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  transition: color 0.34s ease, transform 0.34s ease;
}

.country-detail-tab strong {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
}

.country-detail-tab small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.country-detail-tab:hover,
.country-detail-tab:focus-visible {
  border-color: rgba(223, 141, 0, 0.3);
  box-shadow: 0 22px 48px rgba(18, 22, 32, 0.1);
  transform: translateX(6px);
  outline: 0;
}

.country-detail-tab.is-active {
  color: #fff;
  border-color: rgba(255, 178, 61, 0.34);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 178, 61, 0.24), transparent 34%),
    linear-gradient(145deg, var(--night), #252115);
  box-shadow: 0 24px 58px rgba(18, 22, 32, 0.18);
  transform: translateX(10px);
}

.country-detail-tab.is-active::before {
  transform: scaleY(1);
}

.country-detail-tab.is-active span {
  color: rgba(255, 178, 61, 0.5);
  transform: translateY(-2px);
}

.country-detail-tab.is-active small {
  color: rgba(255, 255, 255, 0.62);
}

.country-detail-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 24, 35, 0.08);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.country-detail-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  min-height: 520px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(0.985);
  transition:
    opacity 0.42s ease,
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-detail-panel.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.country-detail-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 520px;
  padding: 32px;
  color: #fff;
  background: var(--night);
  isolation: isolate;
}

.country-detail-visual::before,
.country-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.country-detail-visual::before {
  background: var(--country-detail-image) center / cover;
  transform: scale(1.08);
  transition: transform 0.86s cubic-bezier(0.16, 1, 0.3, 1), filter 0.86s ease;
}

.country-detail-panel.is-active .country-detail-visual::before {
  transform: scale(1);
  filter: saturate(1.05);
}

.country-detail-visual::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.12), rgba(7, 10, 18, 0.82)),
    radial-gradient(circle at 20% 80%, rgba(223, 141, 0, 0.34), transparent 34%);
}

.country-detail-visual span {
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}

.country-detail-visual strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 0.98;
}

.country-detail-content {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: clamp(30px, 4vw, 54px);
}

.country-detail-content h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

.country-detail-content > p {
  width: min(620px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.country-detail__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.country-detail-content strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.country-detail-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(16, 20, 33, 0.78);
  list-style: none;
}

.country-detail-content li::before {
  content: "- ";
  color: var(--accent);
}

.text-button {
  justify-self: end;
  min-height: 48px;
  border: 1px solid rgba(209, 161, 89, 0.34);
  padding: 0 18px;
  color: var(--ink);
  background: rgba(209, 161, 89, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.text-button:hover {
  color: #fff;
  background: var(--accent);
}

.text-button:active {
  transform: scale(0.98);
}

.consult-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 92px var(--gutter);
}

.consult-band__text {
  width: min(720px, 100%);
}

.consult-band p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: 60px;
  align-items: start;
}

.calculator__intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.calculator__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.calculator__panel:hover {
  box-shadow: 0 34px 78px rgba(18, 22, 32, 0.18);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 16px;
  color: var(--ink);
  background: #fbfaf7;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(223, 141, 0, 0.12);
}

.result-box {
  padding: 24px;
  background: var(--night);
  color: #fff;
}

.result-box span {
  color: rgba(255, 255, 255, 0.58);
}

.result-box strong {
  display: block;
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 38px;
}

.result-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.review-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.student-channel {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0) 0, rgba(248, 246, 241, 0) 44px, var(--night) 44px),
    radial-gradient(circle at 78% 22%, rgba(209, 161, 89, 0.16), transparent 32%),
    linear-gradient(135deg, #171614, #24211b);
}

.student-channel .section-head,
.student-channel .section-copy,
.student-channel__layout,
.student-channel .review-grid,
.student-channel .video-rail {
  position: relative;
  z-index: 2;
}

.student-channel .section-copy {
  color: rgba(255, 255, 255, 0.7);
}

.student-channel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: stretch;
  margin-top: 56px;
}

.student-channel__player {
  min-width: 0;
}

.student-channel .youtube-player {
  min-height: clamp(360px, 42vw, 600px);
  background: #080807;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.student-channel .youtube-player iframe {
  height: clamp(360px, 42vw, 600px);
}

.student-channel__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.student-channel__panel > span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.student-channel__panel > strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

.student-channel__panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.student-channel__panel .integration-link {
  margin-top: 0;
  color: var(--accent-2);
}

.student-channel .review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.review {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 22, 32, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.student-channel .review {
  min-height: 330px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.review:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  box-shadow: 0 30px 70px rgba(18, 22, 32, 0.14);
}

.student-channel .review:hover {
  border-color: rgba(209, 161, 89, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.student-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--night);
  background: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review p {
  margin-top: 0;
  color: var(--ink);
  font-size: 18px;
}

.student-channel .review p {
  color: rgba(255, 255, 255, 0.86);
}

.review strong {
  display: block;
  margin-top: auto;
  font-size: 24px;
}

.review span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.student-channel .review span {
  color: rgba(255, 255, 255, 0.58);
}

.review small {
  display: block;
  margin-top: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.student-channel .video-rail {
  margin-top: 26px;
  grid-auto-columns: minmax(220px, 1fr);
}

.student-channel .video-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.student-channel .video-card span {
  color: #fff;
}

.cases {
  padding-top: 64px;
  padding-bottom: 76px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.case-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 235px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(20, 24, 35, 0.08);
  box-shadow: 0 14px 34px rgba(18, 22, 32, 0.06);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.case-card:hover {
  border-color: rgba(209, 161, 89, 0.28);
  box-shadow: 0 22px 52px rgba(18, 22, 32, 0.1);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
}

.case-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.case-card__top > div {
  min-width: 0;
}

.case-card__brand {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: -4px -4px 0 0;
  overflow: hidden;
  border-radius: 13px;
  background: #05070d;
  box-shadow: 0 12px 24px rgba(18, 22, 32, 0.12);
}

.case-card__brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-card strong,
.case-card span,
.case-card small {
  display: block;
}

.case-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.08;
}

.case-card span,
.case-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.case-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
}

.case-card p {
  margin: 0;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
}

.steps {
  padding: 100px var(--gutter);
}

.step {
  position: relative;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}

.step:hover {
  border-color: rgba(255, 178, 61, 0.68);
  transform: translateY(-6px);
}

.step span {
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: 48px;
}

.step p {
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 70px var(--gutter);
  color: #fff;
  background: #05070d;
}

.footer p {
  color: rgba(255, 255, 255, 0.62);
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 16px;
  text-transform: uppercase;
}

.footer a:not(.logo) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.62);
}

.admin-link {
  color: var(--accent-2) !important;
}

.integration-shell {
  width: min(var(--container), 100%);
  margin-top: 54px;
}

.youtube-player,
.map-frame {
  width: 100%;
  min-height: clamp(280px, 48vw, 560px);
  border: 0;
  background: var(--night);
  box-shadow: var(--shadow);
}

.youtube-player {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.youtube-player iframe {
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  border: 0;
}

.integration-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 900;
}

.video-proof {
  margin-top: 28px;
}

.video-proof > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
}

.video-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-rail::-webkit-scrollbar {
  display: none;
}

.video-card {
  overflow: hidden;
  display: block;
  background: #fff;
  border: 1px solid rgba(20, 24, 35, 0.08);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.video-card:hover {
  box-shadow: 0 18px 46px rgba(18, 22, 32, 0.12);
  transform: translateY(-4px);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card span {
  display: block;
  padding: 12px 14px 14px;
  color: var(--ink);
  font-weight: 900;
}

.faq {
  padding-top: 50px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(900px, 100%);
  margin-top: 48px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(20, 24, 35, 0.08);
  box-shadow: 0 14px 34px rgba(18, 22, 32, 0.06);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 17px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.78);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 38px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--ink);
  border-color: var(--line);
}

.modal__panel h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 48px);
}

.modal__panel > p:not(.eyebrow) {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lead-form small {
  color: var(--muted);
}

.success-state {
  display: none;
  margin-top: 24px;
  padding: 28px;
  text-align: center;
  background: #fff;
}

.success-state svg {
  margin: 0 auto 14px;
  color: #2c9a57;
  width: 42px;
  height: 42px;
}

.success-state h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
}

.success-state p {
  color: var(--muted);
}

.modal.is-success .lead-form {
  display: none;
}

.modal.is-success .success-state {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.74s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--stagger, 0ms),
    transform 0.74s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--stagger, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-section {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
}

.motion-section > :not(.section-aura):not(.ambient-lava):not(.hero__media) {
  position: relative;
  z-index: 2;
}

.section-aura {
  position: absolute;
  pointer-events: none;
}

.section-aura {
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle 340px at var(--mx) var(--my), rgba(255, 178, 61, 0.16), rgba(223, 141, 0, 0.055) 42%, transparent 68%),
    linear-gradient(115deg, transparent 0 44%, rgba(255, 178, 61, 0.045) 48%, transparent 54% 100%);
  transition: opacity 0.42s ease;
}

.section-dark .section-aura {
  background:
    radial-gradient(circle 360px at var(--mx) var(--my), rgba(255, 178, 61, 0.2), rgba(223, 141, 0, 0.08) 38%, transparent 68%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.045) 48%, transparent 56% 100%);
}

.motion-section.is-inview .section-aura {
  opacity: 0.34;
}

.motion-section.is-hovered .section-aura {
  opacity: 1;
}

.motion-target {
  --btn-x: 50%;
  --btn-y: 50%;
  --mag-x: 0px;
  --mag-y: 0px;
}

.primary-button,
.carousel-button,
.icon-button,
.ghost-link,
.integration-link {
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  display: block;
  opacity: 0;
  background:
    radial-gradient(circle at var(--btn-x) var(--btn-y), rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%);
  transition: opacity 0.28s ease;
}

.primary-button::after {
  content: "";
  position: absolute;
  inset: -40% -24%;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.42) 48%, transparent 60%);
  transform: translateX(-120%) rotate(8deg);
}

.primary-button:hover::before,
.primary-button:focus-visible::before {
  opacity: 1;
}

.primary-button:hover::after,
.primary-button:focus-visible::after {
  opacity: 1;
  animation: buttonSheen 0.86s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-button svg,
.ghost-link svg,
.integration-link svg {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-button:hover svg,
.primary-button:focus-visible svg,
.ghost-link:hover svg,
.ghost-link:focus-visible svg {
  transform: translateX(4px);
}

.button-ripple {
  position: absolute;
  z-index: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 0.58s ease-out forwards;
}

.ghost-link,
.integration-link {
  position: relative;
  transition:
    color 0.28s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.ghost-link::after,
.integration-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-link::after {
  bottom: -4px;
}

.ghost-link:hover::after,
.ghost-link:focus-visible::after,
.integration-link:hover::after,
.integration-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.motion-card {
  --spot-x: 50%;
  --spot-y: 50%;
  transition: filter 0.28s ease;
}

.motion-card.is-pointer {
  filter: saturate(1.03) contrast(1.01);
}

.step-grid {
  position: relative;
}

.step-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 178, 61, 0.9), rgba(255, 255, 255, 0.28), rgba(255, 178, 61, 0.54));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 0.35s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.steps.is-inview .step-grid::before {
  opacity: 1;
  transform: scaleX(1);
}

.step {
  overflow: hidden;
  min-height: 220px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 178, 61, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 178, 61, 0.1), transparent 60%);
  transition: opacity 0.34s ease;
}

.step:hover::before,
.step.is-pointer::before {
  opacity: 1;
}

.step span {
  display: inline-block;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 0.38s ease,
    color 0.38s ease;
}

.step:hover span,
.step:focus-within span {
  color: #ffd28a;
  text-shadow: 0 0 26px rgba(255, 178, 61, 0.42);
  transform: translateY(-6px) scale(1.08);
}

.step h3,
.step p {
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), color 0.34s ease;
}

.step:hover h3 {
  color: #fff;
  transform: translateY(-3px);
}

.step:hover p {
  color: rgba(255, 255, 255, 0.84);
}

.consult-band {
  min-height: 330px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 50%), rgba(255, 178, 61, 0.24), transparent 34%),
    radial-gradient(circle at 10% 45%, rgba(223, 141, 0, 0.14), transparent 32%),
    linear-gradient(135deg, #15120f, #101525 62%, #231a12);
}

.consult-band__text h2 {
  text-wrap: balance;
  transition:
    color 0.34s ease,
    text-shadow 0.34s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-band:hover .consult-band__text h2 {
  color: #fff;
  text-shadow: 0 0 34px rgba(255, 178, 61, 0.2);
  transform: translateY(-4px);
}

.consult-band .primary-button {
  min-width: min(290px, 100%);
}

.faq-item {
  overflow: hidden;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(223, 141, 0, 0.22);
  box-shadow: 0 24px 58px rgba(18, 22, 32, 0.1);
  transform: translateY(-3px);
}

.faq-item summary {
  position: relative;
  padding-right: 68px;
  transition: color 0.28s ease;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 26px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent);
  border: 1px solid rgba(223, 141, 0, 0.24);
  transform: translateY(-50%) rotate(0deg);
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.28s ease,
    color 0.28s ease;
}

.faq-item:hover summary,
.faq-item[open] summary {
  color: var(--accent);
}

.faq-item[open] summary::after {
  color: #fff;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

@keyframes buttonSheen {
  from {
    transform: translateX(-120%) rotate(8deg);
  }
  to {
    transform: translateX(120%) rotate(8deg);
  }
}

@keyframes buttonRipple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-aura,
  .button-ripple {
    display: none;
  }

  .reveal,
  .motion-card,
  .primary-button,
  .ghost-link,
  .integration-link {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .lava-cursor {
    display: none;
  }

  .desktop-nav,
  .lang-switcher {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 720px;
    padding-top: 135px;
  }

  .program-strip,
  .about-layout,
  .about-photos,
  .student-channel__layout,
  .move-fear__head,
  .move-fear__board,
  .service-grid,
  .fact-grid,
  .country-grid,
  .country-detail-tabs,
  .country-detail-panel,
  .country-detail__columns,
  .review-grid,
  .case-grid,
  .why-grid,
  .why-list,
  .step-grid,
  .footer,
  .calculator,
  .services {
    grid-template-columns: 1fr;
  }

  .program-strip {
    margin-top: -70px;
  }

  .about-photos {
    align-items: stretch;
  }

  .about-photo,
  .about-photo:nth-child(2),
  .about-photo:nth-child(3) {
    min-height: 420px;
  }

  .country-detail-nav {
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
  }

  .country-detail-nav::-webkit-scrollbar {
    display: none;
  }

  .country-detail-tab:hover,
  .country-detail-tab:focus-visible {
    transform: translateY(-4px);
  }

  .country-detail-tab.is-active {
    transform: translateY(-6px);
  }

  .country-detail-stage,
  .country-detail-panel,
  .country-detail-visual {
    min-height: auto;
  }

  .country-detail-visual {
    min-height: 280px;
  }

  .text-button {
    justify-self: start;
  }

  .university-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .university-track {
    grid-auto-columns: minmax(280px, 84vw);
  }

  .consult-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .student-channel__panel {
    min-height: 320px;
  }

  .student-channel .review-grid {
    grid-template-columns: 1fr;
  }

  .move-fear__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  body {
    width: 100%;
  }

  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .logo {
    gap: 12px;
  }

  .brand-logo--horizontal {
    width: 128px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-logo--stacked {
    width: 160px;
    height: 160px;
    border-radius: 26px;
  }

  .brand-word {
    font-size: 20px;
  }

  .logo small {
    display: none;
  }

  .hero {
    min-height: 680px;
    padding: 118px 20px 145px;
  }

  .hero__content,
  .hero__lead,
  .hero__actions,
  .program-card,
  .student-channel__panel,
  .about-copy,
  .country-detail-tabs,
  .country-detail-panel,
  .country-detail-content,
  .case-card,
  .faq-item {
    max-width: 100%;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 29px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.4;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-link {
    width: 100%;
  }

  .primary-button {
    min-height: 54px;
    padding: 0 18px;
    font-size: 12px;
  }

  .primary-button span {
    overflow-wrap: anywhere;
    text-align: center;
  }

  .program-strip {
    width: calc(100% - 40px);
    gap: 16px;
  }

  .program-card {
    min-height: auto;
    padding: 28px 26px;
  }

  .program-card h3,
  .service-item h3,
  .country h3,
  .review strong,
  .step h3 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .program-card p,
  .service-item p,
  .country p,
  .review p,
  .step p {
    font-size: 16px;
  }

  .university-card {
    min-height: 390px;
  }

  .section,
  .facts,
  .steps,
  .consult-band {
    padding: 78px 20px;
  }

  .country {
    min-height: 480px;
    padding: 26px;
  }

  .country-detail-content,
  .case-card {
    padding: 24px;
  }

  .country-detail-tabs {
    gap: 18px;
    margin-top: 38px;
  }

  .country-detail-tab {
    min-height: 96px;
    padding: 18px;
  }

  .country-detail-tab strong {
    font-size: 23px;
  }

  .country-detail-visual {
    min-height: 220px;
    padding: 24px;
  }

  .country-detail-visual span {
    font-size: 46px;
  }

  .country-detail-content {
    gap: 20px;
  }

  .country-detail-content > p {
    font-size: 16px;
  }

  .country-detail__columns {
    gap: 18px;
  }

  .student-channel__layout {
    gap: 16px;
  }

  .move-fear__head,
  .move-fear__board {
    gap: 24px;
  }

  .move-fear__summary {
    min-height: auto;
    padding: 28px 24px;
  }

  .move-fear__timeline,
  .move-fear__grid {
    grid-template-columns: 1fr;
  }

  .move-fear__timeline {
    min-height: auto;
  }

  .move-fear__timeline div {
    min-height: 220px;
    padding: 26px 24px;
  }

  .move-fear__timeline div + div {
    border-left: 0;
    border-top: 1px solid rgba(20, 24, 35, 0.12);
  }

  .move-fear__timeline div::before {
    left: 24px;
    right: 24px;
  }

  .move-fear__timeline span {
    left: 24px;
  }

  .move-card {
    min-height: auto;
  }

  .student-channel__panel {
    min-height: auto;
    padding: 24px;
  }

  .student-channel .youtube-player,
  .student-channel .youtube-player iframe {
    min-height: 260px;
    height: 260px;
  }

  .student-channel .review {
    min-height: auto;
    padding: 28px 24px;
  }

  .student-channel .video-rail {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .faq-item summary {
    padding: 20px;
    font-size: 20px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }

  .modal {
    padding: 12px;
  }

  .modal__panel {
    padding: 30px 22px;
  }
}

/* Calm polish pass: reduce orange glow and make steps/CTA feel composed. */
.section-dark {
  background:
    radial-gradient(circle at 82% 28%, rgba(224, 141, 0, 0.07), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(223, 141, 0, 0.055), transparent 32%),
    linear-gradient(135deg, #090d18, #151927);
}

.ambient-lava span {
  width: clamp(70px, 9vw, 140px);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 202, 99, 0.22), rgba(223, 141, 0, 0.12) 38%, rgba(223, 141, 0, 0.035) 66%, transparent 76%);
  filter: blur(24px);
  opacity: 0.2;
}

.steps .ambient-lava span,
.consult-band .ambient-lava span {
  width: clamp(58px, 7vw, 112px);
  opacity: 0.11;
  filter: blur(30px);
}

.lava-cursor {
  width: 6px;
  height: 6px;
  background: rgba(223, 141, 0, 0.92);
  box-shadow: 0 0 5px rgba(223, 141, 0, 0.18);
}

.lava-cursor::after {
  inset: -4px;
  background: radial-gradient(circle, rgba(223, 141, 0, 0.08), transparent 64%);
}

.lava-cursor.is-button,
.lava-cursor.is-link,
.lava-cursor.is-media {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px rgba(223, 141, 0, 0.12);
}

.section-aura {
  background:
    radial-gradient(circle 130px at var(--mx) var(--my), rgba(255, 178, 61, 0.055), rgba(223, 141, 0, 0.018) 42%, transparent 70%);
}

.section-dark .section-aura {
  background:
    radial-gradient(circle 140px at var(--mx) var(--my), rgba(255, 178, 61, 0.07), rgba(223, 141, 0, 0.024) 42%, transparent 72%);
}

.motion-section.is-inview .section-aura {
  opacity: 0.08;
}

.motion-section.is-hovered .section-aura {
  opacity: 0.34;
}

.primary-button {
  box-shadow: 0 12px 26px rgba(223, 141, 0, 0.18);
}

.primary-button:hover {
  box-shadow: 0 17px 34px rgba(223, 141, 0, 0.24);
}

.steps {
  display: grid;
  row-gap: 36px;
  padding: 86px var(--gutter) 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 24%),
    linear-gradient(135deg, #090d18, #121827 58%, #171410);
}

.steps .section-head {
  width: min(var(--container), 100%);
}

.steps .section-head h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.4vw, 56px);
  text-wrap: balance;
}

.steps .section-aura,
.consult-band .section-aura {
  background:
    radial-gradient(circle 115px at var(--mx) var(--my), rgba(255, 178, 61, 0.05), transparent 70%);
}

.step-grid {
  width: min(var(--container), 100%);
  margin-top: 0;
  gap: 14px;
}

.step-grid::before {
  background: linear-gradient(90deg, rgba(255, 178, 61, 0.36), rgba(255, 255, 255, 0.14), rgba(255, 178, 61, 0.2));
}

.steps.is-inview .step-grid::before {
  opacity: 0.42;
}

.step {
  min-height: 180px;
  padding: 28px 26px 26px;
  border-color: rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.08);
}

.step::before {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 178, 61, 0.095), transparent 38%),
    linear-gradient(135deg, rgba(255, 178, 61, 0.035), transparent 62%);
}

.step:hover,
.step.is-pointer {
  border-color: rgba(255, 178, 61, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.14);
}

.step:hover::before,
.step.is-pointer::before {
  opacity: 1;
}

.step span {
  color: rgba(255, 178, 61, 0.9);
  font-size: 42px;
}

.step:hover span,
.step:focus-within span {
  color: #ffc773;
  text-shadow: 0 0 12px rgba(255, 178, 61, 0.18);
  transform: translateY(-3px) scale(1.03);
}

.step:hover h3 {
  transform: translateY(-2px);
}

.consult-band {
  min-height: 265px;
  padding: 76px var(--gutter);
  background:
    linear-gradient(115deg, rgba(255, 178, 61, 0.045), transparent 34%),
    linear-gradient(135deg, #101015, #101524 58%, #15130f);
}

.consult-band:hover .consult-band__text h2 {
  text-shadow: 0 0 14px rgba(255, 178, 61, 0.08);
  transform: translateY(-2px);
}

.consult-band .primary-button {
  box-shadow: 0 16px 30px rgba(223, 141, 0, 0.18);
}

@media (max-width: 980px) {
  .steps {
    padding: 78px var(--gutter);
  }

  .step-grid {
    gap: 14px;
  }

  .consult-band {
    min-height: auto;
    padding: 74px var(--gutter);
  }
}

@media (max-width: 640px) {
  .steps {
    padding: 72px 20px;
  }

  .step {
    min-height: auto;
    padding: 24px 22px;
  }

  .step span {
    font-size: 38px;
  }

  .consult-band {
    padding: 70px 20px;
  }
}

@media (pointer: coarse) {
  .lava-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #lava-canvas,
  .lava-cursor {
    display: none;
  }
}

/* Final spacing pass for the steps/CTA sequence. */
.steps {
  padding-top: 64px;
  padding-bottom: 68px;
}

.steps .section-head {
  transform: translateY(-4px);
}

.step-grid {
  margin-top: -2px;
}

.consult-band {
  padding-top: 66px;
  padding-bottom: 66px;
}

@media (max-width: 640px) {
  .steps {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .consult-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }
}

/* Visible redesign pass: stronger composition, cleaner motion, clearer hierarchy. */
body {
  background:
    linear-gradient(180deg, #f4efe7 0%, #f8f6f1 42%, #efe8dc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(18, 22, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 22, 32, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
}

.site-header {
  inset: 16px var(--gutter) auto;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 11, 19, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled {
  background: rgba(8, 11, 19, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.desktop-nav {
  gap: clamp(14px, 1.5vw, 26px);
}

.desktop-nav a {
  transition: color 0.24s ease, transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  min-height: 820px;
  align-items: center;
  padding: 130px var(--gutter) 150px;
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 178, 61, 0.12), transparent 28%),
    linear-gradient(135deg, #070912 0%, #111827 54%, #17120c 100%);
}

.hero__media {
  inset: 112px var(--gutter) 96px auto;
  width: min(42vw, 560px);
  min-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  opacity: 1;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 38px 90px rgba(0, 0, 0, 0.42);
  transform: none;
  animation: none;
}

.hero.section-dark > .hero__media {
  position: absolute;
  z-index: 0;
}

.hero.section-dark > .hero__content {
  position: relative;
  z-index: 3;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 9, 18, 0.05) 48%, rgba(7, 9, 18, 0.5) 100%),
    radial-gradient(circle at 76% 22%, rgba(255, 178, 61, 0.12), transparent 30%);
}

.hero__media::after {
  content: "UNIQU / CAMPUS ROUTE";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero__content {
  width: min(560px, 48%);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(48px, 4.45vw, 72px);
  line-height: 1;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  color: #ffb23d;
  text-shadow: 0 14px 42px rgba(223, 141, 0, 0.22);
}

.hero__lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.primary-button {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 190, 75, 0.18), transparent 48%),
    linear-gradient(135deg, #df8d00, #f7a918);
  transition:
    transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.primary-button:hover {
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-2px);
}

.primary-button:active {
  transform: translateY(1px) scale(0.985);
}

.program-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin-top: -108px;
}

.program-card {
  min-height: 292px;
  grid-template-rows: 42px auto 1fr;
  border-color: rgba(20, 24, 35, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 242, 0.96)),
    #fff;
  box-shadow:
    0 18px 46px rgba(18, 22, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.program-card::before {
  background:
    linear-gradient(90deg, #df8d00, #ffb23d) left top / 100% 3px no-repeat,
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(223, 141, 0, 0.12), transparent 34%);
}

.program-card:hover,
.program-card.reveal.is-visible:hover {
  border-color: rgba(223, 141, 0, 0.24);
  box-shadow:
    0 30px 74px rgba(18, 22, 32, 0.16),
    0 12px 34px rgba(223, 141, 0, 0.09);
}

.section {
  position: relative;
}

.section:not(.about)::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 22, 32, 0.12), transparent);
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  text-wrap: balance;
}

.section-copy {
  max-width: 720px;
}

.about {
  padding-top: 70px;
}

.about-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: end;
}

.about-copy {
  border-left: 2px solid rgba(223, 141, 0, 0.42);
  padding-left: 28px;
}

.about-photos {
  gap: 18px;
  margin-top: 66px;
}

.about-photo {
  border-radius: 8px;
  box-shadow:
    0 22px 58px rgba(18, 22, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.36s ease,
    box-shadow 0.36s ease;
}

.about-photo:hover {
  filter: saturate(1.06) contrast(1.02);
  transform: translateY(-8px);
  box-shadow: 0 32px 76px rgba(18, 22, 32, 0.2);
}

.why-section {
  padding: 104px var(--gutter);
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 178, 61, 0.1), transparent 26%),
    linear-gradient(135deg, #070912, #111827 64%, #16120d);
}

.why-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.why-card {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  transition:
    background 0.28s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  background: rgba(255, 178, 61, 0.09);
  transform: translateY(-2px);
}

.service-grid,
.case-grid {
  gap: 18px;
}

.service-item,
.case-card,
.faq-item,
.integration-shell {
  border-radius: 8px;
}

.service-item {
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(223, 141, 0, 0.07), transparent 34%),
    #fff;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-item:hover {
  border-color: rgba(223, 141, 0, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(18, 22, 32, 0.13);
}

.country-grid {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.country {
  border-radius: 8px;
  min-height: 640px;
  box-shadow: 0 26px 70px rgba(18, 22, 32, 0.16);
}

.country:hover {
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-10px);
}

.country-detail-stage,
.country-detail-tab {
  border-radius: 8px;
}

.country-detail-tab:hover,
.country-detail-tab:focus-visible {
  transform: translateX(8px);
}

.country-detail-tab.is-active {
  transform: translateX(12px);
}

.move-fear {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 239, 231, 0.92)),
    #f7f4ef;
}

.move-fear__board,
.student-channel__layout {
  border-radius: 8px;
  overflow: hidden;
}

.move-card {
  border-radius: 8px;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.move-card:hover {
  border-color: rgba(223, 141, 0, 0.2);
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(18, 22, 32, 0.12);
}

.student-channel {
  background:
    radial-gradient(circle at 18% 18%, rgba(223, 141, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f4ef, #eee6da);
}

.student-channel .youtube-player,
.student-channel__panel {
  border-radius: 8px;
}

.steps {
  margin-top: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 178, 61, 0.08), transparent 24%),
    linear-gradient(135deg, #070912, #101827 58%, #16120d);
}

.step {
  border-radius: 8px;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.step:hover,
.step.is-pointer {
  transform: translateY(-6px);
}

.consult-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-height: 330px;
  background:
    radial-gradient(circle at 82% 46%, rgba(255, 178, 61, 0.11), transparent 26%),
    linear-gradient(135deg, #080a12, #101827 56%, #18130d);
}

.consult-band__text {
  max-width: 760px;
}

.consult-band .primary-button {
  min-width: 250px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 10%, rgba(223, 141, 0, 0.1), transparent 24%),
    #05070d;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__media {
    transition:
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.6s ease;
  }

  .hero:hover .hero__media {
    transform: translateY(-8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 48px 108px rgba(0, 0, 0, 0.48);
  }

  .reveal {
    transform: translateY(32px) scale(0.985);
  }

  .reveal.is-visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .hero__content {
    width: min(720px, 100%);
  }

  .hero__media {
    opacity: 0.28;
    inset: 0;
    width: auto;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__media::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    inset: 10px 14px auto;
  }

  .hero {
    min-height: 760px;
    padding-top: 120px;
  }

  .program-strip,
  .country-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .country {
    min-height: 520px;
  }

  .consult-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
  }

  .hero {
    min-height: 700px;
    padding: 112px 20px 132px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .program-strip {
    margin-top: -86px;
  }

  .about-copy {
    padding-left: 18px;
  }

  .country,
  .service-item,
  .case-card,
  .step {
    border-radius: 8px;
  }
}

@media (max-width: 980px) {
  .about-layout,
  .about-photos,
  .why-grid,
  .why-list,
  .service-grid,
  .case-grid,
  .country-detail-tabs,
  .country-detail-panel,
  .country-detail__columns,
  .student-channel__layout,
  .move-fear__head,
  .move-fear__board,
  .move-fear__grid,
  .step-grid,
  .consult-band {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .about-copy,
  .country-detail-tabs,
  .country-detail-stage,
  .university-shell,
  .student-channel__layout,
  .move-fear__board,
  .consult-band {
    min-width: 0;
    max-width: 100%;
  }

  .country-detail-tabs,
  .university-shell {
    overflow: hidden;
  }

  .country-detail-nav,
  .university-track {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .mobile-menu {
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  .about {
    padding-top: 56px;
  }

  .about-layout {
    gap: 28px;
  }

  .about-copy {
    width: 100%;
    padding-left: 16px;
  }

  .about-photos {
    gap: 14px;
    margin-top: 34px;
  }

  .about-photo,
  .about-photo:nth-child(2),
  .about-photo:nth-child(3) {
    min-height: 300px;
  }
}

/* Emergency structure restore after the failed photo-panel pass. */
body {
  background: var(--paper);
}

body::before {
  display: none !important;
}

.site-header {
  inset: 0 0 auto !important;
  height: 78px;
  padding: 0 var(--gutter);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(10, 14, 25, 0.5);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(13, 17, 28, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.hero {
  display: block;
  min-height: 760px;
  padding: 150px var(--gutter) 170px;
}

.hero__media {
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 0.4 !important;
  background:
    radial-gradient(circle at 78% 28%, rgba(223, 141, 0, 0.18), transparent 36%),
    radial-gradient(circle at 12% 74%, rgba(233, 194, 125, 0.1), transparent 32%),
    linear-gradient(135deg, #070912, #101827 58%, #15100c) !important;
  box-shadow: none !important;
  transform: scale(1.02);
}

.hero__media::before,
.hero__media::after {
  display: none !important;
}

.hero:hover .hero__media {
  box-shadow: none !important;
  transform: scale(1.04);
}

.hero__content {
  width: min(820px, 100%);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: 1.04;
}

.program-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: -92px auto 90px;
}

.program-card {
  min-height: 258px;
  border-radius: 0;
  grid-template-rows: 48px 68px 1fr;
}

.about {
  padding-top: 36px;
}

.about-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: start;
}

.about-copy {
  border-left: 0;
  padding-left: 0;
}

.about-photos {
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 22px;
  margin-top: 58px;
}

.why-grid,
.why-list {
  grid-template-columns: repeat(4, 1fr);
}

.country-grid {
  grid-template-columns: repeat(3, 1fr);
}

.country::before,
.country--china::before,
.country--italy::before,
.country--turkey::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(223, 141, 0, 0.18), transparent 34%),
    radial-gradient(circle at 16% 88%, rgba(233, 194, 125, 0.1), transparent 32%),
    linear-gradient(135deg, #090c15, #101827 58%, #1b1209) !important;
}

.country:nth-child(2)::before {
  background:
    radial-gradient(circle at 74% 22%, rgba(233, 194, 125, 0.16), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(223, 141, 0, 0.09), transparent 32%),
    linear-gradient(135deg, #090b13, #172030 56%, #20180e) !important;
}

.country:nth-child(3)::before {
  background:
    radial-gradient(circle at 82% 16%, rgba(223, 141, 0, 0.14), transparent 32%),
    radial-gradient(circle at 18% 86%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(135deg, #080a12, #111b2c 54%, #1d130c) !important;
}

.country-detail-visual::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(223, 141, 0, 0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(233, 194, 125, 0.1), transparent 32%),
    linear-gradient(135deg, #080a12, #101827 58%, #1a120a) !important;
}

.country-detail-panel:nth-child(2) .country-detail-visual::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(233, 194, 125, 0.16), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(223, 141, 0, 0.08), transparent 32%),
    linear-gradient(135deg, #090b13, #172030 58%, #20180e) !important;
}

.country-detail-panel:nth-child(3) .country-detail-visual::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(223, 141, 0, 0.14), transparent 32%),
    radial-gradient(circle at 16% 84%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(135deg, #080a12, #111b2c 56%, #1d130c) !important;
}

.country,
.country-detail-stage,
.country-detail-tab,
.service-item,
.case-card,
.step {
  border-radius: 0;
}

.consult-band {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 0;
  padding: 72px var(--gutter);
  background:
    radial-gradient(circle at 82% 46%, rgba(255, 178, 61, 0.1), transparent 26%),
    linear-gradient(135deg, #080a12, #101827 56%, #18130d);
}

.consult-band__text {
  width: min(720px, 100%);
  max-width: 720px;
}

.consult-band .primary-button {
  min-width: 230px;
}

.lava-cursor {
  width: 6px;
  height: 6px;
  background: rgba(223, 141, 0, 0.92);
  box-shadow: 0 0 5px rgba(223, 141, 0, 0.18);
}

.lava-cursor::after {
  inset: -4px;
  background: radial-gradient(circle, rgba(223, 141, 0, 0.08), transparent 64%);
}

.lava-cursor.is-button,
.lava-cursor.is-link,
.lava-cursor.is-media {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px rgba(223, 141, 0, 0.12);
}

@media (max-width: 1120px) and (min-width: 741px) {
  .program-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -76px;
  }

  .program-card {
    min-height: 236px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
    gap: 38px;
  }

  .services {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 38px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 54px;
  }

  .why-grid,
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-band {
    align-items: flex-start;
  }

  .move-fear__head {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
    gap: 38px;
  }

  .move-fear__board {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 48px;
  }

  .move-fear__summary,
  .move-fear__timeline {
    min-height: 360px;
  }

  .move-fear__summary {
    padding: 28px;
  }

  .move-fear__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .move-fear__timeline div {
    min-height: 210px;
    padding: 24px;
  }

  .move-fear__timeline div + div {
    border-left: 1px solid rgba(20, 24, 35, 0.12);
    border-top: 0;
  }

  .move-fear__timeline div:nth-child(odd) {
    border-left: 0;
  }

  .move-fear__timeline div:nth-child(n + 3) {
    border-top: 1px solid rgba(20, 24, 35, 0.12);
  }

  .move-fear__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .move-card {
    min-height: 190px;
    padding: 22px;
  }
}

/* Motion stabilization pass: one transform stack for hover, tilt and press states. */
.primary-button,
.carousel-button,
.icon-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.primary-button > span,
.primary-button > i,
.primary-button > svg,
.carousel-button > i,
.carousel-button > svg,
.icon-button > i,
.icon-button > svg {
  position: relative;
  z-index: 1;
}

.primary-button,
.carousel-button,
.icon-button,
.ghost-link,
.integration-link {
  --raise-y: 0px;
  --press-scale: 1;
  transform: translate3d(var(--mag-x, 0px), calc(var(--mag-y, 0px) + var(--raise-y)), 0) scale(var(--press-scale));
}

.primary-button:hover,
.primary-button:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  --raise-y: -3px;
  transform: translate3d(var(--mag-x, 0px), calc(var(--mag-y, 0px) + var(--raise-y)), 0) scale(var(--press-scale));
}

.primary-button:active,
.carousel-button:active,
.icon-button:active {
  --raise-y: 1px;
  --press-scale: 0.985;
  transform: translate3d(var(--mag-x, 0px), calc(var(--mag-y, 0px) + var(--raise-y)), 0) scale(var(--press-scale));
}

.button-ripple {
  z-index: 0;
}

.motion-card {
  --card-raise: 0px;
  --card-scale: 1;
}

.program-card.motion-card,
.service-item.motion-card,
.move-card.motion-card,
.country.motion-card,
.why-card.motion-card,
.about-photo.motion-card,
.case-card.motion-card,
.review.motion-card,
.university-card.motion-card,
.step.motion-card {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(var(--card-raise)) scale(var(--card-scale));
  transition:
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.program-card.motion-card:hover,
.program-card.motion-card.is-pointer,
.service-item.motion-card:hover,
.service-item.motion-card.is-pointer,
.move-card.motion-card:hover,
.move-card.motion-card.is-pointer,
.country.motion-card:hover,
.country.motion-card.is-pointer,
.why-card.motion-card:hover,
.why-card.motion-card.is-pointer,
.about-photo.motion-card:hover,
.about-photo.motion-card.is-pointer,
.case-card.motion-card:hover,
.case-card.motion-card.is-pointer,
.review.motion-card:hover,
.review.motion-card.is-pointer,
.university-card.motion-card:hover,
.university-card.motion-card.is-pointer,
.step.motion-card:hover,
.step.motion-card.is-pointer {
  --card-raise: -7px;
  --card-scale: 1.01;
}

.country-detail-panel {
  pointer-events: none;
}

.country-detail-panel.is-active {
  pointer-events: auto;
}

.faq-item p {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition:
    grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease;
}

.faq-item[open] p {
  grid-template-rows: 1fr;
}

@media (max-width: 740px) {
  .site-header {
    inset: 0 0 auto !important;
    height: 70px;
    padding: 0 18px;
  }

  .hero {
    min-height: 680px;
    padding: 118px 20px 145px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .program-strip,
  .country-grid,
  .why-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .program-strip {
    width: calc(100% - 40px);
    gap: 16px;
    margin-top: -84px;
  }

  .about-layout,
  .about-photos,
  .consult-band {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 28px;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-photos {
    gap: 14px;
    margin-top: 34px;
  }

  .consult-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 78px 20px;
  }
}

/* Color and media restoration for the sections called out in QA. */
.services {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0;
  align-items: start;
}

.services .section-head {
  width: min(760px, 100%);
}

.services .section-copy {
  grid-column: 1;
  width: min(650px, 100%);
  margin: 22px 0 0;
  justify-self: start;
}

.services .service-grid {
  grid-column: 1;
  margin-top: 56px;
}

.country::before {
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.08), rgba(7, 10, 18, 0.84)),
    radial-gradient(circle at var(--spot-x, 76%) var(--spot-y, 28%), rgba(255, 178, 61, 0.32), transparent 28%),
    var(--country-image) center / cover !important;
  filter: saturate(1.02) contrast(1.02);
}

.country:nth-child(2)::before,
.country:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.08), rgba(7, 10, 18, 0.84)),
    radial-gradient(circle at var(--spot-x, 76%) var(--spot-y, 28%), rgba(255, 178, 61, 0.28), transparent 28%),
    var(--country-image) center / cover !important;
}

.country:hover::before,
.country.is-pointer::before {
  filter: saturate(1.12) contrast(1.05);
}

.country-details {
  background:
    radial-gradient(circle at 88% 12%, rgba(223, 141, 0, 0.11), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(209, 161, 89, 0.1), transparent 28%),
    linear-gradient(180deg, #f8f6f1, #efe8dc);
}

.country-details .eyebrow {
  color: #d28708;
}

.country-detail-stage {
  border-color: rgba(223, 141, 0, 0.18);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 178, 61, 0.1), transparent 30%),
    #fff;
  box-shadow:
    0 28px 74px rgba(18, 22, 32, 0.12),
    0 12px 34px rgba(223, 141, 0, 0.08);
}

.country-detail-tab {
  border-color: rgba(223, 141, 0, 0.14);
}

.country-detail-tab.is-active {
  border-color: rgba(255, 178, 61, 0.5);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 178, 61, 0.28), transparent 36%),
    linear-gradient(145deg, #080a12, #111827 58%, #281b0c);
}

.country-detail-panel .country-detail-visual::before,
.country-detail-panel:nth-child(1) .country-detail-visual::before,
.country-detail-panel:nth-child(2) .country-detail-visual::before,
.country-detail-panel:nth-child(3) .country-detail-visual::before {
  background: var(--country-detail-image) center / cover !important;
  filter: saturate(1.08) contrast(1.02);
}

.country-detail-panel.is-active .country-detail-visual::before {
  filter: saturate(1.14) contrast(1.04);
}

.country-detail-visual::after {
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.08), rgba(7, 10, 18, 0.84)),
    radial-gradient(circle at 22% 78%, rgba(223, 141, 0, 0.42), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(255, 178, 61, 0.2), transparent 28%) !important;
}

.country-detail-panel.is-active {
  animation: countryPanelEnter 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-content > * {
  animation: countryContentEnter 0.54s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-content > *:nth-child(2) {
  animation-delay: 60ms;
}

.country-detail-panel.is-active .country-detail-content > *:nth-child(3) {
  animation-delay: 120ms;
}

.student-channel {
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 178, 61, 0.2), transparent 30%),
    radial-gradient(circle at 14% 70%, rgba(223, 141, 0, 0.16), transparent 34%),
    linear-gradient(135deg, #070912, #101827 56%, #24180c) !important;
}

.student-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
  background:
    linear-gradient(90deg, rgba(255, 178, 61, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.student-channel .eyebrow,
.student-channel .section-head em {
  color: var(--accent-2);
}

.student-channel .section-head h2 {
  color: #fff;
}

.student-channel .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.student-channel .youtube-player {
  border-color: rgba(255, 178, 61, 0.22);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 12px 44px rgba(223, 141, 0, 0.12);
}

.student-channel__panel,
.student-channel .review,
.student-channel .video-card {
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 22%), rgba(255, 178, 61, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 178, 61, 0.18);
}

@keyframes countryPanelEnter {
  from {
    opacity: 0;
    transform: translateX(38px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes countryContentEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final QA polish: restored color, faster reveals, and visible country switching. */
.student-channel .reveal {
  --stagger: 0ms !important;
  transition-delay: 0ms !important;
}

.student-channel .section-head.reveal.is-visible,
.student-channel .section-copy.reveal.is-visible,
.student-channel__layout.reveal.is-visible,
.student-channel .review.reveal.is-visible,
.student-channel .video-card.reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.student-channel .section-head {
  max-width: 820px;
}

.student-channel .eyebrow {
  color: #ffb23d !important;
  text-shadow: 0 0 24px rgba(255, 178, 61, 0.32);
}

.student-channel .section-head h2 {
  color: #fff !important;
  background: linear-gradient(96deg, #fff 0%, #fff 46%, #ffb23d 62%, #fff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  -webkit-text-fill-color: transparent;
}

.student-channel .section-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84) !important;
}

.student-channel__panel,
.student-channel .review,
.student-channel .video-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.24),
    0 10px 34px rgba(223, 141, 0, 0.11);
}

.student-channel__panel:hover,
.student-channel .review:hover,
.student-channel .video-card:hover {
  border-color: rgba(255, 178, 61, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 34px 90px rgba(0, 0, 0, 0.3),
    0 16px 48px rgba(223, 141, 0, 0.18);
}

.country-details {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 178, 61, 0.17), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(223, 141, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f6f1 0%, #f0e7d9 100%) !important;
}

.country-detail-nav {
  position: relative;
}

.country-detail-tab {
  transition:
    color 0.26s ease,
    background 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.country-detail-tab:hover,
.country-detail-tab:focus-visible {
  border-color: rgba(255, 178, 61, 0.42) !important;
  box-shadow:
    0 22px 46px rgba(18, 22, 32, 0.1),
    0 8px 28px rgba(223, 141, 0, 0.12) !important;
}

.country-detail-tab.is-active {
  animation: countryTabActivate 0.44s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow:
    0 28px 68px rgba(18, 22, 32, 0.22),
    0 12px 38px rgba(223, 141, 0, 0.18) !important;
}

.country-detail-tab.is-active::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 44%, transparent 64%);
  transform: translateX(-115%);
  animation: countryTabSheen 0.84s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 178, 61, 0.2), transparent),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-115%);
}

.country-detail-tabs.is-switching .country-detail-stage::after {
  animation: countryStageSweep 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-visual {
  animation: countryImageLift 0.64s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-visual strong,
.country-detail-panel.is-active .country-detail-visual span {
  animation: countryVisualText 0.56s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-visual strong {
  animation-delay: 80ms;
}

@keyframes countryTabActivate {
  from {
    transform: translateX(0) scale(0.985);
  }
  to {
    transform: translateX(10px) scale(1);
  }
}

@keyframes countryTabSheen {
  to {
    transform: translateX(115%);
  }
}

@keyframes countryStageSweep {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }
  24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes countryImageLift {
  from {
    opacity: 0.72;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes countryVisualText {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .country-detail-tab.is-active {
    animation-name: countryTabActivateCompact;
  }

  .country-detail-tab:hover,
  .country-detail-tab:focus-visible,
  .country-detail-tab.is-active {
    transform: translateY(-4px) !important;
  }

  .student-channel .section-copy {
    margin-top: 18px;
    max-width: 100%;
  }
}

@keyframes countryTabActivateCompact {
  from {
    transform: translateY(0) scale(0.985);
  }
  to {
    transform: translateY(-4px) scale(1);
  }
}

/* Country detail reference pass: old UniQ palette with cleaner tab motion. */
.country-details {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 86% 10%, rgba(223, 141, 0, 0.075), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(18, 22, 32, 0.045), transparent 30%),
    var(--paper) !important;
}

.country-details::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(18, 22, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 22, 32, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 80%, transparent 100%);
}

.country-details .section-head,
.country-detail-tabs {
  position: relative;
  z-index: 1;
}

.country-details .eyebrow {
  color: var(--accent) !important;
}

.country-details .section-head h2 {
  color: var(--ink);
}

.country-detail-tabs {
  --country-tab-x: 6px;
  --country-tab-y: 6px;
  --country-tab-w: 0px;
  --country-tab-h: 0px;
}

.country-detail-nav {
  position: relative;
  isolation: isolate;
  gap: 8px;
  border: 1px solid rgba(20, 24, 35, 0.08);
  padding: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(18, 22, 32, 0.07);
}

.country-detail-nav::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: var(--country-tab-w);
  height: var(--country-tab-h);
  pointer-events: none;
  border: 1px solid rgba(223, 141, 0, 0.55);
  background:
    linear-gradient(135deg, rgba(223, 141, 0, 0.08), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(223, 141, 0, 0.14);
  transform: translate3d(var(--country-tab-x), var(--country-tab-y), 0);
  transition:
    transform 0.46s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.46s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.46s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease;
}

.country-detail-tab {
  z-index: 1;
  min-height: 108px;
  border-color: transparent !important;
  color: var(--ink);
  background: transparent !important;
  box-shadow: none !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition:
    color 0.26s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.26s ease !important;
}

.country-detail-tab::before {
  width: 3px;
  background: var(--accent);
  transform-origin: center;
}

.country-detail-tab::after {
  display: none !important;
}

.country-detail-tab:hover,
.country-detail-tab:focus-visible {
  color: var(--ink);
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translate3d(4px, 0, 0) scale(1) !important;
}

.country-detail-tab.is-active {
  color: var(--ink);
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: countryTabSettle 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-tab.is-active span {
  color: rgba(223, 141, 0, 0.64);
}

.country-detail-tab.is-active small {
  color: rgba(16, 20, 33, 0.58);
}

.country-detail-stage {
  overflow: hidden;
  border-color: rgba(20, 24, 35, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    #fff !important;
  box-shadow:
    0 18px 46px rgba(18, 22, 32, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.country-detail-stage::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(223, 141, 0, 0.18) 48%, transparent 100%) !important;
  opacity: 0;
  transform: translateX(-110%);
}

.country-detail-tabs.is-switching .country-detail-stage::after {
  animation: countryStageWash 0.54s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel {
  background: #fff;
}

.country-detail-panel.is-active {
  animation: countryPanelSettle 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-visual {
  animation: countryVisualSettle 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-content h3,
.country-detail-panel.is-active .country-detail-content > p,
.country-detail-panel.is-active .country-detail__columns > div {
  animation: countryTextSettle 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.country-detail-panel.is-active .country-detail-content > p {
  animation-delay: 45ms;
}

.country-detail-panel.is-active .country-detail__columns > div:nth-child(1) {
  animation-delay: 90ms;
}

.country-detail-panel.is-active .country-detail__columns > div:nth-child(2) {
  animation-delay: 130ms;
}

.country-detail-content {
  background:
    radial-gradient(circle at 92% 12%, rgba(223, 141, 0, 0.06), transparent 28%),
    #fff;
}

.country-detail-content strong {
  color: var(--accent);
}

@keyframes countryTabSettle {
  from {
    opacity: 0.72;
    transform: translate3d(0, 8px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes countryStageWash {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes countryPanelSettle {
  from {
    opacity: 0;
    transform: translate3d(22px, 0, 0) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes countryVisualSettle {
  from {
    opacity: 0.76;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes countryTextSettle {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .country-detail-nav {
    padding: 6px;
  }

  .country-detail-tab:hover,
  .country-detail-tab:focus-visible,
  .country-detail-tab.is-active {
    transform: translate3d(0, -3px, 0) scale(1) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .country-detail-nav::after,
  .country-detail-tab,
  .country-detail-stage::after,
  .country-detail-panel,
  .country-detail-visual,
  .country-detail-content h3,
  .country-detail-content > p,
  .country-detail__columns > div {
    animation: none !important;
    transition: none !important;
  }
}

/* Services alignment QA: keep the block centered instead of hugging the left side. */
.services {
  grid-template-columns: minmax(0, min(1160px, 100%)) !important;
  justify-content: center;
  scroll-margin-top: 118px;
}

.services::before {
  display: none;
}

.services .section-head,
.services .section-copy,
.services .service-grid {
  grid-column: 1;
  width: 100%;
  max-width: 1160px;
  justify-self: center;
}

.services .section-copy {
  max-width: 650px;
  margin: 22px auto 0 0;
}

.services .service-grid {
  margin-top: 58px;
}

.service-grid {
  align-items: stretch;
}

.service-item {
  display: flex;
  min-height: 258px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(24px, 1.75vw, 28px) !important;
  border: 1px solid rgba(18, 22, 32, 0.08);
}

.service-item span {
  flex: 0 0 auto;
  margin: 0 0 24px;
}

.service-item h3,
.service-item p {
  max-width: 100%;
}

.service-item h3 {
  font-size: clamp(23px, 1.45vw, 24px);
  line-height: 1.16;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

@media (max-width: 740px) {
  .services {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .service-item {
    min-height: 0;
    padding: 24px !important;
  }

  .service-item h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (min-width: 741px) and (max-width: 1120px) {
  .services {
    grid-template-columns: minmax(0, min(920px, calc(100% - clamp(72px, 12vw, 128px)))) !important;
  }

  .services .section-head,
  .services .section-copy,
  .services .service-grid {
    max-width: 920px;
  }
}

/* Student video block QA: no default orange glow, only subtle hover response. */
.student-channel {
  background: linear-gradient(135deg, #070912, #101827 56%, #17120d) !important;
}

.student-channel .youtube-player {
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34) !important;
}

.student-channel__panel,
.student-channel .review,
.student-channel .video-card {
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.24) !important;
}

.student-channel__panel:hover,
.student-channel__panel.is-pointer,
.student-channel .review:hover,
.student-channel .review.is-pointer,
.student-channel .video-card:hover,
.student-channel .video-card.is-pointer {
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 22%), rgba(255, 178, 61, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 178, 61, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 90px rgba(0, 0, 0, 0.3),
    0 12px 34px rgba(223, 141, 0, 0.1) !important;
}

/* FAQ QA: compact editorial header instead of an oversized long headline. */
.faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
}

.faq .section-head {
  width: 100%;
  max-width: 360px;
  padding-top: 4px;
}

.faq .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(223, 141, 0, 0.24);
  color: var(--accent);
  background: rgba(255, 178, 61, 0.08);
}

.faq .section-head h2 {
  max-width: 8.5ch;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.02;
  text-wrap: balance;
}

.faq .section-copy {
  width: min(320px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.faq-list {
  width: 100%;
  margin-top: 0;
  gap: 10px;
}

.faq-item {
  border-color: rgba(20, 24, 35, 0.075);
  box-shadow: 0 12px 28px rgba(18, 22, 32, 0.045);
}

.faq-item summary {
  list-style: none;
  min-height: 64px;
  padding: 18px 64px 18px 22px;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.2;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  right: 22px;
  width: 28px;
  height: 28px;
}

.faq-item p {
  padding: 0 22px 20px;
  font-size: 16px;
  line-height: 1.55;
}

.faq-item:hover,
.faq-item[open] {
  box-shadow: 0 18px 42px rgba(18, 22, 32, 0.08);
}

@media (max-width: 980px) {
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq .section-head {
    max-width: 620px;
  }

  .faq .section-head h2 {
    max-width: none;
  }
}

/* Brand asset integration */
.preloader__mark {
  gap: 0;
}

.logo {
  flex: 0 0 auto;
  min-width: 0;
}

.logo .brand-logo--horizontal {
  display: block;
  width: clamp(144px, 13vw, 176px);
  height: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.preloader__mark .brand-logo--stacked {
  width: clamp(142px, 15vw, 190px);
  height: clamp(142px, 15vw, 190px);
}

.footer .brand-logo--horizontal {
  width: 182px;
  height: 56px;
}

@media (max-width: 740px) {
  .logo .brand-logo--horizontal {
    width: 148px;
    height: 46px;
  }

  .footer .brand-logo--horizontal {
    width: 160px;
    height: 50px;
  }
}

/* Smooth FAQ accordion: avoids native details layout jumps. */
.faq-item {
  overflow: hidden;
}

.faq-item.is-open {
  border-color: rgba(223, 141, 0, 0.22);
  box-shadow: 0 18px 42px rgba(18, 22, 32, 0.08);
  transform: translateY(-2px);
}

.faq-item__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 18px 64px 18px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  transition: color 0.28s ease;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent);
  border: 1px solid rgba(223, 141, 0, 0.24);
  transform: translateY(-50%) rotate(0deg);
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.28s ease,
    color 0.28s ease;
}

.faq-item:hover .faq-item__question,
.faq-item.is-open .faq-item__question {
  color: var(--accent);
}

.faq-item.is-open .faq-item__question::after {
  color: #fff;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease;
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item__answer {
  min-height: 0;
  overflow: hidden;
}

.faq-item__answer > p {
  display: block;
  grid-template-rows: none;
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  transition: none;
}

@media (max-width: 640px) {
  .faq-item__question {
    padding: 20px 58px 20px 20px;
    font-size: 20px;
  }

  .faq-item__question::after {
    right: 20px;
  }

  .faq-item__answer > p {
    padding: 0 20px 22px;
  }
}

/* GPA calculator */
.gpa-calculator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 88px);
  overflow: hidden;
}

.gpa-calculator::before {
  content: "";
  position: absolute;
  inset: 16px var(--gutter) auto auto;
  width: min(420px, 38vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(223, 141, 0, 0.13), transparent 68%);
  filter: blur(8px);
}

.gpa-calculator__intro,
.gpa-calculator__shell {
  position: relative;
  z-index: 1;
}

.gpa-calculator__intro .section-copy {
  max-width: 440px;
  margin-top: 18px;
}

.gpa-calculator__intro h2 {
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  text-wrap: balance;
}

.gpa-calculator__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.4fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(20, 24, 35, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 12%), rgba(255, 178, 61, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 232, 0.92));
  box-shadow: 0 28px 76px rgba(18, 22, 32, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.32s ease;
}

.gpa-calculator__shell:hover {
  box-shadow: 0 34px 88px rgba(18, 22, 32, 0.16);
}

.gpa-form {
  display: grid;
  gap: 10px;
}

.gpa-form__head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  padding: 4px 2px 2px;
}

.gpa-form__head span {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.gpa-form__head small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.gpa-form__counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gpa-count {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(20, 24, 35, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.gpa-count:focus-within {
  border-color: rgba(223, 141, 0, 0.34);
  box-shadow: 0 12px 28px rgba(223, 141, 0, 0.12);
  transform: translateY(-1px);
}

.gpa-count span {
  min-height: 2.8em;
  color: rgba(16, 20, 33, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-wrap: balance;
}

.gpa-count input {
  min-width: 0;
  min-height: 62px;
  padding: 0 8px;
  border: 1px solid rgba(20, 24, 35, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.gpa-count input[aria-invalid="true"] {
  border-color: rgba(174, 49, 49, 0.72);
  box-shadow: 0 0 0 3px rgba(174, 49, 49, 0.1);
}

.gpa-form__error {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid #ae3131;
  color: #7c2727;
  background: rgba(174, 49, 49, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.gpa-form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gpa-form__actions .primary-button,
.gpa-reset {
  width: 100%;
  min-height: 50px;
}

.gpa-reset {
  border: 1px solid rgba(20, 24, 35, 0.14);
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.gpa-reset:hover,
.gpa-reset:focus-visible {
  border-color: rgba(223, 141, 0, 0.42);
  background: #fff;
  transform: translateY(-1px);
}

.gpa-reset:active {
  transform: translateY(1px) scale(0.99);
}

.gpa-result {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 178, 61, 0.16), transparent 32%),
    linear-gradient(145deg, #070912 0%, #101827 58%, #171b29 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 46px rgba(9, 13, 24, 0.16);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    background 0.32s ease;
}

.gpa-result.is-updating {
  animation: gpaResultPulse 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.gpa-result__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gpa-result__metrics {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.gpa-result__metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gpa-result__metric span {
  max-width: 130px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.gpa-result__metric strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.gpa-result__metric--primary strong {
  color: var(--accent-2);
  font-size: clamp(34px, 3.5vw, 48px);
}

.gpa-result__meter {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.gpa-result__meter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(255, 178, 61, 0.46);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.gpa-result p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.gpa-result em {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

@keyframes gpaResultPulse {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  45% {
    transform: scale(1.015);
    box-shadow: 0 18px 34px rgba(223, 141, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .gpa-calculator,
  .gpa-calculator__shell {
    grid-template-columns: 1fr;
  }

  .gpa-calculator__intro .section-copy {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .gpa-calculator {
    padding-top: 54px;
  }

  .gpa-calculator__shell {
    padding: 12px;
  }

  .gpa-form__head {
    gap: 4px;
  }

  .gpa-count {
    padding: 9px 7px;
  }

  .gpa-count span {
    font-size: 10px;
  }

  .gpa-form__actions {
    grid-template-columns: 1fr;
  }
}

/* Country inner pages */
.country-page--china {
  --country-hero-image: url("/assets/photos/students-china-cards.webp");
  --country-accent: #df8d00;
}

.country-page--turkey {
  --country-hero-image: url("/assets/photos/students-turkey-street.webp");
  --country-accent: #d98214;
}

.country-page--italy {
  --country-hero-image: url("https://images.unsplash.com/photo-1529260830199-42c24126f198?auto=format&fit=crop&w=1800&q=85");
  --country-accent: #c77913;
}

.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.country-hero {
  position: relative;
  min-height: auto;
  padding: clamp(112px, 9vw, 142px) var(--gutter) clamp(48px, 6vw, 78px);
  overflow: hidden;
  isolation: isolate;
}

.country-hero::before,
.country-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.country-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.62) 48%, rgba(5, 7, 13, 0.28)),
    var(--country-hero-image) center / cover;
  transform: scale(1.03);
}

.country-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(223, 141, 0, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(9, 13, 24, 0.08), var(--night));
}

.country-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
}

.country-hero__content {
  max-width: 760px;
}

.country-crumb {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.country-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 0.98;
  text-wrap: balance;
}

.country-hero__content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
}

.country-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.country-hero__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 12%), rgba(255, 178, 61, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.country-hero__panel span,
.country-program-card small {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.country-hero__panel strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.country-hero__panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.country-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--container);
  margin: clamp(42px, 6vw, 72px) auto 0;
}

.country-hero__stats article,
.country-page-card,
.country-program-card,
.country-requirements__list article {
  border: 1px solid rgba(20, 24, 35, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.country-hero__stats article {
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.country-hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}

.country-hero__stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.country-overview,
.country-programs,
.country-requirements {
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

.country-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.country-page-card {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 241, 232, 0.74));
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.country-page-card:hover,
.country-page-card:focus-within {
  border-color: rgba(223, 141, 0, 0.22);
  box-shadow: 0 24px 52px rgba(18, 22, 32, 0.12);
  transform: translateY(-4px);
}

.country-page-card span,
.country-requirements__list span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--country-accent, var(--accent));
  font-size: 12px;
  font-weight: 900;
}

.country-page-card h3,
.country-program-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.08;
}

.country-page-card p,
.country-program-card li,
.country-requirements__list p,
.country-requirements__intro p {
  color: var(--muted);
}

.country-programs {
  background:
    radial-gradient(circle at 88% 18%, rgba(223, 141, 0, 0.1), transparent 32%),
    #f0ece4;
}

.country-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.country-program-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.country-program-card {
  display: grid;
  align-content: start;
  min-height: 340px;
  padding: 28px;
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 18%), rgba(255, 178, 61, 0.16), transparent 38%),
    #fff;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.country-program-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.country-program-card li {
  position: relative;
  padding-left: 24px;
}

.country-program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--country-accent, var(--accent));
}

.country-requirements {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 2.8vw, 34px);
  align-items: stretch;
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(18px, 3vw, 34px);
  isolation: isolate;
}

.country-requirements::after {
  content: "";
  position: absolute;
  inset: clamp(42px, 5vw, 64px) var(--gutter) 0;
  z-index: -1;
  border: 1px solid rgba(20, 24, 35, 0.07);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 12%, rgba(223, 141, 0, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(240, 236, 228, 0.72));
  box-shadow: 0 30px 76px rgba(18, 22, 32, 0.08);
  pointer-events: none;
}

.country-requirements > * {
  position: relative;
  z-index: 1;
}

.country-requirements__intro {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(26px, 3.2vw, 38px);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 178, 61, 0.18), transparent 34%),
    linear-gradient(145deg, #080d19, #171b29);
  overflow: hidden;
}

.country-requirements__intro::before {
  content: "";
  position: absolute;
  inset: auto -18% -36% auto;
  width: min(320px, 36vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 141, 0, 0.3), transparent 64%);
  filter: blur(18px);
  pointer-events: none;
}

.country-requirements__intro .eyebrow {
  color: var(--accent-2);
}

.country-requirements__intro h2 {
  margin: 0;
  max-width: 420px;
  color: #fff;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 0.98;
}

.country-requirements__list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 35, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.country-requirements__list article {
  display: grid;
  grid-template-columns: 48px minmax(170px, 0.82fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 108px;
  padding: 22px 26px;
  border: 0;
  border-bottom: 1px solid rgba(20, 24, 35, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 20%), rgba(255, 178, 61, 0.08), transparent 34%),
    transparent;
  transition:
    background 0.24s ease,
    transform 0.24s ease;
}

.country-requirements__list article:last-child {
  border-bottom: 0;
}

.country-requirements__list span {
  margin: 0;
  box-shadow: 0 10px 24px rgba(223, 141, 0, 0.22);
}

.country-requirements__list strong {
  font-size: 20px;
  line-height: 1.15;
}

.country-requirements__list p {
  margin: 0;
}

.country-requirements__intro p,
.country-requirements__list p {
  max-width: 48ch;
}

.country-requirements__intro p {
  color: rgba(255, 255, 255, 0.68);
}

.country-requirements__list article:hover,
.country-requirements__list article:focus-within {
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 20%), rgba(255, 178, 61, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.52);
  transform: translateX(3px);
}

.country-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  margin: clamp(18px, 2.4vw, 28px) auto clamp(42px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}

.section-dark > .section-aura,
.country-cta > .section-aura {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.country-cta__text {
  max-width: 760px;
}

.country-cta h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1;
}

.country-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.country-cta .primary-button {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .country-hero__grid,
  .country-requirements,
  .country-cta {
    grid-template-columns: 1fr;
  }

  .country-page-grid,
  .country-program-grid,
  .country-program-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-requirements__intro {
    position: static;
  }

  .country-cta .primary-button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .country-hero {
    padding-top: 116px;
  }

  .country-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .country-hero__stats,
  .country-page-grid,
  .country-program-grid,
  .country-program-grid--compact,
  .country-requirements__list article {
    grid-template-columns: 1fr;
  }

  .country-requirements__list article {
    align-items: start;
  }

  .country-cta {
    margin-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gpa-result.is-updating {
    animation: none;
  }
}

/* Interactive program routes and consultation form */
.program-card {
  grid-template-rows: 34px auto minmax(72px, 1fr) auto;
  color: var(--ink);
  cursor: pointer;
}

.program-card__action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 24, 35, 0.1);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.program-card__action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-card__action,
.program-card:focus-visible .program-card__action {
  color: var(--accent);
  border-color: rgba(223, 141, 0, 0.28);
}

.program-card:hover .program-card__action svg,
.program-card:focus-visible .program-card__action svg {
  transform: translate(3px, -3px);
}

.program-card:focus-visible {
  outline: 3px solid rgba(223, 141, 0, 0.42);
  outline-offset: 4px;
}

.modal {
  padding: clamp(12px, 3vw, 32px);
}

.modal__backdrop {
  background:
    radial-gradient(circle at 20% 80%, rgba(223, 141, 0, 0.16), transparent 32%),
    rgba(4, 6, 12, 0.82);
}

.modal__panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1.16fr);
  width: min(920px, 100%);
  max-height: min(720px, calc(100dvh - 48px));
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 44px 120px rgba(2, 5, 12, 0.58);
}

.modal__close {
  z-index: 3;
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-color: rgba(16, 20, 33, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.modal__intro {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 48px 42px 38px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 178, 61, 0.23), transparent 30%),
    linear-gradient(155deg, #151927 0%, #090d18 72%);
}

.modal__intro::after {
  content: "U";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -92px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 330px;
  font-weight: 800;
  line-height: 1;
}

.modal__intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
}

.modal__intro .eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(255, 178, 61, 0.1);
}

.modal__panel .modal__intro h2 {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.3vw, 42px);
  letter-spacing: -0.04em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.modal__panel .modal__intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.65;
}

.modal__benefits {
  display: grid;
  gap: 13px;
  margin: 32px 0 36px;
  padding: 0;
  list-style: none;
}

.modal__benefits li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.modal__benefits svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  color: #16120c;
  background: var(--accent-2);
}

.modal__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__trust strong {
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: 23px;
}

.modal__trust span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.35;
}

.modal__form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px 42px;
  background:
    radial-gradient(circle at 100% 100%, rgba(223, 141, 0, 0.07), transparent 32%),
    #fff;
}

.lead-form__head {
  display: grid;
  gap: 6px;
}

.lead-form__head > span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.lead-form__head small {
  color: var(--muted);
  font-size: 12px;
}

.lead-form {
  gap: 17px;
  margin-top: 26px;
}

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

.lead-form label {
  gap: 8px;
  color: #3e414a;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.lead-form input,
.lead-form select {
  min-height: 56px;
  padding-inline: 16px;
  border-color: rgba(16, 20, 33, 0.13);
  border-radius: 12px;
  color: var(--ink);
  background: #faf9f6;
  font-size: 14px;
  font-weight: 600;
}

.lead-form input::placeholder {
  color: #9b9ca2;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(223, 141, 0, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(223, 141, 0, 0.1);
}

.lead-form__selection {
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(223, 141, 0, 0.18);
  border-radius: 10px;
  color: #72511a;
  background: rgba(255, 178, 61, 0.1);
  font-size: 12px;
}

.lead-form__selection:not([hidden]) {
  display: flex;
}

.lead-form__selection svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.lead-form__error {
  padding: 11px 13px;
  border-left: 3px solid #b94c3e;
  border-radius: 4px 10px 10px 4px;
  color: #8b3328;
  background: #fff0ed;
  font-size: 12px;
  font-weight: 650;
}

.lead-form__submit {
  width: 100%;
  min-height: 58px;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(223, 141, 0, 0.22);
}

.lead-form__submit:disabled {
  cursor: wait;
  filter: grayscale(0.2);
  opacity: 0.7;
}

.lead-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #93949a;
  font-size: 10px;
  line-height: 1.45;
}

.lead-form__privacy svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: #72747d;
}

.success-state {
  margin: 0;
  padding: 20px 4px;
  background: transparent;
}

.success-state__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #fff;
  background: #347b5f;
  box-shadow: 0 12px 30px rgba(52, 123, 95, 0.22);
}

.success-state__icon svg {
  width: 28px;
  height: 28px;
  margin: 0;
  color: inherit;
}

.success-state .eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
}

.success-state h3 {
  font-size: 30px;
  line-height: 1.08;
  text-wrap: balance;
}

.success-state .secondary-button {
  margin-top: 18px;
  border-radius: 10px;
}

.modal.is-success .lead-form__head {
  display: none;
}

@media (max-width: 760px) {
  .modal {
    place-items: end center;
    padding: 0;
  }

  .modal__panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 94dvh;
    border: 0;
    border-radius: 22px 22px 0 0;
  }

  .modal__intro {
    min-height: auto;
    padding: 32px 24px 26px;
  }

  .modal__intro .eyebrow {
    margin-bottom: 16px;
  }

  .modal__panel .modal__intro h2 {
    padding-right: 38px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .modal__panel .modal__intro > p:not(.eyebrow),
  .modal__benefits,
  .modal__trust {
    display: none;
  }

  .modal__form-side {
    padding: 28px 24px max(28px, env(safe-area-inset-bottom));
  }

  .lead-form__head > span {
    font-size: 22px;
  }

  .lead-form {
    margin-top: 20px;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .modal__intro {
    padding: 26px 20px 22px;
  }

  .modal__form-side {
    padding-inline: 20px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 52px;
  }
}

/* 2026 trust-first landing refresh */
.hero {
  min-height: 760px;
  padding-top: 132px;
  padding-bottom: 128px;
}

.hero__media {
  opacity: 0.34 !important;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.68) 54%, rgba(5, 7, 13, 0.36) 100%),
    url("assets/photos/students-airport.webp") center 42% / cover !important;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 5vw, 68px);
}

.hero__lead {
  max-width: 760px;
  margin-top: 22px;
}

.hero-journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 28px 0 0;
  padding: 1px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-journey li {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 15px 12px;
  background: rgba(7, 9, 18, 0.76);
}

.hero-journey svg {
  width: 18px;
  height: 18px;
  color: var(--accent-2);
}

.hero-journey span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero__actions {
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.hero-proof span {
  position: relative;
  padding-left: 13px;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
}

.hero-proof strong {
  color: #fff;
}

.program-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: -64px auto 54px;
  padding: 1px;
  background: rgba(20, 24, 35, 0.1);
}

.program-card {
  min-height: 205px;
  padding: 22px 18px;
  grid-template-rows: 34px auto 1fr;
}

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

.program-card p {
  font-size: 13px;
}

.cases {
  padding-top: 40px;
}

.trust-section {
  padding-top: 98px;
  padding-bottom: 108px;
  background: #f3f0e9;
}

.trust-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: end;
}

.trust-section__head .section-copy {
  margin: 0;
}

.trust-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 18px;
  margin-top: 48px;
}

.team-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(20, 24, 35, 0.1);
}

.team-role-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 28px;
  background: #fff;
}

.team-role-grid svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.team-role-grid strong {
  max-width: 260px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.08;
}

.team-role-grid span,
.trust-fact small {
  color: var(--muted);
}

.trust-facts {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.trust-fact {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 28px;
  background: #0b0f18;
}

.trust-fact > span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-fact strong {
  font-size: 17px;
  line-height: 1.35;
}

.trust-fact small {
  color: rgba(255, 255, 255, 0.58);
}

.trust-fact--legal {
  background: #16120c;
}

.proof-request {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(20, 24, 35, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.proof-request__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--accent);
  background: rgba(223, 141, 0, 0.1);
}

.proof-request__icon svg {
  width: 28px;
  height: 28px;
}

.proof-request > div:nth-child(2) > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-request h3 {
  margin: 7px 0 8px;
  font-family: var(--font-display);
  font-size: 23px;
}

.proof-request p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.secondary-button:hover {
  color: #fff;
  background: var(--ink);
}

.lead-form .primary-button {
  min-height: 62px;
  height: auto;
  padding-block: 14px;
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .program-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-section__head,
  .trust-section__layout,
  .proof-request {
    grid-template-columns: 1fr;
  }

  .proof-request .secondary-button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 780px;
    padding: 108px 20px 118px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero-journey {
    margin-top: 22px;
  }

  .hero-journey li {
    padding: 12px 10px;
  }

  .hero-proof {
    display: none;
  }

  .hero__actions .primary-button {
    width: 100%;
  }

  .program-strip {
    grid-template-columns: 1fr;
    margin-top: -54px;
  }

  .team-role-grid {
    grid-template-columns: 1fr;
  }

  .team-role-grid article {
    min-height: auto;
  }
}

.china-budget {
  padding-top: 106px;
  padding-bottom: 98px;
  background:
    radial-gradient(circle at 88% 12%, rgba(223, 141, 0, 0.16), transparent 30%),
    #080b12;
}

.china-budget__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: end;
}

.china-budget__head .section-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.budget-anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.budget-anchor-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 186px;
  padding: 28px 24px;
  color: #fff;
  background: rgba(12, 16, 26, 0.96);
}

.budget-anchor-grid article > span,
.budget-grant > div > span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.budget-anchor-grid strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1;
}

.budget-anchor-grid small {
  color: rgba(255, 255, 255, 0.56);
}

.budget-anchor-grid .budget-anchor-grid__total {
  background: linear-gradient(150deg, #bd7500, #df8d00);
}

.budget-anchor-grid__total > span,
.budget-anchor-grid__total small {
  color: rgba(255, 255, 255, 0.76) !important;
}

.budget-grant {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.budget-grant > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  align-items: center;
}

.budget-grant > div svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--accent-2);
}

.budget-grant > div strong {
  color: #fff;
  font-size: 18px;
}

.budget-grant > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.budget-source {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.44);
}

.case-card {
  min-height: 420px;
  padding-top: 194px;
}

.case-card__photo {
  position: absolute;
  inset: 0 0 auto;
  height: 170px;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.case-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 13, 0.68));
}

.case-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__photo figcaption,
.university-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 7, 13, 0.62);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card__badge {
  flex: 0 0 auto;
  padding: 6px 8px;
  color: #815000 !important;
  border: 1px solid rgba(223, 141, 0, 0.24);
  background: rgba(223, 141, 0, 0.1);
  font-size: 10px !important;
  font-weight: 900;
}

.profile-paths {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.8fr));
  gap: 1px;
  margin-top: 18px;
  padding: 1px;
  background: rgba(20, 24, 35, 0.1);
}

.profile-paths > * {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 200px;
  padding: 28px;
  background: #fff;
}

.profile-paths__intro {
  color: #fff;
  background: #0b0f18;
}

.profile-paths__intro > span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-paths h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.02;
}

.profile-paths p,
.profile-paths small {
  margin: 0;
  color: var(--muted);
}

.profile-paths__intro p {
  color: rgba(255, 255, 255, 0.62);
}

.profile-paths article strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 21px;
}

.profile-paths article span {
  color: var(--ink);
  font-weight: 900;
}

.university-card figure {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.gpa-result__cta {
  width: 100%;
  margin-top: 18px;
  font-size: 12px;
}

.messenger-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 8px;
}

.messenger-dock__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 38px rgba(5, 7, 13, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.messenger-dock__item svg {
  width: 19px;
  height: 19px;
}

.messenger-dock__item--whatsapp {
  background: #168b56;
}

.messenger-dock__item--telegram {
  background: #258dcc;
}

@media (max-width: 980px) {
  .china-budget__head,
  .budget-grant {
    grid-template-columns: 1fr;
  }

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

  .profile-paths {
    grid-template-columns: 1fr;
  }

  .profile-paths > * {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .budget-anchor-grid {
    grid-template-columns: 1fr;
  }

  .budget-anchor-grid article {
    min-height: auto;
  }

  .budget-grant .primary-button {
    width: 100%;
  }

  .messenger-dock__item {
    width: 50px;
    padding: 0;
    justify-content: center;
  }

  .messenger-dock__item span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

.case-archive {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 0.75fr));
  gap: 8px;
  height: 210px;
  margin-top: 34px;
}

.case-archive figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.case-archive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-archive figure:hover img {
  transform: scale(1.04);
}

.case-archive figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 7, 13, 0.68);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card {
  min-height: 285px;
  padding-top: 24px;
}

@media (max-width: 740px) {
  .case-archive {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .case-archive figure {
    min-height: 150px;
  }

  .case-archive figure:first-child {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}

/* Interactive conversion pass: lighter new sections and purposeful motion. */
.hero {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-focus-x: 24%;
}

.hero__media {
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) scale(1.035) !important;
  transform-origin: var(--hero-focus-x) 50%;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform-origin 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease !important;
}

.hero:hover .hero__media {
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) scale(1.055) !important;
}

.hero-journey {
  overflow: hidden;
}

.hero-journey li {
  position: relative;
  gap: 0;
  padding: 0;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-journey li::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-journey li.is-active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 187, 70, 0.22);
}

.hero-journey li.is-active::after {
  transform: scaleX(1);
}

.hero-journey button {
  display: grid;
  gap: 9px;
  width: 100%;
  min-height: 72px;
  padding: 15px 12px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.hero-journey button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -3px;
}

.hero-journey li svg {
  transform: translateY(0) rotate(0deg);
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease;
}

.hero-journey li.is-active svg,
.hero-journey li:hover svg {
  color: #fff;
  transform: translateY(-2px) rotate(-7deg) scale(1.08);
}

.hero-journey__status {
  display: grid;
  grid-template-columns: auto minmax(120px, auto) minmax(100px, 1fr);
  gap: 12px;
  align-items: center;
  width: min(820px, 100%);
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero-journey__status strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.hero-journey__status > i {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.hero-journey__status > i > b {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0.1667);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-proof strong.is-counting {
  display: inline-block;
  min-width: 2ch;
  color: var(--accent-2);
}

.china-budget {
  --grant-coverage: 0;
  padding-top: 86px;
  padding-bottom: 84px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(223, 141, 0, 0.1), transparent 28%),
    #f3f0e9;
}

.china-budget .section-aura {
  opacity: 0.22;
}

.china-budget.section-dark h2,
.china-budget.section-dark h2 em {
  color: var(--ink);
}

.china-budget.section-dark .eyebrow {
  color: var(--accent);
}

.china-budget__head {
  gap: clamp(28px, 5vw, 62px);
}

.china-budget__head .section-copy {
  color: var(--muted);
}

.budget-scenarios {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.2fr);
  gap: 18px 32px;
  align-items: end;
  margin-top: 36px;
  padding: 22px 24px 18px;
  border: 1px solid rgba(20, 24, 35, 0.09);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
}

.budget-scenarios__head {
  display: grid;
  gap: 6px;
}

.budget-scenarios__head > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.budget-scenarios__status {
  max-width: 470px;
  min-height: 2.8em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.budget-scenarios__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(20, 24, 35, 0.08);
  background: #ece8df;
}

.budget-scenarios__controls button,
.case-filters button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.budget-scenarios__controls button:hover,
.budget-scenarios__controls button:focus-visible,
.budget-scenarios__controls button.is-active,
.case-filters button:hover,
.case-filters button:focus-visible,
.case-filters button.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 22, 32, 0.07);
}

.budget-scenarios__controls button:active,
.case-filters button:active {
  transform: scale(0.975);
}

.budget-scenarios__meter {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  background: rgba(20, 24, 35, 0.08);
}

.budget-scenarios__meter > i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f3b347);
  transform: scaleX(var(--grant-coverage));
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.budget-anchor-grid {
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  background: transparent;
}

.budget-anchor-grid article {
  position: relative;
  min-height: 154px;
  padding: 23px 21px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(20, 24, 35, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.budget-anchor-grid article:hover {
  z-index: 2;
  border-color: rgba(223, 141, 0, 0.28);
  box-shadow: 0 16px 34px rgba(18, 22, 32, 0.08);
}

.budget-anchor-grid article > span,
.budget-grant > div > span {
  color: #9b6304;
}

.budget-anchor-grid small {
  color: var(--muted);
}

.budget-anchor-grid .budget-anchor-grid__total {
  color: var(--ink);
  border-color: rgba(223, 141, 0, 0.22);
  background: #fff2d4;
}

.budget-anchor-grid__total > span,
.budget-anchor-grid__total small {
  color: #805a18 !important;
}

.budget-anchor-grid article.is-partially-covered,
.budget-anchor-grid article.is-covered {
  border-color: rgba(223, 141, 0, 0.42);
  background: #fff8e9;
  transform: translateY(-5px);
}

.budget-anchor-grid article.is-partially-covered::after,
.budget-anchor-grid article.is-covered::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--accent);
  animation: budget-check-in 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.budget-anchor-grid article.is-partially-covered::after {
  content: "½";
}

.budget-grant {
  margin-top: 10px;
  padding: 22px 24px;
  color: var(--ink);
  border-color: rgba(20, 24, 35, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.budget-grant > div strong {
  color: var(--ink);
}

.budget-grant > p,
.budget-source {
  color: var(--muted);
}

.china-budget.is-switching-scenario .budget-scenarios__status {
  animation: budget-status-in 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes budget-check-in {
  from { opacity: 0; transform: scale(0.5) rotate(-22deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes budget-status-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.case-archive {
  height: 176px;
  margin-top: 28px;
}

.case-archive figure {
  cursor: zoom-in;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.3s ease;
}

.case-archive figure:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.015);
  filter: saturate(1.08);
}

.case-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 24, 35, 0.09);
}

.case-filters > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 4px;
  background: #efebe3;
}

.case-filters button {
  min-width: 112px;
}

.case-filters__count {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.case-card {
  min-height: 260px;
  transition:
    opacity 0.22s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

.case-card.is-filtering-out {
  opacity: 0;
  transform: translateY(12px) scale(0.98) !important;
}

.case-card[hidden] {
  display: none !important;
}

.profile-paths > * {
  min-height: 166px;
  padding: 22px;
}

.profile-paths article {
  transition:
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.profile-paths article:hover {
  z-index: 2;
  background: #fffaf0;
  box-shadow: 0 16px 34px rgba(18, 22, 32, 0.08);
}

.trust-section {
  --active-team-role: 0;
  padding-top: 82px;
  padding-bottom: 88px;
  background: #f7f4ee;
}

.trust-section__layout {
  margin-top: 36px;
}

.team-role-grid {
  gap: 8px;
  padding: 0;
  background: transparent;
}

.team-role-grid article {
  position: relative;
  min-height: 154px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 35, 0.08);
  cursor: pointer;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.team-role-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-role-grid article:hover,
.team-role-grid article:focus-visible,
.team-role-grid article.is-active {
  border-color: rgba(223, 141, 0, 0.3);
  background: #fffaf0;
  box-shadow: 0 14px 32px rgba(18, 22, 32, 0.07);
}

.team-role-grid article.is-active::after {
  transform: scaleX(1);
}

.team-role-grid article.is-active svg {
  animation: team-icon-in 0.56s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes team-icon-in {
  0% { transform: translateY(5px) rotate(-10deg); opacity: 0.45; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}

.trust-facts {
  gap: 8px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.trust-fact {
  position: relative;
  padding: 20px 58px 20px 23px;
  color: var(--ink);
  border: 1px solid rgba(20, 24, 35, 0.08);
  background: #fff;
  cursor: copy;
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    background 0.28s ease;
}

.trust-fact::after {
  content: "⧉";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent);
  border: 1px solid rgba(223, 141, 0, 0.22);
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-fact:hover,
.trust-fact:focus-visible,
.trust-fact.is-copied {
  border-color: rgba(223, 141, 0, 0.32);
  background: #fffaf0;
  transform: translateX(4px);
}

.trust-fact.is-copied::after {
  content: "✓";
  color: #fff;
  background: var(--accent);
  transform: translateY(-50%) rotate(360deg);
}

.trust-fact > span {
  color: #9b6304;
}

.trust-fact small {
  color: var(--muted);
}

.trust-fact--legal {
  background: #fff2d4;
}

.trust-copy-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.proof-request {
  padding: 23px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.proof-request:hover {
  border-color: rgba(223, 141, 0, 0.24);
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 22, 32, 0.07);
}

.faq-list {
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(20, 24, 35, 0.08);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(223, 141, 0, 0.22);
  background: #fff;
}

.faq-item.is-open {
  border-color: rgba(223, 141, 0, 0.28);
  background: #fffaf1;
  box-shadow: 0 14px 32px rgba(18, 22, 32, 0.07);
  transform: translateY(-2px);
}

.faq-item__question {
  gap: 18px;
  min-height: 62px;
  padding: 17px 64px 17px 20px;
  cursor: pointer;
}

.faq-item__question > small {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

.faq-item__body[aria-hidden="true"] {
  visibility: hidden;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease,
    visibility 0s linear 0.42s;
}

.faq-item__body[aria-hidden="false"] {
  visibility: visible;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease,
    visibility 0s linear 0s;
}

.faq-item__answer > p {
  display: block;
  max-width: 760px;
  padding-left: 58px;
}

@media (max-width: 980px) {
  .budget-scenarios {
    grid-template-columns: 1fr;
  }

  .trust-section__layout {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero-journey button {
    min-height: 64px;
    padding: 12px 10px;
  }

  .hero-journey__status {
    grid-template-columns: auto 1fr;
  }

  .hero-journey__status > i {
    grid-column: 1 / -1;
  }

  .china-budget {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .budget-scenarios {
    margin-top: 26px;
    padding: 18px;
  }

  .budget-scenarios__controls {
    grid-template-columns: 1fr;
  }

  .budget-anchor-grid article {
    min-height: 126px;
  }

  .case-filters {
    align-items: flex-end;
  }

  .case-filters > div {
    display: grid;
    flex: 1;
  }

  .case-filters button {
    min-width: 0;
    text-align: left;
  }

  .case-archive {
    height: auto;
  }

  .trust-section {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .faq-item__question {
    gap: 12px;
    padding: 17px 58px 17px 17px;
    font-size: 17px;
  }

  .faq-item__answer > p {
    padding: 0 17px 19px 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero-journey li,
  .hero-journey li::after,
  .hero-journey svg,
  .hero-journey__status > i > b,
  .budget-scenarios__meter > i,
  .budget-anchor-grid article,
  .case-card,
  .team-role-grid article,
  .team-role-grid article::after,
  .trust-fact,
  .faq-item,
  .faq-item__body {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
