/* =============================================
   MSMGrad Global Stylesheet — Brand v3.0
   Brand: MSM Unify / MSMGrad
   Primary Red: #FF1A22  |  Charcoal: #2F2F2F
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ── Brand Core ── */
  --red:          #FF1A22;
  --red-dark:     #CC0007;
  --red-darker:   #990005;
  --red-light:    #FF5560;
  --red-subtle:   rgba(255,26,34,0.08);
  --red-subtle2:  rgba(255,26,34,0.15);

  --dark:         #2F2F2F;
  --dark-2:       #1E1E1E;
  --dark-3:       #111111;
  --charcoal:     #3D3D3D;

  --white:        #FFFFFF;

  /* ── UI Colors ── */
  --gold:         #F5A623;
  --gold-dark:    #D4881A;
  --success:      #22C55E;
  --info:         #3B82F6;
  --warning:      #F59E0B;
  --purple:       #7C3AED;

  /* ── Text ── */
  --text-dark:    #1A1A1A;
  --text-body:    #404040;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;

  /* ── Backgrounds ── */
  --bg-white:     #FFFFFF;
  --bg-light:     #F9F9F9;
  --bg-section:   #F4F4F4;
  --bg-dark:      #1A1A1A;
  --border:       #E5E5E5;
  --border-dark:  rgba(255,255,255,0.12);

  /* ── Gradients ── */
  --grad-red:      linear-gradient(135deg, #CC0007 0%, #FF1A22 50%, #FF5560 100%);
  --grad-dark:     linear-gradient(135deg, #1E1E1E 0%, #2F2F2F 100%);
  --grad-red-dark: linear-gradient(135deg, #1A1A1A 0%, #2F2F2F 40%, #CC0007 100%);
  --grad-hero:     linear-gradient(135deg, #0D0D0D 0%, #1E1E1E 50%, #300002 100%);

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --shadow-red:0 8px 32px rgba(255,26,34,0.3);

  /* ── Radius ── */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* ── Typography ── */
  --font:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* ── Motion ── */
  --t:      all 0.28s cubic-bezier(0.4,0,0.2,1);
  --t-fast: all 0.16s ease;
  --t-slow: all 0.5s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font)!important; color: var(--text-body)!important; background: var(--bg-white)!important; line-height: 1.6!important; overflow-x: hidden!important; }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--t); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { color: var(--dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-body); line-height: 1.75; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }
.section-pad-xs { padding: 40px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px) { .grid-2,.grid-3,.grid-4,.grid-5 { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); background: var(--red-subtle); padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 14px; border: 1px solid rgba(255,26,34,0.15);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 620px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); background: var(--red-subtle); padding: 6px 16px; border-radius: var(--r-full);
  border: 1px solid rgba(255,26,34,0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-md);
  font-weight: 600; font-size: 0.92rem; cursor: pointer; border: none;
  transition: var(--t); text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: var(--t);
}
.btn:hover::after { background: rgba(255,255,255,0.1); }

/* Primary = Red */
.btn-primary, .btn-red {
  background: var(--grad-red); color: white!important;
  box-shadow: 0 4px 20px rgba(255,26,34,0.35);
}
.btn-primary:hover, .btn-red:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,26,34,0.45);
  color: white;
}

.btn-dark {
  background: var(--dark); color: white;
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); color: white; }

.btn-outline-red, .btn-outline {
  background: transparent; color: var(--red); border: 2px solid var(--red);
}
.btn-outline-red:hover, .btn-outline:hover { background: var(--red); color: white; }

.btn-outline-white {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }

.btn-white { background: white; color: var(--dark); }
.btn-white:hover { background: var(--bg-section); color: var(--red); }

.btn-ghost { background: var(--bg-section); color: var(--dark); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--red-subtle); color: var(--red); border-color: var(--red); }

.btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; }
.btn-gold:hover { transform: translateY(-2px); color: white; }

.btn-free { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; box-shadow: 0 4px 16px rgba(34,197,94,0.3); }
.btn-free:hover { transform: translateY(-2px); color: white; }

.btn-lg { padding: 16px 34px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; border-radius: var(--r-sm); }
.btn-xs { padding: 6px 14px; font-size: 0.75rem; border-radius: var(--r-xs); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.3px;
}
.badge-red, .badge-primary     { background: var(--red-subtle); color: var(--red); border: 1px solid rgba(255,26,34,0.2); }
.badge-green, .badge-success   { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.badge-dark                    { background: var(--dark); color: white; }
.badge-gold, .badge-accent     { background: rgba(245,166,35,0.12); color: #b45309; border: 1px solid rgba(245,166,35,0.2); }
.badge-free                    { background: linear-gradient(135deg,#22c55e,#16a34a); color: white; font-weight: 800; letter-spacing: 1px; }
.badge-hot                     { background: var(--red); color: white; animation: pulse-red 2s infinite; }
.badge-new                     { background: var(--info); color: white; }
.badge-purple                  { background: rgba(124,58,237,0.1); color: var(--purple); border: 1px solid rgba(124,58,237,0.2); }

@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,26,34,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(255,26,34,0); }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: white; border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--t); overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,26,34,0.2); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar, .announcement-bar {
  background: var(--dark-3); color: white; text-align: center;
  padding: 10px 48px; font-size: 0.84rem; font-weight: 500;
  position: relative; z-index: 1001;
  border-bottom: 2px solid var(--red);
}
.ann-bar a, .announcement-bar a { color: var(--gold); font-weight: 700; }
.ann-bar a:hover, .announcement-bar a:hover { color: white; }
.ann-close, .close-bar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 1rem; padding: 4px; transition: var(--t);
}
.ann-close:hover, .close-bar:hover { color: white; }

/* ============================================================
   PROGRAM SELECT MODAL
   ============================================================ */
.program-select-modal {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.program-select-modal.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.psm-box {
  background: white; border-radius: 24px; width: 100%; max-width: 860px;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(32px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.psm-close {
  position: absolute; top: 20px; right: 20px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--bg-section); border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.psm-close:hover { background: var(--border); color: var(--dark); }

.psm-header { padding: 36px 36px 20px; border-bottom: 1px solid var(--border); }
.psm-header h2 { font-size: 1.8rem; font-weight: 900; margin: 6px 0 8px; }
.psm-header p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.psm-grid { padding: 20px 28px; display: flex; flex-direction: column; gap: 12px; }

.psm-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px; border: 1.5px solid var(--border); border-radius: 16px;
  text-decoration: none; color: inherit; transition: var(--t);
  cursor: pointer;
}
.psm-card:hover { border-color: var(--red); background: var(--red-subtle); transform: translateX(4px); }
.psm-card-logo { width: 64px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-section); border-radius: 10px; padding: 8px; }
.psm-card-logo img { max-height: 36px; max-width: 52px; width: auto; height: auto; object-fit: contain; }
.psm-card-info { flex: 1; }
.psm-institution { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); display: block; margin-bottom: 3px; }
.psm-card-info h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin: 0 0 4px; }
.psm-card-info p { font-size: 0.8rem; color: var(--text-muted); margin: 0 0 8px; }
.psm-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.psm-tags span { font-size: 0.68rem; background: #eef2ff; color: #4338ca; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.psm-arrow { color: var(--text-light); font-size: 0.85rem; flex-shrink: 0; transition: var(--t); }
.psm-card:hover .psm-arrow { color: var(--red); transform: translateX(4px); }

.psm-footer {
  padding: 20px 36px 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.psm-footer p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }
.psm-footer a:not(.btn) { color: var(--red); font-weight: 600; text-decoration: none; }
.psm-footer a:not(.btn):hover { text-decoration: underline; }

/* PSM group label */
.psm-group-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); padding: 8px 0 2px; border-bottom: 1px solid var(--border);
  margin-bottom: 2px; display: flex; align-items: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1100;
  background: white; border-bottom: 1px solid var(--border);
  transition: var(--t); height: 70px; display: flex; align-items: center;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.navbar-inner, .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}

/* ── Logo ── */
.navbar-logo, .nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  max-height: 50px;
  width: auto;
  display: block;
  max-width: none;
  /* keep crisp on retina */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Legacy icon/text classes kept for fallback */
.logo-icon, .nav-logo-icon {
  width: 42px; height: 42px; background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: white;
  letter-spacing: -0.5px;
}
.logo-text, .nav-logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-size: 1rem; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; }
.logo-text span    { display: block; font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 1px; }
.nav-logo-text .msm  { font-size: 1rem; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; }
.nav-logo-text .grad { font-size: 1rem; font-weight: 900; color: var(--red); letter-spacing: -0.5px; }
.nav-logo-text .sub  { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; display: block; margin-top: 1px; }

/* ── Nav Links ── */
.navbar-nav, .nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: 0.88rem; font-weight: 600;
  color: var(--dark)!important; border-radius: var(--r-sm); transition: var(--t); white-space: nowrap;
}
.nav-link:hover { color: var(--red)!important; background: var(--red-subtle); }
.nav-link.active { color: var(--red)!important; }
.nav-link i { font-size: 0.7rem; opacity: 0.5; transition: var(--t); }
.nav-item:hover .nav-link i { opacity: 1; transform: rotate(180deg); }

/* ── Nav Actions ── */
.navbar-actions, .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── Hamburger ── */
.hamburger, .mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span, .mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: var(--t);
}

@media (max-width: 1100px) {
  .navbar-nav, .nav-links { display: none; }
  .hamburger, .mobile-menu-btn { display: flex; }
  .navbar-actions .btn-ghost, .nav-actions .btn-ghost,
  .navbar-actions .hide-mobile, .nav-actions .hide-mobile { display: none; }
}

/* ── Dropdown / Mega Menu ── */
.dropdown-menu, .mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1200;
  min-width: 600px;
  overflow: hidden;
}
/* Generic show state — for menus that use translateX(-50%) centering */
.nav-item:hover .dropdown-menu,
.nav-item:hover .mega-menu,
.nav-item.menu-open .dropdown-menu,
.nav-item.menu-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Any menu with an explicit left:0 inline style should use Y-only transform */
.nav-item:hover .mega-menu[style*="left:0"],
.nav-item:hover .mega-menu[style*="left: 0"],
.nav-item.menu-open .mega-menu[style*="left:0"],
.nav-item.menu-open .mega-menu[style*="left: 0"] {
  transform: translateY(0) !important;
}
/* Wide Courses mega-menu — anchored left so it stays in viewport */
.mega-menu-wide {
  left: 0 !important;
  transform: translateX(0) translateY(-6px) !important;
}
.nav-item:hover .mega-menu-wide,
.nav-item.menu-open .mega-menu-wide {
  transform: translateX(0) translateY(0) !important;
}

.dropdown-menu a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; transition: var(--t); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--red-subtle); }
.dropdown-menu a .icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.dropdown-menu a .info strong { display: block; font-size: 0.9rem; color: var(--dark); font-weight: 700; }
.dropdown-menu a .info span   { font-size: 0.78rem; color: var(--text-muted); }

/* ── Mega Menu ── */
.mega-inner { display: grid; grid-template-columns: 260px 1fr; }
.mega-sidebar { background: var(--dark); padding: 28px; }
.mega-sidebar .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 16px; font-weight: 700; }
.mega-program-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-md); transition: var(--t);
  margin-bottom: 4px; text-decoration: none;
}
.mega-program-link:hover { background: rgba(255,255,255,0.08); }
.mega-program-link .icon { width: 38px; height: 38px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.mega-program-link .info strong { display: block; font-size: 0.85rem; color: white; font-weight: 600; margin-bottom: 2px; }
.mega-program-link .info span   { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.mega-content { padding: 24px 28px; }
.mega-section-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 12px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.mega-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.mega-value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.mega-value-card { padding: 14px; border-radius: var(--r-md); border: 1px solid var(--border); transition: var(--t); cursor: pointer; text-decoration: none; display: block; }
.mega-value-card:hover { border-color: var(--red); background: var(--red-subtle); }
.mega-value-card .v-icon { font-size: 1.3rem; margin-bottom: 6px; }

/* ── Extended Mega Menu — Courses ── */
.mega-menu-wide { min-width: 880px; }
.mega-3col { display: grid; grid-template-columns: 200px 1fr 1fr; min-height: 340px; }
.mega-col-header { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }
.mega-cat-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r-sm); transition: var(--t);
  margin-bottom: 2px; text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-weight: 500;
}
.mega-cat-link:hover { background: rgba(255,26,34,0.2); color: white; }
.mega-cat-link .cat-icon { font-size: 1.1rem; flex-shrink: 0; }
.mega-cat-link .badge-hot-xs { background: var(--red); color: white; font-size: 0.6rem; font-weight: 700; padding: 2px 6px; border-radius: 99px; flex-shrink: 0; }
.mega-courses-col { padding: 20px; border-left: 1px solid var(--border); }
.mega-courses-col .mega-section-title { color: var(--text-muted); }
.mega-course-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm); transition: var(--t);
  text-decoration: none; margin-bottom: 4px;
}
.mega-course-item:hover { background: var(--red-subtle); }
.mega-course-item .ci-icon { width: 32px; height: 32px; border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.mega-course-item .ci-info strong { display: block; font-size: 0.82rem; color: var(--dark); font-weight: 700; margin-bottom: 1px; }
.mega-course-item .ci-info span { font-size: 0.72rem; color: var(--text-muted); }
.mega-course-item .ci-badge { margin-left: auto; align-self: flex-start; flex-shrink: 0; }
.mega-cta-strip { background: var(--red-subtle); border-top: 1px solid rgba(255,26,34,0.15); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mega-cta-strip p { font-size: 0.8rem; color: var(--red); font-weight: 600; margin: 0; }

/* ── Fortune 500 Badge ── */
.f500-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#1a1a2e,#16213e); color: #ffd700; border: 1px solid rgba(255,215,0,0.3); border-radius: var(--r-full); padding: 5px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; }
.f500-badge i { color: #ffd700; font-size: 0.8rem; }

/* ── Career Outcomes Report Card ── */
.outcomes-report-card {
  background: linear-gradient(135deg, #0D0D0D 0%, #1E1E1E 50%, #300002 100%);
  border: 1px solid rgba(255,26,34,0.3); border-radius: var(--r-2xl); padding: 40px;
  position: relative; overflow: hidden;
}
.outcomes-report-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,26,34,0.25) 0%, transparent 70%); }
.report-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(255,26,34,0.25); position: relative; }
.report-img-wrap img { width: 100%; object-fit: cover; }
.report-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
.report-stat-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-full); padding: 8px 18px; font-size: 0.8rem; color: white; font-weight: 600; margin: 4px; }
.report-stat-pill strong { color: var(--red-light); font-size: 1rem; font-weight: 900; }
.mega-value-card strong { display: block; font-size: 0.8rem; color: var(--dark); margin-bottom: 2px; }
.mega-value-card span { font-size: 0.72rem; color: var(--text-muted); }
.mega-footer { border-top: 1px solid var(--border); padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.mega-footer a { font-size: 0.82rem; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 4px; }

/* ── Mobile Drawer ── */
.mobile-nav, .mobile-drawer {
  position: fixed; inset: 0; background: white; z-index: 2000;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-nav.open, .mobile-drawer.open { transform: translateX(0); }
.mobile-nav-header, .drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-nav-close, .drawer-close {
  background: var(--bg-section); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.mobile-nav-close:hover, .drawer-close:hover { background: var(--red); color: white; }
.mobile-nav a, .drawer-body a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 24px; font-size: 1rem; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid var(--border); text-decoration: none;
}
.mobile-nav a:hover, .drawer-body a:hover { color: var(--red); background: var(--red-subtle); }
.mobile-nav-footer, .drawer-foot {
  padding: 20px 24px; display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--grad-hero); position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-glow  { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,26,34,0.18) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-glow2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,26,34,0.1)  0%, transparent 70%); bottom: -50px; left: 10%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: var(--bg-white); clip-path: ellipse(55% 100% at 50% 100%); }

.hero-grid, .hero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1; padding: 80px 0 100px;
}
.hero-badge, .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,26,34,0.15); border: 1px solid rgba(255,26,34,0.35);
  border-radius: var(--r-full); padding: 8px 16px; margin-bottom: 24px;
  font-size: 0.8rem; font-weight: 700; color: #FF8A8E; letter-spacing: 0.5px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse-red 1.5s infinite; }
.hero h1 { color: white; margin-bottom: 20px; font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 900; line-height: 1.08; letter-spacing: -1px; }
.hero h1 .red-text  { color: var(--red-light); }
.hero h1 .highlight { color: var(--red-light); }
.hero h1 .underline-red { position: relative; display: inline-block; }
.hero h1 .underline-red::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 2px; }
.hero-desc, .hero-sub { color: rgba(255,255,255,0.72); font-size: 1.08rem; line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-actions, .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero-social-proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-avatars { display: flex; }
.hero-avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--dark-2); margin-left: -8px; object-fit: cover; }
.hero-avatars img:first-child { margin-left: 0; }
.hero-sp-text strong { display: block; font-size: 0.92rem; color: white; font-weight: 700; }
.hero-sp-text span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { text-align: center; }
.hero-stat .num, .hero-stat .n { display: block; font-size: 1.8rem; font-weight: 900; color: var(--red-light); line-height: 1; margin-bottom: 4px; }
.hero-stat .label, .hero-stat .l { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; }

/* Hero right panel */
.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; }
.hero-panel, .hero-card-main {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-2xl);
  padding: 24px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.hero-panel-img, .hero-card-main img {
  width: 100%; border-radius: var(--r-xl);
  aspect-ratio: 16/9; object-fit: cover; margin-bottom: 20px;
  display: block;
  background: linear-gradient(135deg, #1a1a2e 0%, #300002 100%);
  min-height: 200px;
}
.hero-panel-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hero-float, .hero-float-card {
  position: absolute; background: white; border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-cards { position: absolute; bottom: -16px; left: -16px; }
.hero-float.f1, .hero-floating-cards .hero-float-card:first-child { top: -16px; right: -16px; animation-delay: 0s; }
.hero-float.f2, .hero-floating-cards .hero-float-card:last-child  { bottom: 60px; left: -16px; animation-delay: 1.5s; position: relative; }
.hero-float-card .icon { font-size: 1.4rem; width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hero-float-card .icon.green  { background: rgba(34,197,94,0.12); }
.hero-float-card .icon.orange { background: rgba(245,166,35,0.12); }
.hero-float strong { display: block; font-size: 0.82rem; color: var(--dark); font-weight: 700; }
.hero-float span   { font-size: 0.7rem; color: var(--text-muted); }
.hero-float-card strong { display: block; font-size: 0.82rem; color: var(--dark); font-weight: 700; }
.hero-float-card span   { font-size: 0.7rem; color: var(--text-muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Hero floating badge cards */
.hero-float-1, .hero-float-2 {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: float 3.5s ease-in-out infinite;
  min-width: 180px;
}
.hero-float-1 { top: -18px; right: -18px; animation-delay: 0s; }
.hero-float-2 { bottom: 24px; left: -18px; animation-delay: 1.8s; }

@media (max-width: 900px) {
  .hero-grid, .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0 80px;
  }
  /* Show the visual panel below content on mobile — don't hide it */
  .hero-visual {
    display: block;
    width: 100%;
  }
  .hero-panel, .hero-card-main {
    display: block;
  }
  /* hide the absolute floating cards on mobile to avoid overflow */
  .hero-float-1, .hero-float-2 { display: none; }
  .hero { min-height: auto; }
}

/* ============================================================
   AWARD BANNER — Best Education Brands 2026
   ============================================================ */
.award-banner {
  position: relative;
  background: linear-gradient(110deg, #7B0000 0%, #B00000 30%, #CC0000 55%, #9A0000 80%, #6A0000 100%);
  overflow: hidden;
  padding: 0;
}
.award-net {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.award-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px 0 40px;
}
.award-text { position: relative; z-index: 2; }
.award-logo { margin-bottom: 14px; }
.award-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,215,0,0.18);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.award-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.award-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 22px;
}
.award-sub strong { color: #FFD700; }
.award-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t);
  backdrop-filter: blur(8px);
}
.award-cta:hover {
  background: rgba(255,255,255,0.22);
  transform: translateX(3px);
}
/* Right visual area */
.award-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  z-index: 2;
  padding: 10px 0;
}
.trophy-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.trophy-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.trophy-svg { filter: drop-shadow(0 8px 24px rgba(255,180,0,0.4)); }
/* Small award badge card */
.award-badge-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  width: 72px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  align-self: center;
}
.beb-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .award-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 0 32px;
    gap: 24px;
  }
  .award-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .award-visual { justify-content: center; }
  .award-badge-card { display: none; }
  .award-logo { display: flex; justify-content: center; }
  .award-badge-chip { justify-content: center; }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker { overflow: hidden; white-space: nowrap; padding: 14px 0; background: var(--dark); border-top: 2px solid var(--red); }
.ticker-track { display: inline-flex; gap: 0; animation: ticker 35s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 32px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.ticker-item .sep { color: var(--red); font-size: 1rem; margin-right: 24px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   TRUST / STATS STRIP
   ============================================================ */
.trust-bar { background: var(--bg-section); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-bar-inner .label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logos img { height: 28px; filter: grayscale(1); opacity: 0.45; transition: var(--t); }
.trust-logos img:hover { filter: none; opacity: 1; }

.stats-strip { background: white; border-bottom: 1px solid var(--border); }
.stats-strip-inner, .stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-block, .stat-item {
  padding: 28px 24px; text-align: center; border-right: 1px solid var(--border);
}
.stat-block:last-child, .stat-item:last-child { border-right: none; }
.stat-block .n, .stat-item .num {
  font-size: 2.4rem; font-weight: 900; color: var(--red);
  display: block; line-height: 1; margin-bottom: 4px;
}
.stat-block .l { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.stat-item p { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin: 0; }
@media (max-width: 700px) {
  .stats-strip-inner, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-block, .stat-item { border-bottom: 1px solid var(--border); }
}

/* Stats section variant */
.stats-section { background: white; border-bottom: 1px solid var(--border); }

/* Social proof bar */
.social-proof-bar {
  background: rgba(245,166,35,0.07); border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-md); padding: 16px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.sp-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-body); }
.sp-item i { color: var(--gold); }
.sp-divider { width: 1px; height: 28px; background: var(--border); }
@media (max-width: 600px) { .sp-divider { display: none; } }

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.program-card {
  border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border);
  background: white; transition: var(--t); display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,26,34,0.25); }
.program-card-header { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.program-card-header h3 { font-size: 1.15rem; color: var(--dark); font-weight: 700; line-height: 1.3; }
.program-card-header p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.program-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.program-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); background: var(--bg-section); padding: 5px 10px; border-radius: var(--r-sm); }
.program-meta-item i { color: var(--red); font-size: 0.75rem; }
.program-card-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-light);
}
.price strong { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.price span   { display: block; font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   ELEVATE SECTION
   ============================================================ */
.elevate-section { background: #fff; }

/* Stats bar */
.elevate-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  background: var(--dark); border-radius: var(--r-xl); padding: 28px 32px;
  margin: 32px 0 48px; box-shadow: var(--shadow-lg);
}
.elevate-stat {
  display: flex; flex-direction: column; align-items: center; padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.elevate-stat:last-child { border-right: none; }
.elevate-stat-n { font-size: 2.4rem; font-weight: 900; color: #E31E24; line-height: 1; }
.elevate-stat-l { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* 3-certificate highlight */
.cert-highlight {
  background: linear-gradient(135deg, #fef9f0, #fff5f5);
  border: 1px solid #fde8d0; border-radius: var(--r-xl);
  padding: 24px 32px; margin-bottom: 48px;
}
.cert-highlight-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.cert-item { display: flex; align-items: center; gap: 14px; }
.cert-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem;
}
.cert-item div strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.cert-item div span { font-size: 0.78rem; color: var(--text-muted); }
.cert-divider { width: 1px; height: 48px; background: #e0c9a0; flex-shrink: 0; }

/* Elevate track cards grid */
.elevate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.elevate-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
  transition: var(--t); box-shadow: var(--shadow-xs); position: relative; overflow: hidden;
}
.elevate-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #E31E24, #ff6b35);
}
.elevate-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(227,30,36,0.25); }
.elevate-card-featured {
  grid-column: span 3;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 32px; align-items: start;
  background: linear-gradient(135deg, #fff8f8, #fff);
  border-color: rgba(227,30,36,0.3);
}
.elevate-card-featured::before { background: linear-gradient(90deg, #E31E24, #ff6b35, #E31E24); }
.elevate-card-featured h3 { grid-column: span 2; }
.elevate-card-featured .elevate-card-footer { grid-column: span 2; }

.elevate-card-top { display: flex; align-items: center; gap: 12px; }
.track-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.track-num { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }
.elevate-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin: 0; line-height: 1.3; }
.elevate-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.track-becomes { font-size: 0.8rem; color: var(--dark); background: var(--bg-section); padding: 7px 12px; border-radius: 8px; }
.track-becomes i { color: var(--red); margin-right: 4px; }
.track-roles { display: flex; flex-wrap: wrap; gap: 6px; }
.track-roles span { font-size: 0.72rem; background: #eef2ff; color: #4338ca; padding: 3px 9px; border-radius: 20px; font-weight: 600; }
.track-salary {
  display: flex; align-items: center; gap: 12px;
  background: #f0fdf4; border-radius: 10px; padding: 10px 14px;
}
.salary-before, .salary-after { display: flex; flex-direction: column; gap: 2px; }
.salary-before span, .salary-after span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.salary-before strong { font-size: 0.9rem; font-weight: 700; color: #6b7280; }
.salary-after strong  { font-size: 1rem; font-weight: 800; color: #16a34a; }
.salary-arrow { color: #E31E24; font-size: 0.85rem; flex-shrink: 0; }
.track-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.track-meta span { font-size: 0.74rem; color: var(--text-muted); background: var(--bg-section); padding: 4px 10px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 4px; }
.track-meta span i { color: var(--red); font-size: 0.7rem; }
.elevate-card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.elevate-price strong { font-size: 1.1rem; font-weight: 800; color: var(--dark); display: block; }
.elevate-price span { font-size: 0.72rem; color: var(--text-muted); }

/* ── Track Cert Logos Strip (bigger, pill cards) ── */
.track-cert-logos {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 12px 0 4px; border-top: 1px dashed var(--border);
}
.track-cert-logos .cert-label {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-light); font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.track-cert-logos .cert-pill {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid #e8e8e8; border-radius: 8px;
  padding: 6px 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.track-cert-logos .cert-pill:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); border-color: #ccc; transform: translateY(-1px);
}
.track-cert-logos .cert-pill img {
  height: 28px; width: auto; object-fit: contain; display: block;
}

/* ── "Taught by Leaders From" Marquee Section ── */
.leaders-section {
  background: var(--dark-3); padding: 64px 0; overflow: hidden;
}
.leaders-section .section-header { margin-bottom: 40px; }
.leaders-section .section-header .eyebrow { color: rgba(255,255,255,0.5); }
.leaders-section .section-header h2 { color: #fff; font-size: 2rem; }
.leaders-section .section-header p { color: rgba(255,255,255,0.55); }

.marquee-wrapper {
  position: relative; overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-logo-box {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 18px 32px; margin: 0 12px;
  min-width: 140px; height: 80px;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.marquee-logo-box:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25);
}
.marquee-logo-box img {
  height: 36px; max-width: 110px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.75;
  transition: opacity 0.2s;
}
.marquee-logo-box:hover img { opacity: 1; }
.marquee-logo-box .logo-name {
  color: rgba(255,255,255,0.75); font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.3px; white-space: nowrap;
}

/* Stats strip below marquee */
.leaders-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; margin-top: 48px; flex-wrap: wrap;
}
.leaders-stat { text-align: center; }
.leaders-stat strong {
  display: block; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1;
}
.leaders-stat span {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; display: block;
}

/* Why 7 Tracks */
.why-tracks {
  background: var(--dark); border-radius: var(--r-xl); padding: 40px 48px;
  color: white; margin-bottom: 28px;
}
.why-tracks h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.why-tracks h3 i { color: #FFD700; margin-right: 8px; }
.why-tracks > p { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 0.9rem; }
.why-tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 16px;
}
.why-item i { color: #E31E24; font-size: 1rem; flex-shrink: 0; }
.why-item span { font-size: 0.84rem; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* AI Layer Banner */
.ai-layer-banner {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--r-xl); padding: 32px 40px; margin-bottom: 28px;
  border: 1px solid rgba(227,30,36,0.3);
}
.ai-layer-icon { font-size: 3rem; flex-shrink: 0; }
.ai-layer-text h4 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.ai-layer-text p { font-size: 0.86rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }
.ai-layer-text strong { color: #E31E24; }

/* Interview Promise */
.interview-promise {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, #fff8f8, #fff5f0);
  border: 1px solid rgba(227,30,36,0.2); border-radius: var(--r-xl);
  padding: 28px 36px; margin-bottom: 0;
}
.promise-icon { width: 52px; height: 52px; background: #E31E24; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; flex-shrink: 0; }
.promise-text { flex: 1; }
.promise-text h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.promise-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.promise-text strong { color: var(--dark); }

/* Responsive Elevate */
@media (max-width: 1024px) {
  .elevate-grid { grid-template-columns: repeat(2, 1fr); }
  .elevate-card-featured { grid-column: span 2; grid-template-columns: 1fr; }
  .elevate-card-featured h3 { grid-column: span 1; }
  .elevate-card-featured .elevate-card-footer { grid-column: span 1; }
  .why-tracks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .elevate-grid { grid-template-columns: 1fr; }
  .elevate-card-featured { grid-column: span 1; }
  .elevate-stats { flex-wrap: wrap; gap: 16px; }
  .elevate-stat { border-right: none; padding: 0 16px; }
  .why-tracks-grid { grid-template-columns: 1fr; }
  .ai-layer-banner, .interview-promise { flex-direction: column; text-align: center; }
  .cert-highlight-inner { flex-direction: column; }
  .cert-divider { width: 80%; height: 1px; }
  .why-tracks { padding: 28px 24px; }
}

/* ============================================================
   COURSE CARDS
   ============================================================ */
.course-card {
  border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border);
  background: white; transition: var(--t); display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,26,34,0.25); }
.course-card-img { height: 180px; overflow: hidden; position: relative; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card:hover .course-card-img img { transform: scale(1.06); }
.course-card-img .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.course-card-img .badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.course-card-img .rating { position: absolute; bottom: 10px; right: 12px; background: rgba(0,0,0,0.7); color: #FFD700; font-size: 0.75rem; font-weight: 700; padding: 4px 8px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 4px; backdrop-filter: blur(4px); }
.course-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.course-category { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--red); margin-bottom: 8px; }
.course-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); font-weight: 700; line-height: 1.35; }
.course-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }
.course-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.course-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); }
.course-meta-item i { color: var(--red); font-size: 0.75rem; }
.course-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--bg-light); }
.course-price strong { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.course-price .original { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }

/* ============================================================
   VALUE / WHY CARDS
   ============================================================ */
.why-card, .value-add-card {
  padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--border);
  background: white; transition: var(--t);
}
.why-card:hover, .value-add-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.value-add-card { text-align: center; }
.feature-icon, .va-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.feature-icon.blue, .va-icon.blue { background: rgba(59,130,246,0.1); color: var(--info); }
.feature-icon.red                 { background: var(--red-subtle); color: var(--red); }
.feature-icon.orange, .va-icon.orange { background: rgba(245,166,35,0.12); color: var(--gold); }
.feature-icon.green, .va-icon.green   { background: rgba(34,197,94,0.1); color: var(--success); }
.feature-icon.purple               { background: rgba(124,58,237,0.1); color: var(--purple); }
.why-card h4 { margin-bottom: 8px; font-size: 0.98rem; font-weight: 700; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.value-add-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.value-add-card p  { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ALUMNI / PARTNER LOGOS
   ============================================================ */
.alumni-logos { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.alumni-logo-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 10px 16px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  transition: var(--t);
}
.alumni-logo-chip:hover { border-color: var(--red); color: var(--red); background: var(--red-subtle); }
.alumni-logo-chip .icon { font-size: 1.1rem; }

.partner-strip { display: flex; align-items: center; gap: 0; overflow: hidden; }
.partners-scroll { display: flex; gap: 48px; animation: scroll-x 22s linear infinite; }
.partners-scroll img { height: 42px; filter: grayscale(1); opacity: 0.45; transition: var(--t); flex-shrink: 0; }
.partners-scroll img:hover { filter: grayscale(0); opacity: 1; }
@keyframes scroll-x { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   OUTCOMES SECTION
   ============================================================ */
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 800px) { .outcomes-grid { grid-template-columns: 1fr; } }

.outcome-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.outcome-list li { display: flex; align-items: flex-start; gap: 14px; }
.outcome-list li .icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--red-subtle); display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px;
}
.outcome-list li strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.outcome-list li span   { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: white; border-radius: var(--r-xl); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; transition: var(--t);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(255,26,34,0.2); }
.testimonial-card .quote-mark {
  position: absolute; top: 20px; right: 24px;
  font-size: 4rem; color: var(--red); opacity: 0.12;
  font-family: Georgia, serif; line-height: 1;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars i { color: #FFD700; font-size: 0.85rem; }
.t-body { font-size: 0.9rem; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar    { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid var(--border); flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.t-avatar-ph { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-red); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.t-name { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.t-role { font-size: 0.75rem; color: var(--text-muted); }

/* Carousel */
.carousel-track { display: flex; gap: 16px; transition: transform 0.4s ease; overflow: hidden; }
.carousel-slide { flex: 0 0 calc(33.33% - 11px); min-width: calc(33.33% - 11px); }
@media (max-width: 900px) { .carousel-slide { flex: 0 0 calc(50% - 8px); min-width: calc(50% - 8px); } }
@media (max-width: 600px) { .carousel-slide { flex: 0 0 100%; min-width: 100%; } }
.carousel-controls { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.carousel-btn, .carousel-prev, .carousel-next {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--white); cursor: pointer; font-size: 1rem; transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover:not(:disabled),
.carousel-prev:hover:not(:disabled),
.carousel-next:hover:not(:disabled) { background: var(--red); color: white; border-color: var(--red); }
.carousel-btn:disabled,
.carousel-prev:disabled,
.carousel-next:disabled { opacity: 0.35; cursor: not-allowed; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; transition: var(--t); }
.faq-item.open { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-subtle); }
.faq-q, .faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.93rem;
  color: var(--dark); gap: 16px; user-select: none; background: white;
}
.faq-q:hover, .faq-question:hover { background: var(--bg-light); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-section); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; color: var(--red); transition: var(--t);
}
.faq-item.open .faq-chevron { background: var(--red); color: white; transform: rotate(180deg); }
.faq-a, .faq-answer { display: none; padding: 16px 22px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--border); background: var(--bg-light); }
.faq-item.open .faq-a,
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-table th { background: var(--dark); color: rgba(255,255,255,0.8); padding: 16px 18px; text-align: left; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-table th.our-col { background: var(--red); color: white; }
.compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 0.86rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg-light); }
.compare-table td.our-col { background: rgba(255,26,34,0.05) !important; font-weight: 600; }
.compare-table .check { color: var(--success); font-size: 1rem; }
.compare-table .cross { color: #DC2626; font-size: 1rem; }

/* ============================================================
   REFERRAL BANNER
   ============================================================ */
.referral-banner {
  background: var(--grad-dark); border-radius: var(--r-2xl);
  padding: 44px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.referral-banner::before {
  content: ''; position: absolute; top: -60%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,26,34,0.15), transparent 70%);
  border-radius: 50%;
}
.referral-banner h3 { color: white; margin-bottom: 8px; font-size: 1.6rem; }
.referral-banner p  { color: rgba(255,255,255,0.7); margin: 0; }
.ref-code-box {
  background: rgba(255,255,255,0.07); border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--r-md); padding: 16px 22px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0; min-width: 240px;
}
.ref-code-box .code { font-size: 1.3rem; font-weight: 900; color: var(--gold); letter-spacing: 3px; font-family: var(--font-mono), monospace; flex: 1; }
.ref-copy-btn { background: rgba(255,255,255,0.15); border: none; color: white; padding: 7px 14px; border-radius: var(--r-sm); cursor: pointer; font-size: 0.8rem; font-weight: 700; transition: var(--t); }
.ref-copy-btn:hover { background: var(--red); }
@media (max-width: 768px) { .referral-banner { flex-direction: column; text-align: center; padding: 32px 24px; } }

/* ============================================================
   ACCREDITATION / AWARD CARDS
   ============================================================ */
.accred-logos { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; margin-top: 32px; }
.accred-badge-card {
  background: white; border: 2px solid var(--border); border-radius: var(--r-lg);
  padding: 14px 22px; font-size: 0.82rem; font-weight: 800;
  color: var(--dark); letter-spacing: 0.5px;
  transition: var(--t); display: flex; align-items: center; gap: 10px;
}
.accred-badge-card:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.accred-badge-card .medal { font-size: 1.5rem; }

.award-card { display: flex; align-items: center; gap: 16px; background: white; border-radius: var(--r-md); padding: 20px; border: 1px solid var(--border); }
.award-card .medal { font-size: 2.2rem; }

/* ============================================================
   EMPLOYERS LOGO GRID
   ============================================================ */
.employers-logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) { .employers-logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .employers-logo-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; } }

.employer-logo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  cursor: default;
}
.employer-logo-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.employer-logo-card img {
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--t);
}
.employer-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.employer-logo-card span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.3px;
}
.employers-text-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}
.employers-text-row span {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--t);
}
.employers-text-row span:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-subtle);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark-3); color: rgba(255,255,255,0.65); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.75; margin: 14px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  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); font-size: 0.85rem; transition: var(--t);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h5 { color: white; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.86rem; transition: var(--t); display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--red-light); padding-left: 4px; }
.footer-accred { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-accred-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.accred-badge {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65); padding: 7px 16px; border-radius: var(--r-sm);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
}
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 0.9rem; color: var(--dark);
  background: white; transition: var(--t); font-family: var(--font);
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-subtle); }
.form-control::placeholder { color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--t); backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white; border-radius: var(--r-2xl); padding: 40px;
  max-width: 500px; width: 100%; position: relative;
  transform: scale(0.95); transition: var(--t); max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-section); border: none; cursor: pointer;
  font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.modal-close:hover { background: var(--red); color: white; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 90px; right: 24px;
  background: var(--dark); color: white; padding: 14px 20px;
  border-radius: var(--r-md); font-size: 0.88rem;
  box-shadow: var(--shadow-xl); z-index: 4000;
  transform: translateY(20px); opacity: 0; transition: var(--t);
  display: flex; align-items: center; gap: 10px; max-width: 320px;
  border-left: 4px solid var(--red);
}
.toast.show    { transform: translateY(0); opacity: 1; }
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: #DC2626; }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.sticky-wa {
  width: 52px; height: 52px; border-radius: 50%; background: #25D366;
  border: none; color: white; font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center; transition: var(--t); text-decoration: none;
}
.sticky-wa:hover { transform: scale(1.1); color: white; }
.sticky-enroll {
  background: var(--grad-red); color: white; padding: 12px 20px;
  border-radius: var(--r-full); font-weight: 700; font-size: 0.86rem;
  box-shadow: var(--shadow-red); display: flex; align-items: center; gap: 8px;
  transition: var(--t); text-decoration: none; border: none; cursor: pointer;
}
.sticky-enroll:hover { transform: translateY(-2px); color: white; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark-2); color: rgba(255,255,255,0.8);
  padding: 14px 24px; display: flex; align-items: center; gap: 16px;
  z-index: 1500; font-size: 0.84rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-bar.hidden { display: none; }
.cookie-bar a { color: var(--red-light); }
.cookie-actions { display: flex; gap: 10px; margin-left: auto; flex-shrink: 0; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav { display: flex; gap: 4px; background: var(--bg-section); padding: 5px; border-radius: var(--r-md); width: fit-content; overflow-x: auto; }
.tab-btn { padding: 9px 20px; border-radius: var(--r-sm); font-size: 0.86rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--text-muted); transition: var(--t); white-space: nowrap; }
.tab-btn.active { background: white; color: var(--red); box-shadow: var(--shadow-xs); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   TRUSTPILOT BAR
   ============================================================ */
.trustpilot-bar { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px 20px; display: inline-flex; align-items: center; gap: 12px; box-shadow: var(--shadow-xs); }
.tp-stars { display: flex; gap: 2px; }
.tp-stars i { color: #00b67a; font-size: 0.9rem; }
.tp-score { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.tp-label { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar  { height: 6px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--grad-red); border-radius: 100px; transition: width 1.2s ease; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MISC HELPERS
   ============================================================ */
.bg-section      { background: var(--bg-section); }
.bg-dark-section { background: var(--dark-3); }
.bg-red-section  { background: var(--red); }
.text-red    { color: var(--red); }
.text-white  { color: white; }
.text-muted  { color: var(--text-muted); }
.text-dark   { color: var(--dark); }
.fw-900      { font-weight: 900; }
.fw-700      { font-weight: 700; }
.divider     { height: 1px; background: var(--border); margin: 32px 0; }
.rounded-img { border-radius: var(--r-xl); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }

/* Inner page hero (non-home pages) */
.page-hero {
  background: var(--grad-hero); padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--bg-white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,26,34,0.18); border: 1px solid rgba(255,26,34,0.35); border-radius: var(--r-full); padding: 7px 16px; font-size: 0.78rem; font-weight: 700; color: #FF8A8E; letter-spacing: 0.5px; margin-bottom: 16px; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--t); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* Step Process */
.step-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-red); color: white; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; box-shadow: var(--shadow-red); }
.step-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--red), var(--border)); margin: 4px 0 4px 23px; }

/* Info boxes */
.info-box { background: var(--red-subtle); border: 1px solid rgba(255,26,34,0.2); border-radius: var(--r-md); padding: 18px 22px; }
.info-box.gold { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.25); }
.info-box.green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); }

/* Dark card */
.dark-card { background: var(--dark); color: white; border-radius: var(--r-xl); padding: 28px; }
.dark-card h3, .dark-card h4 { color: white; }
.dark-card p { color: rgba(255,255,255,0.7); }
