:root {
  --orange: #f05a24;
  --orange-2: #ff8a3d;
  --black: #08090c;
  --ink: #11131a;
  --dark: #151821;
  --navy: #151821;
  --orange-soft: rgba(240, 90, 36, 0.11);
  --orange-dark: #c74416;
  --shadow-sm: 0 14px 38px rgba(8, 9, 12, 0.08);
  --gray: #5d6675;
  --soft: #f6f3ef;
  --white: #fff;
  --line: rgba(17, 19, 26, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(8, 9, 12, 0.14);
  --shadow-hover: 0 30px 84px rgba(8, 9, 12, 0.18);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-image: 30px;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 1rem;
  color: var(--gray);
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  font-weight: 900;
}
h3 {
  font-size: 1.35rem;
  font-weight: 850;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 76px;
  padding: 0 clamp(18px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(8, 9, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 13px;
  padding: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.brand span {
  max-width: 215px;
  line-height: 1.1;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 750;
  transition: 0.2s ease;
}
.nav-menu a:hover {
  color: #fff;
}
.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(240, 90, 36, 0.4);
  border-radius: 999px;
  background: rgba(240, 90, 36, 0.14);
  color: #fff !important;
}

.nav-item {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open > .nav-dropdown-toggle {
  color: #fff;
}
.nav-dropdown-toggle span {
  color: var(--orange-2);
  font-size: 0.74rem;
  transition: transform 0.2s ease;
}
.nav-dropdown.is-open > .nav-dropdown-toggle span,
.nav-dropdown:hover > .nav-dropdown-toggle span,
.nav-dropdown:focus-within > .nav-dropdown-toggle span {
  transform: rotate(180deg);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: rgba(8, 9, 12, 0.95);
  border: 1px solid rgba(240, 90, 36, 0.24);
  border-radius: 18px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.nav-submenu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.nav-submenu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(240, 90, 36, 0.16);
  color: #fff;
}
.nav-dropdown:hover > .nav-submenu,
.nav-dropdown:focus-within > .nav-submenu,
.nav-dropdown.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: transparent;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero,
.page-hero {
  position: relative;
  padding: 138px clamp(18px, 5vw, 70px) 82px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(240, 90, 36, 0.26),
      transparent 28rem
    ),
    radial-gradient(
      circle at 18% 90%,
      rgba(255, 255, 255, 0.09),
      transparent 24rem
    ),
    linear-gradient(135deg, #08090c, #151821 62%, #0b0d13);
  color: #fff;
}
.hero-home {
  --hero-visual-height: clamp(560px, 64vh, 660px);
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 4.6vw, 84px);
}
.hero-home:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 30% 30%, #000 0 28%, transparent 72%);
  opacity: 0.34;
}
.hero-home:after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: -16vw;
  top: 12%;
  pointer-events: none;
  border: 1px solid rgba(240, 90, 36, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(240, 90, 36, 0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
  box-shadow: inset 0 0 70px rgba(240, 90, 36, 0.06);
  opacity: 0.42;
  animation: techDrift 14s ease-in-out infinite;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.hero-bg span:nth-child(1) {
  width: 190px;
  height: 190px;
  right: 12%;
  top: 15%;
  background: rgba(240, 90, 36, 0.26);
}
.hero-bg span:nth-child(2) {
  width: 90px;
  height: 90px;
  left: 8%;
  bottom: 20%;
  background: rgba(255, 255, 255, 0.14);
  animation-delay: 1.4s;
}
.hero-bg span:nth-child(3) {
  width: 130px;
  height: 130px;
  right: 44%;
  bottom: 12%;
  background: rgba(240, 90, 36, 0.16);
  animation-delay: 2.5s;
}
@keyframes float {
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}
@keyframes techDrift {
  50% {
    transform: translate3d(-18px, 10px, 0) rotate(4deg);
  }
}
.hero-content,
.hero-media,
.page-hero > * {
  position: relative;
  z-index: 1;
}
.hero h1,
.page-hero h1,
.hero h2,
.page-hero h2 {
  color: #fff;
}
.hero-home .hero-content {
  align-self: center;
  display: flex;
  min-height: var(--hero-visual-height);
  max-width: 760px;
  padding-top: clamp(10px, 1.2vw, 18px);
  flex-direction: column;
  justify-content: center;
}
.hero-home h1 {
  max-width: 790px;
  font-size: clamp(4rem, 7.2vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: -0.062em;
  text-wrap: balance;
}
.page-hero {
  min-height: 56svh;
  display: grid;
  align-content: end;
}
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.18rem;
}
.hero-copy {
  max-width: 600px;
  margin: 1.15rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 1.05rem;
  color: var(--orange-2);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 24px currentColor;
}
.hero .eyebrow,
.page-hero .eyebrow,
.final-cta .eyebrow {
  padding: 7px 13px;
  border: 1px solid rgba(240, 90, 36, 0.32);
  border-radius: 999px;
  background: rgba(240, 90, 36, 0.13);
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 18px 38px rgba(240, 90, 36, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(240, 90, 36, 0.36);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.btn-secondary:hover {
  border-color: rgba(240, 90, 36, 0.45);
  background: rgba(240, 90, 36, 0.12);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 25px rgba(8, 9, 12, 0.06);
}
.btn-ghost:hover {
  border-color: rgba(240, 90, 36, 0.3);
  box-shadow: 0 18px 38px rgba(8, 9, 12, 0.1);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2.1rem;
  max-width: 540px;
}
.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}
.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}
.hero-metrics span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.hero-media {
  align-self: center;
  min-height: 560px;
  height: var(--hero-visual-height);
  border-radius: var(--radius-image);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  isolation: isolate;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.media-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(8, 9, 12, 0.55);
  backdrop-filter: blur(16px);
  color: #fff;
}
.media-card strong {
  display: block;
}
.media-card span {
  color: rgba(255, 255, 255, 0.68);
}
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black);
  padding: 1px;
}
.trust-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  background: #11131a;
  color: #fff;
  font-weight: 850;
  text-align: center;
}
.trust-bar span {
  color: var(--orange-2);
  font-size: 1.2rem;
}

.value-investment-section {
  padding: clamp(86px, 9vw, 116px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(240, 90, 36, 0.16),
      transparent 24rem
    ),
    linear-gradient(135deg, #0b0c11, #151821);
  color: #fff;
  overflow-x: clip;
}
.value-investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  overflow: visible;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 9, 12, 0.48);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}
.value-investment-copy {
  min-width: 0;
  max-width: 760px;
}
.value-investment-copy h2 {
  color: #fff;
  max-width: 720px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.96;
}
.value-investment-copy p {
  color: rgba(255, 255, 255, 0.72);
}
.value-investment-copy p:first-of-type {
  margin-top: clamp(22px, 3vw, 34px);
}
.value-investment-copy p:last-of-type {
  margin-bottom: 1.45rem;
}
.value-investment-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}
.value-investment-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.section {
  padding: clamp(86px, 9vw, 116px) clamp(18px, 5vw, 70px);
}
.section > *,
.footer-grid,
.footer-bottom {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.white {
  background: #fff;
}
.dark {
  background: linear-gradient(135deg, #08090c, #151821);
  color: #fff;
}
.dark h2,
.dark h3 {
  color: #fff;
}
.dark p {
  color: rgba(255, 255, 255, 0.68);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.section-head > p {
  font-size: 1.08rem;
}
.split,
.classroom,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split > *,
.classroom > *,
.contact-section > * {
  max-width: none;
}
.benefit-grid,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.benefit-card,
.program-card,
.video-card,
.contact-card,
.contact-aside > div,
.values article,
.program-detail-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 48px rgba(8, 9, 12, 0.06);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.benefit-card:hover,
.video-card:hover,
.contact-card:hover,
.contact-aside > div:hover,
.values article:hover,
.program-detail-card:hover,
.steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 36, 0.22);
  box-shadow: var(--shadow-hover);
}
.benefit-card span,
.values span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--black);
  color: var(--orange-2);
  font-weight: 900;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.program-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.program-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(240, 90, 36, 0.75),
    transparent 40%,
    rgba(8, 9, 12, 0.18)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.program-card.featured {
  background: linear-gradient(180deg, #151821, #090a0e);
  color: #fff;
}
.program-card.featured h3 {
  color: #fff;
}
.program-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}
.program-card.premium-plus-card {
  isolation: isolate;
  border: 1px solid rgba(212, 175, 55, 0.78);
  background:
    linear-gradient(135deg, rgba(20, 16, 10, 0.94) 0%, rgba(107, 78, 22, 0.92) 38%, rgba(212, 175, 55, 0.9) 78%, rgba(246, 226, 122, 0.9) 100%),
    #14100a;
  color: #fff8db;
  box-shadow:
    0 26px 64px rgba(107, 78, 22, 0.34),
    0 0 0 1px rgba(246, 226, 122, 0.32),
    inset 0 1px 0 rgba(246, 226, 122, 0.36),
    inset 0 -18px 42px rgba(20, 16, 10, 0.28);
}
.program-card.premium-plus-card:before {
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(246, 226, 122, 0.96),
    rgba(212, 175, 55, 0.84) 38%,
    rgba(107, 78, 22, 0.78) 68%,
    rgba(246, 226, 122, 0.72)
  );
  opacity: 1;
}
.program-card.premium-plus-card:after {
  content: "";
  position: absolute;
  inset: -35% auto auto -25%;
  z-index: 0;
  width: 82%;
  height: 150%;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18) 45%, transparent 72%);
  transform: rotate(8deg);
  pointer-events: none;
}
.program-card.premium-plus-card > * {
  position: relative;
  z-index: 2;
}
.program-card.premium-plus-card:hover {
  box-shadow:
    0 32px 76px rgba(107, 78, 22, 0.42),
    0 0 34px rgba(212, 175, 55, 0.28),
    0 0 0 1px rgba(246, 226, 122, 0.4),
    inset 0 1px 0 rgba(246, 226, 122, 0.42),
    inset 0 -18px 42px rgba(20, 16, 10, 0.24);
}
.program-card.premium-plus-card .level,
.program-card.premium-plus-card h3,
.program-card.premium-plus-card p,
.program-card.premium-plus-card li {
  color: #fff8db;
}
.program-card.premium-plus-card .age,
.program-card.premium-plus-card p {
  color: rgba(255, 248, 219, 0.82);
}
.program-card.premium-plus-card .tech-list li {
  border-color: rgba(246, 226, 122, 0.26);
  background: rgba(20, 16, 10, 0.32);
}
.premium-plus-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 226, 122, 0.82);
  border-radius: 999px;
  background: linear-gradient(135deg, #f6e27a, #d4af37 58%, #b8860b);
  color: #14100a;
  box-shadow: 0 10px 24px rgba(20, 16, 10, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.program-card.premium-plus-card .project-sticker {
  border-color: rgba(246, 226, 122, 0.42);
  background:
    linear-gradient(135deg, rgba(20, 16, 10, 0.62), rgba(107, 78, 22, 0.5)),
    linear-gradient(135deg, rgba(246, 226, 122, 0.22), rgba(212, 175, 55, 0.16));
  color: #fff8db;
  box-shadow:
    0 18px 44px rgba(20, 16, 10, 0.32),
    inset 0 1px 0 rgba(246, 226, 122, 0.2);
}
.program-card.premium-plus-card .project-sticker:before {
  border-color: rgba(246, 226, 122, 0.2);
}
.program-card.premium-plus-card .project-sticker__level,
.program-card.premium-plus-card .project-sticker span:last-child {
  color: rgba(255, 248, 219, 0.74);
}
.program-card.premium-plus-card .progress {
  background: rgba(20, 16, 10, 0.38);
}
.program-card.premium-plus-card .progress span {
  background: linear-gradient(90deg, #b8860b, #d4af37 55%, #f6e27a);
  box-shadow: 0 0 18px rgba(246, 226, 122, 0.42);
}
.program-card.premium-plus-card .btn {
  border-color: rgba(246, 226, 122, 0.78);
  background: linear-gradient(135deg, #f6e27a, #d4af37 55%, #b8860b);
  color: #14100a;
  box-shadow: 0 16px 34px rgba(20, 16, 10, 0.28);
}
.program-card.premium-plus-card .btn:hover {
  border-color: rgba(255, 248, 219, 0.94);
  background: linear-gradient(135deg, #fff3a8, #d4af37 56%, #9d7108);
  color: #14100a;
}
.level {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.age {
  font-size: 0.92rem;
  font-weight: 750;
}
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.tech-list li,
.tech-list span {
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(240, 90, 36, 0.1);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
}
.tech-list.big span {
  font-size: 0.95rem;
}
.progress {
  height: 8px;
  margin: 18px 0 22px;
  border-radius: 999px;
  background: rgba(93, 102, 117, 0.16);
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}
.check-list {
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 0.75rem 0;
  padding-left: 30px;
  color: var(--gray);
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}
.masonry {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
}
.masonry article,
.portfolio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-image);
  background: #222;
  box-shadow: var(--shadow-dark);
  isolation: isolate;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.masonry article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(8, 9, 12, 0.72));
  pointer-events: none;
}
.masonry article:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 36, 0.32);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}
.masonry article:first-child {
  grid-row: span 2;
}
.masonry img,
.portfolio-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.masonry article:hover img,
.portfolio-card:hover img,
.image-panel:hover img {
  transform: scale(1.035);
}
.masonry span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.68);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.image-panel {
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow);
  background: #ddd;
}
.classroom {
  background: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps article {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.steps span {
  display: block;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
}
.stories {
  background: var(--soft);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-preview {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16/10;
  margin: -10px -10px 20px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(240, 90, 36, 0.42),
      transparent 14rem
    ),
    linear-gradient(135deg, #151821, #08090c);
  color: #fff;
  font-size: 1.7rem;
}
.video-preview:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.38;
}
.video-preview:after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 34px rgba(240, 90, 36, 0.28);
}
.video-preview {
  text-shadow: 0 0 20px rgba(240, 90, 36, 0.35);
}
.video-preview > span {
  position: relative;
  z-index: 2;
}
.video-card blockquote {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-question span {
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-answer p {
  padding: 0 22px 22px;
}
.final-cta {
  position: relative;
  padding: 110px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(240, 90, 36, 0.3),
      transparent 26rem
    ),
    linear-gradient(135deg, #08090c, #151821);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.final-cta > * {
  position: relative;
  max-width: 880px;
  margin: auto;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 24px;
}
.final-cta .hero-actions {
  justify-content: center;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.timeline {
  display: grid;
  gap: 12px;
}
.timeline div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 9, 12, 0.05);
}
.timeline strong {
  font-weight: 900;
}
.timeline span {
  color: var(--gray);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-bar button {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.filter-bar button.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-card {
  background: #fff;
}
.portfolio-card img {
  height: 260px;
}
.portfolio-card div {
  padding: 22px;
}
.portfolio-card.is-hidden {
  display: none;
}
.contact-section {
  align-items: start;
}
.contact-card {
  padding: 32px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 36, 0.14);
}
.is-invalid {
  border-color: #c62828 !important;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.12) !important;
}
.form-status,
.form-validation-message {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 800;
}
.is-visible {
  display: block;
}
.loading-message {
  color: #0d47a1;
  background: #e8f1ff;
}
.success-message {
  color: #155724;
  background: #e8f7ed;
}
.error-message,
.form-validation-message {
  color: #721c24;
  background: #fdebec;
}
.contact-aside {
  display: grid;
  gap: 18px;
}
.site-footer {
  padding: 62px clamp(18px, 5vw, 70px) 26px;
  background: #08090c;
  color: rgba(255, 255, 255, 0.64);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.05fr;
  gap: 32px;
  margin-bottom: 34px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}
.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 13px;
  padding: 3px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin: 0.35rem 0;
}
.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.64);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1100px) {
  .split,
  .classroom,
  .contact-section,
  .section-head {
    grid-template-columns: 1fr;
  }
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-media {
    min-height: 480px;
    height: min(var(--hero-visual-height), 560px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hero-home {
    grid-template-columns: 1fr;
  }
  .hero-home .hero-content {
    min-height: auto;
  }
  .hero-media {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .nav-menu {
    gap: 0.9rem;
  }

  .nav-menu a {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding-inline: 12px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    display: none;
    inset: 88px 16px auto;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-menu a {
    display: block;
    padding: 14px;
    border-radius: 14px;
    color: var(--ink);
  }
  .nav-menu a:hover {
    background: rgba(240, 90, 36, 0.1);
    color: var(--orange);
  }
  .nav-cta {
    background: var(--orange);
    color: #fff !important;
    text-align: center;
  }
  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .masonry article:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
  .video-grid,
  .values,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }
  .hero,
  .page-hero {
    padding-top: 120px;
  }
  .hero-home {
    min-height: auto;
  }
  .hero-home .hero-content {
    min-height: auto;
    padding-top: 0;
  }
  .hero-home h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
    letter-spacing: -0.045em;
  }
  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }
  .hero-metrics,
  .program-grid,
  .benefit-grid,
  .trust-bar,
  .steps,
  .portfolio-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-media,
  .image-panel {
    min-height: 330px;
    height: 330px;
  }
  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .masonry article:first-child {
    grid-column: auto;
  }
  .brand span {
    max-width: 170px;
    font-size: 0.94rem;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .contact-card,
  .benefit-card,
  .program-card,
  .video-card {
    padding: 22px;
  }
}
.site-footer .btn-primary {
  color: #fff;
}
.site-footer .btn-ghost {
  color: var(--ink);
}

/* About page premium trust experience */
.about-hero {
  min-height: auto;
  display: block;
  padding-bottom: clamp(78px, 8vw, 112px);
}
.about-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 72% 35%, #000 0 24%, transparent 68%);
  opacity: 0.3;
}
.about-hero:after {
  content: "";
  position: absolute;
  width: min(520px, 54vw);
  height: min(520px, 54vw);
  right: -12vw;
  bottom: -18vw;
  border: 1px solid rgba(240, 90, 36, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 90, 36, 0.16), transparent 62%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
  box-shadow: inset 0 0 80px rgba(240, 90, 36, 0.08);
  opacity: 0.55;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
  gap: clamp(34px, 4.4vw, 60px);
  align-items: center;
  max-width: 1120px;
  min-height: clamp(520px, 58svh, 660px);
  margin-inline: auto;
}
.about-hero-copy {
  max-width: 680px;
}
.about-hero h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 5.6vw, 5.85rem);
  line-height: 0.96;
  text-wrap: balance;
}
.about-hero p:not(.eyebrow) {
  max-width: 590px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}
.about-hero-visual {
  position: relative;
  min-height: clamp(420px, 42vw, 540px);
  perspective: 1200px;
}
.about-hero-visual:before,
.about-hero-visual:after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}
.about-hero-visual:before {
  inset: 8% -7% auto auto;
  width: 78%;
  height: 58%;
  background: radial-gradient(circle, rgba(240, 90, 36, 0.24), transparent 66%);
  filter: blur(20px);
  opacity: 0.72;
}
.about-hero-visual:after {
  left: 4%;
  right: 10%;
  bottom: -2%;
  height: 34%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(34px);
  transform: rotate(-3deg);
}
.about-hero-image,
.about-hero-float {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #10131a;
  box-shadow: var(--shadow-dark);
  isolation: isolate;
}
.about-hero-image {
  inset: 3% 3% 10% 6%;
  border-radius: var(--radius-image);
  transform: rotate(0.8deg);
  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease;
}
.about-hero-image:before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.04) 38%, rgba(8, 9, 12, 0.66));
}
.about-hero-image img,
.about-hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}
.about-hero-image img {
  animation: premiumImageDrift 16s ease-in-out infinite;
}
.about-hero-float {
  left: 0;
  bottom: 2%;
  width: 40%;
  height: 31%;
  z-index: 3;
  border-radius: 22px;
  transform: rotate(-2deg);
}
.about-hero-float:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 9, 12, 0.52));
}
.about-hero-card {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 30px;
  max-width: min(360px, 72%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(8, 9, 12, 0.68);
  color: #fff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.about-hero-card strong,
.about-hero-card span {
  display: block;
}
.about-hero-card strong {
  margin-bottom: 4px;
}
.about-hero-card span {
  color: rgba(255, 255, 255, 0.7);
}
.about-hero-visual:hover .about-hero-image {
  transform: translateY(-6px) rotate(0.6deg);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.42);
}
.about-hero-visual:hover img {
  transform: scale(1.045);
}
@keyframes premiumImageDrift {
  50% {
    transform: scale(1.045) translate3d(-1.5%, -1%, 0);
  }
}
.about-intro {
  position: relative;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 4.2vw, 54px);
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  background:
    radial-gradient(circle at 6% 12%, rgba(240, 90, 36, 0.1), transparent 22rem),
    var(--soft);
}
.lead {
  color: #3a414d;
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  font-weight: 650;
}
.classroom-frame {
  position: relative;
  min-height: clamp(430px, 42vw, 500px);
}
.classroom-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-image);
  background: #ddd;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.classroom-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 9, 12, 0.48));
  pointer-events: none;
}
.classroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.classroom-frame:hover .classroom-photo img {
  transform: scale(1.035);
}
.main-photo {
  inset: 0 11% 16% 0;
}
.support-photo {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 34%;
  border-radius: 22px;
}
.classroom-photo span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.66);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.guidance-card {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 26%;
  bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(8, 9, 12, 0.68);
  color: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}
.guidance-card strong,
.guidance-card span {
  display: block;
}
.guidance-card span {
  color: rgba(255, 255, 255, 0.7);
}
.mission-section,
.trust-section {
  position: relative;
  overflow: hidden;
}
.mission-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 90, 36, 0.1), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 58%, rgba(246, 243, 239, 0.72) 100%);
}
.mission-section:before {
  content: "";
  position: absolute;
  inset: clamp(24px, 4vw, 54px) clamp(18px, 5vw, 70px);
  max-width: var(--max);
  margin-inline: auto;
  border: 1px solid rgba(17, 19, 26, 0.06);
  border-radius: calc(var(--radius) + 18px);
  background: linear-gradient(135deg, rgba(240, 90, 36, 0.045), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.mission-wrap {
  display: grid;
  gap: clamp(22px, 3.6vw, 42px);
  align-items: start;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.mission-heading {
  max-width: 1040px;
}
.mission-wrap h2 {
  max-width: 1040px;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.mission-copy {
  max-width: 940px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(240, 90, 36, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 239, 0.86)),
    radial-gradient(circle at 92% 18%, rgba(255, 138, 61, 0.16), transparent 34%);
  box-shadow: 0 24px 70px rgba(8, 9, 12, 0.08);
}
.mission-copy p {
  max-width: 780px;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}
.mission-pillars,
.trust-card-grid {
  display: grid;
  gap: 18px;
}
.mission-pillars {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mission-pillars article,
.trust-card-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 48px rgba(8, 9, 12, 0.06);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.mission-pillars article:hover,
.trust-card-grid article:hover,
.learning-cycle article:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 36, 0.24);
  box-shadow: var(--shadow-hover);
}
.mission-section h2,
.mission-section h3,
.mission-section p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.mission-pillars span,
.trust-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--black);
  color: var(--orange-2);
  font-weight: 900;
}
@media (max-width: 760px) {
  .mission-section:before {
    inset: 16px;
    border-radius: 30px;
  }
  .mission-wrap {
    gap: 20px;
    margin-bottom: 18px;
  }
  .mission-wrap h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
    line-height: 1.05;
    text-wrap: pretty;
  }
  .mission-copy {
    padding: 22px;
    border-radius: 24px;
  }
  .mission-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }
  .mission-pillars {
    grid-template-columns: 1fr;
  }
  .mission-pillars article:last-child {
    grid-column: auto;
  }
}

.philosophy-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 10%, rgba(240, 90, 36, 0.14), transparent 24rem),
    var(--soft);
}
.learning-cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: cycle;
}
.learning-cycle article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    var(--soft);
  box-shadow: 0 16px 48px rgba(8, 9, 12, 0.06);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
  overflow: hidden;
}
.learning-cycle article:before {
  content: "";
  position: absolute;
  top: 45px;
  left: 74px;
  right: -20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 90, 36, 0.35), transparent);
}
.learning-cycle article:last-child:before {
  display: none;
}
.learning-cycle span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(240, 90, 36, 0.24);
}
.trust-card-grid {
  grid-template-columns: repeat(5, 1fr);
}
.trust-card-grid article {
  min-height: 245px;
}
.human-note {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 0.88fr);
  gap: clamp(30px, 4.2vw, 54px);
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  background:
    linear-gradient(135deg, rgba(8, 9, 12, 0.03), transparent 42%),
    var(--soft);
}
.classroom-gallery {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-rows: clamp(150px, 14vw, 178px) clamp(150px, 14vw, 178px);
  gap: 12px;
}
.classroom-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(8, 9, 12, 0.09);
}
.classroom-gallery img:first-child {
  grid-row: span 2;
  border-radius: var(--radius-image);
}

@media (max-width: 1100px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-hero-copy {
    max-width: 760px;
  }
  .about-hero-visual {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
  .about-intro,
  .human-note {
    grid-template-columns: 1fr;
    max-width: 820px;
  }
  .learning-cycle,
  .trust-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learning-cycle article:nth-child(2):before,
  .trust-card-grid article:last-child {
    grid-column: auto;
  }
  .mission-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .mission-pillars article:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 820px) {
  .about-hero {
    min-height: auto;
  }
  .about-hero-visual {
    min-height: 430px;
  }
  .classroom-frame {
    min-height: 430px;
  }
  .classroom-gallery {
    grid-template-rows: 170px 170px;
  }
  .mission-wrap,
  .mission-pillars,
  .learning-cycle,
  .trust-card-grid {
    grid-template-columns: 1fr;
  }
  .mission-pillars article:last-child {
    grid-column: auto;
  }
  .learning-cycle article {
    min-height: auto;
  }
  .learning-cycle article:before {
    left: 53px;
    top: 74px;
    bottom: -24px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(240, 90, 36, 0.35), transparent);
  }
  .learning-cycle article:last-child:before {
    display: none;
  }
  .learning-cycle span {
    margin-bottom: 22px;
  }
}
@media (max-width: 620px) {
  .about-hero {
    padding-bottom: 76px;
  }
  .about-hero-inner {
    gap: 28px;
  }
  .about-hero-visual {
    min-height: 340px;
  }
  .about-hero-image {
    inset: 0;
    transform: none;
  }
  .about-hero-float {
    display: none;
  }
  .about-hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .classroom-frame {
    min-height: 360px;
  }
  .main-photo {
    inset: 0;
  }
  .support-photo {
    display: none;
  }
  .classroom-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .classroom-gallery img {
    height: min(58vw, 260px);
  }
  .classroom-gallery img:first-child {
    grid-row: auto;
  }
  .guidance-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
.final-cta .eyebrow {
  margin-bottom: 1.05rem;
}

/* Final premium polish system */
.nav-menu a,
.site-footer a {
  position: relative;
}
.nav-menu a:not(.nav-cta):after,
.site-footer a:not(.btn):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: right 0.24s ease;
}
.nav-menu a:not(.nav-cta):hover:after,
.site-footer a:not(.btn):hover:after {
  right: 0;
}
.hero-media,
.image-panel,
.about-hero-image,
.classroom-photo,
.masonry article,
.portfolio-card {
  transform: translateZ(0);
}
.hero-media img {
  animation: premiumImageDrift 18s ease-in-out infinite;
}
.section.dark,
.final-cta,
.circuit-section {
  position: relative;
  overflow: hidden;
}
.section.dark:before,
.final-cta:before,
.circuit-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 72% 25%, #000 0 24%, transparent 66%);
  opacity: 0.28;
}
.final-cta:after,
.circuit-section:after {
  content: "";
  position: absolute;
  width: min(560px, 60vw);
  height: min(560px, 60vw);
  right: -16vw;
  bottom: -22vw;
  border: 1px solid rgba(240, 90, 36, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(240, 90, 36, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
  opacity: 0.46;
  animation: techDrift 16s ease-in-out infinite;
}
.pathway-grid .program-card {
  min-height: 100%;
}
.program-card .project-ribbon,
.project-ribbon {
  display: inline-flex;
  align-items: center;
  margin: 4px 0 2px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.06);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}
.program-card.featured .project-ribbon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-sticker {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: fit-content;
  max-width: min(100%, 238px);
  gap: 2px;
  margin: 4px 0 2px;
  padding: 10px 13px 11px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 237, 0.88)),
    linear-gradient(135deg, rgba(255, 179, 71, 0.3), rgba(240, 90, 36, 0.18));
  color: var(--ink);
  box-shadow:
    0 16px 38px rgba(8, 9, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(240, 90, 36, 0.12);
  text-wrap: balance;
  backdrop-filter: blur(14px) saturate(1.25);
}
.project-sticker:before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(240, 90, 36, 0.16);
  border-radius: 14px;
  pointer-events: none;
}
.project-sticker__level {
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.project-sticker strong {
  color: inherit;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.project-sticker span:last-child {
  color: rgba(8, 9, 12, 0.68);
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.15;
}
.program-card.featured .project-sticker {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    linear-gradient(135deg, rgba(255, 138, 61, 0.34), rgba(240, 90, 36, 0.16));
  color: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.program-card.featured .project-sticker span:last-child {
  color: rgba(255, 255, 255, 0.72);
}
.project-image-frame .project-sticker,
.project-hero-visual .project-sticker,
.project-visual-panel .project-sticker {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
}
.project-hero-visual .project-sticker,
.project-visual-panel .project-sticker {
  top: 18px;
  left: 18px;
  max-width: min(72%, 290px);
}
.project-visual-panel {
  position: relative;
}
.project-preview {
  display: grid;
  gap: 12px;
  margin: 20px 0 4px;
}
.project-preview h4,
.end-project-copy h2 {
  text-wrap: balance;
}
.project-preview h4 {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.program-card.featured .project-preview h4 {
  color: #fff;
}
.project-preview p {
  margin: 0;
  font-size: 0.9rem;
}
.project-label {
  color: var(--orange);
  font-size: 0.74rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-image-frame,
.project-hero-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(240, 90, 36, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 138, 61, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 239, 0.78));
  box-shadow:
    0 22px 52px rgba(8, 9, 12, 0.12),
    0 0 34px rgba(240, 90, 36, 0.13);
}
.project-image-frame:before,
.project-hero-visual:before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(rgba(8, 9, 12, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 12, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at 60% 44%, #000 0 34%, transparent 72%);
}
.project-image-frame img,
.project-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(8, 9, 12, 0.2));
}
.project-image-frame {
  height: 168px;
  padding: 16px;
}
.program-card.featured .project-image-frame {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 138, 61, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border-color: rgba(255, 255, 255, 0.16);
}
.end-project-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 90, 36, 0.12), transparent 30%),
    linear-gradient(180deg, #fff, #f8f5f0);
}
.end-project-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}
.end-project-copy .project-ribbon {
  margin-top: 8px;
}
.project-hero-visual {
  min-height: 380px;
  padding: clamp(18px, 3vw, 34px);
}

.pathway-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pathway-timeline:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 36, 0.78), transparent);
  box-shadow: 0 0 24px rgba(240, 90, 36, 0.28);
}
.pathway-timeline article {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.pathway-timeline article:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 90, 36, 0.36);
  background: rgba(255, 255, 255, 0.1);
}
.pathway-timeline span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(240, 90, 36, 0.3);
}
.pathway-timeline h3,
.pathway-timeline p {
  color: #fff;
}
.pathway-timeline p {
  color: rgba(255, 255, 255, 0.68);
}
.benefit-card:nth-child(even),
.program-detail-card,
.contact-aside > div:nth-child(even) {
  transform-origin: 50% 100%;
}
.card,
.curriculum-side {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 48px rgba(8, 9, 12, 0.06);
}
.card.soft,
.curriculum-side.soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 243, 239, 0.88)),
    var(--soft);
}
.curriculum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}
.curriculum-content {
  display: grid;
  gap: 22px;
}
.period-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.period-grid .card {
  position: relative;
  overflow: hidden;
}
.period-grid .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.tag,
.text-link {
  font-weight: 900;
  color: var(--orange);
}
.tag {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(240, 90, 36, 0.1);
}
.curriculum-side {
  position: sticky;
  top: 96px;
}
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 64px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, #08090c, #151821);
  color: #fff;
}
.cta-band > * {
  max-width: var(--max);
}
.cta-band h2,
.cta-band p {
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.4);
}
.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .pathway-timeline,
  .curriculum-layout,
  .period-grid,
  .cta-band {
    grid-template-columns: 1fr 1fr;
  }
  .curriculum-side {
    position: static;
  }
}
@media (max-width: 820px) {
  .pathway-timeline,
  .curriculum-layout,
  .period-grid,
  .cta-band,
  .newsletter-fields {
    grid-template-columns: 1fr;
  }
  .pathway-timeline:before {
    left: 38px;
    right: auto;
    top: 38px;
    bottom: 38px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(240, 90, 36, 0.8), transparent);
  }
  .pathway-timeline span {
    margin-bottom: 22px;
  }
  .site-nav {
    height: 70px;
  }
  .nav-menu {
    inset: 82px 16px auto;
  }
}
@media (max-width: 620px) {
  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
  .page-hero {
    min-height: 48svh;
    padding-bottom: 64px;
  }
  .hero-copy,
  .page-hero p {
    font-size: 1.02rem;
  }
  .trust-bar div {
    min-height: 72px;
  }
  .pathway-timeline article,
  .card,
  .curriculum-side {
    padding: 22px;
  }
}

/* Final mobile polish pass */
html,
body {
  width: 100%;
  max-width: 100%;
}

main,
section,
.site-nav,
.site-footer,
.hero,
.page-hero,
.final-cta,
.cta-band,
.trust-bar {
  max-width: 100%;
  box-sizing: border-box;
}

.hero-content,
.section-head,
.split,
.classroom,
.contact-section,
.program-grid,
.pathway-grid,
.pathway-timeline,
.portfolio-grid,
.benefit-grid,
.grid-3,
.steps,
.values,
.learning-cycle,
.trust-card-grid,
.mission-wrap,
.mission-pillars,
.curriculum-layout,
.period-grid,
.footer-grid,
.form-grid,
.timeline div,
.card,
.program-card,
.contact-card,
.image-panel,
.hero-media {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
li,
span,
strong,
label,
button,
input,
textarea,
select,
.project-ribbon,
.tech-list li,
.tech-list span {
  overflow-wrap: anywhere;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .nav-menu {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
    max-height: calc(100svh - 100px);
    overflow-y: auto;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 620px) {
  :root {
    --radius: 22px;
    --radius-image: 24px;
  }

  .site-nav {
    padding-inline: 14px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img,
  .footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

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

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.55rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  h2 {
    font-size: clamp(1.95rem, 9.2vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  h3 {
    font-size: 1.22rem;
    line-height: 1.13;
  }

  p {
    line-height: 1.58;
  }

  .hero,
  .page-hero {
    padding: 108px 16px 58px;
  }

  .hero-home h1,
  .page-hero h1,
  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11.8vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .about-hero h1,
  .page-hero h1 {
    text-wrap: pretty;
  }

  .page-hero {
    min-height: auto;
  }

  .hero-copy,
  .page-hero p,
  .about-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .section {
    padding: 60px 16px;
  }

  .value-investment-section {
    padding: 60px 16px;
  }

  .value-investment-grid {
    gap: 24px;
    padding: 24px;
  }

  .value-investment-media {
    transform: none;
  }

  .value-investment-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .section-head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-head > p {
    font-size: 1rem;
  }

  .split,
  .classroom,
  .contact-section {
    gap: 26px;
  }

  .hero-actions,
  .button-row {
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-metrics {
    gap: 10px;
    margin-top: 1.5rem;
  }

  .hero-metrics div,
  .trust-bar div {
    padding: 15px;
    border-radius: 18px;
  }

  .hero-metrics strong {
    font-size: 1.75rem;
  }

  .hero-media,
  .image-panel {
    width: 100%;
    min-height: 300px;
    height: min(78vw, 340px);
    border-radius: var(--radius-image);
  }

  .media-card,
  .guidance-card,
  .about-hero-card {
    padding: 15px;
    border-radius: 18px;
  }

  .program-grid,
  .pathway-grid {
    gap: 14px;
  }

  .program-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .program-card h3 {
    font-size: 1.38rem;
  }

  .program-card p,
  .program-card .age {
    margin-bottom: 0.15rem;
  }

  .tech-list {
    gap: 7px;
    margin: 10px 0 2px;
  }

  .tech-list li,
  .tech-list span,
  .tag {
    padding: 6px 9px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .project-ribbon,
  .program-card .project-ribbon {
    width: fit-content;
    max-width: 100%;
    margin-top: 2px;
    border-radius: 14px;
    line-height: 1.25;
  }

  .project-sticker {
    max-width: min(100%, 220px);
    padding: 9px 11px 10px;
    border-radius: 16px;
  }

  .project-sticker strong {
    font-size: 0.92rem;
  }

  .project-sticker span:last-child {
    font-size: 0.7rem;
  }

  .project-image-frame .project-sticker,
  .project-hero-visual .project-sticker,
  .project-visual-panel .project-sticker {
    top: 10px;
    left: 10px;
  }

  .progress {
    margin: 8px 0 6px;
  }

  .program-card .btn {
    margin-top: auto;
  }

  .project-preview {
    margin-top: 12px;
  }

  .project-image-frame {
    height: 150px;
    padding: 12px;
    border-radius: 20px;
  }

  .end-project-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-hero-visual {
    min-height: 300px;
    padding: 16px;
    border-radius: 22px;
  }

  .benefit-card,
  .video-card,
  .contact-card,
  .contact-aside > div,
  .values article,
  .program-detail-card,
  .steps article,
  .mission-pillars article,
  .trust-card-grid article,
  .learning-cycle article,
  .timeline div,
  .card,
  .curriculum-side {
    padding: 20px;
    border-radius: 22px;
  }

  .masonry {
    gap: 12px;
    grid-auto-rows: 210px;
  }

  .masonry article,
  .portfolio-card,
  .classroom-gallery img,
  .classroom-photo {
    border-radius: 22px;
  }

  .portfolio-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .portfolio-card div {
    padding: 18px;
  }

  .classroom-frame {
    min-height: 340px;
  }

  .classroom-gallery {
    gap: 12px;
    grid-template-rows: repeat(3, minmax(190px, 58vw));
  }

  .learning-cycle span,
  .pathway-timeline span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .pathway-timeline article {
    padding-left: 22px;
  }

  .timeline div {
    display: grid;
    gap: 4px;
  }

  .faq-question {
    gap: 14px;
    padding: 18px;
    line-height: 1.25;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .contact-form {
    gap: 14px;
  }

  label {
    gap: 8px;
    line-height: 1.35;
  }

  input,
  textarea,
  select {
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  textarea {
    min-height: 132px;
  }

  .final-cta {
    padding: 68px 16px;
  }

  .final-cta h2 {
    margin-bottom: 18px;
  }

  .footer-grid {
    gap: 22px;
  }

  .site-footer {
    padding: 48px 16px 24px;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .brand span {
    max-width: 138px;
    font-size: 0.86rem;
  }

  h1,
  .hero-home h1,
  .page-hero h1,
  .about-hero h1 {
    font-size: clamp(2.1rem, 11.2vw, 3rem);
  }

  h2 {
    font-size: clamp(1.78rem, 8.8vw, 2.45rem);
  }

  .hero,
  .page-hero,
  .section,
  .final-cta,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-card,
  .program-card,
  .benefit-card,
  .video-card,
  .card,
  .curriculum-side {
    padding: 18px;
  }
}

.hero-media img,
.masonry img,
.image-panel img,
.about-hero-image img,
.about-hero-float img,
.classroom-photo img,
.classroom-gallery img {
  height: 100%;
}

.portfolio-card img {
  height: 260px;
}

@media (max-width: 620px) {
  .portfolio-card img {
    height: auto;
  }
}

.brand img,
.footer-logo img {
  height: 44px;
}

@media (max-width: 620px) {
  .brand img,
  .footer-logo img {
    height: 40px;
  }
}

/* Mobile responsive quality hardening */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.site-nav,
.nav-menu,
.nav-menu li,
.hero-content,
.about-hero-copy,
.contact-aside,
.footer-brand,
.footer-logo,
.trust-panel,
.submit-panel {
  min-width: 0;
}

.section > *,
.final-cta > *,
.cta-band > *,
.enrollment-shell,
.enrollment-hero-inner {
  width: 100%;
}

.hero-bg span,
.hero-home:after,
.about-hero:after,
.final-cta:after,
.circuit-section:after {
  max-width: 100vw;
}

.image-panel,
.hero-media,
.about-hero-image,
.classroom-photo,
.masonry article,
.portfolio-card {
  max-width: 100%;
}

.hero-media img,
.masonry img,
.image-panel img,
.about-hero-image img,
.about-hero-float img,
.classroom-photo img,
.classroom-gallery img,
.portfolio-card img {
  min-width: 100%;
  object-position: center;
}

@media (max-width: 820px) {
  .nav-menu {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: calc(100vw - 32px);
    will-change: opacity, transform;
  }

  .nav-menu a {
    min-height: 48px;
  }
}

@media (max-width: 620px) {
  .page-hero h1,
  .about-hero h1,
  .enrollment-hero h1 {
    font-size: clamp(2.2rem, 10.7vw, 3.25rem);
    line-height: 1;
  }

  .hero-home h1 {
    font-size: clamp(2.28rem, 11vw, 3.35rem);
  }

  .page-hero p,
  .hero-copy,
  .about-hero p:not(.eyebrow) {
    margin-top: 0.95rem;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section.dark,
  .white.section {
    overflow: hidden;
  }

  .program-card {
    min-height: 0;
  }

  .program-card h3 {
    margin-top: 0;
  }

  .program-card p {
    line-height: 1.52;
  }

  .program-card .age {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .program-card .project-ribbon,
  .project-ribbon {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .project-sticker {
    max-width: min(100%, 205px);
  }

  .tech-list.big {
    gap: 7px;
  }

  .contact-section {
    align-items: stretch;
  }

  .contact-form button[type="submit"] {
    margin-top: 2px;
  }

  .form-status,
  .form-validation-message {
    padding: 12px 13px;
    line-height: 1.45;
  }

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

  .masonry span {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: fit-content;
    max-width: calc(100% - 28px);
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero,
  .page-hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-media,
  .image-panel {
    min-height: 270px;
    height: min(76vw, 315px);
  }


  .project-image-frame {
    height: 140px;
  }

  .project-hero-visual {
    min-height: 250px;
  }

  .portfolio-card div,
  .benefit-card,
  .program-card,
  .video-card,
  .contact-card,
  .contact-aside > div,
  .values article,
  .program-detail-card,
  .steps article,
  .mission-pillars article,
  .trust-card-grid article,
  .learning-cycle article,
  .timeline div,
  .card,
  .curriculum-side {
    padding: 18px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
  }
}

/* Floating end-project visuals */
.pathway-grid {
  overflow: visible;
}

.pathway-grid .program-card.has-floating-project {
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding-bottom: clamp(92px, 8vw, 112px);
  isolation: isolate;
}

.pathway-grid .program-card.has-floating-project > :not(.floating-project-visual) {
  position: relative;
  z-index: 2;
}

.pathway-grid .program-card.has-floating-project .progress {
  margin-top: auto;
}

.pathway-grid .program-card.has-floating-project .btn {
  align-self: flex-start;
  margin-bottom: 4px;
}

.floating-project-visual {
  position: absolute;
  right: -34px;
  bottom: -10px;
  z-index: 3;
  width: clamp(102px, 40%, 128px);
  pointer-events: none;
}

.floating-project-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 18px rgba(8, 9, 12, 0.24)) drop-shadow(0 0 16px rgba(240, 90, 36, 0.13));
}

.floating-project-visual .project-sticker {
  position: absolute;
  right: 46%;
  bottom: 58%;
  width: max-content;
  min-width: 112px;
  max-width: 140px;
  margin: 0;
  padding: 6px 9px 7px;
  border-radius: 13px;
  text-align: left;
  white-space: normal;
  overflow-wrap: normal;
  transform: rotate(-1.5deg);
}

.floating-project-visual .project-sticker:before {
  inset: 4px;
  border-radius: 10px;
}

.floating-project-visual .project-sticker__level {
  font-size: 0.54rem;
  letter-spacing: 0.14em;
}

.floating-project-visual .project-sticker strong {
  font-size: 0.76rem;
  line-height: 1.06;
}

.floating-project-visual .project-sticker span:last-child {
  font-size: 0.58rem;
  line-height: 1.15;
}

.basis-project {
  right: -34px;
  bottom: -8px;
}

.standard-project {
  right: -30px;
  bottom: -8px;
  width: clamp(100px, 39%, 124px);
}

.standard-project .project-sticker {
  right: 44%;
  bottom: 62%;
  transform: rotate(1.25deg);
}

.premium-project {
  top: 96px;
  right: -36px;
  bottom: auto;
  width: clamp(108px, 43%, 136px);
}

.premium-project .project-sticker {
  top: 8px;
  right: 54%;
  bottom: auto;
  transform: rotate(-1deg);
}

.end-project-section .project-hero-visual {
  display: grid;
  align-items: center;
  min-height: 380px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.end-project-section .project-hero-visual:before {
  inset: auto 6% 8% auto;
  width: min(82%, 430px);
  height: min(82%, 300px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 90, 36, 0.16), rgba(255, 179, 71, 0.08) 42%, transparent 70%);
  opacity: 1;
  mask-image: none;
}

.end-project-section .project-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: auto;
  max-height: 390px;
  margin-left: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 30px 30px rgba(8, 9, 12, 0.22)) drop-shadow(0 0 24px rgba(240, 90, 36, 0.12));
}

.end-project-section .project-hero-visual .project-sticker {
  top: 18px;
  left: 18px;
  max-width: min(58%, 260px);
}

.premium-plus-badge-panel {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 90, 36, 0.16);
  border-radius: var(--radius-image);
  background:
    radial-gradient(circle at 72% 28%, rgba(240, 90, 36, 0.18), transparent 34%),
    linear-gradient(145deg, #151821, #090a0e);
  box-shadow: var(--shadow);
}

.premium-plus-badge-panel:before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.8;
}

.premium-plus-badge-panel .project-sticker {
  margin: 0;
  transform: rotate(-1deg);
}

@media (max-width: 1100px) {
  .floating-project-visual {
    right: -24px;
    bottom: -8px;
    width: clamp(100px, 31%, 122px);
  }

  .premium-project {
    top: 86px;
    right: -26px;
    bottom: auto;
  }
}

@media (max-width: 820px) {
  .pathway-grid .program-card.has-floating-project {
    overflow: visible;
    padding-bottom: 22px;
  }

  .floating-project-visual,
  .basis-project,
  .standard-project,
  .premium-project {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    display: flex;
    width: min(100%, 260px);
    margin: 10px 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .floating-project-visual img {
    width: clamp(84px, 20vw, 110px);
    flex: 0 0 auto;
  }

  .floating-project-visual .project-sticker,
  .standard-project .project-sticker,
  .premium-project .project-sticker {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    order: -1;
    min-width: 118px;
    max-width: 140px;
    padding: 6px 8px 7px;
    transform: rotate(-1deg);
  }

  .end-project-section .project-hero-visual {
    min-height: 300px;
    padding: 10px 0 0;
  }

  .end-project-section .project-hero-visual .project-sticker {
    left: 0;
    top: 0;
    max-width: min(70%, 250px);
  }
}

@media (max-width: 620px) {
  .floating-project-visual,
  .basis-project,
  .standard-project,
  .premium-project {
    width: 100%;
    gap: 8px;
  }

  .floating-project-visual img {
    width: 82px;
  }

  .floating-project-visual .project-sticker,
  .standard-project .project-sticker,
  .premium-project .project-sticker {
    min-width: 0;
    max-width: 136px;
  }

  .floating-project-visual .project-sticker strong {
    font-size: 0.72rem;
  }

  .end-project-section .project-hero-visual img {
    max-height: 285px;
  }

  .premium-plus-badge-panel {
    min-height: 250px;
  }
}

/* Challenge Day page */
.challenge-hero {
  position: relative;
  padding: 138px clamp(18px, 5vw, 70px) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(240, 90, 36, 0.38), transparent 27rem),
    radial-gradient(circle at 12% 88%, rgba(255, 138, 61, 0.13), transparent 24rem),
    linear-gradient(135deg, #020204 0%, #07080c 46%, #0c0e14 100%);
  color: #fff;
}

.challenge-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 38% 35%, #000 0 32%, transparent 72%);
  opacity: 0.36;
}

.challenge-hero:after {
  content: "";
  position: absolute;
  right: -16vw;
  top: 10%;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(240, 90, 36, 0.32);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(240, 90, 36, 0.2) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%);
  box-shadow: inset 0 0 90px rgba(240, 90, 36, 0.1), 0 0 80px rgba(240, 90, 36, 0.08);
  opacity: 0.58;
  animation: techDrift 14s ease-in-out infinite;
}

.challenge-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.challenge-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(3.4rem, 7.4vw, 6.85rem);
  line-height: 0.9;
}

.challenge-subtitle {
  max-width: 780px;
  margin: 1.3rem 0 1rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.13rem, 2vw, 1.45rem);
  font-weight: 850;
}

.challenge-competition-note {
  max-width: 720px;
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 700;
}

.challenge-hero-visual {
  position: relative;
  display: grid;
  min-height: 545px;
  padding-top: 54px;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-image);
  background:
    radial-gradient(circle at 50% 58%, rgba(240, 90, 36, 0.34), transparent 35%),
    linear-gradient(145deg, rgba(17, 18, 23, 0.98), rgba(2, 3, 6, 0.98));
  box-shadow: var(--shadow-dark);
  isolation: isolate;
}

.challenge-hero-visual:before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
}

.challenge-hero-visual img,
.transparent-visual img,
.activity-image img {
  position: relative;
  z-index: 1;
  width: min(94%, 590px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(240, 90, 36, 0.24));
}

.challenge-hero-visual img {
  margin-top: 28px;
}

.challenge-sticker {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: min(235px, 44%);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: linear-gradient(135deg, #ff8a3d, #f05a24 72%, #b93610);
  color: #fff;
  box-shadow: 0 20px 48px rgba(240, 90, 36, 0.34);
  transform: rotate(4deg);
}

.challenge-sticker:before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 26px;
}

.challenge-sticker span {
  display: block;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.challenge-visual-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(2, 2, 4, 0.78);
  color: #fff;
  backdrop-filter: blur(16px);
}

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

.challenge-visual-card span {
  color: rgba(255, 255, 255, 0.76);
}

.challenge-intro.dark {
  background:
    radial-gradient(circle at 14% 20%, rgba(240, 90, 36, 0.18), transparent 23rem),
    linear-gradient(135deg, #030304, #0b0d13 58%, #050507);
}

.challenge-highlight {
  padding: 30px;
  border: 1px solid rgba(240, 90, 36, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 18%, rgba(240, 90, 36, 0.12), transparent 18rem),
    #fff;
  box-shadow: var(--shadow-sm);
}

.dark .challenge-highlight {
  background:
    radial-gradient(circle at 88% 22%, rgba(240, 90, 36, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.32);
}

.challenge-highlight p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 800;
}

.dark .challenge-highlight p {
  color: #fff;
}

.challenge-highlight-dark {
  margin-top: 22px;
  background: linear-gradient(135deg, #08090c, #151821);
  box-shadow: var(--shadow-dark);
}

.challenge-highlight-dark p {
  color: #fff;
}

.challenge-card-grid {
  display: grid;
  gap: 18px;
}

.five-card-grid,
.task-grid,
.why-grid,
.practical-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.challenge-card,
.practical-item {
  position: relative;
  min-height: 170px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.challenge-card:before,
.practical-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 12%, rgba(240, 90, 36, 0.12), transparent 40%);
  pointer-events: none;
}

.challenge-card:hover,
.practical-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 61, 0.42);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.challenge-card.light {
  border-color: rgba(17, 19, 26, 0.1);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.challenge-card span {
  display: inline-grid;
  min-width: 46px;
  min-height: 46px;
  margin-bottom: 18px;
  padding: 0 12px;
  place-items: center;
  border-radius: 15px;
  background: #08090c;
  color: var(--orange-2);
  font-weight: 950;
}

.dark .challenge-card h3,
.challenge-card:not(.light) h3 {
  color: #fff;
}

.challenge-card.light h3 {
  color: var(--ink);
}

.challenge-special {
  background:
    radial-gradient(circle at 85% 20%, rgba(240, 90, 36, 0.14), transparent 26rem),
    linear-gradient(180deg, #f6f3ef, #fff);
}

.challenge-showcase {
  background: linear-gradient(180deg, #050507, #090a0e);
}

.challenge-special-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(240, 90, 36, 0.22);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 78% 26%, rgba(240, 90, 36, 0.2), transparent 20rem),
    linear-gradient(135deg, #090a0d, #151821);
  color: #fff;
  box-shadow: var(--shadow-dark);
}

.challenge-special-panel h2,
.challenge-special-panel p {
  color: #fff;
}

.challenge-special-panel p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.07rem;
}

.challenge-special-panel strong {
  color: #fff;
}

.challenge-section-lead {
  color: #fff !important;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem) !important;
  font-weight: 900;
}

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

.challenge-check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

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

.challenge-special-image {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
  overflow: visible;
  border-radius: var(--radius-image);
  background:
    radial-gradient(circle at 52% 54%, rgba(240, 90, 36, 0.2), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.challenge-special-image img {
  width: min(105%, 650px);
}

.challenge-activity-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(240, 90, 36, 0.18), transparent 22rem),
    linear-gradient(135deg, #020203, #0a0b10 60%, #060608);
}

.challenge-activity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-dark);
}

.challenge-activity-panel h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.challenge-activity-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.activity-image {
  display: grid;
  min-height: 300px;
  place-items: center;
}

.activity-image img {
  width: min(100%, 680px);
}

.challenge-quote-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(240, 90, 36, 0.1), transparent 22rem),
    #fff;
}

.challenge-quote {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(240, 90, 36, 0.2);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 90% 15%, rgba(240, 90, 36, 0.18), transparent 20rem),
    linear-gradient(135deg, #08090c, #151821);
  box-shadow: var(--shadow-dark);
}

.challenge-quote:before {
  content: "“";
  position: absolute;
  top: -34px;
  right: 28px;
  color: rgba(255, 138, 61, 0.24);
  font-size: 12rem;
  font-weight: 950;
  line-height: 1;
}

.challenge-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.practical-item {
  display: grid;
  gap: 10px;
  min-height: 138px;
}

.practical-item strong {
  color: var(--orange-2);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practical-item span {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.3;
}

.challenge-registration {
  background:
    radial-gradient(circle at 78% 12%, rgba(240, 90, 36, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff, #f6f3ef);
}

.challenge-registration .contact-card {
  border: 1px solid rgba(240, 90, 36, 0.16);
  box-shadow: var(--shadow);
}

.challenge-registration .contact-card h2 {
  margin-bottom: 14px;
}

.role-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 6px 0 4px;
  padding: 0;
  border: 0;
}

.role-selector legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.role-option {
  cursor: pointer;
}

.role-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-option span {
  display: grid;
  gap: 4px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.role-option strong {
  color: var(--ink);
  font-size: 1rem;
}

.role-option small {
  color: var(--gray);
  font-weight: 750;
  line-height: 1.35;
}

.role-option input:checked + span {
  border-color: rgba(240, 90, 36, 0.48);
  background: rgba(240, 90, 36, 0.08);
  box-shadow: 0 0 0 4px rgba(240, 90, 36, 0.1);
}

.form-panel {
  display: grid;
  gap: 16px;
}

.form-panel[hidden] {
  display: none;
}

.ticket-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(240, 90, 36, 0.22);
  border-radius: 16px;
  background: rgba(240, 90, 36, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.challenge-aside {
  align-self: start;
  align-content: start;
  grid-auto-rows: max-content;
}

.challenge-aside > div {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 90, 36, 0.16), transparent 14rem),
    linear-gradient(135deg, #08090c, #151821);
  color: #fff;
  box-shadow: var(--shadow-dark);
}

.challenge-aside h3 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.challenge-aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.challenge-aside .btn-ghost {
  width: fit-content;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.challenge-footer-cta {
  background: linear-gradient(135deg, #020203, #0a0b10 62%, #140804);
}

.challenge-footer-cta:after {
  background: radial-gradient(circle, rgba(240, 90, 36, 0.34), transparent 68%);
}

@media (max-width: 1040px) {
  .challenge-hero-inner,
  .challenge-special-panel,
  .challenge-activity-panel {
    grid-template-columns: 1fr;
  }

  .challenge-hero-visual {
    min-height: 470px;
  }

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

  .activity-image {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .challenge-hero {
    padding: 122px 16px 66px;
  }

  .challenge-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
    line-height: 0.92;
  }

  .challenge-hero-visual {
    min-height: 390px;
    padding-top: 78px;
    border-radius: 24px;
  }

  .challenge-hero-visual:before {
    inset: 14px;
    border-radius: 20px;
  }

  .challenge-hero-visual img {
    width: min(96%, 420px);
    margin-top: 10px;
  }

  .challenge-sticker {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    transform: rotate(0deg);
  }

  .challenge-visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .challenge-highlight,
  .challenge-special-panel,
  .challenge-card,
  .practical-item,
  .challenge-activity-panel,
  .challenge-quote,
  .challenge-aside > div {
    padding: 20px;
    border-radius: 22px;
  }

  .five-card-grid,
  .task-grid,
  .why-grid,
  .practical-grid,
  .program-competition-grid,
  .role-selector {
    grid-template-columns: 1fr;
  }

  .challenge-card,
  .practical-item {
    min-height: auto;
  }

  .challenge-card span {
    margin-bottom: 13px;
  }

  .challenge-special-panel,
  .challenge-activity-panel {
    gap: 22px;
  }

  .challenge-special-image,
  .activity-image {
    min-height: 240px;
  }

  .challenge-special-image img,
  .activity-image img {
    width: min(110%, 520px);
  }

  .challenge-quote p {
    font-size: clamp(1.18rem, 6vw, 1.7rem);
  }
}

/* Challenge Day competition updates */
.challenge-outside-note {
  display: inline-block;
  margin: 0 0 1.9rem;
  padding: 13px 16px;
  border: 1px solid rgba(255, 138, 61, 0.45);
  border-radius: 999px;
  background: rgba(240, 90, 36, 0.16);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(240, 90, 36, 0.16);
}

.challenge-category-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 90, 36, 0.12), transparent 22rem),
    #fff;
}

.challenge-category-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.challenge-category-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.82fr);
  align-items: center;
  gap: 18px;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 82% 42%, rgba(240, 90, 36, 0.32), transparent 18rem),
    linear-gradient(145deg, #08090c, #151821 70%, #050507);
  box-shadow: var(--shadow-dark);
}

.challenge-category-panel h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.challenge-category-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.challenge-category-panel img {
  width: min(100%, 340px);
  height: auto;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.52)) drop-shadow(0 0 28px rgba(240, 90, 36, 0.24));
}

.ranking-grid .challenge-card p {
  margin: 8px 0 0;
  color: var(--gray);
  font-weight: 850;
}

.challenge-jury-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 90, 36, 0.2), transparent 24rem),
    linear-gradient(135deg, #020204, #0b0d13 64%, #050507);
}

.challenge-prizes-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 138, 61, 0.12), transparent 20rem),
    #fff;
}

.challenge-timeline {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.challenge-timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.challenge-timeline strong {
  color: var(--orange-2);
  font-size: 1.02rem;
  font-weight: 950;
}

.challenge-timeline span {
  color: #fff;
  font-weight: 850;
}

.ticket-note-group {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.optional-label {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 750;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 90, 36, 0.2);
  border-radius: 16px;
  background: rgba(240, 90, 36, 0.07);
  font-weight: 750;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--orange);
}

.privacy-check span {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .challenge-category-layout,
  .challenge-category-panel {
    grid-template-columns: 1fr;
  }

  .challenge-category-panel img {
    width: min(100%, 460px);
  }
}

@media (max-width: 760px) {
  .challenge-outside-note {
    border-radius: 18px;
  }

  .challenge-category-panel {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .challenge-timeline div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .nav-dropdown-toggle {
    font-size: 0.88rem;
  }
}

@media (max-width: 820px) {
  .nav-item,
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 14px;
    border-radius: 14px;
    color: var(--ink);
    font-size: 1rem;
  }

  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible,
  .nav-dropdown.is-open > .nav-dropdown-toggle {
    background: rgba(240, 90, 36, 0.1);
    color: var(--orange);
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: rgba(21, 24, 33, 0.96);
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition:
      max-height 0.24s ease,
      margin 0.24s ease,
      padding 0.24s ease;
  }

  .nav-submenu:before {
    content: none;
  }

  .nav-dropdown.is-open > .nav-submenu {
    max-height: 180px;
    margin: 4px 0 8px;
    padding: 8px;
    transform: none;
  }

  .nav-submenu a {
    min-height: 48px;
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.9);
    white-space: normal;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    background: rgba(240, 90, 36, 0.22);
    color: #fff;
  }
}

/* Enrollment page premium layout */
.enrollment-section {
  padding-top: 122px;
}

.enrollment-container {
  max-width: 900px;
}

.enrollment-header {
  position: relative;
  margin: 0 auto 20px;
  max-width: 760px;
  padding-right: clamp(260px, 33vw, 410px);
}

.enrollment-header h1 {
  margin-top: 8px;
  font-size: clamp(1.95rem, 4.3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.enrollment-header > p:not(.eyebrow):not(.enrollment-steps) {
  margin-top: 0.75rem;
  max-width: 62ch;
}

.enrollment-header-art {
  position: absolute;
  top: 100px;
  right: -50px;
  width: clamp(260px, 28vw, 420px);
  pointer-events: none;
  transform: rotate(8deg);
  transform-origin: 70% 20%;
}

.enrollment-header-art img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.enrollment-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
  margin: 1rem 0 0;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 19, 26, 0.65);
}

.enrollment-steps span {
  color: var(--orange);
}

.enrollment-form {
  gap: 12px;
}

.enrollment-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 18px 20px 20px;
}

.enrollment-card legend {
  padding: 0 9px;
  margin-left: 2px;
  font-weight: 850;
  color: var(--ink);
}

.enrollment-grid {
  gap: 12px 14px;
}

.enrollment-form label {
  font-size: 0.95rem;
}

.enrollment-form input:not([type="checkbox"]),
.enrollment-form select,
.enrollment-form textarea {
  min-height: 48px;
  border-radius: 13px;
  background: #f8fbff;
  border: 1px solid rgba(17, 19, 26, 0.2);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.enrollment-form input:not([type="checkbox"]):focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
  background: #ffffff;
  border-color: rgba(240, 90, 36, 0.72);
  box-shadow: 0 0 0 4px rgba(240, 90, 36, 0.14);
  outline: none;
}

.program-availability-message {
  display: none;
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.55;
}

.program-availability-message.is-warning,
.program-availability-message.is-available {
  display: block;
}

.program-availability-message.is-warning {
  border-color: #f5c26b;
  background: linear-gradient(135deg, #fff7e6 0%, #fffaf0 100%);
  color: #9a4d00;
  box-shadow: 0 14px 30px rgba(154, 77, 0, 0.11);
}

.program-availability-message.is-available {
  border-color: rgba(24, 128, 86, 0.22);
  background: linear-gradient(135deg, #edf9f2, #f8fffb);
  color: #135f41;
  box-shadow: 0 12px 28px rgba(24, 128, 86, 0.08);
}

.child-age-display {
  display: inline-flex;
  align-items: center;
  margin-top: 0.65rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 26, 0.14);
  background: linear-gradient(120deg, #f6f9ff, #fcfdff);
  color: rgba(17, 19, 26, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.child-age-notice {
  margin: 0.5rem 0 0;
  color: #b93812;
  font-size: 0.88rem;
  font-weight: 650;
}

.enrollment-form textarea {
  min-height: 110px;
}

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

.agreement-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 4px 0;
  font-weight: 700;
}

.agreement-row + .agreement-row {
  margin-top: 4px;
}

.agreement-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.agreement-row span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
}

.agreement-row a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.enrollment-submit {
  margin-top: 2px;
  min-height: 50px;
  width: 100%;
}

@media (max-width: 820px) {
  .enrollment-section {
    padding-top: 106px;
  }

  .enrollment-card {
    border-radius: 18px;
    padding: 16px;
  }

  .enrollment-header {
    padding-right: clamp(210px, 37vw, 300px);
  }

  .enrollment-header-art {
    width: clamp(190px, 31vw, 290px);
    top: 8px;
    right: -8px;
  }
}

@media (max-width: 620px) {
  .enrollment-section {
    padding-top: 98px;
  }

  .enrollment-header h1 {
    font-size: clamp(1.7rem, 8.6vw, 2.25rem);
  }

  .enrollment-header {
    padding-right: 0;
  }

  .enrollment-header-art {
    position: relative;
    top: auto;
    right: auto;
    width: clamp(170px, 56vw, 250px);
    margin: 0.75rem 0 0 auto;
    transform: rotate(6deg);
    opacity: 0.96;
  }

  .enrollment-steps {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }

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

@media (max-width: 900px) {
  .value-investment-grid {
    grid-template-columns: 1fr;
  }

  .value-investment-media {
    transform: none;
  }

  .value-investment-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

/* Final fix: Waarde & investering like Klaservaring */
.value-investment-section {
  background: #fff !important;
  color: var(--ink) !important;
  overflow: hidden;
}

.value-investment-section.value-investment-section {
  padding: clamp(86px, 9vw, 116px) clamp(18px, 5vw, 70px);
}

.value-investment-section .value-investment-copy {
  order: 2;
  max-width: none;
}

.value-investment-section .value-investment-copy h2 {
  color: var(--ink) !important;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.value-investment-section .value-investment-copy p {
  color: var(--gray) !important;
}

.value-investment-section .value-investment-copy .btn {
  margin-top: 0.35rem;
}

.value-investment-section .value-investment-image {
  order: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.value-investment-section .value-investment-image img {
  display: block;
  width: 100%;
  height: auto !important;
  min-width: 0 !important;
  max-height: none;
  object-fit: contain !important;
  object-position: center;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .value-investment-section .value-investment-copy,
  .value-investment-section .value-investment-image {
    order: initial;
  }
}

@media (max-width: 620px) {
  .value-investment-section.value-investment-section {
    padding: 60px 16px;
  }

  .value-investment-section .value-investment-copy h2 {
    font-size: clamp(1.95rem, 9.2vw, 2.85rem);
    line-height: 1.02;
  }

  .value-investment-section .value-investment-image img {
    width: 100%;
  }
}
