:root {
  --navy-950: #07172c;
  --navy-900: #0b2545;
  --navy-800: #12345b;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-100: #ccfbf1;
  --gold-500: #f59e0b;
  --gold-100: #fef3c7;
  --ink: #172033;
  --muted: #5f6b7d;
  --line: #dbe3ee;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-blue: #eff6ff;
  --success: #0f766e;
  --error: #b91c1c;
  --shadow-sm: 0 8px 26px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 22px 58px rgba(11, 37, 69, 0.13);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-950);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.35), transparent 28%),
    radial-gradient(circle at 12% 85%, rgba(13, 148, 136, 0.25), transparent 28%),
    var(--navy-950);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: #7dd3fc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.2vw, 4.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.section-dark .lead,
.section-dark .muted {
  color: #c9d7e8;
}

.muted {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.26);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
}

.button-secondary {
  color: var(--navy-900);
  border-color: var(--line);
  background: #fff;
}

.button-secondary:hover {
  border-color: #9db6d1;
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--navy-950);
  background: #fff;
}

.button-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.button-full {
  width: 100%;
}

.top-note {
  position: sticky;
  top: 0;
  z-index: 60;
  color: #e8f4ff;
  background: var(--navy-950);
  font-size: 0.88rem;
}

.top-note .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.top-note a {
  color: #7dd3fc;
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-accent {
  color: var(--blue-600);
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 22px);
}

.nav-link {
  position: relative;
  padding: 28px 0 25px;
  color: #475569;
  font-size: 0.91rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-600);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--navy-950);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  display: flex;
  min-width: 58px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  color: var(--navy-900);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  font-size: 0.72rem;
  content: "▾";
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 160px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.language-options a {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 650;
}

.language-options a:hover,
.language-options a[aria-current="true"] {
  color: var(--blue-700);
  background: var(--surface-blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: #fff;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.15), transparent 25%),
    radial-gradient(circle at 70% 80%, rgba(13, 148, 136, 0.14), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(11, 37, 69, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 37, 69, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000 100%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.hero-copy {
  max-width: 730px;
}

.hero-copy .lead {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(239, 246, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 750;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-600);
  box-shadow: 0 0 0 5px rgba(13, 148, 136, 0.12);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #536174;
  font-size: 0.89rem;
  font-weight: 650;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note span::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 0.72rem;
  content: "✓";
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.visual-orbit {
  position: absolute;
  inset: 32px 18px 38px;
  border: 1px dashed rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
  content: "";
}

.visual-orbit::before {
  top: 13%;
  right: 6%;
}

.visual-orbit::after {
  bottom: 9%;
  left: 11%;
  background: var(--teal-600);
}

.roadmap-card {
  position: absolute;
  top: 58px;
  right: 38px;
  left: 38px;
  padding: 26px;
  border: 1px solid rgba(219, 227, 238, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.roadmap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.roadmap-title {
  color: var(--navy-950);
  font-size: 1.03rem;
  font-weight: 800;
}

.roadmap-badge {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 0.72rem;
  font-weight: 800;
}

.roadmap-step {
  position: relative;
  display: grid;
  align-items: start;
  gap: 13px;
  padding-bottom: 20px;
  grid-template-columns: 32px 1fr auto;
}

.roadmap-step:not(:last-child)::after {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: #dce7f5;
  content: "";
}

.roadmap-number {
  display: grid;
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 0.78rem;
  font-weight: 850;
}

.roadmap-step strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.9rem;
}

.roadmap-step small {
  color: var(--muted);
}

.step-state {
  margin-top: 5px;
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.floating-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.9rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.floating-scholarship {
  right: -4px;
  bottom: 54px;
}

.floating-profile {
  bottom: 15px;
  left: -6px;
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-900);
  background: var(--gold-100);
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 88% 20%, rgba(37, 99, 235, 0.16), transparent 25%),
    linear-gradient(180deg, #f8fbff, #fff);
}

.page-hero::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(37, 99, 235, 0.03), 0 0 0 100px rgba(13, 148, 136, 0.025);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.section-heading-copy {
  max-width: 730px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: #bdcde0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-700);
  background: var(--surface-blue);
  font-size: 1.02rem;
  font-weight: 900;
}

.card-icon.teal {
  color: var(--teal-700);
  background: var(--teal-100);
}

.card-icon.gold {
  color: #a16207;
  background: var(--gold-100);
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 16px;
}

.process-grid {
  position: relative;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid::before {
  position: absolute;
  top: 29px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--teal-600));
  content: "";
  opacity: 0.24;
}

.process-item {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.process-number {
  display: grid;
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  place-items: center;
  border: 7px solid var(--surface-soft);
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(11, 37, 69, 0.16);
}

.process-item h3 {
  font-size: 1rem;
}

.process-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

.country-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.country-chip {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.country-chip:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.country-code {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 0.72rem;
  font-weight: 900;
}

.level-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background: var(--navy-900);
}

.level-card:nth-child(2) {
  background: #123d65;
}

.level-card:nth-child(3) {
  background: #0f5c59;
}

.level-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 44px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.level-card h3 {
  color: #fff;
  font-size: 1.8rem;
}

.level-card p {
  position: relative;
  z-index: 1;
  color: #d7e4f2;
}

.level-label {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.level-card .text-link {
  position: absolute;
  bottom: 32px;
  left: 34px;
  z-index: 2;
  color: #fff;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  color: #1e3a5f;
  background: var(--surface-blue);
}

.notice strong {
  display: block;
  margin-bottom: 3px;
}

.notice-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-700);
  background: #fff;
  font-weight: 900;
}

.filters {
  display: grid;
  align-items: end;
  gap: 14px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  grid-template-columns: 1fr 1fr auto;
}

.filter-field label,
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 750;
}

.field label .required {
  color: var(--error);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.opportunity-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.opportunity-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 24px 18px;
  background: linear-gradient(145deg, #f7fbff, #eff6ff);
}

.university-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  color: var(--navy-900);
  background: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.opportunity-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.opportunity-body h3 {
  font-size: 1.18rem;
}

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: #36506d;
  background: #eef2f7;
  font-size: 0.73rem;
  font-weight: 750;
}

.tag-scholarship {
  color: #8a5800;
  background: var(--gold-100);
}

.opportunity-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.opportunity-facts li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid #edf1f5;
  color: var(--muted);
  font-size: 0.82rem;
}

.opportunity-facts strong {
  color: var(--navy-900);
  text-align: right;
}

.verified-date {
  margin-top: auto;
  padding-top: 10px;
  color: #6b7280;
  font-size: 0.72rem;
}

.opportunity-actions {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

[hidden] {
  display: none !important;
}

.empty-state {
  padding: 34px;
  border: 1px dashed #b9c7d8;
  border-radius: 18px;
  color: var(--muted);
  background: var(--surface-soft);
  text-align: center;
}

.about-split,
.contact-layout {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.value-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 700;
}

.value-check {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--teal-700);
  background: var(--teal-100);
}

.principle-panel {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--navy-900);
}

.principle-panel::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(56, 189, 248, 0.1);
  border-radius: 50%;
  content: "";
}

.principle-panel h2,
.principle-panel h3 {
  color: #fff;
}

.principle-panel p {
  position: relative;
  z-index: 1;
  color: #d5e2ef;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.article-cover {
  display: flex;
  position: relative;
  min-height: 174px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.5), transparent 25%),
    linear-gradient(140deg, var(--navy-900), #164f7c);
}

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

.article-cover.has-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.08), rgba(11, 37, 69, 0.82));
  content: "";
}

.article-card:nth-child(2n) .article-cover {
  background:
    radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.45), transparent 25%),
    linear-gradient(140deg, #0b3c3b, var(--teal-700));
}

.article-card:nth-child(3n) .article-cover {
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.38), transparent 25%),
    linear-gradient(140deg, #322244, #6b3e66);
}

.article-category {
  position: relative;
  z-index: 1;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.article-number {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 2.5rem;
  font-weight: 900;
}

.article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.article-body .text-link {
  margin-top: auto;
  padding-top: 12px;
}

.article-date {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-hero {
  padding-bottom: 78px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.article-feature {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.article-feature img {
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(38px, 7vw, 88px);
  grid-template-columns: minmax(0, 1fr) 280px;
}

.article-content {
  max-width: 780px;
  color: #20364f;
  font-size: 1.04rem;
  line-height: 1.82;
}

.article-content h2,
.article-content h3 {
  margin-top: 2em;
  margin-bottom: 0.65em;
}

.article-content h2:first-child,
.article-content h3:first-child {
  margin-top: 0;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin: 0 0 1.25em;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4em;
}

.article-content a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content blockquote {
  padding: 18px 22px;
  border-left: 4px solid var(--teal-600);
  border-radius: 0 14px 14px 0;
  background: var(--surface-soft);
}

.article-content img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.article-aside {
  display: grid;
  position: sticky;
  top: 145px;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.article-aside .text-link {
  margin-bottom: 8px;
}

.newsletter {
  display: grid;
  align-items: center;
  gap: 40px;
  padding: 38px;
  border-radius: 24px;
  color: #fff;
  background: var(--navy-900);
  grid-template-columns: 1fr minmax(320px, 0.72fr);
}

.newsletter h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.newsletter p {
  color: #d7e4f2;
}

.newsletter-form {
  display: flex;
  position: relative;
  gap: 9px;
  padding-bottom: 28px;
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-status {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  border-color: #aac0d8;
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.contact-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--surface-blue);
  font-size: 0.77rem;
  font-weight: 900;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.field-full {
  grid-column: 1 / -1;
}

.field-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.checkbox-field {
  display: grid;
  align-items: start;
  gap: 10px;
  grid-template-columns: 19px 1fr;
}

.checkbox-field input {
  width: 19px;
  min-height: 19px;
  margin-top: 3px;
}

.checkbox-field label {
  color: var(--muted);
  font-size: 0.82rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.booking-box {
  display: grid;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 26px;
  border-radius: 20px;
  color: #fff;
  background: var(--navy-900);
  grid-template-columns: 1fr auto;
}

.booking-box h3 {
  color: #fff;
}

.booking-box p {
  margin-bottom: 0;
  color: #d7e4f2;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  color: var(--navy-950);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-button::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-700);
  background: var(--surface-blue);
  content: "+";
  font-size: 1.25rem;
}

.faq-button[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  padding: 0 52px 22px 0;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  display: grid;
  align-items: center;
  gap: 38px;
  padding: 46px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(56, 189, 248, 0.36), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #123f69);
  grid-template-columns: 1fr auto;
}

.cta-panel::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 45px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 10px;
  color: #fff;
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 0;
  color: #d7e4f2;
}

.cta-panel .button-row {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.site-footer {
  padding: 72px 0 24px;
  color: #c5d3e2;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 44px;
  padding-bottom: 50px;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand p {
  max-width: 360px;
  color: #9fb1c4;
}

.footer-title {
  margin-bottom: 17px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #aebfd0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

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

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5e2ef;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8195a9;
  font-size: 0.79rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a:hover {
  color: #fff;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  max-width: 820px;
}

.legal-page h2 {
  margin-top: 44px;
  font-size: 1.55rem;
}

.legal-page ul {
  padding-left: 22px;
}

.error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 70px 20px;
  text-align: center;
}

.error-code {
  color: var(--blue-600);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

@media (max-width: 1220px) {
  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: calc(38px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    padding: 20px;
    overflow-y: auto;
    background: rgba(247, 249, 252, 0.98);
    backdrop-filter: blur(18px);
  }

  .mobile-nav[data-open="true"] {
    display: block;
  }

  .mobile-nav-inner {
    display: grid;
    gap: 8px;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .mobile-nav .nav-link {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }

  .mobile-nav .nav-link::after {
    display: none;
  }

  .mobile-nav .button {
    margin-top: 8px;
  }

  .hero-grid {
    gap: 34px;
    grid-template-columns: 1fr 420px;
  }

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

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

@media (max-width: 900px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin: 0 auto;
  }

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

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

  .process-grid::before {
    display: none;
  }

  .about-split,
  .contact-layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .newsletter,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    max-width: 520px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .article-hero {
    padding-bottom: 58px;
  }

  .article-feature {
    margin-top: -28px;
  }

  .article-feature img {
    border-radius: 16px;
  }

  .top-note .container {
    min-height: 44px;
    gap: 7px;
    font-size: 0.78rem;
  }

  .top-note .container > span {
    display: none;
  }

  .site-header {
    top: 44px;
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-menu summary {
    min-width: 52px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav {
    top: calc(44px + var(--header-height));
  }

  .hero,
  .page-hero {
    padding: 54px 0 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.5rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .roadmap-card {
    top: 35px;
    right: 8px;
    left: 8px;
    padding: 21px;
  }

  .floating-scholarship {
    right: 0;
    bottom: 25px;
  }

  .floating-profile {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .country-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 23px;
  }

  .country-grid {
    gap: 9px;
  }

  .country-chip {
    min-height: 64px;
  }

  .level-card {
    min-height: 330px;
    padding: 28px;
  }

  .level-card .text-link {
    bottom: 28px;
    left: 28px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .filters .button {
    width: 100%;
  }

  .opportunity-actions {
    flex-direction: column;
  }

  .opportunity-actions .button {
    width: 100%;
  }

  .newsletter,
  .cta-panel,
  .principle-panel,
  .form-panel {
    padding: 26px 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .booking-box {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .faq-panel {
    padding-right: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 32px rgba(11, 37, 69, 0.1);
    backdrop-filter: blur(16px);
  }

  .mobile-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .top-note,
  .site-header,
  .site-footer,
  .mobile-cta,
  .button-row,
  .filters {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 30px 0;
  }
}
