:root {
  --bg: #071019;
  --bg-elevated: #0b1722;
  --bg-soft: #101d28;
  --gold: #d4af5a;
  --gold-strong: #f0d381;
  --silver: #e4e4e4;
  --muted: #a9b1ba;
  --line: rgba(228, 228, 228, 0.14);
  --teal: #6ec6ba;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1260px;
  --page-pad: clamp(22px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--silver);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(7, 16, 25, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 90, 0.12);
  display: flex;
  height: 74px;
  justify-content: space-between;
  left: 0;
  padding: 0 var(--page-pad);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--silver);
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 12px;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(212, 175, 90, 0.08);
  border: 1px solid rgba(212, 175, 90, 0.3);
  display: grid;
  height: 44px;
  overflow: hidden;
  place-items: center;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a {
  color: rgba(228, 228, 228, 0.82);
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--gold-strong);
}

.nav-cta {
  border: 1px solid rgba(212, 175, 90, 0.52);
  color: var(--gold) !important;
  padding: 10px 16px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--silver);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 96vh;
  overflow: hidden;
  padding: 118px var(--page-pad) 72px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 25, 0.98) 0%, rgba(7, 16, 25, 0.88) 34%, rgba(7, 16, 25, 0.34) 68%, rgba(7, 16, 25, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 16, 25, 0.14) 0%, #071019 100%);
}

.hero-content {
  align-items: center;
  display: block;
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  color: #fff;
  font-size: clamp(3rem, 6.8vw, 6.25rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 980px;
}

h1 span {
  display: block;
}

h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 20px;
}

h3 {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(228, 228, 228, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  text-align: center;
}

.button-primary {
  background: var(--gold);
  color: #071019;
}

.button-primary:hover {
  background: var(--gold-strong);
}

.button-ghost {
  border-color: rgba(228, 228, 228, 0.24);
  color: var(--silver);
}

.button-ghost:hover {
  border-color: rgba(212, 175, 90, 0.7);
  color: var(--gold-strong);
}

.trust-row {
  align-self: end;
  background: linear-gradient(180deg, rgba(7, 16, 25, 0.62), rgba(7, 16, 25, 0.28));
  border-left: 1px solid rgba(212, 175, 90, 0.42);
  display: grid;
  gap: 24px;
  grid-column: 2;
  grid-row: 1 / span 4;
  margin-bottom: 8px;
  max-width: 360px;
  padding: 28px 0 28px 28px;
}

.trust-row span {
  color: var(--muted);
}

.trust-row strong {
  color: var(--gold);
  display: block;
  font-size: 1.15rem;
}

.section {
  padding: clamp(82px, 9vw, 132px) var(--page-pad);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(212, 175, 90, 0.08), transparent 28%, rgba(110, 198, 186, 0.06) 100%),
    #091521;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 42px;
  padding-top: 42px;
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(22px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.92fr) auto;
}

.intro-grid p {
  color: rgba(228, 228, 228, 0.88);
  font-size: clamp(1.08rem, 1.85vw, 1.42rem);
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 840px;
}

.intro-metrics {
  display: grid;
  gap: 1px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.metric {
  align-items: center;
  background: rgba(7, 16, 25, 0.3);
  border: 1px solid rgba(228, 228, 228, 0.08);
  display: flex;
  gap: 18px;
  min-height: 126px;
  padding: 24px clamp(22px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.metric::after {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 90, 0.16), transparent);
  content: "";
  height: 1px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}

.metric strong {
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.metric span {
  color: rgba(228, 228, 228, 0.82);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
}

.metric-360 strong {
  align-items: center;
  aspect-ratio: 1;
  display: grid;
  min-width: 96px;
  place-items: center;
  position: relative;
}

.metric-360 strong::before,
.metric-360 strong::after {
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
}

.metric-360 strong::before {
  border: 1px solid rgba(212, 175, 90, 0.28);
}

.metric-360 strong::after {
  animation: spin-360 8s linear infinite;
  border: 1px solid transparent;
  border-left-color: var(--gold);
  border-top-color: var(--gold);
}

@keyframes spin-360 {
  to {
    transform: rotate(360deg);
  }
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.split {
  display: grid;
  gap: clamp(40px, 8vw, 118px);
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
}

.section-kicker {
  max-width: 460px;
}

.feature-list {
  border-top: 1px solid rgba(212, 175, 90, 0.22);
}

.feature-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 34px 0;
  transition: border-color 220ms ease, transform 220ms ease;
}

.feature-item:hover {
  border-color: rgba(212, 175, 90, 0.42);
  transform: translateX(10px);
}

.feature-index,
.program-card span,
.step span {
  color: var(--gold);
  font-weight: 800;
}

.feature-item h3,
.feature-item p {
  grid-column: 2;
}

.feature-item p,
.program-card p,
.step p,
.section-heading p,
.proof p,
.faq p,
.contact p {
  color: var(--muted);
}

.education,
.proof {
  background:
    linear-gradient(180deg, rgba(212, 175, 90, 0.04), transparent 38%),
    var(--bg-elevated);
}

.section-heading {
  margin-bottom: 48px;
  max-width: 720px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.method-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
}

.method-media {
  background: #050b11;
  border: 1px solid rgba(212, 175, 90, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.method-media::after {
  background:
    linear-gradient(180deg, rgba(7, 16, 25, 0.02) 0%, rgba(7, 16, 25, 0.18) 46%, rgba(7, 16, 25, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 16, 25, 0.4) 0%, rgba(7, 16, 25, 0.02) 58%, rgba(212, 175, 90, 0.1) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.method-media figcaption {
  bottom: 0;
  color: rgba(228, 228, 228, 0.88);
  font-size: 0.96rem;
  font-weight: 700;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.method-media figcaption span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

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

.program-card {
  background:
    linear-gradient(180deg, rgba(212, 175, 90, 0.08), rgba(7, 16, 25, 0.34) 42%),
    rgba(7, 16, 25, 0.42);
  border: 1px solid rgba(228, 228, 228, 0.1);
  border-top-color: rgba(212, 175, 90, 0.46);
  border-radius: var(--radius);
  min-height: 268px;
  padding: 32px;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.program-card:nth-child(2) {
  margin-top: 34px;
}

.program-card:nth-child(3) {
  margin-top: 68px;
}

.program-card:hover {
  background: rgba(7, 16, 25, 0.74);
  border-color: rgba(212, 175, 90, 0.5);
  transform: translateY(-4px);
}

.program-journey {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
}

.stage-tabs {
  align-content: start;
  display: grid;
  gap: 12px;
}

.stage-tab {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(228, 228, 228, 0.12);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 800;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  text-align: left;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.stage-tab::before {
  background: rgba(212, 175, 90, 0.26);
  content: "";
  height: 1px;
  width: 34px;
}

.stage-tab:hover,
.stage-tab.is-active {
  border-color: rgba(212, 175, 90, 0.58);
  color: var(--gold);
  transform: translateX(8px);
}

.stage-stack {
  min-height: 430px;
  position: relative;
}

.stage-card {
  inset: 0 auto auto 0;
  margin-top: 0 !important;
  min-height: 390px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(42px) scale(0.92);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease,
    border-color 220ms ease;
  width: min(720px, calc(100% - 72px));
}

.stage-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  max-width: 620px;
}

.stage-card p {
  font-size: 1.02rem;
  max-width: 620px;
}

.stage-card strong {
  color: var(--silver);
}

.stage-card.is-active {
  filter: none;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) scale(1);
  z-index: 8;
}

.stage-card.is-next-1 {
  filter: saturate(0.82) brightness(0.78);
  opacity: 0.72;
  transform: translate(22px, 20px) scale(0.965);
  z-index: 7;
}

.stage-card.is-next-2 {
  filter: saturate(0.68) brightness(0.62);
  opacity: 0.42;
  transform: translate(44px, 40px) scale(0.93);
  z-index: 6;
}

.stage-card.is-next-3 {
  filter: saturate(0.55) brightness(0.48);
  opacity: 0.22;
  transform: translate(66px, 60px) scale(0.895);
  z-index: 5;
}

.stage-note {
  border-left: 1px solid rgba(212, 175, 90, 0.48);
  color: rgba(212, 175, 90, 0.92) !important;
  font-size: 0.94rem !important;
  margin-top: 18px;
  padding-left: 14px;
}

.program-journey[data-stage-carousel] {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.stage-carousel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.stage-counter {
  align-items: baseline;
  display: flex;
  gap: 10px;
}

.stage-counter span {
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.stage-counter small {
  color: var(--muted);
  font-size: 0.92rem;
}

.stage-controls {
  display: flex;
  gap: 10px;
}

.stage-arrow {
  align-items: center;
  background: rgba(7, 16, 25, 0.48);
  border: 1px solid rgba(212, 175, 90, 0.4);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  font: inherit;
  font-size: 1.9rem;
  font-weight: 400;
  height: 48px;
  line-height: 1;
  place-items: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 48px;
}

.stage-arrow:hover {
  background: rgba(212, 175, 90, 0.12);
  border-color: rgba(212, 175, 90, 0.7);
  transform: translateY(-2px);
}

.stage-viewport {
  overflow: hidden;
  padding: 2px;
}

.stage-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.program-journey[data-stage-carousel] .stage-card {
  flex: 0 0 100%;
  filter: none;
  margin: 0 !important;
  min-height: 390px;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: none;
  width: 100%;
  z-index: auto;
}

.program-journey[data-stage-carousel] .stage-card:not(.is-active) {
  opacity: 0.52;
}

.program-journey[data-stage-carousel] .stage-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  order: 3;
}

.program-journey[data-stage-carousel] .stage-tab {
  border-radius: 999px;
  justify-content: center;
  min-height: 38px;
  min-width: 38px;
  padding: 0;
  width: 38px;
}

.program-journey[data-stage-carousel] .stage-tab::before {
  display: none;
}

.program-journey[data-stage-carousel] .stage-tab:hover,
.program-journey[data-stage-carousel] .stage-tab.is-active {
  transform: translateY(-2px);
}

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

.method-layout .steps {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.step {
  background: transparent;
  border-bottom: 1px solid var(--line);
  min-height: 0;
  padding: 0 0 30px 74px;
  position: relative;
}

.step span {
  align-items: center;
  border: 1px solid rgba(212, 175, 90, 0.45);
  background: #071019;
  display: grid;
  height: 38px;
  left: 0;
  margin-bottom: 0;
  place-items: center;
  position: absolute;
  top: 2px;
  width: 38px;
}

.step:not(:last-child) {
  margin-bottom: 30px;
}

.step::before {
  background: linear-gradient(180deg, rgba(212, 175, 90, 0.55), rgba(228, 228, 228, 0.1));
  content: "";
  height: calc(100% + 30px);
  left: 18px;
  position: absolute;
  top: 40px;
  width: 1px;
}

.step:last-child::before {
  display: none;
}

.proof-grid {
  display: grid;
  gap: clamp(36px, 8vw, 98px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 440px);
}

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

.check-list li {
  border-bottom: 1px solid var(--line);
  color: rgba(228, 228, 228, 0.9);
  padding: 0 0 16px 34px;
  position: relative;
}

.check-list li::before {
  color: var(--teal);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
  top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

summary {
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.contact {
  background: #06131d;
}

.contact-grid {
  display: grid;
  gap: clamp(40px, 8vw, 108px);
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 560px);
}

.lead-form {
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 175, 90, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(20px, 4vw, 32px);
}

.lead-form label {
  color: rgba(228, 228, 228, 0.86);
  display: grid;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 8px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: #071019;
  border: 1px solid rgba(228, 228, 228, 0.16);
  border-radius: 4px;
  color: var(--silver);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}

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

.form-status {
  color: var(--teal);
  font-size: 0.92rem;
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.4em;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px var(--page-pad);
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .reveal h2,
.js h1 span {
  clip-path: inset(0 0 100% 0);
  transform: translateY(0.35em);
  transition: clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible h2,
.js .hero.is-visible h1 span {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.js .hero h1 span:nth-child(2) {
  transition-delay: 120ms;
}

.js .stagger-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.js .is-visible .stagger-item,
.js .stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js .reveal,
  .js .stagger-item,
  .js .reveal h2,
  .js h1 span,
  .metric-360 strong::after {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    background: #071019;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 0;
    padding: 22px;
    position: absolute;
    right: 0;
    top: 74px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 760px;
    padding-top: 112px;
  }

  .hero-content {
    display: block;
  }

  .trust-row {
    background: transparent;
    border-left: 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 18px 32px;
    margin: 34px 0 0;
    max-width: 650px;
    padding: 24px 0 0;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 16, 25, 0.98) 0%, rgba(7, 16, 25, 0.86) 50%, #071019 100%),
      rgba(7, 16, 25, 0.25);
  }

  .intro-grid,
  .intro-metrics,
  .split,
  .method-layout,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .method-media {
    min-height: 420px;
  }

  .program-card:nth-child(2),
  .program-card:nth-child(3) {
    margin-top: 0;
  }

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

  .program-journey {
    grid-template-columns: 1fr;
  }

  .stage-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .stage-tab {
    flex: 0 0 auto;
    min-width: 74px;
  }

  .stage-tab::before {
    width: 18px;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 66px;
  }

  .nav {
    top: 66px;
  }

  .hero {
    min-height: 720px;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.35rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .program-grid,
  .intro-metrics,
  .steps,
  .method-layout .steps,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .stage-stack {
    min-height: 560px;
  }

  .stage-card {
    min-height: 500px;
    padding: 28px;
    width: calc(100% - 36px);
  }

  .stage-card.is-next-1 {
    transform: translate(12px, 18px) scale(0.965);
  }

  .stage-card.is-next-2 {
    transform: translate(24px, 36px) scale(0.93);
  }

  .stage-card.is-next-3 {
    transform: translate(36px, 54px) scale(0.895);
  }

  .program-journey[data-stage-carousel] .stage-card {
    min-height: 520px;
    width: 100%;
  }

  .program-journey[data-stage-carousel] .stage-tabs {
    justify-content: flex-start;
  }

  .method-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .method-media figcaption {
    padding: 22px;
  }

  .step {
    padding-left: 58px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-item h3,
  .feature-item p {
    grid-column: 1;
  }

  .intro-grid {
    gap: 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
