/* ============================================
   ORIONTECH — AfSDIMS-INSPIRED STYLE
   Plus Jakarta Sans · Orange + Navy + White
   ============================================ */

:root {
  /* Brand */
  --purple:        #6D28D9;
  --purple-dark:   #4C1D95;
  --purple-light:  #A78BFA;
  --purple-pale:   #EDE9FE;
  --purple-mid:    rgba(109,40,217,0.1);

  /* Navy */
  --deep:          #1a0533;
  --deep-mid:      #2d1060;
  --deep-light:    #4c1d95;

  /* Neutrals */
  --white:         #ffffff;
  --bg-light:      #F8F9FA;
  --bg-gray:       #F1F3F5;
  --border:        #E5E8EC;
  --border-mid:    #D0D5DD;

  /* Text */
  --text-dark:     #1a0533;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --text-light:    rgba(255,255,255,0.92);
  --text-light2:   rgba(255,255,255,0.6);

  /* Shadows */
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:     0 10px 30px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
  --shadow-purple: 0 4px 20px rgba(109,40,217,0.3);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --tr:         all 0.22s cubic-bezier(0.4,0,0.2,1);

  /* Navbar height variable for easy overriding */
  --nav-h:   110px;
  --logo-h:  calc(var(--nav-h) * 0.82);   /* logo always 82% of nav height */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
::selection { background: var(--purple-pale); color: var(--purple-dark); }

/* ── SITE LOGO IMAGE ── */
.site-logo-img {
  height: var(--logo-h);
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.22s ease;
}

/* Footer logo */
.site-logo-footer {
  height: 80px;
  opacity: 0.9;
}
.site-logo-footer:hover { opacity: 1; }

/* Hide old text logo */
.logo-text, .logo-mark { display: none; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  width: 100%;
  max-width: 100vw;
  padding: 0 1.5rem;
  transition: var(--tr);
  background: transparent;
}
#navbar .logo-text { color: var(--white); font-weight: 700; font-size: 1.15rem; }
#navbar .logo-text .accent { color: #c4b5fd; }
#navbar .nav-links a { color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 600; }
#navbar .nav-links a:hover { color: #fff; }
#navbar .btn-nav { background: var(--purple) !important; color: #fff !important; }
#navbar .btn-nav:hover { background: var(--purple-dark) !important; }

/* Scrolled: white background, dark text */
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}
#navbar.scrolled .nav-links a { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--purple); }
#navbar.scrolled .btn-nav { background: var(--purple) !important; color: #fff !important; }
#navbar.scrolled .site-logo-img { filter: invert(1); }

.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; min-width: 0; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 9px; flex-shrink: 0; min-width: 0; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.5rem; flex-shrink: 1; min-width: 0; }
.nav-links a { text-decoration: none; transition: var(--tr); white-space: nowrap; }
.btn-nav { padding: 0.5rem 1.1rem !important; border-radius: var(--radius-md) !important; font-weight: 700 !important; font-size: 0.85rem !important; transition: var(--tr) !important; white-space: nowrap; flex-shrink: 0; }
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-purple) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; position: relative; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: #fff; transition: var(--tr); }
#navbar.scrolled .hamburger span { background: var(--deep); }

/* Login button in nav */
.btn-login {
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  color: #fff !important;
  text-decoration: none;
  transition: var(--tr) !important;
  white-space: nowrap;
}
.btn-login:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.7) !important; }
#navbar.scrolled .btn-login { border-color: var(--purple) !important; color: var(--purple) !important; }
#navbar.scrolled .btn-login:hover { background: var(--purple-pale) !important; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9998;
  padding: 0.75rem 1.5rem 1.25rem;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(26,5,51,0.18);
  border-bottom: 2px solid var(--purple-pale);
  animation: slideDown 0.22s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; width: 100%; }
.mobile-menu ul li { padding: 0; border-bottom: 1px solid #F0EBFF; }
.mobile-menu ul li:last-child { border-bottom: none; margin-top: 0.75rem; }
.mobile-menu ul li a {
  text-decoration: none;
  color: #1a0533;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  padding: 0.75rem 0;
  letter-spacing: -0.01em;
}
.mobile-menu ul li a:hover { color: #6D28D9; }
.mobile-menu-close {
  display: none; /* no longer needed — click outside or hamburger closes it */
}
.mobile-cta {
  display: inline-block !important;
  background: linear-gradient(135deg, #6D28D9, #4C1D95) !important;
  color: #fff !important;
  padding: 0.85rem 1.5rem !important;
  border-radius: 10px !important;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 2rem 70px;
  overflow: hidden;
  background: #0d0020;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url("../assets/hero-bg.png") center right / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center;
  position: relative; z-index: 2; gap: 4rem;
}
.hero-content { flex: 0 0 auto; width: 52%; max-width: 640px; animation: fadeUp 0.7s ease both; text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.88);
  margin-bottom: 1.75rem; backdrop-filter: blur(6px);
}
.badge-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; box-shadow: 0 0 6px #4ADE80; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 1.3rem;
  letter-spacing: -0.03em;
}
.hero-accent { color: var(--purple-light); }

.hero-sub { font-size: 1rem; color: #ffffff; margin-bottom: 1.75rem; max-width: 500px; line-height: 1.78; }
.hero-sub strong { color: #ffffff; font-weight: 800; }

.hero-trust { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-trust span { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: #ffffff; }

.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  display: inline-flex; align-items: center;
  text-decoration: none; background: var(--purple); color: #fff;
  padding: 0.85rem 1.8rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--tr);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(109,40,217,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
  padding: 0.85rem 1.8rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2); transition: var(--tr); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.h-stat { text-align: left; }
.h-num { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.h-suf { font-size: 1.4rem; font-weight: 700; color: var(--purple-light); }
.h-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #ffffff; margin-top: 3px; font-weight: 600; }
.h-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── CERTIFICATE SHOWCASE CARD ── */
.hero-cert-wrap {
  flex-shrink: 0;
  position: relative;
  animation: fadeIn 0.9s ease 0.25s both;
  align-self: flex-end;
  margin-bottom: -60px;
  margin-right: -60px;
}
.hero-cert-card {
  background: #fff;
  border-radius: 14px;
  width: 420px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
}
.cert-img-frame {
  position: relative;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 11;
}
.cert-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.hero-cert-card:hover .cert-preview-img {
  transform: scale(1.03);
}
.cert-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
/* floating chips */
.cert-float {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a0533;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  white-space: nowrap;
  border: 1px solid rgba(212,175,55,0.3);
}
.cert-float-a { top: -14px; right: -30px; }
.cert-float-b { bottom: -14px; left: -36px; color: #6D28D9; }

/* HERO CARD */
.hero-card-wrap { flex-shrink: 0; position: relative; animation: fadeIn 0.9s ease 0.2s both; }
.hero-id-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 1.75rem; width: 300px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.15);
}
.id-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.id-org { display: flex; align-items: center; gap: 10px; }
.id-logo { width: 38px; height: 38px; background: var(--purple); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; color: #fff; }
.id-org-name { font-weight: 800; font-size: 0.9rem; color: var(--deep); }
.id-org-sub { font-size: 0.72rem; color: var(--text-muted); }
.id-status { font-size: 0.75rem; font-weight: 700; color: #16a34a; background: #f0fdf4; padding: 0.25rem 0.65rem; border-radius: 100px; border: 1px solid #bbf7d0; }
.id-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }
.id-detail-row { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; border-bottom: 1px solid #F5F5F5; }
.id-detail-row:last-child { border-bottom: none; }
.id-label { font-size: 0.74rem; color: var(--text-muted); font-weight: 500; }
.id-value { font-size: 0.82rem; font-weight: 700; color: var(--deep); }
.id-chip { font-size: 0.72rem; font-weight: 700; background: var(--purple-pale); color: var(--purple); padding: 0.2rem 0.6rem; border-radius: 100px; }
.verify-badge {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem; font-size: 0.75rem; font-weight: 700; color: var(--deep);
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); white-space: nowrap;
}
.badge-a { top: -18px; right: -40px; color: #16a34a; }
.badge-b { bottom: -18px; left: -50px; color: var(--purple); }

/* ── STATS BAR ── */
#stats-bar { background: var(--bg-light); max-width: 100%; padding: 80px 2rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-eyebrow { text-align: center; font-size: 0.75rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.stats-title { text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--deep); margin-bottom: 0.75rem; letter-spacing: -0.025em; }
.stats-title strong { color: var(--deep); }
.stats-sub { text-align: center; font-size: 0.97rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.stat-block { text-align: center; }
.stat-icon {
  width: 52px; height: 52px; background: var(--purple-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin: 0 auto 1rem;
}
.sb-num { font-size: 2.2rem; font-weight: 800; color: var(--deep); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.03em; }
.sb-label { font-size: 0.85rem; font-weight: 700; color: var(--deep); margin-bottom: 0.2rem; }
.sb-sub { font-size: 0.74rem; color: var(--text-muted); }
.cert-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.6rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.cert-chip {
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  background: var(--white); padding: 0.4rem 1rem;
  border-radius: 100px; border: 1px solid var(--border);
}

/* ── PROGRAMS ── */
#programs { padding: 80px 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { max-width: 560px; margin-bottom: 3rem; }
.section-header.centered { margin: 0 auto 3rem; text-align: center; max-width: 580px; }
.section-eyebrow { font-size: 0.74rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--deep); line-height: 1.15; margin-bottom: 0.9rem; letter-spacing: -0.025em; }
.title-accent { color: var(--purple); }
.section-sub { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; }

.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.program-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  display: flex; flex-direction: column; transition: var(--tr); box-shadow: var(--shadow-sm);
}
.program-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.program-card.featured {
  background: linear-gradient(160deg, #3b0f7a, #1a0533);
  border-color: var(--deep);
  box-shadow: 0 16px 50px rgba(26,5,51,0.3);
  position: relative; overflow: hidden;
}
.feat-glow {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(109,40,217,0.15), transparent 70%);
  top: -80px; right: -80px; border-radius: 50%; pointer-events: none;
}
.program-card.featured h3 { color: #fff; }
.program-card.featured p { color: rgba(255,255,255,0.65); }
.program-card.featured .pc-list li { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.07); }
.program-card.featured .pc-list li::before { background: var(--purple-light); }

.pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.pc-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.icon-purple-soft { background: var(--purple-pale); color: var(--purple); }
.icon-white { background: rgba(255,255,255,0.12); color: #fff; }
.pc-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.25rem 0.75rem; border-radius: 100px; }
.badge-popular { background: var(--purple-pale); color: var(--purple); }
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-adv { background: #f0fdf4; color: #15803d; }
.program-card.featured .badge-new { background: rgba(219,234,254,0.15); color: #93c5fd; }
.program-card h3 { font-size: 1.07rem; font-weight: 800; color: var(--deep); margin-bottom: 0.65rem; line-height: 1.3; letter-spacing: -0.01em; }
.program-card > p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.pc-list { list-style: none; margin-bottom: 1.25rem; flex: 1; }
.pc-list li { font-size: 0.84rem; color: var(--text-muted); padding: 0.32rem 0; border-bottom: 1px solid var(--bg-gray); display: flex; align-items: center; gap: 7px; }
.pc-list li::before { content: ''; width: 5px; height: 5px; background: var(--purple); border-radius: 50%; flex-shrink: 0; }
.pc-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.pc-meta span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--bg-light); padding: 0.22rem 0.65rem; border-radius: 100px; border: 1px solid var(--border); }
.pc-meta-light span { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
.btn-card-enroll {
  display: block; text-align: center; text-decoration: none;
  background: var(--deep); color: #fff; padding: 0.75rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: 0.88rem; transition: var(--tr);
}
.btn-card-enroll:hover { background: var(--purple); }
.btn-card-light-enroll {
  display: block; text-align: center; text-decoration: none;
  background: var(--purple); color: #fff; padding: 0.75rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: 0.88rem; transition: var(--tr); box-shadow: var(--shadow-purple);
}
.btn-card-light-enroll:hover { background: var(--purple-dark); }

/* Program card dual button row */
.pc-btn-row { display: flex; gap: 0.65rem; margin-top: 1.25rem; flex-wrap: wrap; }
.pc-btn-row .btn-card-enroll,
.pc-btn-row .btn-card-light-enroll { flex: 1; text-align: center; cursor: pointer; font-family: var(--font); border: none; }
.btn-card-enroll-outline {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1rem; border-radius: 8px; font-family: var(--font);
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  border: 1.5px solid #6D28D9; color: #6D28D9; background: transparent; transition: all 0.2s ease;
}
.btn-card-enroll-outline:hover { background: #6D28D9; color: #fff; }
.btn-card-light-outline {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1rem; border-radius: 8px; font-family: var(--font);
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5); color: rgba(255,255,255,0.9); background: transparent; transition: all 0.2s ease;
}
.btn-card-light-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.program-card[onclick] { cursor: pointer; }

/* ── WHY US ── */
#why-us { background: var(--bg-light); padding: 80px 2rem; max-width: 100%; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.feat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  transition: var(--tr); box-shadow: var(--shadow-sm); position: relative;
}
.feat-card:hover { border-color: var(--purple); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-num { font-size: 0.72rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.feat-icon-wrap {
  width: 46px; height: 46px; background: var(--purple-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--purple); margin-bottom: 1rem;
}
.feat-card h4 { font-size: 0.97rem; font-weight: 800; color: var(--deep); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* ── OUTCOMES ── */
#outcomes, #training-strategy {
  background: linear-gradient(135deg, #1a0533 0%, #3b0f7a 55%, #6D28D9 100%);
  max-width: none; padding: 80px 2rem; position: relative; overflow: hidden;
}
#outcomes::before, #training-strategy::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.1) 0%, transparent 65%);
  top: -150px; right: -150px; border-radius: 50%;
}
.outcomes-wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 5rem;
  position: relative; z-index: 1;
}
.outcomes-left { flex: 1; }
.out-eye { color: #c4b5fd; }
.out-title { color: #fff; margin-bottom: 1rem; }
.title-accent-light { color: var(--purple-light); }
.out-body { color: rgba(255,255,255,0.6); font-size: 0.97rem; line-height: 1.78; margin-bottom: 2.5rem; max-width: 440px; }
.out-stats { margin-bottom: 2.5rem; }
.out-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.out-row:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.out-num { font-size: 1.75rem; font-weight: 800; color: var(--purple-light); min-width: 80px; letter-spacing: -0.025em; }
.out-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.btn-primary-light {
  display: inline-flex; align-items: center; text-decoration: none;
  background: var(--purple); color: #fff; padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem;
  transition: var(--tr); box-shadow: var(--shadow-purple);
}
.btn-primary-light:hover { background: var(--purple-dark); transform: translateY(-1px); }
.outcomes-right { flex: 1; padding-top: 3.5rem; }
.roles-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.roles-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.role-tag {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72); padding: 0.5rem 1rem;
  border-radius: 100px; font-size: 0.83rem; font-weight: 600; transition: var(--tr);
}
.role-tag:hover { background: rgba(109,40,217,0.15); border-color: rgba(109,40,217,0.4); color: var(--purple-light); }

/* ── TESTIMONIALS ── */
#testimonials { padding: 80px 2rem; max-width: 1200px; margin: 0 auto; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tcard {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  transition: var(--tr); box-shadow: var(--shadow-sm);
}
.tcard:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.t-stars { color: #F59E0B; font-size: 0.88rem; letter-spacing: 2px; }
.tcard p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.78rem; flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.87rem; color: var(--deep); font-weight: 700; }
.t-author span { font-size: 0.76rem; color: var(--text-muted); }

/* ── ENROLL ── */
#enroll { padding: 80px 2rem; background: var(--bg-light); max-width: 100%; }
.enroll-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.enroll-left .section-title { margin-bottom: 0.75rem; }
.enroll-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 1.75rem; }
.enroll-checks { margin-bottom: 2rem; }
.ec-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.4rem 0; font-size: 0.88rem; color: var(--text-body); font-weight: 600; }
.ec-icon { width: 22px; height: 22px; background: var(--purple-pale); color: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }
.cohort-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.cb-label { font-size: 0.7rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.cb-date { font-size: 1.4rem; font-weight: 800; color: var(--deep); margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.cb-seats { font-size: 0.83rem; color: #DC2626; font-weight: 700; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.cc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem; display: flex; align-items: center; gap: 0.8rem; transition: var(--tr); box-shadow: var(--shadow-xs); cursor: pointer; }
.cc-card:hover { border-color: var(--purple); }
.cc-icon { width: 42px; height: 42px; background: var(--purple-pale); color: var(--purple); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-card strong { display: block; font-size: 0.87rem; color: var(--deep); font-weight: 700; }
.cc-card p { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }

.form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--deep); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-body); margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%; background: var(--bg-light); border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 0.7rem 1rem; border-radius: var(--radius-md);
  font-family: var(--font); font-size: 0.9rem; font-weight: 500;
  transition: var(--tr); outline: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(109,40,217,0.1);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
select option { background: var(--white); color: var(--text-dark); }
textarea { resize: vertical; min-height: 90px; }
.checkbox-fg { margin-top: 0.25rem; }
.cb-label-wrap { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.84rem; color: var(--text-muted); cursor: pointer; font-weight: 500; }
.cb-label-wrap input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; accent-color: var(--purple); }
.cb-label-wrap a { color: var(--purple); text-decoration: none; font-weight: 600; }
.btn-submit {
  width: 100%; background: var(--purple); color: #fff;
  border: none; padding: 0.95rem; border-radius: var(--radius-md);
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--tr); margin-top: 1rem; box-shadow: var(--shadow-purple);
}
.btn-submit:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(109,40,217,0.4); }
.form-msg { margin-top: 0.9rem; font-size: 0.86rem; text-align: center; padding: 0.6rem; border-radius: 8px; font-weight: 600; }
.form-msg.success { background: #f0fdf4; color: #16a34a; border: 1.5px solid #bbf7d0; }
.form-msg.error { background: #fef2f2; color: #dc2626; border: 1.5px solid #fecaca; }

/* ── NEWSLETTER ── */
.newsletter-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
.nl-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.nl-text h4 { font-size: 1.05rem; font-weight: 800; color: var(--deep); margin-bottom: 0.3rem; }
.nl-text p { font-size: 0.87rem; color: var(--text-muted); max-width: 380px; }
.nl-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.nl-form input {
  width: 260px; background: var(--bg-light); border: 1.5px solid var(--border);
  padding: 0.7rem 1rem; border-radius: var(--radius-md);
  font-family: var(--font); font-size: 0.9rem; outline: none; transition: var(--tr);
}
.nl-form input:focus { border-color: var(--purple); background: var(--white); }
.nl-form button {
  background: var(--purple); color: #fff; border: none; padding: 0.7rem 1.3rem;
  border-radius: var(--radius-md); font-family: var(--font); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: var(--tr); box-shadow: var(--shadow-purple); white-space: nowrap;
}
.nl-form button:hover { background: var(--purple-dark); }

/* ── FOOTER ── */
footer { background: var(--deep); color: #fff; }
footer p, footer a, footer li, footer span, footer h5, footer strong, footer small { color: #fff !important; }
footer a:hover { opacity: 0.75; }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 56px 2rem 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.ft-brand .logo { margin-bottom: 1rem; display: flex; }
.ft-logo-text { color: var(--white) !important; }
.ft-logo-text .accent { color: var(--purple-light) !important; }
.ft-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 1.5rem; max-width: 260px; }
.ft-social { display: flex; gap: 0.6rem; }
.ft-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; border-radius: 8px; text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: var(--tr); }
.ft-social a:hover { background: rgba(109,40,217,0.2); border-color: rgba(109,40,217,0.4); color: var(--purple-light); }
.ft-col h5 { font-size: 0.76rem; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 0.55rem; }
.ft-col ul li a { text-decoration: none; color: rgba(255,255,255,0.42); font-size: 0.86rem; font-weight: 500; transition: var(--tr); }
.ft-col ul li a:hover { color: var(--purple-light); padding-left: 3px; }
.ft-contact li { color: rgba(255,255,255,0.42) !important; font-size: 0.86rem; font-weight: 500; margin-bottom: 0.55rem; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.1rem 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.77rem; color: rgba(255,255,255,0.3); }
.fb-links { display: flex; gap: 1.5rem; }
.fb-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 500; transition: var(--tr); }
.fb-links a:hover { color: var(--purple-light); }

/* Force white on all footer text */
.ft-contact li, .ft-col ul li, .ft-col ul li a, .ft-col h5, .ft-brand p,
.footer-bottom span, .footer-bottom a, .fb-links a { color: #fff !important; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LOGIN SECTION ── */
#login {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #1a0533 0%, #3b0f7a 55%, #6D28D9 100%);
  position: relative; overflow: visible;
}
#login::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,181,253,0.1) 0%, transparent 65%);
  top: -150px; right: -150px; border-radius: 50%; pointer-events: none;
}
.login-section-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1;
}
.login-portals { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.lp-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1rem 1.1rem; transition: all 0.22s ease;
}
.lp-card:hover { background: rgba(255,255,255,0.11); border-color: rgba(196,181,253,0.3); }
.lp-icon { width: 42px; height: 42px; background: rgba(196,181,253,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #c4b5fd; flex-shrink: 0; }
.lp-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.lp-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.login-form-panel { display: flex; flex-direction: column; justify-content: center; }
.login-form-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25); overflow: visible; position: relative; z-index: 2;
}
.lfc-header { text-align: center; margin-bottom: 1.75rem; }
.lfc-header h3 { font-size: 1.15rem; font-weight: 800; color: #6D28D9; margin-bottom: 0.3rem; letter-spacing: -0.015em; }
.lfc-header p { font-size: 0.88rem; color: #6B7280; }
.lfc-footer { text-align: center; margin-top: 1.25rem; }
.lfc-footer p { font-size: 0.85rem; color: #6B7280; }
.lfc-footer p a { color: #6D28D9; font-weight: 700; text-decoration: none; }
.role-tabs { display: flex; background: #F4F0FF; border-radius: 12px; padding: 5px; gap: 4px; margin-bottom: 1rem; }
.role-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0.6rem 0.4rem; border: none; border-radius: 9px;
  background: transparent; color: #6B7280;
  font-family: var(--font); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.role-tab:hover { color: #6D28D9; }
.role-tab.active { background: #fff; color: #6D28D9; box-shadow: 0 2px 8px rgba(109,40,217,0.15); }
.role-desc { margin-bottom: 1.25rem; min-height: 26px; }
.rd-chip { display: none; font-size: 0.77rem; font-weight: 600; color: #6D28D9; background: #EDE9FE; padding: 0.28rem 0.85rem; border-radius: 100px; border: 1px solid rgba(109,40,217,0.15); }
.rd-chip.active { display: inline-flex; align-items: center; gap: 5px; }
.rd-chip.active::before { content: ''; width: 6px; height: 6px; background: #6D28D9; border-radius: 50%; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-icon { position: absolute; left: 12px; color: #9CA3AF; pointer-events: none; flex-shrink: 0; }
.input-wrap input {
  width: 100%; background: #F3F0FF; border: 1.5px solid #E5E7EB; color: #0D1B2A;
  padding: 0.72rem 2.8rem; border-radius: 10px;
  font-family: var(--font); font-size: 0.9rem; font-weight: 500; transition: all 0.2s ease; outline: none;
}
.input-wrap input:focus { border-color: #6D28D9; background: #fff; box-shadow: 0 0 0 3px rgba(109,40,217,0.1); }
.input-wrap input::placeholder { color: #9CA3AF; opacity: 0.65; }
.toggle-pw { position: absolute; right: 12px; background: none; border: none; cursor: pointer; color: #9CA3AF; padding: 4px; display: flex; align-items: center; transition: color 0.2s; }
.toggle-pw:hover { color: #6D28D9; }
.form-extras { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.5rem; }
.remember-me { display: flex; align-items: center; gap: 7px; font-size: 0.83rem; color: #374151; cursor: pointer; font-weight: 500; }
.remember-me input[type="checkbox"] { width: 15px; height: 15px; accent-color: #6D28D9; }
.forgot-link { font-size: 0.83rem; font-weight: 700; color: #6D28D9; text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }
.req { color: #EF4444; }
.btn-signin {
  width: 100%; background: linear-gradient(135deg, #6D28D9, #4C1D95); color: #fff;
  border: none; padding: 0.9rem; border-radius: 10px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.22s ease;
  box-shadow: 0 4px 18px rgba(109,40,217,0.35); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-signin:hover { background: linear-gradient(135deg, #5b21b6, #3b0f7a); transform: translateY(-1px); }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }
.lfc-logo { height: 60px; width: auto; display: block; margin: 0 auto 0.85rem; filter: invert(1) brightness(0); }

/* ── PROGRAM MODALS ── */
#our-programs { padding: 80px 2rem; background: #F8F6FF; }
.tp-grid { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.tp-card {
  background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px;
  padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.75rem;
  cursor: pointer; transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(109,40,217,0.05); position: relative; overflow: hidden;
}
.tp-card:hover { border-color: #6D28D9; box-shadow: 0 8px 32px rgba(109,40,217,0.15); transform: translateY(-3px); }
.tp-card:hover .tp-arrow { transform: translateX(5px); }
.tp-card.featured-tp { background: linear-gradient(135deg, #1a0533 0%, #3b0f7a 60%, #6D28D9 100%); border-color: transparent; color: #fff; }
.tp-card.featured-tp h3 { color: #fff; }
.tp-card.featured-tp p  { color: rgba(255,255,255,0.75); }
.tp-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tp-content { flex: 1; min-width: 0; }
.tp-content h3 { font-size: 1.05rem; font-weight: 800; color: #1a0533; margin-bottom: 0.4rem; letter-spacing: -0.015em; }
.tp-content p { font-size: 0.88rem; color: #6B7280; line-height: 1.65; margin-bottom: 0.9rem; }
.tp-popular-badge { display: block; width: fit-content; font-size: 0.68rem; font-weight: 800; color: #c4b5fd; background: rgba(196,181,253,0.15); border: 1px solid rgba(196,181,253,0.3); padding: 0.2rem 0.7rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.tp-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.tp-tags span { font-size: 0.72rem; font-weight: 700; background: #EDE9FE; color: #6D28D9; padding: 0.2rem 0.65rem; border-radius: 100px; }
.tp-tags-light span { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.tp-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.tp-meta span { font-size: 0.78rem; font-weight: 600; color: #6B7280; }
.tp-meta-light span { color: rgba(255,255,255,0.6); }
.tp-arrow { color: #6D28D9; flex-shrink: 0; transition: transform 0.25s ease; }

/* Modal */
.prog-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,5,51,0.65); backdrop-filter: blur(6px);
  z-index: 9000; align-items: center; justify-content: center; padding: 1rem;
}
.prog-modal-overlay.open { display: flex; animation: fadeInOverlay 0.25s ease; }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.prog-modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 820px;
  max-height: 92vh; overflow-y: auto; position: relative;
  animation: slideUpModal 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
@keyframes slideUpModal { from { transform: translateY(40px) scale(0.97); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 36px; height: 36px; background: rgba(255,255,255,0.15);
  border: none; border-radius: 50%; color: #fff; font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-header { padding: 2rem 2rem 1.75rem; display: flex; align-items: center; gap: 1.25rem; border-radius: 20px 20px 0 0; color: #fff; }
.modal-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-eyebrow { display: block; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.modal-header h2 { font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -0.02em; }
.modal-body { padding: 2rem; }
.modal-intro { font-size: 0.95rem; color: #374151; line-height: 1.75; margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid #F0EBFF; }
.modal-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.75rem; }
.modal-col h4 { font-size: 0.85rem; font-weight: 800; color: #1a0533; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.modal-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.modal-col ul li { font-size: 0.875rem; color: #374151; padding-left: 1.1rem; position: relative; line-height: 1.5; }
.modal-col ul li::before { content: '→'; position: absolute; left: 0; color: #6D28D9; font-weight: 700; font-size: 0.75rem; }
.modal-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: #F8F6FF; border-radius: 14px; padding: 1.25rem; margin-bottom: 1.75rem; text-align: center; }
.ms-item span { display: block; font-size: 1.3rem; font-weight: 800; color: #6D28D9; letter-spacing: -0.02em; line-height: 1; }
.ms-item small { display: block; font-size: 0.7rem; font-weight: 600; color: #6B7280; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 4px; }
.modal-enroll-btn {
  display: inline-flex; width: 100%; justify-content: center;
  background: linear-gradient(135deg, #6D28D9, #4C1D95); color: #fff; border-radius: 12px;
  padding: 0.95rem; font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 4px 18px rgba(109,40,217,0.35); transition: all 0.22s ease;
}
.modal-enroll-btn:hover { background: linear-gradient(135deg, #5b21b6, #3b0f7a); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(109,40,217,0.45); }

/* ── PRICING ── */
#pricing { padding: 80px 2rem; background: #fff; }
.pricing-grid { max-width: 1200px; margin: 0 auto 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.pricing-card {
  background: #fff; border: 1.5px solid #E5E7EB; border-radius: 20px;
  padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 2px 12px rgba(109,40,217,0.05); transition: all 0.25s ease; position: relative;
}
.pricing-card:hover { border-color: #6D28D9; box-shadow: 0 12px 40px rgba(109,40,217,0.13); transform: translateY(-4px); }
.pricing-featured { background: linear-gradient(155deg, #1a0533 0%, #3b0f7a 55%, #6D28D9 100%); border-color: transparent; transform: scale(1.03); box-shadow: 0 20px 50px rgba(109,40,217,0.35); }
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 28px 60px rgba(109,40,217,0.45); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 0.3rem 1rem; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 3px 10px rgba(245,158,11,0.4); }
.pricing-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; }
.pricing-duration { font-size: 0.75rem; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.5rem; }
.pricing-card h3 { font-size: 1rem; font-weight: 800; color: #1a0533; line-height: 1.35; margin: 0 0 1.5rem; letter-spacing: -0.015em; }
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.4rem; }
.pricing-currency { font-size: 1rem; font-weight: 700; color: #6D28D9; }
.pricing-price { font-size: 2.8rem; font-weight: 900; color: #1a0533; line-height: 1; letter-spacing: -0.04em; }
.pricing-slash { font-size: 1.4rem; color: #9CA3AF; font-weight: 400; }
.pricing-per { font-size: 0.95rem; font-weight: 600; color: #6B7280; }
.pricing-total { font-size: 0.82rem; color: #6B7280; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #F0EBFF; }
.pricing-total strong { color: #1a0533; }
.pricing-includes { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pricing-includes li { font-size: 0.875rem; color: #374151; padding-left: 1.4rem; position: relative; line-height: 1.5; }
.pricing-includes li::before { content: '✓'; position: absolute; left: 0; color: #6D28D9; font-weight: 800; font-size: 0.8rem; }
.pricing-includes-light li { color: rgba(255,255,255,0.82); }
.pricing-includes-light li::before { color: #c4b5fd; }
.pricing-note { max-width: 800px; margin: 0 auto; background: #F8F6FF; border: 1px solid #DDD6FE; border-radius: 12px; padding: 1rem 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: #4C1D95; line-height: 1.65; }
.pricing-note svg { flex-shrink: 0; color: #6D28D9; margin-top: 2px; }
.pricing-note strong { color: #1a0533; }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── Large tablet: 1100px ── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card-wrap { display: none; }
  .hero-content { width: 100% !important; max-width: 60% !important; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .ft-brand { grid-column: 1 / -1; }
  .enroll-wrap { gap: 2.5rem; }
  /* Collapse nav to hamburger early enough to prevent any link overflow */
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Tablet: 900px ── */
@media (max-width: 900px) {
  :root { --nav-h: 84px; }

  .site-logo-footer { height: 60px; }

  #hero { padding: calc(var(--nav-h) + 32px) 1.5rem 60px; text-align: left; }
  .hero-inner { flex-direction: column; gap: 2rem; align-items: stretch; }
  .hero-content { width: 100% !important; max-width: 100% !important; }
  .hero-cert-wrap { width: 100%; margin: 0 !important; align-self: stretch; order: 2; }
  .hero-cert-card { width: 100%; border-radius: 14px; }
  .cert-float { display: none; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem) !important; line-height: 1.1 !important; }
  .hero-sub { font-size: 0.95rem; }
  .hero-trust { flex-wrap: wrap; gap: 0.75rem !important; }
  .hero-stats { gap: 1rem !important; }
  .h-div { display: none; }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1.25rem !important;
    backdrop-filter: blur(8px);
    width: 100%;
  }

  .outcomes-wrap { flex-direction: column; gap: 2.5rem; }
  .outcomes-right { padding-top: 0; }

  .enroll-wrap { grid-template-columns: 1fr; gap: 2rem; }

  .login-section-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .login-info-panel { display: none; }

  .nl-inner { flex-direction: column; align-items: flex-start; }
  .nl-form { width: 100%; }
  .nl-form input { flex: 1; width: auto; min-width: 0; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 48px 2rem 32px; }
  .ft-brand { grid-column: 1 / -1; }

  .tp-card { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .tp-arrow { align-self: flex-end; }

  .modal-sections { grid-template-columns: 1fr; gap: 1.25rem; }
  .modal-stats { grid-template-columns: repeat(2, 1fr); }

  .programs-grid { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-featured { transform: scale(1); }
  .pricing-featured:hover { transform: translateY(-4px); }
}

/* ── Mobile: 600px ── */
@media (max-width: 600px) {
  :root { --nav-h: 76px; }

  .site-logo-footer { height: 50px; }

  #hero { padding: calc(var(--nav-h) + 24px) 1.25rem 50px; min-height: auto; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; }
  .hero-badge { font-size: 0.74rem; padding: 0.35rem 0.85rem; margin-bottom: 1.25rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas a { text-align: center; justify-content: center; width: 100%; }
  .btn-primary, .btn-ghost { padding: 0.9rem 1.25rem; font-size: 0.92rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-trust { gap: 0.5rem !important; }
  .hero-trust span { font-size: 0.78rem; }

  #stats-bar { padding: 50px 1.25rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .sb-num { font-size: 1.8rem; }
  .cert-bar { gap: 0.45rem; }
  .cert-chip { font-size: 0.72rem; padding: 0.35rem 0.75rem; }

  #programs, #testimonials { padding: 50px 1.25rem; }
  .section-header { margin-bottom: 2rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .program-card { padding: 1.5rem; }

  #why-us .why-inner, #outcomes, #training-strategy { padding: 50px 1.25rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .feat-card { padding: 1.4rem; }
  .out-num { font-size: 1.5rem; min-width: 68px; }

  #enroll { padding: 50px 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .contact-cards { grid-template-columns: 1fr; }

  #our-programs { padding: 50px 1.25rem; }
  .tp-card { padding: 1.25rem; gap: 0.9rem; }
  .tp-icon { width: 52px; height: 52px; }
  .tp-content h3 { font-size: 1rem; }
  .tp-meta { gap: 0.6rem; }

  .modal-header { flex-direction: column; align-items: flex-start; gap: 0.9rem; padding: 1.5rem; }
  .modal-header h2 { font-size: 1.05rem; }
  .modal-body { padding: 1.25rem; }
  .modal-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .modal-intro { font-size: 0.9rem; }

  #login { padding: 50px 1.25rem; }
  .login-form-card { padding: 1.5rem; }
  .role-tab { font-size: 0.76rem; padding: 0.55rem 0.3rem; }

  #pricing { padding: 50px 1.25rem; }
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-price { font-size: 2.4rem; }

  .newsletter-bar { padding: 2rem 1.25rem; }
  .nl-form { flex-direction: column; gap: 0.6rem; }
  .nl-form input { width: 100%; }
  .nl-form button { width: 100%; padding: 0.8rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem; padding: 36px 1.25rem 28px; }
  .ft-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: 1rem 1.25rem; }
  .fb-links { gap: 1rem; }
}

/* ── Extra small: 400px ── */
@media (max-width: 400px) {
  :root { --nav-h: 70px; }
  .hero-title { font-size: 1.7rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .sb-num { font-size: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; }
  .ft-brand { grid-column: 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-card { padding: 1.25rem; }
  .hero-stats { grid-template-columns: 1fr 1fr !important; }
  .h-num { font-size: 1.6rem; }
}
