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

:root {
  --ink: #102033;
  --ink-2: #334155;
  --muted: #64748b;
  --soft: #eff7fb;
  --paper: #ffffff;
  --line: rgba(16, 32, 51, 0.12);
  --navy: #0f1e3d;
  --cyan: #0891b2;
  --mint: #10b981;
  --orange: #f97316;
  --accent: #0e7490;
  --shadow: 0 24px 60px rgba(15, 30, 61, 0.14);
  --shadow-soft: 0 16px 36px rgba(15, 30, 61, 0.1);
  --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: #f7fbff;
  -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(247, 251, 255, 0.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

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

.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: #facc15;
  vertical-align: middle;
}

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

.top-strip a {
  color: #dff7ff;
  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(--cyan);
  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(--cyan);
  background: rgba(8, 145, 178, 0.1);
}

.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, var(--navy), var(--accent) 58%, #06b6d4);
  box-shadow: 0 16px 34px rgba(14, 116, 144, 0.22);
  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 44px rgba(14, 116, 144, 0.28);
}

.btn--light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 30, 61, 0.13);
}

.btn--line {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px var(--line);
}

.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: #e8f3fb;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 30%, rgba(8, 145, 178, 0.16), transparent 34%),
    linear-gradient(180deg, #e8f3fb 0%, #f7fbff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 37%, rgba(247, 251, 255, 0.34) 68%, rgba(247, 251, 255, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 30, 61, 0.13), rgba(15, 30, 61, 0));
}

.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(48vw, 760px);
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

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

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

.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 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__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.82);
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 28px rgba(15, 30, 61, 0.1);
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

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

.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-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

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

.proof-band {
  background: var(--navy);
  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);
  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: #fff;
  background: var(--navy);
  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 strong {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  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, #071a36 0%, #0f3f5a 58%, #0e7490 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: #0f1e3d;
  box-shadow: var(--shadow);
}

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

.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(8, 145, 178, 0.28), var(--shadow);
}

.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: linear-gradient(135deg, var(--navy), var(--accent));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}

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

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(180deg, #eaf6ff 0%, #fff 100%);
}

.page-hero__inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 56px;
}

.page-hero--compact .page-hero__inner {
  max-width: 820px;
  text-align: center;
}

.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);
}

.media-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: #fff;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.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;
}

.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: #fff;
  background: var(--accent);
  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: #fff;
  background: var(--navy);
  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);
  background: #dbeafe;
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.contact-visual__copy {
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0f1e3d, #0e7490);
}

.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: #fff;
  background: var(--navy);
}

.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(8, 145, 178, 0.52);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
}

.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(8, 145, 178, 0.18);
  border-radius: 12px;
  color: var(--ink-2);
  background: rgba(8, 145, 178, 0.06);
  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(8, 145, 178, 0.08);
  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(--accent);
  background: rgba(8, 145, 178, 0.09);
  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: #0f1e3d;
}

.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: #f7fbff;
    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(--cyan);
    background: rgba(8, 145, 178, 0.1);
  }

  .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 (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;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 24%, rgba(8, 145, 178, 0.16), transparent 36%),
      linear-gradient(180deg, #e8f3fb 0%, #f7fbff 100%);
  }

  .hero__photo {
    width: 100%;
    height: 62%;
    object-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.76) 0%, rgba(247, 251, 255, 0.9) 48%, rgba(247, 251, 255, 0.98) 100%),
      linear-gradient(0deg, rgba(15, 30, 61, 0.14), rgba(15, 30, 61, 0));
  }

  .hero__inner {
    padding: 0 0 44px;
  }

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

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

  .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;
  }
}
