/* â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* â”€â”€ CSS VARIABLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --navy:       #002F6C;
  --navy-deep:  #001845;
  --navy-mid:   #003D88;
  --gold:       #B8973A;
  --gold-light: #D4AF5A;
  --gold-pale:  #F5EDD6;
  --slate:      #2D5A8E;
  --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(0,47,108,0.08);
  --shadow-md:  0 8px 40px rgba(0,47,108,0.14);
  --shadow-lg:  0 20px 60px rgba(0,47,108,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(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,47,108,0.1);
  transition: var(--transition);
}
nav .nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-logo-acad {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5c14;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  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(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 12px 26px;
  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(--navy);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 96px; left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(184,151,58,0.2);
  padding: 12px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.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); }

/* â”€â”€ DROPDOWNS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border-top: 3px solid var(--gold);
  top: 100%;
  left: 0;
}
.dropdown-content a {
  color: var(--navy) !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--silver);
  transition: var(--transition);
  text-transform: none !important;
  letter-spacing: normal !important;
}
.dropdown-content a::after { display: none !important; }
.dropdown-content a:hover { background-color: var(--silver); color: var(--gold) !important; }
.dropdown:hover .dropdown-content { display: block; }

.dropdown-sub { position: relative; }
.dropdown-grand {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--white);
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  border-left: 2px solid var(--gold);
}
.dropdown-sub:hover .dropdown-grand { display: block; }

/* Desktop Navigation Fixes */
@media (min-width: 1025px) {
  .nav-links li { position: relative; }
  .nav-links li.dropdown > a::before {
    content: '▾';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
  }
}

/* â”€â”€ MOBILE MENU UPDATES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-menu a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 18px;
}

/* â”€â”€ 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(0,47,108,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,47,108,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(0,47,108,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(0,47,108,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-row-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.hero-stat-row-link:hover { background: rgba(184,151,58,0.1); }
.hero-stat-row-link:hover .hero-stat-num { color: #d4a93e; }
.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.85);
  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(0,47,108,0.55);
  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.82);
  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.85); }

/* â”€â”€ 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.88);
  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.18);
  border-radius: 2px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  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.78);
  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: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--silver);
}
.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(2, 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(0,47,108,0.8);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}
.why-item:hover {
  background: rgba(0,47,108,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.85);
  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.78);
  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.88);
  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.92);
  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.78);
  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.78);
  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.48); }
.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-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  height: 68px;
  width: auto;
  display: block;
}
.footer-logo-text {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.footer-logo-acad {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  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.78);
  margin-bottom: 8px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.78);
  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.78);
  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.65);
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.58);
  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);
}

/* â”€â”€ PLACEMENTS MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: marquee 30s linear infinite;
}
.marquee-content.reverse {
  animation: marquee-reverse 35s linear infinite;
}
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
.placement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0,47,108,0.08);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 10px 16px;
  min-width: 160px;
  height: 110px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: var(--transition);
  gap: 12px;
}
.placement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(184,151,58,0.15);
  border-color: rgba(184,151,58,0.4);
}
.placement-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  max-width: 120px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.placement-name {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.edu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0,47,108,0.08);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 10px 16px;
  min-width: 180px;
  height: 110px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: var(--transition);
  gap: 12px;
}
.edu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(184,151,58,0.15);
  border-color: rgba(184,151,58,0.4);
}
.edu-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  max-width: 130px;
}
.edu-name {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* â”€â”€ 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: 64px 0; }
  .hero-content { padding: 100px 20px 64px; }
  .container { padding: 0 20px; }
  #hero::after { display: none; }
  .approach-stats { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .section-title { font-size: clamp(26px, 6vw, 40px); }
  .section-subtitle { font-size: 15px; }
  .btn-primary, .btn-outline { padding: 14px 28px; font-size: 12px; }
  .hero-actions { gap: 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; width: 100%; }
}

/* â”€â”€ 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(0,47,108,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.85);
  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(0,47,108,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(0,47,108,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(0,47,108,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.88);
  border-bottom-color: rgba(255,255,255,0.12);
}
.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(0,47,108,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: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .pmtp-diff-grid { grid-template-columns: 1fr; }
}

/* -- ABOUT STATS -- */
.about-stats { display: flex; gap: 32px; margin-top: 32px; border-top: 1px solid rgba(0,47,108,0.1); padding-top: 24px; }
.about-stat-item strong { display: block; font-family: var(--ff-display); font-size: 32px; color: var(--gold); }
.about-stat-item span { font-size: 13px; color: var(--slate); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

@media (max-width: 1024px) { .about-left, .about-right { order: 0 !important; } }

/* -- AUDIENCE GRID -- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.audience-card { background: var(--white); border: 1px solid var(--silver); padding: 40px; border-radius: 4px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(184,151,58,0.4); }
.audience-title { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.audience-body { font-size: 15px; color: var(--slate); line-height: 1.6; }

/* ── OPPORTUNITIES AFTER CFA (homepage section) ─────────────────────────── */
#opportunities { background: var(--silver); }
.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.opp-card {
  background: var(--white);
  border: 1px solid rgba(0,47,108,0.08);
  border-radius: 4px;
  padding: 28px 24px;
  transition: var(--transition);
}
.opp-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.opp-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.opp-card-title {
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.opp-card-desc {
  font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 14px;
}
.opp-card-salary {
  font-size: 11px; font-weight: 700;
  color: var(--navy); background: var(--gold-pale);
  padding: 4px 10px; border-radius: 20px; display: inline-block;
}
.opp-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(184,151,58,0.25);
  border-radius: 4px; overflow: hidden;
}
.opp-stat-cell {
  background: var(--navy);
  padding: 32px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.opp-stat-cell:last-child { border-right: none; }
.opp-stat-num {
  font-family: var(--ff-display);
  font-size: 30px; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.opp-stat-label { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5; }
@media (max-width: 900px) { .opp-stats-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .opp-stats-strip { grid-template-columns: 1fr; } .opp-grid { grid-template-columns: 1fr; } }

/* ── CAREERS PAGE ─────────────────────────────────────────────────────────── */
.careers-hero {
  background: var(--navy-deep);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,151,58,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.career-metrics-strip {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(184,151,58,0.2);
  border-radius: 4px; overflow: hidden; margin-top: 56px;
}
.career-metric-cell {
  flex: 1; min-width: 160px;
  padding: 28px 24px; text-align: center;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.career-metric-cell:last-child { border-right: none; }
.career-metric-num {
  font-family: var(--ff-display);
  font-size: 32px; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.career-metric-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }

.career-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.career-role-card {
  background: var(--white);
  border: 1px solid rgba(0,47,108,0.09);
  border-radius: 4px; padding: 28px 24px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.career-role-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--gold);
}
.career-role-card:hover {
  border-color: rgba(184,151,58,0.4);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.career-role-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.career-role-title {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.career-role-desc { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.career-role-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.career-role-tag {
  font-size: 11px; padding: 3px 10px;
  background: var(--silver); border-radius: 20px;
  color: var(--navy); font-weight: 500;
}
.career-role-salary {
  font-size: 11px; padding: 3px 10px;
  background: var(--gold-pale); border-radius: 20px;
  color: var(--navy); font-weight: 700;
}

.career-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.career-service-card {
  background: var(--white);
  border: 1px solid rgba(184,151,58,0.15);
  border-radius: 4px; padding: 32px 28px;
  text-align: center; transition: var(--transition);
}
.career-service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.career-service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.career-service-title {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.career-service-desc { font-size: 13px; color: #555; line-height: 1.6; }

.industries-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industry-pill {
  padding: 10px 22px;
  border: 1px solid rgba(184,151,58,0.3); border-radius: 4px;
  font-size: 14px; font-weight: 500;
  color: var(--navy); background: var(--white);
  transition: var(--transition); cursor: default;
}
.industry-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.for-employers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.for-employer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 28px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.for-employer-card:hover { border-color: rgba(184,151,58,0.4); background: rgba(255,255,255,0.09); }
.for-employer-icon {
  width: 40px; height: 40px;
  background: rgba(184,151,58,0.15); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.for-employer-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.for-employer-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.careers-cta-band {
  background: var(--gold);
  padding: 72px 0; text-align: center;
}
.careers-cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px,4vw,42px);
  color: var(--navy); margin-bottom: 16px;
}
.careers-cta-band p { font-size: 17px; color: var(--navy); opacity: 0.85; margin-bottom: 36px; }
.btn-navy {
  display: inline-block;
  background: var(--navy); color: var(--white);
  padding: 14px 36px; border-radius: 2px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  transition: var(--transition);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* ── CURRICULUM CHANGES SECTION ──────────────────────────────────────────── */
.curr-section { background: #f8f6f0; }
.curr-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 8px 18px; border-radius: 20px;
  margin-bottom: 8px;
}
.curr-tabs {
  display: flex; gap: 4px;
  border-bottom: 2px solid rgba(0,47,108,0.12);
  margin-bottom: 36px;
}
.curr-tab-btn {
  padding: 12px 28px;
  background: none; border: none;
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  color: var(--slate); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: var(--transition);
}
.curr-tab-btn:hover { color: var(--navy); }
.curr-tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.curr-list { display: flex; flex-direction: column; gap: 16px; }
.curr-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid rgba(0,47,108,0.08);
  border-radius: 4px; padding: 20px 24px;
  transition: var(--transition);
}
.curr-item:hover { border-color: rgba(184,151,58,0.35); box-shadow: var(--shadow-sm); }
.curr-tag {
  display: inline-block; flex-shrink: 0;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
  margin-top: 2px; min-width: 72px; text-align: center;
}
.curr-tag.new      { background: #d4edda; color: #155724; }
.curr-tag.revised  { background: #cce5ff; color: #004085; }
.curr-tag.weight   { background: var(--gold-pale); color: #6d4c00; }
.curr-item-title {
  font-family: var(--ff-display); font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.curr-item-desc { font-size: 14px; color: #555; line-height: 1.65; }
.curr-disclaimer {
  margin-top: 32px; font-size: 12px; color: #888;
  border-top: 1px solid rgba(0,47,108,0.1); padding-top: 20px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .curr-item { flex-direction: column; }
  .curr-tab-btn { padding: 10px 16px; font-size: 13px; }
}

/* ── READINESS CTA SECTION ───────────────────────────────────────────────────── */
.readiness-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.readiness-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.readiness-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(184,151,58,0.08);
  border: 1px solid rgba(184,151,58,0.25);
  border-radius: 8px;
  padding: 14px 20px;
  min-width: 72px;
}
.pill-num {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.pill-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.readiness-preview-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,151,58,0.2);
  border-radius: 12px;
  padding: 28px;
}
.rpc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.rpc-timer {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
}
.rpc-question {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.rpc-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.rpc-option {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 10px 14px;
}
.rpc-correct {
  color: #81c784;
  border-color: rgba(76,175,80,0.4);
  background: rgba(76,175,80,0.08);
}
.rpc-cta-hint {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .readiness-cta-grid { grid-template-columns: 1fr; gap: 40px; }
}

