/* Onward College of Professional Studies - Design System */
:root {
  --navy: #0A1F44;
  --navy-dark: #06152B;
  --navy-light: #0B1C3D;
  --gold: #C9A227;
  --gold-soft: #B8975A;
  --white: #FFFFFF;
  --light-bg: #F7F9FC;
  --green: #2E7D32;
  --text: #1a1a2e;
  --text-muted: #5a6577;
  --shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 10px 40px rgba(10, 31, 68, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(10, 31, 68, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-text .sub {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-soft);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: var(--navy);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, #eef2f8 100%);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero-quote {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-img {
  position: relative;
}

.hero-img img,
.hero-img .placeholder-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  max-height: 420px;
}

.placeholder-img {
  background: linear-gradient(145deg, var(--navy) 0%, #1a3a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
}

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.stat-item .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Countdown */
.countdown-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a5c 100%);
  color: #fff;
  padding: 2.5rem 0;
}
.countdown-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.countdown-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.cd-item {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  min-width: 70px;
}
.cd-item span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.cd-item small {
  font-size: 0.7rem;
  opacity: 0.85;
  text-transform: uppercase;
}
.countdown-note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}
.countdown-box .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.countdown-box .btn-primary:hover {
  background: #d4b03a;
}

/* Fee cards */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.fee-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #eef1f6;
}
.fee-card .fee-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.fee-card .fee-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.fee-card .fee-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Campus gallery */
.campus-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.campus-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(10, 31, 68, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(10, 31, 68, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  flex-grow: 1;
  font-size: 0.95rem;
}

.card .btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* Programme Lists */
.prog-section {
  margin-bottom: 3rem;
}

.prog-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.prog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.prog-item {
  background: var(--white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.prog-item:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.05);
}

.prog-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step h4 {
  margin: 1rem 0 0.5rem;
  color: var(--navy);
}

/* Badges */
.cred-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.cred-badge.green {
  border-color: var(--green);
  color: var(--green);
}

.cred-badge .icon {
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.testimonial .quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.testimonial .author {
  font-weight: 700;
  color: var(--navy);
}

.testimonial .role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #d0d7e2;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.contact-item a {
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--gold);
}

/* Login Pages */
.login-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  padding: 3rem 1rem;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}

.login-card h1 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.login-card .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.login-tabs {
  display: flex;
  margin-bottom: 1.75rem;
  border-bottom: 2px solid #eee;
}

.login-tab {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.login-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.demo-note {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--navy);
  margin-top: 1.5rem;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer p,
.footer a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.footer a:hover {
  color: var(--gold);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .name {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-badges span {
  font-size: 0.75rem;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.float-whatsapp span {
  display: none;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* About specific */
.mission-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  margin: 2rem 0;
}

.mission-box h3 {
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .stats-bar-inner {
    gap: 1.25rem;
  }

  .stat-item .num {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat .num {
    font-size: 1.4rem;
  }

  .float-whatsapp {
    width: auto;
    height: auto;
    padding: 0.75rem 1.1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    gap: 0.5rem;
  }

  .float-whatsapp span {
    display: inline;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gold { color: var(--gold); }
.navy { color: var(--navy); }

/* Programme Table */
.prog-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 31, 68, 0.08);
}
.prog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.prog-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
}
.prog-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  vertical-align: top;
}
.prog-table tr:last-child td {
  border-bottom: none;
}
.prog-table tr:nth-child(even) {
  background: var(--light-bg);
}
.prog-table small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Entry requirements box */
.entry-reqs {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
}
.entry-reqs h4 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.entry-reqs ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.entry-reqs li {
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

/* Level list inside cards */
.level-list {
  list-style: none;
  margin-top: 0.75rem;
}
.level-list li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(10, 31, 68, 0.08);
}
.level-list li:last-child {
  border-bottom: none;
}
.level-list li::before {
  content: '→ ';
  color: var(--gold);
  font-weight: 600;
}
