/* ── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── CSS VARIABLES ────────────────────────────────────────────────────── */
:root {
  --navy:       #0D1B3E;
  --navy-deep:  #080F24;
  --navy-mid:   #152348;
  --gold:       #B8973A;
  --gold-light: #D4AF5A;
  --gold-pale:  #F5EDD6;
  --slate:      #3A4A6B;
  --silver:     #E8ECF4;
  --charcoal:   #2C2C2C;
  --white:      #FFFFFF;
  --body-text:  #3D3D3D;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 12px rgba(13,27,62,0.08);
  --shadow-md:  0 8px 40px rgba(13,27,62,0.14);
  --shadow-lg:  0 20px 60px rgba(13,27,62,0.20);
}

body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ── CUSTOM SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ───────────────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--navy); }

/* ── UTILITY ─────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.gold-rule { width: 60px; height: 2px; background: var(--gold); margin: 24px 0; }
.gold-rule.centered { margin: 24px auto; }
.section-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 15, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,151,58,0.2);
  transition: var(--transition);
}
nav .nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo-name .cap { color: var(--white); }
.nav-logo-name .tech { color: var(--gold); }
.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── HAMBURGER (mobile) ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(184,151,58,0.2);
  padding: 24px 32px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--white);
  border-bottom: 1px solid var(--silver);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle geometric background pattern */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,27,62,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,62,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Large decorative numeral */
#hero::after {
  content: 'CTA';
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--ff-display);
  font-size: 320px;
  font-weight: 900;
  color: rgba(13,27,62,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Gold orb */
.hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,58,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease 0.35s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title-sub {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.45s both;
}
.hero-tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
  font-style: italic;
  animation: fadeUp 0.8s ease 0.55s both;
}
.hero-tagline strong {
  color: var(--navy);
  font-style: normal;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.65s both;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,58,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 15px 36px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(13,27,62,0.25);
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero right — stats card */
.hero-right {
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-stats-card {
  background: var(--navy);
  border: 1px solid rgba(184,151,58,0.15);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.hero-stats-card-title {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184,151,58,0.2);
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.hero-stat-label strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,27,62,0.3);
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: shimmer 2s linear infinite;
}

/* ── CREDIBILITY STRIP ───────────────────────────────────────────────── */
#credibility {
  background: var(--navy);
  border-top: 1px solid rgba(184,151,58,0.15);
  border-bottom: 1px solid rgba(184,151,58,0.15);
  padding: 24px 0;
  overflow: hidden;
}
.credibility-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.cred-item svg { flex-shrink: 0; }
.cred-item strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.cred-divider {
  width: 1px; height: 28px;
  background: rgba(184,151,58,0.2);
}

/* ── SECTION BASE ────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-header { margin-bottom: 64px; }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px;
}
.section-title-light { color: var(--white); }
.section-subtitle-light { color: rgba(255,255,255,0.6); }

/* ── ABOUT ───────────────────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left {}
.about-body {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-right {}

/* Founder card */
.founder-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.founder-card::after {
  content: '"';
  position: absolute;
  bottom: -20px; right: 20px;
  font-family: var(--ff-display);
  font-size: 180px;
  color: rgba(184,151,58,0.06);
  line-height: 1;
  pointer-events: none;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,151,58,0.15);
  border: 1px solid rgba(184,151,58,0.3);
  border-radius: 2px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.founder-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-name {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-creds {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.founder-divider {
  width: 40px; height: 1px;
  background: rgba(184,151,58,0.4);
  margin-bottom: 24px;
}
.founder-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 24px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.founder-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ── PROGRAMMES ──────────────────────────────────────────────────────── */
#programmes {
  background: var(--silver);
  position: relative;
  overflow: hidden;
}
#programmes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.programme-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.programme-card-header {
  background: var(--navy);
  padding: 32px 32px 28px;
  position: relative;
  overflow: hidden;
}
.programme-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.programme-icon {
  width: 48px; height: 48px;
  background: rgba(184,151,58,0.15);
  border: 1px solid rgba(184,151,58,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.programme-designation {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.programme-full-name {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.programme-card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.programme-awarding {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding: 6px 12px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 0 2px 2px 0;
}
.programme-levels {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.programme-levels li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.4;
  padding: 7px 0;
  border-bottom: 1px solid var(--silver);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.programme-levels li:last-child { border-bottom: none; }
.programme-levels li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.programme-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
}
.programme-cta:hover {
  background: var(--gold);
  color: var(--navy);
}
.programme-card.featured .programme-card-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}
.programme-card.featured .programme-card-header::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── WHY CAPTECH ─────────────────────────────────────────────────────── */
#why {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,151,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,151,58,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,151,58,0.1);
  border: 1px solid rgba(184,151,58,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.why-item {
  background: rgba(13,27,62,0.8);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}
.why-item:hover {
  background: rgba(13,27,62,0.95);
}
.why-item:hover .why-number {
  color: rgba(184,151,58,0.25);
}
.why-number {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(184,151,58,0.1);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-icon {
  width: 40px; height: 40px;
  background: rgba(184,151,58,0.12);
  border: 1px solid rgba(184,151,58,0.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ── APPROACH ────────────────────────────────────────────────────────── */
#approach { background: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-steps { }
.approach-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--silver);
  transition: var(--transition);
}
.approach-step:first-child { padding-top: 0; }
.approach-step:last-child { border-bottom: none; }
.approach-step:hover .step-num { background: var(--navy); color: var(--white); }
.step-num {
  width: 44px; height: 44px;
  background: var(--silver);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--transition);
}
.step-content {}
.step-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}
.approach-right {}
.approach-quote-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.approach-quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.approach-quote-mark {
  font-family: var(--ff-display);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
}
.approach-quote-text {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
}
.approach-quote-attr {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.approach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
  background: rgba(184,151,58,0.15);
}
.approach-stat {
  background: var(--navy);
  padding: 20px 24px;
  text-align: center;
}
.approach-stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.approach-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}


/* ── ADMISSIONS ──────────────────────────────────────────────────────── */
#admissions {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#admissions::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,151,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.admissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.admissions-left {}
.admissions-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.eligibility-list { list-style: none; }
.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eligibility-item:last-child { border-bottom: none; }
.eligibility-check {
  width: 22px; height: 22px;
  background: rgba(184,151,58,0.15);
  border: 1px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.eligibility-check svg { width: 12px; height: 12px; }
.eligibility-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.eligibility-text strong { color: var(--white); }

/* Contact form */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,58,0.2);
  border-radius: 4px;
  padding: 40px;
}
.form-title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-select {
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}
.form-select option {
  background: var(--navy-deep);
  color: var(--white);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn-form {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 16px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-form:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,58,0.3);
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(184,151,58,0.15);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
}
.footer-logo-name .cap { color: var(--white); }
.footer-logo-name .tech { color: var(--gold); }
.footer-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 4px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  max-width: 500px;
  text-align: right;
}

/* ── BACK TO TOP ─────────────────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold-light); transform: translateY(-2px) !important; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
#testimonials {
  background: var(--silver);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-quote::before {
  content: '“';
  position: absolute;
  top: -20px; left: -15px;
  font-family: var(--ff-display);
  font-size: 64px;
  color: rgba(184,151,58,0.15);
  z-index: -1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-photo {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold-pale);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.author-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(184,151,58,0.2));
}
.author-info {}
.author-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.author-meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 100px 32px 80px; }
  .hero-right { display: none; }
  .about-grid, .admissions-grid, .approach-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 48px; }
  .programmes-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid .why-item { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-disclaimer { text-align: left; max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 38px; }
  .audience-grid { grid-template-columns: 1fr; }
  .credibility-inner { justify-content: center; }
  .cred-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero-content { padding: 100px 24px 72px; }
  .container { padding: 0 24px; }
  #hero::after { display: none; }
  .approach-stats { grid-template-columns: 1fr 1fr; }
}

/* ── PMTP SPECIAL FOCUS ──────────────────────────────────────────────── */
#pmtp {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.pmtp-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pmtp-headline {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pmtp-headline em { color: var(--gold); font-style: italic; }
.pmtp-subhead {
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 48px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* Problem stats row */
.pmtp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(13,27,62,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}
.pmtp-stat {
  background: var(--navy);
  padding: 28px 24px;
  text-align: center;
}
.pmtp-stat-num {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.pmtp-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.pmtp-stat-label strong { color: rgba(255,255,255,0.9); display: block; margin-bottom: 2px; }

/* VS comparison */
.pmtp-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 64px;
  border: 1px solid rgba(13,27,62,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.pmtp-vs-col {
  padding: 32px;
  background: var(--silver);
}
.pmtp-vs-col.good { background: var(--white); }
.pmtp-vs-header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(13,27,62,0.1);
}
.pmtp-vs-header.bad { color: #999; }
.pmtp-vs-header.good { color: var(--gold); }
.pmtp-vs-divider {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.pmtp-vs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.pmtp-vs-item:last-child { margin-bottom: 0; }
.pmtp-vs-item .mark {
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}
.pmtp-vs-item.bad { color: #888; }
.pmtp-vs-item.good { color: var(--charcoal); font-weight: 500; }

/* 3 Phases */
.pmtp-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(13,27,62,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}
.pmtp-phase {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
}
.pmtp-phase:last-child { background: var(--navy); }
.pmtp-phase-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.pmtp-phase-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}
.pmtp-phase:last-child .pmtp-phase-title { color: var(--white); }
.pmtp-phase-duration {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.pmtp-phase-items { list-style: none; }
.pmtp-phase-items li {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid var(--silver);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pmtp-phase:last-child .pmtp-phase-items li {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.08);
}
.pmtp-phase-items li::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.pmtp-phase-result {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 0 2px 2px 0;
}
.pmtp-phase:last-child .pmtp-phase-result {
  background: rgba(184,151,58,0.15);
  color: var(--gold);
}

/* 5 Differentiators */
.pmtp-diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.pmtp-diff-card {
  background: var(--silver);
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.pmtp-diff-card:hover {
  background: var(--white);
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pmtp-diff-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: rgba(13,27,62,0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.pmtp-diff-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pmtp-diff-body {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .pmtp-diff-grid { grid-template-columns: repeat(3, 1fr); }
  .pmtp-phases { grid-template-columns: 1fr; }
  .pmtp-stats { grid-template-columns: 1fr; }
  .pmtp-vs { grid-template-columns: 1fr; }
  .pmtp-vs-divider { writing-mode: horizontal-tb; padding: 16px; font-size: 16px; }
}
@media (max-width: 768px) {
  .pmtp-diff-grid { grid-template-columns: 1fr 1fr; }
}
