:root {
  --navy-950: #061a2e;
  --navy-900: #08253f;
  --navy-800: #0a3555;
  --navy-700: #0b4d70;
  --cyan-700: #067c91;
  --cyan-600: #0799ad;
  --cyan-500: #10b5c4;
  --cyan-100: #dff8fa;
  --gold-500: #f4b829;
  --gold-400: #ffd25d;
  --white: #ffffff;
  --slate-50: #f7fafc;
  --slate-100: #eef3f7;
  --slate-200: #dce5ec;
  --slate-300: #c9d5df;
  --slate-500: #687a8c;
  --slate-600: #506476;
  --slate-700: #354b5e;
  --slate-800: #203649;
  --ink: #10293e;
  --success: #18a66c;
  --shadow-sm: 0 8px 24px rgba(7, 35, 58, 0.08);
  --shadow-md: 0 20px 48px rgba(7, 35, 58, 0.12);
  --shadow-lg: 0 30px 70px rgba(3, 26, 47, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 5.3vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 3.9vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan-700);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold-400);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn svg,
.text-link svg,
.program-card a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.btn--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.87rem;
}

.btn--primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(8, 37, 63, 0.19);
}

.btn--primary:hover {
  background: var(--cyan-700);
}

.btn--ghost {
  border-color: var(--slate-200);
  background: var(--white);
  color: var(--navy-900);
}

.btn--ghost:hover {
  border-color: var(--cyan-600);
  color: var(--cyan-700);
}

.btn--accent {
  background: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(244, 184, 41, 0.24);
}

.btn--accent:hover {
  background: #ffdc7d;
  box-shadow: 0 16px 38px rgba(244, 184, 41, 0.34);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-950);
  backdrop-filter: blur(10px);
}

.btn--light:hover {
  background: var(--white);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-700);
  font-weight: 800;
}

.text-link:hover {
  color: var(--navy-900);
}

.topbar {
  background: var(--navy-950);
  color: #c7d8e6;
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar__inner > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a:hover {
  color: var(--gold-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 229, 236, 0.82);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 24px rgba(7, 35, 58, 0.05);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

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

.brand > span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--navy-950);
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.brand small {
  margin-top: 3px;
  color: var(--slate-600);
  font-size: 0.73rem;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 25px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: var(--slate-700);
  font-size: 0.86rem;
  font-weight: 750;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan-600);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--navy-900);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  width: 19px;
  height: 2px;
  border-radius: 4px;
  background: var(--navy-900);
}

.mobile-nav nav {
  position: absolute;
  top: 56px;
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mobile-nav nav a {
  padding: 14px 18px;
  border-bottom: 1px solid var(--slate-100);
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 750;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
  background: var(--navy-900);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--navy-900);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 25, 43, 0.98) 0%, rgba(5, 33, 55, 0.92) 34%, rgba(6, 38, 61, 0.55) 54%, rgba(6, 38, 61, 0.05) 76%),
    linear-gradient(0deg, rgba(4, 25, 43, 0.32), transparent 46%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 670px;
  align-items: center;
  padding-block: 90px 108px;
}

.hero__copy {
  width: min(640px, 58%);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--white);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #d9e8f2;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin: 24px 0 0;
  color: #b8cfdf;
  font-size: 0.82rem;
  font-weight: 650;
}

.quick-info {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(220, 229, 236, 0.9);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.quick-info article {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 15px;
  padding: 24px 25px;
  border-right: 1px solid var(--slate-200);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info article > div {
  display: grid;
}

.quick-info small {
  margin-bottom: 3px;
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-info strong {
  color: var(--navy-900);
  font-size: 0.93rem;
  line-height: 1.35;
}

.status-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 4px solid #d9f5e9;
  border-radius: 50%;
  background: var(--success);
  box-sizing: content-box;
  box-shadow: 0 0 0 5px #f2fbf7;
}

.quick-number,
.quick-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--cyan-100);
  color: var(--cyan-700);
  font-size: 1.22rem;
  font-weight: 850;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p {
  margin-bottom: 8px;
  color: var(--slate-600);
  line-height: 1.75;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-bottom: 18px;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
  color: var(--slate-600);
}

.programs {
  padding-top: 126px;
  background: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.program-card {
  position: relative;
  display: flex;
  min-height: 365px;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.program-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cyan-100);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

.program-card:hover {
  z-index: 1;
  border-color: #a8dce1;
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.program-card:hover::after {
  opacity: 0.65;
  transform: scale(1.18);
}

.program-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.program-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.program-card:nth-child(2n) .program-card__icon {
  background: var(--cyan-700);
}

.program-card__number {
  color: var(--slate-300);
  font-size: 0.88rem;
  font-weight: 800;
}

.program-card__level {
  margin-bottom: 8px;
  color: var(--cyan-700) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.program-card > p:not(.program-card__level) {
  margin-bottom: 24px;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.75;
}

.program-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.87rem;
  font-weight: 850;
}

.program-card a:hover {
  color: var(--cyan-700);
}

.source-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--slate-500);
  font-size: 0.8rem;
  text-align: center;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.process::before,
.process::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.process::before {
  top: -240px;
  left: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(16, 181, 196, 0.22);
}

.process::after {
  right: -100px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 181, 196, 0.12), transparent 67%);
}

.process__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 90px;
}

.process__intro {
  position: sticky;
  top: 126px;
}

.process__intro h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.process__intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #b9cede;
  line-height: 1.8;
}

.steps {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 29px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px 24px 23px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-left: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 900;
}

.steps h3 {
  margin: 2px 0 7px;
  color: var(--white);
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.steps p {
  margin: 0;
  color: #afc5d5;
  font-size: 0.88rem;
  line-height: 1.65;
}

.requirements {
  background: var(--slate-50);
}

.requirements__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
  gap: 26px;
}

.requirements__card,
.schedule-card {
  border-radius: var(--radius-lg);
}

.requirements__card {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.requirements__card h2 {
  max-width: 650px;
  margin-bottom: 20px;
}

.requirements__intro {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--slate-600);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--slate-700);
}

.check-list svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 4px;
  border-radius: 50%;
  background: var(--cyan-100);
  fill: none;
  stroke: var(--cyan-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.notice {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 12px 12px 0;
  background: #fff9e9;
  color: #665421;
  font-size: 0.84rem;
}

.schedule-card {
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.schedule-card__badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.schedule-card h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.schedule-card > p {
  margin-bottom: 28px;
  color: #c5d7e4;
  font-size: 0.9rem;
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.schedule-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.schedule-list > div > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(16, 181, 196, 0.17);
  color: #80e5ed;
  font-size: 0.7rem;
  font-weight: 900;
}

.schedule-list strong,
.schedule-list small {
  display: block;
}

.schedule-list strong {
  font-size: 0.88rem;
}

.schedule-list small {
  margin-top: 2px;
  color: #a9c0d1;
  font-size: 0.75rem;
}

.schedule-card .text-link {
  color: var(--gold-400);
}

.support {
  background: var(--white);
}

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

.support-grid article {
  padding: 30px 26px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.support-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: var(--slate-100);
  color: var(--navy-800);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.support-grid h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.support-grid p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.87rem;
  line-height: 1.7;
}

.cta-section {
  padding: 30px 0;
}

.cta-card {
  position: relative;
  display: flex;
  min-height: 310px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(40px, 6vw, 78px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 15%, rgba(16, 181, 196, 0.28), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.cta-card > div {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  margin-bottom: 15px;
  color: var(--white);
}

.cta-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #bfd1de;
}

.cta-card__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 11px;
}

.faq {
  background: var(--white);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 85px;
}

.faq__intro {
  position: sticky;
  top: 126px;
}

.faq__intro h2 {
  margin-bottom: 20px;
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--slate-600);
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__list details {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
}

.faq__list summary {
  display: flex;
  min-height: 76px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 24px;
  color: var(--navy-900);
  font-weight: 800;
}

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

.faq__list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--cyan-700);
  font-size: 1.2rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq__list details[open] {
  border-color: #b9dfe3;
  box-shadow: var(--shadow-sm);
}

.faq__list details[open] summary span {
  background: var(--cyan-100);
  transform: rotate(45deg);
}

.faq__list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--slate-600);
  font-size: 0.93rem;
  line-height: 1.75;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--navy-950);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 181, 196, 0.17), transparent 68%);
  content: "";
}

.contact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 80px;
}

.contact__intro h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.contact__intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #bcd0de;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  font-style: normal;
}

.contact__cards article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.contact__cards small {
  display: block;
  margin-bottom: 18px;
  color: #7fe1e9;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact__cards strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact__cards p {
  margin: 0;
  color: #a9bfce;
  font-size: 0.82rem;
  line-height: 1.65;
}

.contact__cards article > a {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer {
  padding: 64px 0 24px;
  background: #041321;
  color: #91a9ba;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 70px;
  padding-bottom: 46px;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer__brand img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}

.footer__brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.footer__brand p {
  max-width: 410px;
  margin: 0;
  font-size: 0.84rem;
}

.footer__main nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer__main nav a {
  font-size: 0.83rem;
}

.footer__main nav a:hover,
.footer__bottom a:hover {
  color: var(--gold-400);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

.footer__bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

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

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

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

  .topbar__inner > p,
  .desktop-nav,
  .header__actions {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    justify-content: space-between;
  }

  .mobile-nav {
    display: block;
  }

  .hero,
  .hero__content {
    min-height: 650px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(4, 25, 43, 0.96) 0%, rgba(5, 33, 55, 0.84) 57%, rgba(6, 38, 61, 0.26) 100%);
  }

  .hero__copy {
    width: min(650px, 82%);
  }

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

  .quick-info article:nth-child(2) {
    border-right: 0;
  }

  .quick-info article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--slate-200);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process__layout,
  .requirements__layout,
  .faq__layout,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .process__intro,
  .faq__intro {
    position: static;
  }

  .requirements__layout {
    gap: 20px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__main {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .footer__main nav:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: 66px;
    font-size: 15px;
  }

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

  .section {
    padding: 72px 0;
  }

  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 70px;
  }

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

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.67rem;
  }

  .hero,
  .hero__content {
    min-height: 670px;
  }

  .hero__media img {
    object-position: 69% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 25, 43, 0.96) 0%, rgba(5, 33, 55, 0.82) 100%),
      linear-gradient(0deg, rgba(4, 25, 43, 0.34), transparent);
  }

  .hero__content {
    align-items: flex-end;
    padding-block: 86px 88px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__buttons {
    display: grid;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .hero__note {
    display: none;
  }

  .quick-info {
    margin-top: -30px;
  }

  .quick-info__grid {
    grid-template-columns: 1fr;
  }

  .quick-info article,
  .quick-info article:nth-child(2) {
    min-height: 90px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .programs {
    padding-top: 86px;
  }

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

  .program-card {
    min-height: 330px;
    padding: 26px;
  }

  .process__layout {
    gap: 40px;
  }

  .steps li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding-right: 16px;
  }

  .steps li > span {
    width: 50px;
    height: 50px;
  }

  .steps::before {
    left: 24px;
  }

  .requirements__card,
  .schedule-card {
    border-radius: 22px;
  }

  .cta-section {
    padding: 16px 0;
  }

  .cta-card {
    min-height: auto;
    gap: 28px;
    padding: 36px 26px;
    border-radius: 22px;
  }

  .cta-card__actions {
    display: grid;
    width: 100%;
  }

  .faq__layout,
  .contact__layout {
    gap: 40px;
  }

  .faq__list summary {
    min-height: 68px;
    padding: 18px;
    font-size: 0.92rem;
  }

  .faq__list details p {
    padding: 0 18px 20px;
  }

  .contact {
    padding: 78px 0;
  }

  .contact__cards article {
    min-height: 160px;
  }

  .footer {
    padding-top: 50px;
  }

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

  .footer__main nav:last-child {
    grid-column: auto;
  }

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

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--slate-200);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 30px rgba(7, 35, 58, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border: 1px solid var(--navy-900);
    border-radius: 999px;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 850;
  }

  .mobile-cta a:last-child {
    background: var(--navy-900);
    color: var(--white);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .hero__buttons,
  .mobile-cta,
  .cta-section,
  .footer {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .contact,
  .process {
    padding: 32px 0;
    background: #fff;
    color: #000;
  }

  h1,
  h2,
  h3,
  .hero h1,
  .process h2,
  .process h3,
  .contact h2 {
    color: #000;
  }
}
