/* ── ROOT ── */
:root {
  --navy: #0F003C;
  --orange: #ff722d;
  --lavender: #69669C;
  --white: #ffffff;
  --light-navy: #1a0a55;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 120px;
  background: var(--navy);
  clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
  z-index: 3;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,0,60,0.6) 0%, rgba(15,0,60,0.1) 100%);
  z-index: 1;
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.mcw-logo-svg { width: 200px; height: auto; }
.efr-badge {
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}
.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--white);
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 420px;
}
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,114,45,0.15);
  border: 1px solid var(--orange);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 32px;
}
.hero-date-badge span { color: white; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.bracket-tl, .bracket-br {
  position: absolute;
  width: 60px; height: 60px;
}
.bracket-tl {
  top: 30px; left: 30px;
  border-top: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  border-radius: 4px 0 0 0;
}
.bracket-br {
  bottom: 30px; right: 30px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  border-radius: 0 0 4px 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,0,60,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(105,102,156,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { font-size: 15px; font-weight: 700; }
.nav-logo-text .c { color: var(--orange); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 700 !important;
}

/* ── SECTIONS ── */
section { padding: 100px 80px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
}

/* ── ABOUT ── */
.about {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-block {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 48px;
  color: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.about-accent-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  padding: 24px 28px;
  border-radius: 4px;
  z-index: 2;
}
.about-accent-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: white;
}
.about-accent-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ── DIFFERENTIATORS ── */
.differentiators {
  background: linear-gradient(135deg, var(--light-navy) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.differentiators::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(105,102,156,0.15);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(105,102,156,0.25);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.diff-card:hover {
  background: rgba(255,114,45,0.08);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.3s ease;
}
.diff-card:hover::before { height: 100%; }
.diff-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(105,102,156,0.3);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.diff-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.diff-body {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ── BOOTCAMP ── */
.bootcamp {
  background: var(--orange);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.bootcamp::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(15,0,60,0.1);
}
.bootcamp .section-label { color: var(--navy); opacity: 0.6; }
.bootcamp .section-title { color: var(--navy); }
.bootcamp .section-body { color: rgba(15,0,60,0.75); }
.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.day-card {
  background: var(--navy);
  color: white;
  border-radius: 4px;
  overflow: hidden;
}
.day-header {
  background: rgba(105,102,156,0.3);
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.day-body { padding: 28px; }
.day-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
}
.day-item:last-child { border-bottom: none; }
.day-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 70px;
}

/* ── PACKAGES ── */
.packages { background: var(--navy); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid rgba(105,102,156,0.2);
}
.package-card {
  padding: 48px 36px;
  background: rgba(255,255,255,0.03);
  position: relative;
  transition: background 0.3s;
}
.package-card.featured {
  background: rgba(105,102,156,0.15);
  border-top: 3px solid var(--orange);
}
.package-card.main-partner { background: var(--orange); }
.package-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.package-card.main-partner .package-badge { color: var(--navy); }
.package-name { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.package-price {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--orange);
}
.package-card.main-partner .package-price { color: var(--navy); }
.package-price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}
.package-card.main-partner .package-price-note { color: rgba(15,0,60,0.6); }
.package-features { list-style: none; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}
.package-card.main-partner .package-features li { color: rgba(15,0,60,0.85); border-color: rgba(15,0,60,0.1); }
.package-features li:last-child { border-bottom: none; }
.check { color: var(--orange); font-weight: 900; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.package-card.main-partner .check { color: var(--navy); }

/* ── PACKAGE MATRIX ── */
.pkg-matrix {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}
.pkg-matrix thead tr th { padding: 0; vertical-align: bottom; }
.pkg-matrix thead th.pkg-feature-col { width: 34%; padding-bottom: 16px; }
.pkg-matrix thead th.pkg-col { width: 22%; text-align: center; padding: 0 8px; }
.pkg-header-card {
  border-radius: 12px 12px 0 0;
  padding: 24px 16px 20px;
  position: relative;
}
.pkg-header-card.std  { background: rgba(255,255,255,0.05); }
.pkg-header-card.prem { background: rgba(255,114,45,0.12); }
.pkg-header-card.main { background: rgba(255,200,80,0.1); }
.pkg-badge-top {
  display: inline-block;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.pkg-badge-top.std  { background: rgba(255,255,255,0.1);  color: rgba(255,255,255,0.55); }
.pkg-badge-top.prem { background: rgba(255,114,45,0.25);  color: #ff722d; }
.pkg-badge-top.main { background: rgba(255,200,80,0.2);   color: #ffc850; }
.pkg-header-name { font-size: 18px; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 4px; }
.pkg-header-name.std  { color: rgba(255,255,255,0.9); }
.pkg-header-name.prem { color: #ff722d; }
.pkg-header-name.main { color: #ffc850; }
.pkg-header-price { font-size: 26px; font-weight: 900; line-height: 1; margin-bottom: 2px; color: #ffffff; }
.pkg-header-note { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.pkg-matrix tbody tr.pkg-category td {
  padding: 18px 0 6px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange);
}
.pkg-matrix tbody tr.pkg-category td.pkg-cat-spacer { background: transparent; }
.pkg-matrix tbody tr.pkg-row td { padding: 0; vertical-align: middle; }
.pkg-matrix tbody tr.pkg-row td.pkg-feature-label {
  padding: 11px 16px 11px 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px; line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pkg-matrix tbody tr.pkg-row td.pkg-cell {
  text-align: center; padding: 11px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
td.pkg-cell.std  { background: rgba(255,255,255,0.025); }
td.pkg-cell.prem { background: rgba(255,114,45,0.06); }
td.pkg-cell.main { background: rgba(255,200,80,0.05); }
.pkg-matrix tfoot tr td.pkg-foot { padding: 0 8px; }
.pkg-foot-card { border-radius: 0 0 12px 12px; padding: 16px; text-align: center; }
.pkg-foot-card.std  { background: rgba(255,255,255,0.04); }
.pkg-foot-card.prem { background: rgba(255,114,45,0.1); }
.pkg-foot-card.main { background: rgba(255,200,80,0.08); }
.pkg-cta {
  display: inline-block; padding: 9px 20px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: default;
}
.pkg-cta.std  { background: rgba(255,255,255,0.1);  color: rgba(255,255,255,0.8); }
.pkg-cta.prem { background: #ff722d; color: #ffffff; }
.pkg-cta.main { background: #ffc850; color: #0F003C; }
.pkg-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 11px; font-weight: 800;
  transition: background 0.35s ease, filter 0.35s ease, transform 0.35s ease, color 0.35s ease;
}
.pkg-yes.std  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.pkg-yes.prem { background: rgba(255,114,45,0.25);  color: #ff722d; }
.pkg-yes.main { background: rgba(255,200,80,0.25);  color: #ffc850; }
.pkg-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 13px; color: rgba(255,255,255,0.15);
}
.pkg-feature-label.all-no { color: rgba(255,255,255,0.3); }

/* Package hover */
.pkg-header-card, td.pkg-cell, .pkg-foot-card,
.pkg-yes, .pkg-no, .pkg-feature-label, .pkg-matrix thead th.pkg-col {
  transition: opacity 0.4s ease, filter 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.pkg-col-hover-shell {
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), filter 0.4s ease, opacity 0.4s ease;
  transform-origin: center top;
  display: block;
}
.pkg-matrix.hovering-std  td.pkg-cell.prem,
.pkg-matrix.hovering-std  td.pkg-cell.main,
.pkg-matrix.hovering-prem td.pkg-cell.std,
.pkg-matrix.hovering-prem td.pkg-cell.main,
.pkg-matrix.hovering-main td.pkg-cell.std,
.pkg-matrix.hovering-main td.pkg-cell.prem { opacity: 0.32; filter: brightness(0.65) saturate(0.5); }
.pkg-matrix.hovering-std  th.pkg-col:nth-child(3) .pkg-col-hover-shell,
.pkg-matrix.hovering-std  th.pkg-col:nth-child(4) .pkg-col-hover-shell,
.pkg-matrix.hovering-prem th.pkg-col:nth-child(2) .pkg-col-hover-shell,
.pkg-matrix.hovering-prem th.pkg-col:nth-child(4) .pkg-col-hover-shell,
.pkg-matrix.hovering-main th.pkg-col:nth-child(2) .pkg-col-hover-shell,
.pkg-matrix.hovering-main th.pkg-col:nth-child(3) .pkg-col-hover-shell { opacity: 0.32; filter: brightness(0.65) saturate(0.5); }
.pkg-matrix.hovering-std  .pkg-foot:nth-child(3),
.pkg-matrix.hovering-std  .pkg-foot:nth-child(4),
.pkg-matrix.hovering-prem .pkg-foot:nth-child(2),
.pkg-matrix.hovering-prem .pkg-foot:nth-child(4),
.pkg-matrix.hovering-main .pkg-foot:nth-child(2),
.pkg-matrix.hovering-main .pkg-foot:nth-child(3) { opacity: 0.32; filter: brightness(0.65) saturate(0.5); }
.pkg-matrix.hovering-std  th.pkg-col:nth-child(2) .pkg-col-hover-shell { transform: translateY(-5px); filter: brightness(1.25) saturate(1.3); }
.pkg-matrix.hovering-prem th.pkg-col:nth-child(3) .pkg-col-hover-shell { transform: translateY(-6px); filter: brightness(1.3)  saturate(1.4); }
.pkg-matrix.hovering-main th.pkg-col:nth-child(4) .pkg-col-hover-shell { transform: translateY(-5px); filter: brightness(1.25) saturate(1.3); }
.pkg-matrix.hovering-std th.pkg-col:nth-child(2) .pkg-header-card.std {
  background: linear-gradient(160deg, rgba(255,255,255,0.14) 0%, rgba(105,102,156,0.18) 100%) !important;
  border: none !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 4px 24px rgba(105,102,156,0.25);
}
.pkg-matrix.hovering-prem th.pkg-col:nth-child(3) .pkg-header-card.prem {
  background: linear-gradient(160deg, rgba(255,114,45,0.35) 0%, rgba(255,80,10,0.22) 100%) !important;
  border: none !important;
  box-shadow: 0 20px 60px rgba(255,114,45,0.28), 0 4px 32px rgba(255,114,45,0.2);
}
.pkg-matrix.hovering-main th.pkg-col:nth-child(4) .pkg-header-card.main {
  background: linear-gradient(160deg, rgba(255,200,80,0.32) 0%, rgba(255,160,30,0.2) 100%) !important;
  border: none !important;
  box-shadow: 0 20px 60px rgba(255,200,80,0.22), 0 4px 32px rgba(255,180,50,0.18);
}
.pkg-matrix.hovering-std  td.pkg-cell.std  { background: rgba(255,255,255,0.07) !important; border-color: transparent !important; }
.pkg-matrix.hovering-prem td.pkg-cell.prem { background: rgba(255,114,45,0.13) !important; border-color: transparent !important; }
.pkg-matrix.hovering-main td.pkg-cell.main { background: rgba(255,200,80,0.1) !important;  border-color: transparent !important; }
.pkg-matrix.hovering-std .pkg-foot:nth-child(2) .pkg-foot-card.std {
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(105,102,156,0.15) 100%) !important;
  border: none !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 4px 20px rgba(105,102,156,0.2);
}
.pkg-matrix.hovering-prem .pkg-foot:nth-child(3) .pkg-foot-card.prem {
  background: linear-gradient(160deg, rgba(255,114,45,0.35) 0%, rgba(255,80,10,0.22) 100%) !important;
  border: none !important;
  box-shadow: 0 16px 48px rgba(255,114,45,0.25), 0 4px 28px rgba(255,114,45,0.18);
}
.pkg-matrix.hovering-main .pkg-foot:nth-child(4) .pkg-foot-card.main {
  background: linear-gradient(160deg, rgba(255,200,80,0.32) 0%, rgba(255,160,30,0.2) 100%) !important;
  border: none !important;
  box-shadow: 0 16px 48px rgba(255,200,80,0.2), 0 4px 28px rgba(255,180,50,0.15);
}
.pkg-matrix.hovering-std  .pkg-foot:nth-child(2) .pkg-cta.std  { background: rgba(255,255,255,0.18); color: #fff; filter: brightness(1.2); }
.pkg-matrix.hovering-prem .pkg-foot:nth-child(3) .pkg-cta.prem { background: #ff8040; filter: brightness(1.15) saturate(1.3); }
.pkg-matrix.hovering-main .pkg-foot:nth-child(4) .pkg-cta.main { background: #ffd060; filter: brightness(1.15) saturate(1.3); }
.pkg-matrix.hovering-std  td.pkg-cell.std  .pkg-yes.std  { background: rgba(255,255,255,0.25); filter: brightness(1.3); transform: scale(1.12); }
.pkg-matrix.hovering-prem td.pkg-cell.prem .pkg-yes.prem { background: rgba(255,114,45,0.5); color: #fff; filter: brightness(1.25) saturate(1.4); transform: scale(1.12); }
.pkg-matrix.hovering-main td.pkg-cell.main .pkg-yes.main { background: rgba(255,200,80,0.5); color: #0F003C; filter: brightness(1.2) saturate(1.3); transform: scale(1.12); }
.pkg-header-card.std, .pkg-header-card.prem, .pkg-header-card.main,
.pkg-foot-card.std, .pkg-foot-card.prem, .pkg-foot-card.main { border: none; }
@media (hover: none) {
  .pkg-matrix.hovering-std  td.pkg-cell.prem,
  .pkg-matrix.hovering-std  td.pkg-cell.main,
  .pkg-matrix.hovering-prem td.pkg-cell.std,
  .pkg-matrix.hovering-prem td.pkg-cell.main,
  .pkg-matrix.hovering-main td.pkg-cell.std,
  .pkg-matrix.hovering-main td.pkg-cell.prem { opacity: 1; filter: none; }
  .pkg-col-hover-shell { transform: none !important; filter: none !important; opacity: 1 !important; }
}

/* ── STATS ── */
.stats-band {
  background: linear-gradient(90deg, var(--lavender) 0%, var(--navy) 50%, var(--lavender) 100%);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,0,60,0.7), rgba(15,0,60,0.3), rgba(15,0,60,0.7));
}
.stat-item { position: relative; z-index: 1; }
.stat-num { font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }

/* ── UNIVERSITY ── */
.university {
  background: var(--light-navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rankings-list { margin-top: 32px; }
.ranking-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(105,102,156,0.2);
}
.ranking-position { font-size: 36px; font-weight: 900; color: var(--orange); min-width: 70px; }
.ranking-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.ranking-desc strong { color: white; display: block; font-size: 16px; }
.student-data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.data-tile {
  background: rgba(255,255,255,0.05);
  padding: 28px 24px;
  border: 1px solid rgba(105,102,156,0.15);
}
.data-tile-num { font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; }
.data-tile-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; line-height: 1.4; }

/* ── REGISTRATIONS CHART ── */
.registrations { background: var(--navy); padding: 100px 80px; }
.chart-container {
  margin-top: 60px; height: 280px;
  display: flex; align-items: flex-end; gap: 20px;
  position: relative; padding-bottom: 48px;
}
.chart-container::after {
  content: ''; position: absolute;
  bottom: 48px; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.1);
}
.bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar-value { font-size: 13px; font-weight: 700; color: var(--orange); }
.bar { width: 100%; border-radius: 3px 3px 0 0; transition: opacity 0.2s; position: relative; min-width: 48px; max-width: 72px; }
.bar:hover { opacity: 0.85; }
.bar-year { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); }

/* ── PAST COMPANIES ── */
.past-companies {
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
  text-align: center; padding: 100px 80px;
}
.companies-marquee-container { overflow: hidden; margin-top: 48px; position: relative; }
.companies-marquee-container::before,
.companies-marquee-container::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.companies-marquee-container::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.companies-marquee-container::after  { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.companies-row { display: flex; gap: 0; animation: marquee 28s linear infinite; width: max-content; }
.companies-row:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.company-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border: 1px solid rgba(105,102,156,0.25);
  background: rgba(255,255,255,0.03); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.6); white-space: nowrap; transition: all 0.2s;
  margin: 0 1px; border-radius: 3px; letter-spacing: 0.03em;
}
.company-chip:hover { background: rgba(255,114,45,0.1); border-color: var(--orange); color: white; }

/* ── CONTACT ── */
.contact {
  background: var(--orange); color: var(--navy);
  padding: 100px 80px; position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(15,0,60,0.08);
}
.contact .section-label { color: var(--navy); opacity: 0.5; }
.contact .section-title { color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 60px; position: relative; z-index: 1; }
.contact-person { background: var(--navy); color: white; border-radius: 4px; padding: 36px; display: flex; gap: 24px; align-items: flex-start; }
.contact-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--orange));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: white;
}
.contact-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.contact-title { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.contact-detail { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 2; }
.contact-detail a { color: rgba(255,255,255,0.65); text-decoration: none; }
.contact-detail a:hover { color: var(--orange); }

/* ── PASSWORD GATE ── */
#password-gate {
  position: fixed; inset: 0; background: #0F003C;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; font-family: 'Poppins', sans-serif;
}
#password-gate .gate-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 48px 40px; text-align: center; max-width: 400px; width: 90%;
}
#password-gate h2 { color: #ffffff; font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.02em; }
#password-gate p  { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 28px; }
#password-gate input {
  width: 100%; padding: 12px 16px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
  color: #ffffff; font-size: 15px; font-family: 'Poppins', sans-serif;
  outline: none; margin-bottom: 16px; box-sizing: border-box; text-align: center; letter-spacing: 0.08em;
}
#password-gate input::placeholder { color: rgba(255,255,255,0.3); }
#password-gate input:focus { border-color: #ff722d; }
#password-gate button {
  width: 100%; padding: 12px; background: #ff722d; color: #ffffff;
  border: none; border-radius: 6px; font-size: 14px; font-weight: 700;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
}
#password-gate button:hover { background: #e5621f; }
#password-gate .error-msg { color: #ff722d; font-size: 13px; margin-top: 14px; display: none; }
#brochure-content { display: none; }

/* ── FOOTER ── */
footer {
  background: #060020; padding: 48px 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(105,102,156,0.2);
  position: relative;
}
.footer-brand { font-size: 20px; font-weight: 800; color: white; }
.footer-brand .c { color: var(--orange); }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-efr { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-left > *:nth-child(6) { animation-delay: 0.6s; }

/* ── RESPONSIVE ── */
/* ── TABLET ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 32px 60px; }
  .hero-left::after { display: none; }
  .hero-right { display: none; }
  section { padding: 60px 32px; }
  .about, .university { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(3, 1fr); padding: 48px 32px; }
  .days-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 32px; }
  .registrations, .past-companies { padding: 60px 32px; }
  .pkg-matrix { font-size: 11px; }
  .pkg-matrix thead th.pkg-feature-col { width: 28%; }
  .pkg-matrix thead th.pkg-col { width: 24%; }
}

/* ── MOBILE ── */
@media (max-width: 560px) {
  /* Nav */
  nav { padding: 0 20px; height: 60px; }

  /* Hero */
  .hero-left { padding: 90px 20px 48px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero-date-badge { font-size: 12px; padding: 10px 16px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label { font-size: 10px; }
  .logo-mark { margin-bottom: 24px; }
  .mcw-logo-svg { width: 180px !important; }

  /* Sections */
  section { padding: 48px 20px; }
  .registrations, .past-companies { padding: 48px 20px; }
  .section-title { font-size: 28px; }
  .section-body { font-size: 14px; }

  /* About */
  .about { gap: 24px; }
  .about-accent-box { bottom: -12px; right: -8px; padding: 16px 20px; }
  .about-accent-num { font-size: 28px; }

  /* Stats band — single column on phone */
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 36px 20px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 10px; }

  /* Fix black strip — clamp all sections to viewport */
  body { overflow-x: hidden; }
  section, .stats-band, footer { max-width: 100vw; }
  .companies-marquee-container { max-width: 100vw; overflow: hidden; }
  .companies-row { animation-duration: 20s; }

  /* Differentiators */
  .diff-grid { grid-template-columns: 1fr; gap: 2px; }
  .diff-card { padding: 28px 20px; }
  .diff-num { font-size: 36px; }

  /* Bootcamp */
  .bootcamp { padding: 48px 20px; }
  .day-body { padding: 20px 16px; }
  .day-item { font-size: 13px; gap: 10px; }
  .day-time { min-width: 60px; font-size: 10px; }

  /* Package matrix — stack into scrollable view */
  .packages { padding: 48px 20px; }
  .pkg-matrix { font-size: 10px; }
  .pkg-matrix thead th.pkg-feature-col { width: 32%; padding-right: 8px; }
  .pkg-matrix thead th.pkg-col { width: 22%; padding: 0 4px; }
  .pkg-header-card { padding: 14px 8px 12px; border-radius: 8px 8px 0 0; }
  .pkg-header-name { font-size: 12px; }
  .pkg-header-price { font-size: 16px; }
  .pkg-header-note { font-size: 8px; }
  .pkg-badge-top { font-size: 7px; padding: 2px 6px; }
  .pkg-matrix tbody tr.pkg-row td.pkg-feature-label { font-size: 11px; padding: 9px 8px 9px 0; }
  .pkg-matrix tbody tr.pkg-row td.pkg-cell { padding: 9px 4px; }
  .pkg-matrix tbody tr.pkg-category td { font-size: 8px; letter-spacing: 0.1em; padding: 14px 0 4px; }
  .pkg-yes { width: 18px; height: 18px; font-size: 9px; }
  .pkg-no  { width: 18px; height: 18px; font-size: 10px; }
  .pkg-cta { font-size: 9px; padding: 7px 10px; letter-spacing: 0.06em; }
  .pkg-foot-card { padding: 12px 8px; }

  /* Wrap table in horizontal scroll on very small screens */
  .packages { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* University */
  .university { padding: 48px 20px; }
  .student-data-grid { grid-template-columns: 1fr 1fr; }
  .data-tile { padding: 20px 16px; }
  .data-tile-num { font-size: 26px; }
  .ranking-position { font-size: 28px; min-width: 52px; }

  /* Chart */
  .chart-container { gap: 10px; }
  .bar-value { font-size: 10px; }
  .bar-year { font-size: 10px; bottom: -32px; }
  .bar { min-width: 32px; }

  /* Past companies banner */
  .past-companies div[style*="aspect-ratio"] { aspect-ratio: 16/9 !important; max-height: 200px !important; }
  .past-companies div[style*="left:48px"] { left: 20px !important; }
  .past-companies div[style*="left:48px"] div:last-child { font-size: 20px !important; }

  /* Contact */
  .contact { padding: 48px 20px; }
  .contact-grid { grid-template-columns: 1fr !important; margin-top: 32px; gap: 16px; }
  .contact-person { padding: 24px 20px; flex-direction: column; gap: 16px; }
  .contact-avatar { width: 56px; height: 56px; font-size: 18px; }
  .contact-name { font-size: 15px; }
  .contact-detail { font-size: 12px; line-height: 1.8; }

  /* Footer */
  footer { padding: 32px 20px; }

  /* Password gate */
  #password-gate .gate-box { padding: 36px 24px; }
}
