/**
 * TECTRANZ — PAGES & THEME TEMPLATE STYLES
 * Covers header.php, footer.php, front-page.php, page.php,
 * single-tt_program.php, archive-tt_program.php
 */

/* ══════════════════════════════════════════════════
   BODY OFFSET — fixed announce bar (40px) + nav (68px)
   ══════════════════════════════════════════════════ */
body {
  padding-top: 108px; /* 40 announce + 68 nav */
}
body.no-announce {
  padding-top: 68px;
}
@media (max-width: 767px) {
  body            { padding-top: 96px; }  /* 36 announce + 60 nav */
  body.no-announce { padding-top: 60px; }
}

/* ══════════════════════════════════════════════════
   EYEBROW COLOR VARIANTS
   ══════════════════════════════════════════════════ */
.eyebrow-blue  { color: var(--c-blue); }
.eyebrow-green { color: var(--c-green); }
.eyebrow-white { color: rgba(255,255,255,0.75); }
.eyebrow-blue, .eyebrow-green, .eyebrow-white {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

/* ══════════════════════════════════════════════════
   SECTION UTILITY
   ══════════════════════════════════════════════════ */
.section {
  padding-block: var(--section-py);
}

/* ══════════════════════════════════════════════════
   NAVIGATION (header.php class names)
   ══════════════════════════════════════════════════ */
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--lay-wide);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  gap: var(--sp-2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: var(--sp-6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-gray-700);
  border-radius: var(--r-md);
  transition: all var(--tr-fast);
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-blue);
  background: var(--c-blue-tint);
}

.nav-links .chevron {
  font-size: 10px;
  transition: transform var(--tr-fast);
}
.nav-links li:hover .chevron { transform: rotate(180deg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
  flex-shrink: 0;
}

.nav-discord-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-gray-600);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: all var(--tr-fast);
}
.nav-discord-link:hover { color: var(--c-navy); background: var(--c-bg-tint); }

.btn-enroll-nav {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-blue);
  color: var(--c-white) !important;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--r-full);
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--f-body);
  transition: all var(--tr-fast);
  white-space: nowrap;
}
.btn-enroll-nav:hover { background: var(--c-blue-dark); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--c-gray-100);
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all var(--tr-fast);
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-discord-link { display: none; }
  .nav-hamburger { display: flex; }
}

/* Ghost-white button — for dark/hero backgrounds */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  height: var(--btn-h);
  padding-inline: var(--btn-px);
  border-radius: var(--btn-radius);
  font-family: var(--f-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  background: rgba(255,255,255,0.12);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--tr-fast);
  white-space: nowrap;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.22);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ── Mega menu internal layout ── */
.mega-menu-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-8);
  max-width: var(--lay-wide);
  margin-inline: auto;
  padding: var(--sp-3) var(--sp-6) var(--sp-5);
}

.mega-programs-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mega-program-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-xl);
  text-decoration: none;
  transition: background var(--tr-fast);
}
.mega-program-item:hover { background: var(--c-bg-tint); }

.mega-program-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--c-blue-tint);
}

.mega-program-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-navy);
  display: block;
  margin-bottom: 2px;
}

.mega-program-sub {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

.mega-side { padding-left: var(--sp-4); }

.mega-side-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}

.mega-level-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--c-bg-tint);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.mega-quick-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.mega-quick-links a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-gray-700);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: all var(--tr-fast);
}
.mega-quick-links a:hover { color: var(--c-blue); background: var(--c-blue-tint); }

.mega-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6) var(--sp-5);
  max-width: 640px;
  margin-inline: auto;
}

/* Specificity bump: .mega-menu a wins over .nav-links a (0,2,0 vs 0,1,1) */
.mega-menu .mega-company-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-xl);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-navy) !important;
  transition: background var(--tr-fast);
}
.mega-menu .mega-company-item:hover { background: var(--c-bg-tint); color: var(--c-blue) !important; }
.mega-company-icon { font-size: 20px; }

/* Fix program item links — same specificity issue */
.mega-menu .mega-program-item  { color: var(--c-text) !important; text-decoration: none; }
.mega-menu .mega-program-name  { color: var(--c-navy) !important; }
.mega-menu .mega-program-sub   { color: var(--c-text-muted) !important; }
.mega-menu .mega-quick-links a { color: var(--c-blue) !important; }
.mega-menu .mega-quick-links a:hover { color: var(--c-navy) !important; }

/* ── Mobile nav drawer ── */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) + 10);
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav-drawer.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,75,0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--tr-normal);
}
.mobile-nav-drawer.open .mobile-nav-overlay { opacity: 1; }

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--c-white);
  box-shadow: var(--sh-5);
  transform: translateX(100%);
  transition: transform var(--tr-normal);
  overflow-y: auto;
  padding: var(--sp-20) 0 var(--sp-8);
  display: flex;
  flex-direction: column;
}
.mobile-nav-drawer.open .mobile-drawer__panel { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--c-bg-tint);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
  transition: background var(--tr-fast);
}
.mobile-nav-close:hover { background: var(--c-gray-100); }

.mobile-drawer__panel a {
  display: block;
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-navy);
  text-decoration: none;
  transition: background var(--tr-fast);
  border-bottom: 1px solid var(--c-border);
}
.mobile-drawer__panel a:hover { background: var(--c-bg-tint); }

/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */
.hero {
  background: var(--g-hero);
  padding-block: var(--sp-24) var(--sp-16);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-12);
  align-items: center;
}

.hero-eyebrow { margin-bottom: var(--sp-5); }

.hero-content h1 { color: var(--c-white); margin-bottom: var(--sp-5); }

.highlight { color: var(--c-green-lt, #6FEF9C); }
.highlight-blue { color: var(--c-blue-mid); }

.hero-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── Hero visual (image + floating cards) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-3xl);
  display: block;
  object-fit: cover;
  /* Placeholder shimmer until real image loaded */
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Floating stat cards on image */
.hero-float-card {
  position: absolute;
  background: rgba(13,27,75,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
  box-shadow: var(--sh-4);
}
.hero-float-card--tl { top: 10%; left: -20px; }
.hero-float-card--br { bottom: 18%; right: -20px; }

.hero-float-num {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--c-green-lt, #6FEF9C);
  line-height: 1;
}
.hero-float-lbl {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  font-weight: var(--fw-semi);
}

/* Stars rating float */
.hero-float-rating {
  position: absolute;
  bottom: 5%;
  left: -10px;
  background: #F5C200;
  border-radius: var(--r-xl);
  padding: var(--sp-2) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: var(--sh-3);
}
.hero-float-stars { color: var(--c-navy); font-size: var(--fs-sm); letter-spacing: 1px; }
.hero-float-rating-val { color: var(--c-navy); font-size: var(--fs-sm); font-weight: var(--fw-black); }

/* Hero Stats panel (legacy, kept for fallback) */
.hero-stats {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-3xl);
  padding: var(--sp-8);
  backdrop-filter: blur(12px);
}

.hero-stats-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.hero-stat-item {
  text-align: center;
  padding: var(--sp-4);
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
}

.hero-stat-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--c-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
  font-family: var(--f-display);
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}

/* Marquee ticker */
.hero-marquee-wrap {
  margin-top: var(--sp-12);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--sp-6);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.72);
  flex-shrink: 0;
}

.marquee-dot { color: var(--c-green-vivid, #20C460); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-visual { display: none; }
}

/* ══════════════════════════════════════════════════
   STATS BENTO
   ══════════════════════════════════════════════════ */
.stats-bento { background: var(--c-navy); padding-block: var(--sp-12); }

.stats-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-bento-cell {
  background: rgba(255,255,255,0.04);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: background var(--tr-fast);
}
.stat-bento-cell:hover { background: rgba(255,255,255,0.08); }

.stat-bento-number {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--c-green-lt, #6FEF9C);
  font-family: var(--f-display);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-bento-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
}

@media (max-width: 767px) {
  .stats-bento-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   PROGRAMS SECTION (home page grid)
   ══════════════════════════════════════════════════ */
.programs-section { background: var(--c-bg-alt, #F8F9FC); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-4);
}

@media (max-width: 1024px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .programs-grid { grid-template-columns: 1fr; } }

/* ── Home program card (simple card style) ── */
.program-card-simple {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--tr-normal);
}
.program-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--c-blue);
}

.program-card-simple__icon { font-size: 32px; }
.program-card-simple__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--c-blue-tint);
  color: var(--c-blue);
}
.program-card-simple__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extra);
  color: var(--c-navy);
  line-height: var(--lh-snug);
}
.program-card-simple__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.program-card-simple__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: auto;
}
.program-meta-item {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.program-card-simple__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-blue);
  margin-top: var(--sp-2);
}

/* ══════════════════════════════════════════════════
   WHY TECTRANZ — comparison table
   ══════════════════════════════════════════════════ */
.why-section { background: var(--c-navy); }
.why-section h2,
.why-section h3 { color: var(--c-white); }
.why-section p { color: rgba(255,255,255,0.72); }
.why-section .section-header p { color: rgba(255,255,255,0.65); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-8);
}
.comparison-table th,
.comparison-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comparison-table th {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.comparison-table td { color: rgba(255,255,255,0.8); font-size: var(--fs-sm); }
.comparison-table td:first-child { text-align: left; font-weight: var(--fw-semi); color: var(--c-white); }
.comparison-table .col-tz { color: var(--c-green-lt, #6FEF9C); font-weight: var(--fw-semi); }
.comparison-table__wrap { overflow-x: auto; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-4);
  counter-reset: hiw;
}
.hiw-steps--4 { grid-template-columns: repeat(4, 1fr); }
.hiw-steps--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) { .hiw-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .hiw-steps { grid-template-columns: 1fr; } }

.hiw-step {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  position: relative;
}
/* Arrow connector between steps (desktop only) */
.hiw-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: calc(-1 * var(--sp-4));
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-xl);
  color: var(--c-blue);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) { .hiw-step:not(:last-child)::after { display: none; } }

.hiw-step-num {
  font-size: 64px;
  font-weight: var(--fw-black);
  color: rgba(35,0,232,0.1);
  line-height: 1;
  margin-bottom: var(--sp-3);
  font-family: var(--f-display);
  letter-spacing: -0.04em;
}
.hiw-step h3 { font-size: var(--fs-lg); color: var(--c-navy); margin-bottom: var(--sp-2); }
.hiw-step p  { font-size: var(--fs-sm); color: var(--c-text-muted); }

@media (max-width: 1024px) { .hiw-steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .hiw-steps--4, .hiw-steps--3 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   TARGET ROLES
   ══════════════════════════════════════════════════ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.role-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
}
.role-card__icon { font-size: 28px; margin-bottom: var(--sp-3); }
.role-card__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--c-navy); margin-bottom: var(--sp-2); }
.role-card__salary { font-size: var(--fs-sm); color: var(--c-green); font-weight: var(--fw-semi); margin-bottom: var(--sp-3); }
.role-card__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.role-tag {
  font-size: var(--fs-xs);
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
}
/* flat class aliases used by the builder HTML */
.role-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-blue);
  background: var(--c-blue-light);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.role-name {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}
.role-ctc {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-green);
  margin-bottom: var(--sp-1);
}
.role-ctc-note {
  font-size: var(--fs-xs);
  color: var(--c-text-subtle);
}

@media (max-width: 1024px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .roles-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials-section { background: var(--c-bg-alt, #F8F9FF); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-stars { color: #F59E0B; font-size: var(--fs-sm); letter-spacing: 2px; }
.testimonial-text,
.testimonial-quote { font-size: var(--fs-sm); color: var(--c-text); line-height: var(--lh-relaxed); flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-navy); }
.testimonial-role { font-size: var(--fs-xs); color: var(--c-text-muted); }

.governor-callout {
  margin-top: var(--sp-8);
  background: var(--g-mesh);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.governor-callout__text { font-size: var(--fs-lg); color: rgba(255,255,255,0.9); line-height: var(--lh-relaxed); flex: 1; font-style: italic; }
.governor-callout__attribution { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); margin-top: var(--sp-3); }
.governor-callout__badge { flex-shrink: 0; text-align: center; }
.governor-callout__seal { font-size: 48px; }
.governor-callout__seal-text { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); margin-top: var(--sp-2); }

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .testimonials-grid { grid-template-columns: 1fr; } .governor-callout { flex-direction: column; } }

/* ══════════════════════════════════════════════════
   UNIVERSITY PARTNERS
   ══════════════════════════════════════════════════ */
.partners-section { background: var(--c-white); }
.partners-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  align-items: center;
  margin-top: var(--sp-8);
}
.partner-logo-item {
  width: 140px;
  height: 64px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--c-text-muted);
  text-align: center;
  padding: var(--sp-3);
}

/* ══════════════════════════════════════════════════
   FEES SECTION (home)
   ══════════════════════════════════════════════════ */
.fees-section { background: var(--c-white); }
.fees-section h2,
.fees-section h3 { color: var(--c-navy); }
.fees-section > .container > .section-header p,
.fees-section .section-header p { color: var(--c-text-muted); }
.fees-section .eyebrow-blue { color: var(--c-blue); }

.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.fees-grid--program { gap: var(--sp-4); }

.fee-price-now {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--c-navy);
  font-family: var(--f-display);
  line-height: 1;
}
.fee-price-was {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-decoration: line-through;
  margin-top: var(--sp-1);
}
.fee-emi {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-2);
}
.fee-seat {
  font-size: var(--fs-xs);
  color: var(--c-green);
  font-weight: var(--fw-semi);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.fee-card-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 3px 12px;
  border-radius: var(--r-full);
  background: var(--c-green);
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}
.fee-card-label { font-size: var(--fs-sm); color: var(--c-text-muted); margin-bottom: var(--sp-2); }
.fee-card--highlight {
  background: var(--g-blue);
  border-color: var(--c-blue);
}
.fee-card--highlight .fee-price-now,
.fee-card--highlight .fee-card-label { color: var(--c-white); }
.fee-card--highlight .fee-price-was,
.fee-card--highlight .fee-emi { color: rgba(255,255,255,0.6); }
.fee-card--highlight .fee-seat { color: var(--c-green-lt, #6FEF9C); }

.fee-single-card {
  max-width: 400px;
  margin-inline: auto;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  text-align: center;
}

@media (max-width: 1024px) { .fees-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .fees-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════ */
.cta-band { background: var(--g-blue); }
.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
}
.cta-band-text h2 { color: var(--c-white); margin-bottom: var(--sp-2); }
.cta-band-text p  { color: rgba(255,255,255,0.75); margin: 0; }
.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   BUTTONS EXTRA
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--r-full);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr-fast);
  white-space: nowrap;
}
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-base); }

.btn-primary {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}
.btn-primary:hover { background: var(--c-blue-dark); border-color: var(--c-blue-dark); transform: translateY(-2px); box-shadow: var(--sh-blue); color: var(--c-white); }

.btn-secondary {
  background: var(--c-white);
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-secondary:hover { background: var(--c-blue-tint); }

.btn-ghost {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-ghost:hover { background: var(--c-blue-tint); }

.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); color: var(--c-white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--c-white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1EB857; border-color: #1EB857; color: var(--c-white); }

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════ */
.page-hero {
  background: var(--g-hero);
  padding-block: var(--sp-20) var(--sp-16);
  text-align: center;
}
.page-hero h1 { color: var(--c-white); margin-bottom: var(--sp-4); }
.page-hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}
.page-hero--generic { padding-block: var(--sp-16); }

/* ══════════════════════════════════════════════════
   PROGRAM HERO (single-tt_program.php)
   ══════════════════════════════════════════════════ */
.program-hero {
  background: var(--g-hero);
  padding-block: var(--sp-20) var(--sp-16);
}

.program-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-12);
  align-items: start;
}

.program-hero-icon { font-size: 48px; margin-bottom: var(--sp-4); }

.program-hero-content h1 { color: var(--c-white); margin-bottom: var(--sp-4); }

.program-hero-headline {
  font-size: var(--fs-xl);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-5);
}

.program-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.program-hero-meta span {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-weight: var(--fw-medium);
}

.program-hero-ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* Summary card in program hero */
.program-summary-card {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-5);
  position: sticky;
  top: 120px; /* 108px body-offset + 12px breathing room */
  z-index: 1; /* below the fixed nav (var(--z-sticky)) */
}

.psc-price { margin-bottom: var(--sp-5); }
.psc-price-from { font-size: var(--fs-xs); color: var(--c-text-muted); margin-bottom: var(--sp-2); }
.psc-price-now {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--c-navy);
  font-family: var(--f-display);
  line-height: 1;
}
.psc-price-was { font-size: var(--fs-sm); color: var(--c-text-muted); text-decoration: line-through; margin-top: var(--sp-1); }
.psc-emi { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: var(--sp-2); }

.psc-seat-info {
  font-size: var(--fs-sm);
  color: var(--c-green);
  font-weight: var(--fw-semi);
  background: var(--c-green-light, #E8F7EE);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-5);
}

.psc-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.psc-includes li {
  font-size: var(--fs-sm);
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.psc-seats {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-align: center;
  margin-top: var(--sp-3);
}

@media (max-width: 1024px) {
  .program-hero-inner { grid-template-columns: 1fr; }
  .program-summary-card { position: static; margin-top: var(--sp-6); }
}

/* ══════════════════════════════════════════════════
   OUTCOMES
   ══════════════════════════════════════════════════ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.outcome-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-navy);
}
.outcome-check {
  color: var(--c-green);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}
@media (max-width: 600px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   CURRICULUM
   ══════════════════════════════════════════════════ */
.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.curriculum-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--sp-5);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  align-items: start;
  transition: border-color var(--tr-fast);
}
.curriculum-item:hover { border-color: var(--c-blue); }

.curriculum-week {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-blue);
  padding-top: 3px;
}
.curriculum-content h3 { font-size: var(--fs-base); font-weight: var(--fw-semi); color: var(--c-navy); margin-bottom: var(--sp-1); }
.curriculum-content p { font-size: var(--fs-sm); color: var(--c-text-muted); margin: 0; }

@media (max-width: 600px) { .curriculum-item { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   AUDIENCE GRID
   ══════════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.audience-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--c-navy);
}
.audience-icon { font-size: 20px; flex-shrink: 0; }
@media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .audience-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   PROGRAM STICKY BAR
   ══════════════════════════════════════════════════ */
.program-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--sp-3);
  transform: translateY(100%);
  transition: transform var(--tr-normal);
}
.program-sticky-bar.visible { transform: translateY(0); }
.psb-inner {
  max-width: var(--lay-container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.psb-name { font-size: var(--fs-base); font-weight: var(--fw-semi); color: var(--c-white); display: block; }
.psb-price { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); display: block; }

/* ══════════════════════════════════════════════════
   ARCHIVE PROGRAMS GRID
   ══════════════════════════════════════════════════ */
.programs-archive { background: var(--c-bg-alt); }

.programs-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.program-card--large {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all var(--tr-normal);
}
.program-card--large:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--c-blue); }

.program-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.program-card__icon { font-size: 36px; }
.program-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 3px 12px;
  border-radius: var(--r-full);
  background: var(--c-blue-tint);
  color: var(--c-blue);
}
.program-card__name { font-size: var(--fs-xl); font-weight: var(--fw-extra); color: var(--c-navy); }
.program-card__subtitle { font-size: var(--fs-sm); color: var(--c-text-muted); }
.program-card__headline { font-size: var(--fs-base); color: var(--c-text); }
.program-card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.program-card__price { margin-top: auto; }
.program-price-label { font-size: var(--fs-xs); color: var(--c-text-muted); }
.program-price-value { font-size: var(--fs-2xl); font-weight: var(--fw-black); color: var(--c-navy); font-family: var(--f-display); }
.program-card__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

@media (max-width: 1024px) { .programs-archive-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   COMPARE TABLE
   ══════════════════════════════════════════════════ */
.compare-table-wrap { overflow-x: auto; margin-top: var(--sp-8); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
}
.compare-table th {
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
}
.compare-table td { color: var(--c-text); }
.compare-price { font-weight: var(--fw-bold); color: var(--c-navy); }

.level-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 2px 10px;
  border-radius: var(--r-full);
}
.level-badge--beginner     { background: var(--c-green-light, #E8F7EE); color: var(--c-green); }
.level-badge--intermediate { background: var(--c-blue-tint); color: var(--c-blue); }
.level-badge--professional { background: rgba(13,27,75,0.08); color: var(--c-navy); }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-form-wrap h2,
.contact-info-wrap h2 { margin-bottom: var(--sp-6); color: var(--c-navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-group label { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-navy); }

.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--tr-fast);
  font-family: var(--f-body);
}
.form-control:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(35,0,232,0.08); outline: none; }
textarea.form-control { resize: vertical; min-height: 120px; }

.contact-info-items { display: flex; flex-direction: column; gap: var(--sp-5); margin-bottom: var(--sp-8); }
.contact-info-item { display: flex; align-items: flex-start; gap: var(--sp-4); }
.contact-info-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--c-text-muted); text-transform: uppercase; letter-spacing: var(--ls-wide); margin-bottom: var(--sp-1); }
.contact-info-item a { color: var(--c-blue); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════ */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.about-mission-text h2 { margin-bottom: var(--sp-5); }
.about-mission-text p + p { margin-top: var(--sp-4); }

.about-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.about-stat {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  text-align: center;
}
.about-stat-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--c-blue);
  font-family: var(--f-display);
  margin-bottom: var(--sp-2);
}
.about-stat-label { font-size: var(--fs-xs); color: var(--c-text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.value-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
}
.value-icon { font-size: 32px; margin-bottom: var(--sp-4); }
.value-card h3 { font-size: var(--fs-lg); color: var(--c-navy); margin-bottom: var(--sp-2); }
.value-card p  { font-size: var(--fs-sm); color: var(--c-text-muted); }

@media (max-width: 768px) {
  .about-mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   UNIVERSITIES PAGE
   ══════════════════════════════════════════════════ */
.uni-offerings-grid, .enterprise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.offering-card, .enterprise-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
}
.offering-icon, .enterprise-icon { font-size: 32px; margin-bottom: var(--sp-4); }
.offering-card h3, .enterprise-card h3 { font-size: var(--fs-lg); color: var(--c-navy); margin-bottom: var(--sp-2); }
.offering-card p, .enterprise-card p  { font-size: var(--fs-sm); color: var(--c-text-muted); }
@media (max-width: 768px) {
  .uni-offerings-grid, .enterprise-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   PAGE CONTENT (generic)
   ══════════════════════════════════════════════════ */
.page-content-inner {
  max-width: var(--lay-narrow);
  margin-inline: auto;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--c-text);
}
.page-placeholder {
  text-align: center;
  padding: var(--sp-16);
  color: var(--c-text-muted);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-gray-900, #0F172A);
  padding-block: var(--sp-16) var(--sp-8);
}

/* Both .footer-inner and .footer-grid are used */
.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer-brand-name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--c-white);
  font-family: var(--f-display);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}
.footer-brand-tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}
.footer-social-icons { display: flex; gap: var(--sp-3); }
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--tr-fast);
}
.footer-social-icon:hover { background: var(--c-blue); border-color: var(--c-blue); color: var(--c-white); }

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer-links a:hover { color: var(--c-white); }

.footer-connect-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.footer-connect-icon { font-size: 16px; opacity: 0.5; flex-shrink: 0; margin-top: 2px; }
.footer-connect-text { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); }
.footer-connect-text a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-connect-text a:hover { color: var(--c-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom span { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); }
.footer-bottom nav { display: flex; gap: var(--sp-5); }
.footer-bottom nav a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer-bottom nav a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-links { display: flex; gap: var(--sp-5); }
.footer-legal-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* Footer brand + socials */
.footer-brand-logo { font-size: var(--fs-xl); font-weight: var(--fw-black); color: var(--c-white); letter-spacing: -0.03em; margin-bottom: var(--sp-3); font-family: var(--f-display); }
.footer-tagline { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); line-height: var(--lh-relaxed); margin-bottom: var(--sp-6); }
.footer-socials { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.footer-social-link,
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--tr-fast);
}
.footer-social-link:hover,
.footer-social-icon:hover { background: var(--c-blue); border-color: var(--c-blue); color: var(--c-white); }

@media (max-width: 1024px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom nav { justify-content: center; }
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-sticky);
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--tr-fast);
  text-decoration: none;
  color: var(--c-white);
  font-size: 26px;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); color: var(--c-white); }

/* ══════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ══════════════════════════════════════════════════ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  height: 60px;
  box-shadow: 0 -4px 20px rgba(13,27,75,0.08);
}

/* Support both naming conventions */
.mobile-bottom-bar-inner,
.mobile-bottom-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

.mobile-bottom-item,
.mobile-bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--c-text-muted);
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--tr-fast);
}
.mobile-bottom-item:hover,
.mobile-bottom-item.active,
.mobile-bottom-bar__item:hover,
.mobile-bottom-bar__item.active { color: var(--c-blue); }
.mobile-bottom-item.enroll { color: var(--c-blue); }
.mobile-bottom-bar__icon { font-size: 20px; line-height: 1; }

@media (max-width: 767px) {
  .mobile-bottom-bar { display: block; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 60px; }
}

/* ══════════════════════════════════════════════════
   DATA-REVEAL ANIMATION
   ══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   WHY TECTRANZ (front-page.php)
   ══════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.why-comparison-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
}
.why-comparison-card h3 {
  font-size: var(--fs-lg);
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}

/* Comparison div-based table (2-col flex) */
.why-comparison-card .comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  border: none;
  width: auto;
}
.why-comparison-card .comparison-table th,
.why-comparison-card .comparison-table td { display: none; }

.comp-col-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
}
.comp-col-label.old { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.comp-col-label.new { color: var(--c-green-lt, #6FEF9C); background: rgba(27,160,80,0.12); }

.comp-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comp-icon { font-size: 16px; flex-shrink: 0; }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.why-feature-cell {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.why-feature-number {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--c-green-lt, #6FEF9C);
  font-family: var(--f-display);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.why-feature-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.why-feature-desc { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .why-features, .why-comparison-card .comparison-table { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   HOW IT WORKS — extra class aliases
   ══════════════════════════════════════════════════ */
/* front-page uses hiw-step-number, single-page uses hiw-step-num */
.hiw-step-number,
.hiw-step-num {
  font-size: 64px;
  font-weight: var(--fw-black);
  color: rgba(35,0,232,0.1);
  line-height: 1;
  margin-bottom: var(--sp-2);
  font-family: var(--f-display);
  letter-spacing: -0.04em;
}
.hiw-step-icon { font-size: 28px; margin-bottom: var(--sp-3); display: block; }

/* ══════════════════════════════════════════════════
   ROLES SECTION (front-page)
   ══════════════════════════════════════════════════ */
.role-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 2px 10px;
  border-radius: var(--r-full);
  background: var(--c-blue-tint);
  color: var(--c-blue);
  margin-bottom: var(--sp-3);
}
.role-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}
.role-ctc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-green);
  margin-bottom: var(--sp-2);
}
.role-ctc-note { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS — div-based (front-page)
   ══════════════════════════════════════════════════ */
.testimonial-quote {
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: var(--lh-relaxed);
  flex: 1;
  font-style: italic;
  quotes: none;
}

.governor-callout {
  margin-top: var(--sp-8);
  background: var(--g-mesh);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.governor-callout-icon { font-size: 48px; flex-shrink: 0; }
.governor-callout-text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.85);
  line-height: var(--lh-relaxed);
  font-style: italic;
}
.governor-callout-source {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-3);
}

@media (max-width: 768px) {
  .governor-callout { flex-direction: column; padding: var(--sp-6); gap: var(--sp-4); }
}

/* ══════════════════════════════════════════════════
   UNIVERSITY SECTION (front-page dark)
   ══════════════════════════════════════════════════ */
.university-section { background: var(--g-mesh); }
.university-section h2,
.university-section h3,
.university-section p,
.university-section .eyebrow,
.university-section .eyebrow-blue,
.university-section .eyebrow-white { color: var(--c-white); }
.university-section p { color: rgba(255,255,255,0.72); }

.university-stats-row {
  display: flex;
  gap: var(--sp-8);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-10);
}

.uni-stat { text-align: center; }

.uni-stat-number {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--c-white);
  font-family: var(--f-display);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.uni-stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════
   FEE CARDS (front-page specific)
   ══════════════════════════════════════════════════ */
.fee-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
  position: relative;
  transition: all var(--tr-normal);
}
.fee-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }

.fee-card.popular {
  background: var(--g-blue);
  border-color: transparent;
  transform: scale(1.03);
}
.fee-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 4px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.fee-tier-name {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}
.fee-card.popular .fee-tier-name { color: rgba(255,255,255,0.7); }
.fee-card.popular .fee-price-now { color: var(--c-white); }
.fee-card.popular .fee-price-was { color: rgba(255,255,255,0.5); }

.fee-price-note {
  font-size: var(--fs-xs);
  color: var(--c-green);
  font-weight: var(--fw-semi);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.fee-card.popular .fee-price-note { color: var(--c-green-lt, #6FEF9C); }

.fee-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin-block: var(--sp-4);
}
.fee-card.popular .fee-divider { border-color: rgba(255,255,255,0.15); }

.fee-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--c-border);
}
.fee-card.popular .fee-detail { border-color: rgba(255,255,255,0.1); }
.fee-detail-label { color: var(--c-text-muted); }
.fee-card.popular .fee-detail-label { color: rgba(255,255,255,0.6); }
.fee-detail-value { font-weight: var(--fw-semi); color: var(--c-navy); }
.fee-card.popular .fee-detail-value { color: var(--c-white); }

.fee-cta {
  display: block;
  width: 100%;
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--c-blue);
  color: var(--c-white);
  text-align: center;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  font-family: var(--f-body);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--tr-fast);
}
.fee-cta:hover { background: var(--c-blue-dark); transform: translateY(-1px); color: var(--c-white); }
.fee-card.popular .fee-cta {
  background: var(--c-white);
  color: var(--c-blue);
}
.fee-card.popular .fee-cta:hover { background: var(--c-blue-tint); }

.fee-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-8);
  max-width: 640px;
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════
   CTA BAND (front-page variant)
   ══════════════════════════════════════════════════ */
.cta-band-inner h2 { color: var(--c-white); margin-bottom: var(--sp-3); }
.cta-band-inner p  { color: rgba(255,255,255,0.7); margin-bottom: var(--sp-6); }

.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.btn-white {
  background: var(--c-white);
  color: var(--c-blue);
  border-color: var(--c-white);
  border-radius: var(--r-full);
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: all var(--tr-fast);
}
.btn-white:hover { background: var(--c-blue-tint); color: var(--c-blue); }

.btn-green {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  border-radius: var(--r-full);
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: all var(--tr-fast);
}
.btn-green:hover { background: var(--c-green-dark); color: var(--c-white); }

.cta-band-note {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .cta-band-btns { justify-content: center; }
}

/* ══════════════════════════════════════════════════
   PROGRAMS SHORTCODE OUTPUT (tz_programs_grid)
   ══════════════════════════════════════════════════ */
.tz-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1024px) { .tz-programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tz-programs-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   HELLO ELEMENTOR BASE RESETS
   ══════════════════════════════════════════════════ */
/* Prevent Hello Elementor from adding extra padding */
.elementor-page .elementor { padding-top: 0 !important; }
.site-header { display: none !important; }
.site-footer.elementor-footer { display: none !important; }

/* Ensure page content area starts after our fixed header */
.site-main { min-height: 60vh; }

/* ══════════════════════════════════════════════════
   VISUAL DESIGN OVERHAUL
   High-contrast, vibrant — matches brand reference
   ══════════════════════════════════════════════════ */

/* ── Gold announce bar (high-contrast attention strip) ── */
.announce-bar {
  background: linear-gradient(90deg, #F5C200 0%, #F0B000 100%) !important;
}
.announce-bar__text-main {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--c-navy);
}
.announce-bar__link {
  color: var(--c-navy) !important;
  font-weight: var(--fw-bold) !important;
  background: rgba(13,27,75,0.12);
  padding: 2px 10px;
  border-radius: var(--r-full);
  text-decoration: none !important;
}
.announce-bar__close {
  color: rgba(13,27,75,0.6) !important;
}
.announce-bar__close:hover { color: var(--c-navy) !important; }

/* ── Hero: rich, dramatic dark canvas ── */
.hero {
  padding-block: var(--sp-28) var(--sp-20);
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* ── Hero stat numbers: vivid green for impact ── */
.hero-stat-number {
  color: var(--c-green-lt, #6FEF9C) !important;
  font-size: var(--fs-2xl);
}

/* ── Hero marquee: bold amber gold strip ── */
.hero-marquee-wrap {
  background: linear-gradient(90deg, #F5C200 0%, #F0B000 100%);
  border-top: none !important;
  padding: var(--sp-3) 0;
  margin-top: var(--sp-16);
  overflow: hidden;
}
.marquee-item {
  color: var(--c-navy) !important;
  font-weight: var(--fw-bold) !important;
  font-size: var(--fs-sm) !important;
}
.marquee-dot { color: var(--c-blue) !important; }

/* ── Stats bento: very dark navy, vivid numbers ── */
.stats-bento { padding-block: var(--sp-16); }
.stat-bento-cell { padding-block: var(--sp-10); }
.stat-bento-number {
  font-size: var(--fs-4xl) !important;
  letter-spacing: -0.04em;
}

/* ── Programs section: clean separation ── */
.programs-section {
  background: #F4F6FF;
}
.programs-section .section-header h2 { color: var(--c-navy); }
.programs-section .section-header p { color: var(--c-text-muted); }

/* ── Program cards: dark gradient, vivid on hover ── */
.program-card {
  min-height: 280px;
  border-radius: var(--r-3xl);
}
.program-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 64px rgba(13,27,75,0.5);
}

/* ── Why section: deep navy, high contrast ── */
.why-section {
  background: var(--c-navy);
  padding-block: var(--sp-24);
}

/* ── HIW steps section: subtle tint background ── */
.hiw-steps {
  background: transparent;
}
.hiw-step {
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  box-shadow: var(--sh-2);
}
.hiw-step:hover { box-shadow: var(--sh-4); border-color: var(--c-blue-tint); }
.hiw-step h3 { color: var(--c-navy); font-size: var(--fs-lg); }
.hiw-step p { color: var(--c-text-muted); }

/* ── Testimonials section: white background ── */
.testimonials-section { background: var(--c-white); }
.testimonial-card {
  box-shadow: var(--sh-2);
  border-color: var(--c-border);
  transition: box-shadow var(--tr-normal), transform var(--tr-normal);
}
.testimonial-card:hover { box-shadow: var(--sh-4); transform: translateY(-3px); }

/* ── Governor callout: use rich hero gradient ── */
.governor-callout { background: var(--g-hero); }

/* ── University section: deeper contrast ── */
.university-section { padding-block: var(--sp-24); }
.university-section .eyebrow { color: var(--c-green-lt, #6FEF9C) !important; }
.uni-stat-number { color: var(--c-green-lt, #6FEF9C); }

/* ── Fees section: white/light bg, alternates with dark university section ── */
.fees-section { padding-block: var(--sp-24); }
.fees-section .section-header { margin-bottom: var(--sp-16); }
.fee-price-now {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

/* ── CTA band: vibrant blue ── */
.cta-band {
  background: var(--g-blue);
  padding-block: var(--sp-20);
}
.cta-band-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
}

/* ── Buttons: glow effects ── */
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(35,0,232,0.4), 0 2px 8px rgba(35,0,232,0.2);
}
.btn-green:hover {
  box-shadow: 0 8px 32px rgba(27,160,80,0.4);
}
.btn-white {
  border: 2px solid transparent;
}
.btn-white:hover {
  background: var(--c-blue-tint);
  border-color: var(--c-blue);
}

/* ── Section header on dark backgrounds ── */
.fees-section .section-header h2,
.university-section .section-header h2,
.why-section .section-header h2,
.program-hero-content h1,
.page-hero h1 {
  letter-spacing: -0.03em;
}

/* ── enroll-nav button: more prominent ── */
.btn-enroll-nav {
  padding: var(--sp-2) var(--sp-6);
  box-shadow: 0 4px 16px rgba(35,0,232,0.3);
}
.btn-enroll-nav:hover {
  box-shadow: 0 8px 24px rgba(35,0,232,0.45);
}

/* ── Footer: slightly warmer dark ── */
.site-footer {
  background: #090E28;
}

/* ── Partners section: clean grid ── */
.partners-section { background: var(--c-white); padding-block: var(--sp-16); }
.partner-logo-item {
  transition: box-shadow var(--tr-fast), transform var(--tr-fast);
}
.partner-logo-item:hover {
  box-shadow: var(--sh-3);
  transform: translateY(-2px);
}

/* ── Responsive: hero larger on desktop ── */
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 360px; gap: var(--sp-16); }
}
@media (max-width: 767px) {
  .hero { padding-block: var(--sp-16) var(--sp-12) !important; }
  .hero-content h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  .hero-marquee-wrap { margin-top: var(--sp-12); }
}

/* ══════════════════════════════════════════════════
   DOT-GRID PATTERNS & RADIAL ORBS
   ══════════════════════════════════════════════════ */

/* Hero: ensure position:relative so pseudo-elements stack correctly */
.hero { position: relative; overflow: hidden; }

/* Dot-matrix overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.35) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow orb — top-right corner */
.hero::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(35,0,232,0.28) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Hero content sits above pseudo-layers */
.hero-inner,
.hero-marquee-wrap { position: relative; z-index: 1; }

/* Why section dot-grid */
.why-section { position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.32) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.why-section > * { position: relative; z-index: 1; }

/* University section dot-grid */
.university-section { position: relative; overflow: hidden; }
.university-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.32) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.university-section > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════
   STATS BENTO — CLEAN WHITE STRIP, DISTRIBUTED GRID
   ══════════════════════════════════════════════════ */
.stats-bento {
  display: block !important; /* bento.css makes this display:grid; override to allow full-width child */
  background: var(--c-white) !important;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: 0 !important;
}
.stats-bento-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  width: 100%;
}
.stat-bento-cell {
  background: transparent !important;
  padding: var(--sp-5) var(--sp-8) !important;
  text-align: center !important;
  border-right: 1px solid var(--c-border);
  transition: background var(--tr-fast);
}
.stat-bento-cell:last-child { border-right: none; }
.stat-bento-cell:hover { background: var(--c-bg-tint) !important; }
.stat-bento-number {
  color: var(--c-blue) !important;
  font-size: clamp(2.4rem, 4vw, 3.2rem) !important;
  font-weight: var(--fw-black) !important;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block !important;
  margin-bottom: var(--sp-2) !important;
}
.stat-bento-label {
  color: var(--c-text-muted) !important;
  font-size: var(--fs-xs) !important;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
}
@media (max-width: 767px) {
  .stats-bento-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-bento-cell { border-bottom: 1px solid var(--c-border); }
  .stat-bento-cell:nth-child(2n) { border-right: none; }
  .stat-bento-cell:nth-last-child(-n+2) { border-bottom: none; }
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS — CIRCLE STEP NUMBERS
   ══════════════════════════════════════════════════ */
.hiw-step-num,
.hiw-step-number {
  width: 64px !important;
  height: 64px !important;
  background: var(--g-blue) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 1.5rem !important;
  font-weight: var(--fw-bold) !important;
  letter-spacing: 0 !important;
  margin: 0 0 var(--sp-5) 0 !important;
  box-shadow: 0 6px 20px rgba(35,0,232,0.28) !important;
}

/* ── Highlight text: gradient */
.highlight {
  background: linear-gradient(90deg, #6FEF9C 0%, #20C460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-blue {
  background: linear-gradient(90deg, #5B8FFF 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════
   LEARNING HUB PAGE
   ══════════════════════════════════════════════════ */
.learning-hub-hero .hub-search-wrap {
  position: relative;
  max-width: 520px;
  margin: var(--sp-6) 0;
}
.hub-search-input {
  width: 100%;
  padding: var(--sp-4) var(--sp-14) var(--sp-4) var(--sp-5);
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  font-size: var(--fs-base);
  font-family: var(--f-body);
  outline: none;
  transition: border-color var(--tr-fast);
}
.hub-search-input::placeholder { color: rgba(255,255,255,0.45); }
.hub-search-input:focus { border-color: rgba(255,255,255,0.45); }
.hub-search-icon {
  position: absolute;
  right: var(--sp-5);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.filter-tabs { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.filter-tab {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  cursor: pointer;
  transition: all var(--tr-fast);
  font-family: var(--f-body);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-navy);
}
.hub-resources-section { background: var(--c-off-white); }
.hub-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.hub-resource-card {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}
.hub-resource-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.hub-card-icon { font-size: 2rem; }
.hub-card-meta { display: flex; align-items: center; gap: var(--sp-2); }
.hub-card-tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-blue);
  background: var(--c-blue-tint);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.hub-card-badge {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--c-green);
  background: var(--c-green-light);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.hub-resource-card h3 { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--c-navy); line-height: var(--lh-snug); }
.hub-resource-card p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: var(--lh-relaxed); flex: 1; }
.hub-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
}
.hub-card-read { font-size: var(--fs-xs); color: var(--c-text-subtle); }
.hub-card-link { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-blue); text-decoration: none; transition: color var(--tr-fast); }
.hub-card-link:hover { color: var(--c-blue-dark); }
@media (max-width: 1024px) { .hub-resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .hub-resources-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   CAREERS PAGE
   ══════════════════════════════════════════════════ */
.careers-culture-stats { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-6); }
.culture-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
}
.careers-culture-section {
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.careers-culture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.careers-culture-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.careers-culture-inner h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: var(--fw-extra); color: var(--c-white); margin-bottom: var(--sp-6); }
.culture-narrative { font-size: var(--fs-md); color: rgba(255,255,255,0.75); line-height: var(--lh-relaxed); margin-bottom: var(--sp-8); }
.culture-quote {
  border-left: 3px solid var(--c-blue);
  padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-8) 0;
  background: rgba(255,255,255,0.05);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  text-align: left;
}
.culture-quote p { font-size: var(--fs-md); font-style: italic; color: rgba(255,255,255,0.9); font-weight: var(--fw-semi); }
.culture-chips { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-6); }
.culture-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
}
.dept-block { margin-bottom: var(--sp-10); }
.dept-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--c-text-muted);
  border-bottom: 2px solid var(--c-border);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.accordion-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: box-shadow var(--tr-fast);
}
.accordion-item:hover { box-shadow: var(--sh-2); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  background: var(--c-white);
}
.accordion-title { font-size: var(--fs-md); font-weight: var(--fw-bold); color: var(--c-navy); }
.accordion-meta { display: flex; gap: var(--sp-2); margin-top: var(--sp-1); }
.acc-badge { font-size: var(--fs-xs); font-weight: var(--fw-semi); padding: 2px 10px; border-radius: var(--r-full); background: var(--c-blue-tint); color: var(--c-blue); }
.accordion-chevron { font-size: var(--fs-lg); color: var(--c-blue); transition: transform var(--tr-fast); flex-shrink: 0; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body { display: none; padding: var(--sp-6); border-top: 1px solid var(--c-border); background: var(--c-off-white); }
.accordion-item.open .accordion-body { display: block; }
.role-desc { color: var(--c-text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-5); }
.role-list-head { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--c-navy); margin: var(--sp-4) 0 var(--sp-2); }
.role-list { padding-left: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-1); }
.role-list li { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: var(--lh-normal); }
.role-apply-btn {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-5);
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-blue);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--r-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--tr-fast);
}
.role-apply-btn:hover { background: var(--c-blue-dark); }

/* ══════════════════════════════════════════════════
   PARTNERS PAGE
   ══════════════════════════════════════════════════ */
.partners-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.type-card { background: var(--c-white); border-radius: var(--r-2xl); padding: var(--sp-10); border: 1px solid var(--c-border); box-shadow: var(--sh-2); }
.type-card-icon { font-size: 2.5rem; display: block; margin-bottom: var(--sp-5); }
.type-card h3 { font-size: var(--fs-xl); font-weight: var(--fw-extra); color: var(--c-navy); margin-bottom: var(--sp-3); }
.type-card > p { font-size: var(--fs-base); color: var(--c-text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-6); }
.type-detail { margin-bottom: var(--sp-4); }
.type-detail-label { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--c-text-muted); margin-bottom: var(--sp-2); }
.type-detail-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.type-detail-list li { font-size: var(--fs-sm); color: var(--c-text); display: flex; align-items: center; gap: var(--sp-2); }
.type-detail-list li::before { content: '\2192'; color: var(--c-blue); font-weight: var(--fw-bold); flex-shrink: 0; }
.type-card-cta { margin-top: var(--sp-6); }
.partners-benefits-section { background: var(--c-navy); position: relative; overflow: hidden; }
.partners-benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.partners-benefits-section > * { position: relative; z-index: 1; }
@media (max-width: 768px) { .partners-types-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   REFER & EARN PAGE
   ══════════════════════════════════════════════════ */
.alliance-hero { background: linear-gradient(135deg, #2300E8 0%, #1a00c0 50%, #0D1B4B 100%); }
.refer-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); position: relative; }
.refer-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green));
  opacity: 0.3;
  pointer-events: none;
}
.refer-step-card {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-9) var(--sp-7);
  border: 1px solid rgba(35,0,232,0.07);
  text-align: center;
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}
.refer-step-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.refer-step-num {
  width: 56px;
  height: 56px;
  background: var(--c-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--c-white);
  margin: 0 auto var(--sp-5);
  box-shadow: 0 6px 20px rgba(35,0,232,0.28);
}
.refer-step-card h3 { font-size: var(--fs-lg); font-weight: var(--fw-extra); color: var(--c-navy); margin-bottom: var(--sp-3); }
.refer-step-card p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: var(--lh-relaxed); }
.refer-tiers-section { background: var(--c-navy); position: relative; overflow: hidden; }
.refer-tiers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.refer-tiers-section > * { position: relative; z-index: 1; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.tier-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-2xl); padding: var(--sp-9) var(--sp-7); text-align: center; transition: transform var(--tr-normal), border-color var(--tr-normal); }
.tier-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
.tier-card.featured { background: rgba(35,0,232,0.25); border-color: rgba(35,0,232,0.5); }
.tier-badge { display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-wide); padding: var(--sp-1) var(--sp-4); border-radius: var(--r-full); margin-bottom: var(--sp-5); }
.tier-badge.starter { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.tier-badge.connector { background: rgba(35,0,232,0.4); color: #b3c4ff; }
.tier-badge.ambassador { background: rgba(27,160,80,0.3); color: #4ade80; }
.tier-range { font-size: var(--fs-sm); color: rgba(255,255,255,0.55); margin-bottom: var(--sp-5); }
.tier-reward { font-size: var(--fs-3xl); font-weight: var(--fw-black); color: var(--c-white); margin-bottom: var(--sp-1); }
.tier-reward-sub { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); margin-bottom: var(--sp-5); }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.tier-perks li { font-size: var(--fs-sm); color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: var(--sp-2); justify-content: center; }
.tier-perks li::before { content: '\2713'; color: #4ade80; font-weight: var(--fw-bold); }
.tiers-note { text-align: center; margin-top: var(--sp-8); font-size: var(--fs-sm); color: rgba(255,255,255,0.4); }
.hero-reward-stat {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-6);
}
.reward-label { font-size: var(--fs-xs); font-weight: var(--fw-semi); text-transform: uppercase; letter-spacing: var(--ls-wide); color: rgba(255,255,255,0.6); }
.reward-value { font-size: var(--fs-2xl); font-weight: var(--fw-black); color: #4ade80; }
.reward-desc { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .refer-steps-grid { grid-template-columns: 1fr; }
  .refer-steps-grid::before { display: none; }
  .tiers-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   JOIN US (INSTRUCTOR) PAGE
   ══════════════════════════════════════════════════ */
.instructor-hero { background: var(--g-hero); }
.instructor-tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.instructor-track-card { border: 1px solid var(--c-border); border-radius: var(--r-2xl); padding: var(--sp-7); background: var(--c-white); transition: transform var(--tr-normal), box-shadow var(--tr-normal), border-color var(--tr-normal); }
.instructor-track-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: rgba(35,0,232,0.2); }
.track-icon { font-size: 2rem; display: block; margin-bottom: var(--sp-4); }
.instructor-track-card h3 { font-size: var(--fs-md); font-weight: var(--fw-extra); color: var(--c-navy); margin-bottom: var(--sp-3); }
.track-tags { display: flex; flex-wrap: wrap; gap: var(--sp-1); margin-bottom: var(--sp-4); }
.instructor-track-card p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: var(--lh-relaxed); }
@media (max-width: 768px) { .instructor-tracks-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   SHARED: FORMS, BENTO, HELPERS
   ══════════════════════════════════════════════════ */
.form-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-3xl); padding: var(--sp-12); box-shadow: var(--sh-3); max-width: 780px; margin: 0 auto; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { margin-bottom: var(--sp-5); }
.form-label { display: block; font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-text); margin-bottom: var(--sp-2); }
.form-label span { color: var(--c-blue); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-lg);
  font-size: var(--fs-base);
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(35,0,232,0.08); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; background: var(--c-blue); color: var(--c-white); padding: var(--sp-4) var(--sp-7); border-radius: var(--r-full); font-size: var(--fs-base); font-weight: var(--fw-bold); font-family: var(--f-body); border: none; cursor: pointer; transition: all var(--tr-fast); box-shadow: 0 4px 20px rgba(35,0,232,0.3); }
.form-submit:hover { background: var(--c-blue-dark); transform: translateY(-2px); }
.form-success { display: none; background: var(--c-success-bg); border: 1px solid rgba(27,160,80,0.3); border-radius: var(--r-xl); padding: var(--sp-7); text-align: center; margin-top: var(--sp-5); }
.form-success h3 { font-size: var(--fs-md); font-weight: var(--fw-bold); color: var(--c-success); margin-bottom: var(--sp-2); }
.form-success p { font-size: var(--fs-sm); color: var(--c-text-muted); }

.bento-grid { display: grid; gap: var(--sp-5); }
.bento-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bento-cell { background: var(--c-white); border-radius: var(--r-2xl); padding: var(--sp-8) var(--sp-7); border: 1px solid rgba(35,0,232,0.07); transition: transform var(--tr-normal), box-shadow var(--tr-normal); }
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.bento-icon { font-size: 2rem; display: block; margin-bottom: var(--sp-4); }
.bento-cell h3 { font-size: var(--fs-base); font-weight: var(--fw-extra); color: var(--c-navy); margin-bottom: var(--sp-2); }
.bento-cell p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: var(--lh-relaxed); }
.bento-grid--dark .bento-cell { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.bento-grid--dark .bento-cell h3 { color: var(--c-white); }
.bento-grid--dark .bento-cell p { color: rgba(255,255,255,0.6); }
.bento-grid--dark .bento-cell:hover { border-color: rgba(255,255,255,0.22); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.bg-tint { background: var(--c-bg-tint); }

@media (max-width: 1024px) { .bento-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .bento-grid--3 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-card { padding: var(--sp-7) var(--sp-5); }
}

/* ══════════════════════════════════════════════════
   VIDEO SECTION (front-page)
   ══════════════════════════════════════════════════ */
.video-section { background: var(--c-bg-tint); }
.video-embed-wrap {
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-5);
}
.video-embed-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ══════════════════════════════════════════════════
   COMPANIES STRIP (front-page.php)
   ══════════════════════════════════════════════════ */
.companies-strip {
  padding: var(--sp-6) 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.companies-strip__label {
  font-size: var(--fs-xs); font-weight: var(--fw-semi);
  letter-spacing: var(--ls-widest); text-transform: uppercase;
  color: var(--c-text-muted); margin-bottom: var(--sp-4); text-align: center;
}
.companies-strip__logos {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4);
  justify-content: center; align-items: center;
}
.company-logo-pill {
  font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-gray-500);
  padding: var(--sp-1) var(--sp-3); background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: var(--r-full);
}

/* ══════════════════════════════════════════════════
   PROG BENTO (homepage program cards)
   ══════════════════════════════════════════════════ */
.prog-bento {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto; gap: var(--sp-4); margin-top: var(--sp-8);
}
.prog-card {
  border-radius: var(--r-2xl); padding: var(--sp-6); display: flex;
  flex-direction: column; gap: var(--sp-3); text-decoration: none;
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
  position: relative; overflow: hidden;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-4); }
.prog-card--featured { grid-row: 1 / 3; background: var(--g-hero); }
.prog-card--arvr { grid-column: 2 / 4; background: var(--g-mesh); }
.prog-card--dark { color: var(--c-white); }
.prog-card--accent { background: var(--g-blue); color: var(--c-white); }
.prog-card--light { background: var(--c-white); border: 1px solid var(--c-border); color: var(--c-text); }
.prog-card--cta-card {
  background: var(--c-bg-tint); border: 2px dashed var(--c-border2); color: var(--c-text);
  border-radius: var(--r-2xl); padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3);
}
.prog-card-top { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); }
.prog-card-icon { font-size: 2rem; }
.prog-card-title { font-size: var(--fs-xl); font-weight: var(--fw-bold); line-height: 1.2; }
.prog-card--light .prog-card-title { color: var(--c-navy); }
.prog-card-desc { font-size: var(--fs-sm); line-height: var(--lh-relaxed); opacity: 0.85; flex: 1; }
.prog-card--light .prog-card-desc { color: var(--c-text-muted); opacity: 1; }
.prog-card-metrics { display: flex; gap: var(--sp-4); margin-top: auto; }
.prog-metric { display: flex; flex-direction: column; }
.prog-metric strong { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--c-white); }
.prog-metric span { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); }
.prog-metric--green strong { color: #6FEF9C; }
.prog-card-ctas { display: flex; gap: var(--sp-3); align-items: center; margin-top: auto; }
.prog-cta-outline { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.35); border-radius: var(--r-full); padding: var(--sp-2) var(--sp-4); }
.prog-cta-solid { font-size: var(--fs-sm); font-weight: var(--fw-bold); background: var(--c-white); color: var(--c-blue); border-radius: var(--r-full); padding: var(--sp-2) var(--sp-4); }
.prog-cta-solid--dark { background: var(--c-navy); color: var(--c-white); border-radius: var(--r-full); padding: var(--sp-2) var(--sp-5); font-size: var(--fs-sm); font-weight: var(--fw-bold); text-decoration: none; display: inline-block; }
.prog-cta-ghost { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: rgba(255,255,255,0.8); text-decoration: underline; margin-top: auto; }
.prog-cta-outline-dark { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-blue); border: 1.5px solid var(--c-blue); border-radius: var(--r-full); padding: var(--sp-2) var(--sp-4); margin-top: auto; display: inline-block; }
.prog-cta-outline-btn { background: transparent; border: 1.5px solid var(--c-border2); border-radius: var(--r-full); padding: var(--sp-2) var(--sp-4); font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--c-navy); cursor: pointer; }
.prog-cta-card-tag { font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--c-text-muted); }
.prog-badge { display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-bold); border-radius: var(--r-full); padding: 2px 10px; }
.prog-badge--pill { background: rgba(255,255,255,0.2); color: var(--c-white); }
.prog-badge--outline { border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); }
.prog-badge--green-sm { background: var(--c-green); color: var(--c-white); font-size: var(--fs-2xs); }
.prog-badge--gray-sm { background: var(--c-gray-100); color: var(--c-gray-600); font-size: var(--fs-2xs); }
@media (max-width: 1024px) { .prog-bento { grid-template-columns: 1fr 1fr; } .prog-card--featured { grid-row: auto; } .prog-card--arvr { grid-column: auto; } }
@media (max-width: 600px)  { .prog-bento { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   PLACEMENT SECTION (front-page.php)
   ══════════════════════════════════════════════════ */
.placement-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-6); margin-bottom: var(--sp-8); flex-wrap: wrap;
}
.placement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4);
}
.placement-role-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-2xl); padding: var(--sp-5) var(--sp-6);
  transition: box-shadow var(--tr-fast), transform var(--tr-fast);
}
.placement-role-card:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }
.placement-role-icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.placement-role-name { font-size: var(--fs-md); font-weight: var(--fw-bold); color: var(--c-navy); margin-bottom: var(--sp-1); }
.placement-role-lpa { font-size: var(--fs-base); font-weight: var(--fw-semi); color: var(--c-green); margin-bottom: var(--sp-2); }
.placement-role-co { font-size: var(--fs-xs); color: var(--c-text-muted); }
.placement-stat-card {
  background: var(--g-hero); border-radius: var(--r-2xl); padding: var(--sp-5) var(--sp-6);
  display: flex; flex-direction: column; justify-content: center; color: var(--c-white);
}
.psc-big { font-size: var(--fs-4xl); font-weight: var(--fw-black); color: #6FEF9C; line-height: 1; margin-bottom: var(--sp-2); }
.psc-sub { font-size: var(--fs-base); line-height: 1.4; color: rgba(255,255,255,0.9); margin-bottom: var(--sp-2); }
.psc-note { font-size: var(--fs-xs); color: rgba(255,255,255,0.55); }
@media (max-width: 1024px) { .placement-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .placement-grid { grid-template-columns: 1fr; } .placement-header { flex-direction: column; align-items: flex-start; } }

/* ══════════════════════════════════════════════════
   PRESS / NEWS SECTION (front-page.php)
   ══════════════════════════════════════════════════ */
.press-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); margin-top: var(--sp-8);
}
.press-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-2xl); padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3);
}
.press-card__source { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--c-navy); }
.press-card__quote { font-size: var(--fs-base); color: var(--c-text); line-height: var(--lh-relaxed); font-style: italic; flex: 1; margin: 0; }
.press-card__label { font-size: var(--fs-xs); color: var(--c-text-muted); font-weight: var(--fw-semi); }
.press-card--cta { background: var(--c-bg-tint); }
.press-email-form { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: auto; }
.press-email-input {
  width: 100%; height: var(--input-h); border: var(--input-border); border-radius: var(--input-radius);
  padding-inline: var(--sp-4); font-size: var(--fs-sm); font-family: var(--f-body);
  color: var(--c-text); background: var(--c-white); outline: none; box-sizing: border-box;
}
.press-email-input:focus { border-color: var(--c-border-focus); }
.press-email-btn {
  height: var(--btn-h); padding-inline: var(--btn-px); background: var(--c-blue); color: var(--c-white);
  border: none; border-radius: var(--btn-radius); font-size: var(--fs-sm); font-weight: var(--fw-bold);
  font-family: var(--f-body); cursor: pointer; transition: background var(--tr-fast);
}
.press-email-btn:hover { background: var(--c-blue-dark); }
@media (max-width: 768px) { .press-grid { grid-template-columns: 1fr; } }
