@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&display=swap");

:root {
  --ink: #0a1f3f;
  --ink-2: #2a3f5f;
  --muted: #65748c;
  --soft: #f4f8ff;
  --paper: #ffffff;
  --line: rgba(8, 31, 74, 0.12);
  --navy: #08214a;
  --blue: #123f7a;
  --cyan: #c6922d;
  --mint: #f2c75c;
  --orange: #d6a331;
  --accent: #d6a331;
  --gold: #f0c94c;
  --gold-deep: #c99a2d;
  --gold-light: #ffe28a;
  --shadow: 0 24px 60px rgba(8, 31, 74, 0.16);
  --shadow-soft: 0 16px 36px rgba(8, 31, 74, 0.11);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1280px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 28%, #f5f8fe 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 12px 30px rgba(8, 31, 74, 0.08);
}

.top-strip {
  color: #fff;
  background: #061936;
}

.top-strip__inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
}

.top-strip__inner > span:first-child::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  vertical-align: middle;
}

.top-strip__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-strip a {
  color: #fff4cc;
  text-decoration: none;
}

.site-header__inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-decoration: none;
}

.brand__mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand__tagline {
  display: block;
  margin-top: 2px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(214, 163, 49, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.phone-link {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.mobile-panel {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0f4da5 0%, #145ec7 74%, #0d3f93 100%);
  box-shadow: 0 18px 38px rgba(11, 70, 151, 0.34), inset 0 0 0 1px rgba(240, 201, 76, 0.16);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(11, 70, 151, 0.42), inset 0 0 0 1px rgba(240, 201, 76, 0.24);
}

.btn--light {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.btn--line {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(201, 154, 45, 0.28);
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0ea55c 0%, #12c979 100%);
  box-shadow: 0 18px 44px rgba(15, 118, 69, 0.28);
  text-decoration: none;
  font-weight: 900;
}

.whatsapp-chat__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-chat svg {
  width: 24px;
  height: 24px;
}

.whatsapp-chat small,
.whatsapp-chat strong {
  display: block;
  line-height: 1.05;
}

.whatsapp-chat small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #061936;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -4vw;
  z-index: 0;
  width: min(48vw, 780px);
  height: min(58vh, 560px);
  border: 1px solid rgba(240, 201, 76, 0.38);
  border-radius: 130px 0 0 0;
  background:
    radial-gradient(circle at 34% 0%, rgba(240, 201, 76, 0.62), transparent 28%),
    radial-gradient(circle at 72% 42%, rgba(18, 63, 122, 0.86), transparent 42%),
    linear-gradient(135deg, rgba(240, 201, 76, 0.2), rgba(8, 33, 74, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 75% 42%, rgba(240, 201, 76, 0.15), transparent 31%),
    linear-gradient(90deg, rgba(4, 18, 44, 0.98) 0%, rgba(6, 25, 54, 0.95) 42%, rgba(6, 25, 54, 0.68) 64%, rgba(8, 33, 74, 0.28) 100%);
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  top: 20%;
  right: min(7vw, 92px);
  z-index: 1;
  width: min(36vw, 560px);
  height: min(62vh, 590px);
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.34) saturate(1.42) contrast(1.03) brightness(1.05);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(240, 201, 76, 0.22);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero__copy {
  max-width: 690px;
  animation: heroIn 720ms ease both;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .page-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.24em;
}

.hero .page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 7.2vw, 112px);
  line-height: 0.94;
  font-weight: 800;
}

.hero h1 em {
  display: inline-block;
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero p,
.page-hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.65;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.75vw, 21px);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__programs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.program-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.program-chip span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  color: var(--navy);
  background: var(--gold);
}

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

.section--tight {
  padding: 60px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.section-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.proof-band {
  background:
    radial-gradient(circle at 82% 0%, rgba(240, 201, 76, 0.2), transparent 30%),
    linear-gradient(135deg, #061936 0%, #08214a 58%, #123f7a 100%);
  color: #fff;
}

.proof-band__inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-item strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background: #dcecf4;
  color: #fff;
  isolation: isolate;
}

.pathway img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.pathway::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 30, 61, 0.08) 0%, rgba(15, 30, 61, 0.86) 100%);
}

.pathway:hover img {
  transform: scale(1.05);
}

.pathway__copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
}

.pathway h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.pathway p {
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.link-arrow {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  border: 6px solid #fff;
  filter: sepia(0.2) saturate(1.2) contrast(1.02) brightness(1.04);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.destination-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.support-item {
  min-height: 250px;
  padding: 28px;
  background: #fff;
}

.support-item,
.destination-tile,
.destination-card,
.finder-panel,
.result-card,
.quiz-question,
.form-card,
.legal-body article {
  border-top: 3px solid rgba(240, 201, 76, 0.82);
}

.support-item strong {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  font-size: 13px;
  font-weight: 900;
}

.support-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.support-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guidance-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, #061936 0%, #123f7a 62%, #d6a331 100%);
  box-shadow: var(--shadow);
}

.guidance-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
}

.guidance-band p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.guidance-band .hero__actions {
  margin-top: 26px;
}

.quiz-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.quiz-questions {
  display: grid;
  gap: 16px;
}

.quiz-question {
  margin: 0;
  padding: 22px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.quiz-question legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.quiz-question legend span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
}

.quiz-question label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 13px;
  border-radius: 12px;
  background: #f8fbfd;
  color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.quiz-question input {
  accent-color: var(--cyan);
}

.quiz-result {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background: #08214a;
  box-shadow: var(--shadow);
}

.quiz-result .page-kicker {
  color: #f5d678;
}

.quiz-result h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 900;
}

.quiz-result p {
  color: rgba(255, 255, 255, 0.74);
}

.destination-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.destination-tile:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(214, 163, 49, 0.36), 0 20px 42px rgba(8, 31, 74, 0.15);
}

.destination-tile b {
  font-size: 15px;
  font-weight: 900;
}

.destination-tile span:first-child {
  font-size: 26px;
}

.destination-tile span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cta-band {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 92px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 226, 138, 0.36), transparent 26%),
    linear-gradient(135deg, #061936 0%, var(--blue) 62%, var(--gold-deep) 100%);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 660px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}

.cta-band p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 201, 76, 0.35), transparent 22%),
    radial-gradient(circle at 74% 72%, rgba(18, 63, 122, 0.72), transparent 34%),
    linear-gradient(135deg, #061936 0%, #08214a 56%, #123f7a 100%);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -84px;
  z-index: 0;
  width: min(44vw, 620px);
  height: 78%;
  border: 1px solid rgba(240, 201, 76, 0.34);
  border-radius: 120px 0 0 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 226, 138, 0.48), transparent 28%),
    linear-gradient(135deg, rgba(240, 201, 76, 0.16), rgba(8, 33, 74, 0.72));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 1px;
  box-shadow: 0 18px 70px rgba(8, 31, 74, 0.32);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 58px;
  align-items: center;
  padding: 86px 0 66px;
}

.page-hero--compact .page-hero__inner {
  max-width: var(--container);
}

.page-hero__copy {
  max-width: 900px;
}

.page-hero__visual {
  position: relative;
  margin: 0;
}

.page-hero__visual::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -22px;
  width: 66%;
  height: 76%;
  border-radius: 48px 0 48px 0;
  background: linear-gradient(135deg, rgba(255, 226, 138, 0.78), rgba(201, 154, 45, 0.16));
}

.page-hero__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  filter: sepia(0.28) saturate(1.32) contrast(1.02) brightness(1.05);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(240, 201, 76, 0.22);
}

.page-hero .page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.2em;
}

.page-hero .page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.page-hero h1 {
  max-width: 900px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero--compact h1,
.page-hero--compact p {
  margin-left: 0;
  margin-right: 0;
}

.media-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.media-row:last-child {
  border-bottom: 1px solid var(--line);
}

.media-row:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.media-row:nth-child(even) .media-row__image {
  order: 2;
}

.media-row__image {
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow-soft);
}

.media-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) saturate(1.22) contrast(1.02) brightness(1.04);
}

.media-row__content {
  align-self: center;
}

.media-row h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 900;
}

.course-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.course-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.course-jump a:hover {
  background: rgba(240, 201, 76, 0.18);
  box-shadow: inset 0 0 0 1px rgba(240, 201, 76, 0.42);
}

.media-row p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.destination-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.destination-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: sepia(0.18) saturate(1.18) contrast(1.02) brightness(1.03);
}

.destination-card__body {
  padding: 22px;
}

.destination-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.destination-card__top strong {
  font-size: 20px;
  font-weight: 900;
}

.destination-card__top span:first-child {
  font-size: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: auto;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  font-size: 11px;
  font-weight: 900;
}

.destination-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.facts b {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
}

.finder-shell {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
}

.finder-panel {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.finder-group + .finder-group {
  margin-top: 24px;
}

.finder-group h2 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: #f8fbfd;
  color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.is-active {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow: none;
}

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

.result-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.result-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-card__top .flag {
  font-size: 28px;
}

.result-card strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.result-card small {
  color: var(--muted);
  font-weight: 700;
}

.result-card .tag {
  margin-left: auto;
}

.empty-state {
  display: none;
  padding: 36px;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--line);
}

.empty-state.is-visible {
  display: block;
}

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

.contact-visual {
  overflow: hidden;
  border-radius: var(--radius);
  border: 6px solid #fff;
  background: #dbeafe;
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  filter: sepia(0.28) saturate(1.26) contrast(1.02) brightness(1.05);
}

.contact-visual__copy {
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 226, 138, 0.28), transparent 28%),
    linear-gradient(135deg, #061936, #123f7a 62%, #c99a2d);
}

.contact-visual__copy h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.contact-visual__copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  text-decoration: none;
}

.contact-link span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
}

.contact-link small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
}

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

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

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

.field label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(214, 163, 49, 0.62);
  box-shadow: 0 0 0 4px rgba(214, 163, 49, 0.12);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 163, 49, 0.24);
  border-radius: 12px;
  color: var(--ink-2);
  background: rgba(214, 163, 49, 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  flex: 0 0 auto;
}

.success-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #065f46;
  background: #dcfce7;
  font-weight: 800;
}

.success-message.is-visible {
  display: block;
}

.legal-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 0 92px;
}

.legal-body article {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.legal-summary {
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(240, 201, 76, 0.12);
  color: var(--ink-2);
  font-weight: 700;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.legal-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(240, 201, 76, 0.18);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.legal-body h2 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-body ul {
  margin: 8px 0 18px;
  padding-left: 22px;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(240, 201, 76, 0.16), transparent 28%),
    linear-gradient(135deg, #04122c 0%, #061936 58%, #08214a 100%);
}

.support-item,
.destination-tile,
.destination-card,
.finder-panel,
.result-card,
.quiz-question,
.form-card,
.legal-body article {
  border-top: 3px solid rgba(240, 201, 76, 0.82);
}

.site-footer__inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 38px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p,
.footer-col p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.64);
}

.footer-col h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 1080px) {
  .top-strip {
    display: none;
  }

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

  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-panel {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100svh - var(--header-h));
    display: none;
    padding: 18px 20px 24px;
    overflow: auto;
    background: #f7faff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .mobile-panel {
    display: block;
  }

  .mobile-panel nav {
    display: grid;
    gap: 6px;
  }

  .mobile-panel a {
    padding: 13px 12px;
    border-radius: 12px;
    color: var(--ink-2);
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-panel a[aria-current="page"] {
    color: var(--navy);
    background: rgba(214, 163, 49, 0.16);
  }

  .mobile-panel .btn {
    margin-top: 12px;
    color: #fff;
  }

  .brand {
    min-width: 0;
  }

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

  .pathways,
  .destination-grid,
  .finder-shell,
  .contact-layout,
  .quiz-panel,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .step:nth-child(2n) {
    border-right: 0;
  }

  .split,
  .media-row,
  .media-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .media-row:nth-child(even) .media-row__image {
    order: 0;
  }

  .finder-panel {
    position: static;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .hero__copy {
    max-width: 560px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(50px, 6.25vw, 72px);
  }

  .hero p {
    max-width: 540px;
    font-size: 17px;
  }

  .hero__photo {
    right: 34px;
    width: min(34vw, 390px);
    height: min(60vh, 570px);
  }

  .hero::before {
    width: min(44vw, 520px);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 66px;
  }

  .site-header__inner,
  .hero__inner,
  .section,
  .page-hero__inner,
  .proof-band__inner,
  .cta-band,
  .site-footer__inner {
    width: min(100% - 28px, var(--container));
  }

  .brand__name {
    font-size: 15px;
  }

  .brand__tagline {
    font-size: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding-right: 14px;
  }

  .whatsapp-chat__icon {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 690px;
    align-items: flex-end;
    background: #061936;
  }

  .hero::before {
    top: 0;
    right: -22%;
    width: 88%;
    height: 48%;
    border-radius: 0 0 0 96px;
    background:
      radial-gradient(circle at 35% 10%, rgba(240, 201, 76, 0.42), transparent 34%),
      linear-gradient(135deg, rgba(18, 63, 122, 0.72), rgba(6, 25, 54, 0.92));
  }

  .hero__photo {
    top: 0;
    right: 0;
    width: 100%;
    height: 48%;
    border: 0;
    border-radius: 0;
    object-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 25, 54, 0.12) 0%, rgba(6, 25, 54, 0.62) 42%, rgba(6, 25, 54, 0.98) 62%, rgba(6, 25, 54, 1) 100%);
  }

  .hero__inner {
    padding: 0 0 44px;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 44px;
  }

  .page-hero__visual {
    order: -1;
  }

  .page-hero__visual::before {
    right: -12px;
    bottom: -12px;
    border-radius: 34px 0 34px 0;
  }

  .page-hero__visual img {
    height: 230px;
    border-width: 5px;
    border-radius: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 13vw, 50px);
    line-height: 1.02;
  }

  .hero h1 {
    color: #fff;
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero p {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero__actions,
  .cta-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .pathways,
  .destination-grid,
  .finder-shell,
  .contact-layout,
  .quiz-panel,
  .footer-grid,
  .result-grid,
  .form-grid,
  .proof-band__inner {
    grid-template-columns: 1fr;
  }

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

  .guidance-band {
    padding: 28px;
  }

  .quiz-result {
    position: static;
  }

  .pathway {
    min-height: 360px;
  }

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

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

  .step,
  .step:nth-child(2n) {
    border-right: 0;
  }

  .cta-band {
    margin-bottom: 68px;
    padding: 28px;
  }

  .media-row__image {
    min-height: 240px;
  }

  .destination-card img {
    height: 180px;
  }

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

  .form-card,
  .legal-body article {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .destination-strip {
    grid-template-columns: 1fr;
  }

  .hero__programs {
    display: grid;
    grid-template-columns: 1fr;
  }
}
