/* Nexus SLS — marketing pages design system (forked from nexus-uw home.css). */

/* =============================================
   GLOBAL RESET & VARIABLES
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sls-blue: #7A31F7;
  --sls-blue-dark: #1A0E3A;
  --sls-blue-light: #9B4DFB;
  --sls-gold: #E91E63;
  --sls-gold-light: #FBCFE8;
  --sls-white: #ffffff;
  --sls-off-white: #F9F9F9;
  --sls-gray-50: #F9F9F9;
  --sls-gray-100: #E5E7EB;
  --sls-gray-200: #c5ccd9;
  --sls-gray-500: #6B7280;
  --sls-gray-700: #374151;
  --sls-gray-900: #1A1A1A;
  --sls-green: #10B981;
  --sls-green-light: #e8f5e9;
  --sls-teal: #0097a7;
  --sls-purple: #5c3d8f;
  --sls-orange: #e65100;
  --sls-shadow-sm: 0 1px 3px rgba(122, 49, 247,0.08);
  --sls-shadow-md: 0 4px 16px rgba(122, 49, 247,0.10);
  --sls-shadow-lg: 0 8px 32px rgba(122, 49, 247,0.12);
  --sls-shadow-xl: 0 16px 48px rgba(122, 49, 247,0.15);
  --sls-radius: 12px;
  --sls-radius-lg: 20px;
  --sls-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
  color: var(--sls-gray-900);
  background: var(--sls-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Accessibility — these self-contained pages don't load the site-wide nexus.css
   layer, so they carry their own visible-focus + reduced-motion rules. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--sls-blue);
  outline-offset: 2px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =============================================
   TOP BAR (211 bar)
   ============================================= */
.top-bar {
  background: var(--sls-blue-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.85); transition: color var(--sls-transition); }
.top-bar a:hover { color: var(--sls-gold); }
.top-bar .dial-211 { font-weight: 600; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: var(--sls-white);
  border-bottom: 1px solid var(--sls-gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--sls-shadow-sm);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo-group { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-group img { height: 42px; width: auto; }
.logo-group .logo-text { font-size: 1.15rem; font-weight: 700; color: var(--sls-blue); letter-spacing: -0.01em; }
.main-nav { display: flex; align-items: center; gap: 28px; flex-wrap: nowrap; }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--sls-gray-700); transition: color var(--sls-transition); position: relative; white-space: nowrap; }
.main-nav a:hover { color: var(--sls-blue); }
.main-nav a.active { color: var(--sls-blue); font-weight: 600; }
.main-nav a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--sls-gold); border-radius: 1px; }
.btn-login { background: var(--sls-blue); color: var(--sls-white) !important; padding: 9px 22px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; transition: all var(--sls-transition); white-space: nowrap; }
.btn-login:hover { background: var(--sls-blue-light); transform: translateY(-1px); box-shadow: var(--sls-shadow-md); }
.btn-enroll-nav { background: var(--sls-gold); color: var(--sls-blue-dark) !important; padding: 9px 22px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; transition: all var(--sls-transition); }
.btn-enroll-nav:hover { background: var(--sls-gold-light); transform: translateY(-1px); box-shadow: var(--sls-shadow-md); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--sls-gray-700); margin: 5px 0; border-radius: 1px; }

/* =============================================
   CONTAINER
   ============================================= */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HOME HERO (.hero)
   ============================================= */
.hero {
  background: linear-gradient(135deg, rgba(15,40,71,0.9) 0%, rgba(26, 14, 58,0.93) 60%, rgba(10,20,40,0.96) 100%),
              url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(242,169,0,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -8%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); border-radius: 50%; }

.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-text .kicker { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sls-gold); margin-bottom: 16px; }
.hero-text h1 { font-family: 'Inter', sans-serif; font-size: clamp(2rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.025em; color: var(--sls-gray-50); }
.hero-text p { font-size: 1.08rem; opacity: 0.82; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--sls-gold); color: var(--sls-blue-dark); font-weight: 700; font-size: 1rem; padding: 15px 34px; border-radius: 10px; transition: all var(--sls-transition); box-shadow: 0 4px 16px rgba(242,169,0,0.3); }
.btn-primary:hover { background: var(--sls-gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(242,169,0,0.4); }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.3); color: var(--sls-white); font-weight: 600; font-size: 0.95rem;
  padding: 12px 28px; border-radius: 10px; transition: all var(--sls-transition);
}
.btn-outline:hover { border-color: var(--sls-white); background: rgba(255,255,255,0.08); }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 28px; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; line-height: 1; opacity: 0.65; white-space: nowrap; }
.hero-meta-item svg { flex-shrink: 0; display: block; }

/* Hero right — stats card */
.hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sls-radius-lg); padding: 32px 28px;
}
.hero-card .partners-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sls-gold); margin-bottom: 6px; }
.hero-card .partners-names { font-size: 0.95rem; font-weight: 700; margin-bottom: 24px; opacity: 0.9; }
.hero-card .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--sls-radius);
  padding: 18px 16px; text-align: center;
}
.hero-stat-box .num { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 800; display: block; line-height: 1.1; }
.hero-stat-box .label { font-size: 0.75rem; opacity: 0.55; margin-top: 4px; }
.hero-stat-box.gold .num { color: var(--sls-gold); }

/* Employers hero stats sidebar */
.hero-stats-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sls-radius-lg);
  padding: 36px 32px;
}
.hero-stats-card h3 { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sls-gold); margin-bottom: 28px; }
.stat-row { display: flex; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-row:last-child { border-bottom: none; }
.stat-num { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; color: var(--sls-white); }
.stat-label { font-size: 0.88rem; opacity: 0.6; }

/* =============================================
   PAGE HERO (.page-hero) — shared sub-elements
   ============================================= */
.page-hero::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(242,169,0,0.08) 0%, transparent 70%); border-radius: 50%; }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sls-gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--sls-gray-50);
}

/* Pathways page hero stats row */
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 36px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800; color: var(--sls-gold); display: block; line-height: 1.1; }
.hero-stat .label { font-size: 0.78rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* GIS hero certificate status card */
.cert-status-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sls-radius-lg); padding: 32px 28px; text-align: center;
}
.cert-status-card .status-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sls-gold); margin-bottom: 8px; }
.cert-status-card .status-value { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; opacity: 0.9; }
.cert-progress { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.cert-progress-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; opacity: 0.75; }
.cert-progress-item .circle { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.cert-progress-item .circle.complete { background: var(--sls-green); border-color: var(--sls-green); }
.cert-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0; }
.cert-status-card .free-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--sls-green); margin-top: 16px; }
.cert-status-card .free-badge svg { flex-shrink: 0; }

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 80px 0; }
.section-kicker { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sls-blue-light); margin-bottom: 12px; }
.section-title { font-family: 'Inter', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--sls-blue-dark); margin-bottom: 14px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.05rem; color: var(--sls-gray-500); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }
.bg-alt { background: var(--sls-off-white); }

/* =============================================
   3 PILLARS (Home)
   ============================================= */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--sls-white); border-radius: var(--sls-radius-lg); padding: 36px 28px; border: 1px solid var(--sls-gray-100);
  box-shadow: var(--sls-shadow-sm); transition: all var(--sls-transition); text-align: center;
}
.pillar-card:hover { box-shadow: var(--sls-shadow-lg); transform: translateY(-4px); border-color: var(--sls-gold); }
.pillar-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px; }
.pi-blue { background: rgba(122, 49, 247,0.08); }
.pi-gold { background: rgba(242,169,0,0.1); }
.pi-green { background: rgba(15,157,88,0.08); }
.pillar-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--sls-blue-dark); margin-bottom: 8px; }
.pillar-card p { font-size: 0.9rem; color: var(--sls-gray-500); line-height: 1.65; }

/* =============================================
   PATHWAYS GRID (Home)
   ============================================= */
/* Force the clean 2-up grid. The marketing markup is now rendered through the
   theme (not the old isolated Blank Slate doc), so we harden these against any
   layout the parent theme's global styles impose on the raw cards. */
.pathways-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 1fr; gap: 24px; align-items: stretch; }
.pathways-grid > .pathway-card { width: auto !important; min-width: 0; max-width: none !important; margin: 0 !important; float: none !important; position: relative; height: 100%; }
@media (max-width: 640px) { .pathways-grid { grid-template-columns: 1fr !important; } }
.pathway-card {
  position: relative; border-radius: var(--sls-radius-lg); overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: var(--sls-white);
  transition: all var(--sls-transition); cursor: pointer;
}
.pathway-card::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.pathway-card > * { position: relative; z-index: 2; }
.pathway-card:hover { transform: translateY(-4px); box-shadow: var(--sls-shadow-xl); }

.pw-ai { background: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=700&q=80') center/cover no-repeat; }
.pw-ai::before { background: linear-gradient(to top, rgba(26, 14, 58,0.97) 0%, rgba(122, 49, 247,0.5) 60%, rgba(122, 49, 247,0.35) 100%); }
.pw-health { background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=700&q=80') center/cover no-repeat; }
.pw-health::before { background: linear-gradient(to top, rgba(6,77,42,0.97) 0%, rgba(15,157,88,0.5) 60%, rgba(15,157,88,0.3) 100%); }
.pw-geo { background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=700&q=80') center/cover no-repeat; }
.pw-geo::before { background: linear-gradient(to top, rgba(15,40,71,0.97) 0%, rgba(42,82,152,0.5) 60%, rgba(42,82,152,0.3) 100%); }
.pw-trades { background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=700&q=80') center/cover no-repeat; }
.pw-trades::before { background: linear-gradient(to top, rgba(40,30,10,0.97) 0%, rgba(120,80,20,0.5) 60%, rgba(120,80,20,0.3) 100%); }

.pathway-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 6px; margin-bottom: 10px; width: fit-content; color: #ffffff;}
.pathway-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sls-gold); }
.pathway-card h4 { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; color: #ffffff;}
.pathway-card p { font-size: 0.85rem; opacity: 0.75; color: #ffffff; line-height: 1.6; margin-bottom: 12px; }
.pathway-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--sls-gold); transition: gap var(--sls-transition); }
.pathway-card:hover .pathway-link { gap: 10px; }

.pathways-cta { text-align: center; margin-top: 36px; }
.btn-outline-dark { display: inline-block; border: 2px solid var(--sls-blue); color: var(--sls-blue); font-weight: 700; font-size: 0.92rem; padding: 12px 30px; border-radius: 10px; transition: all var(--sls-transition); }
.btn-outline-dark:hover { background: var(--sls-blue); color: var(--sls-white); }

/* =============================================
   EMPLOYERS SECTION (Home)
   ============================================= */
.employers-section {
  background: linear-gradient(135deg, rgba(15,40,71,0.92) 0%, rgba(26, 14, 58,0.95) 100%),
              url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
}
.employers-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.employers-text .section-kicker { color: var(--sls-gold); }
.employers-text .section-title { color: var(--sls-white); }
.employers-text p { font-size: 1.02rem; opacity: 0.78; line-height: 1.7; margin-bottom: 24px; }
.emp-check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.emp-check { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; opacity: 0.9; }
.emp-check svg { flex-shrink: 0; margin-top: 3px; }
.btn-gold-outline { display: inline-block; border: 2px solid var(--sls-gold); color: var(--sls-gold); font-weight: 700; font-size: 0.92rem; padding: 12px 30px; border-radius: 10px; transition: all var(--sls-transition); }
.btn-gold-outline:hover { background: var(--sls-gold); color: var(--sls-blue-dark); }

/* Impact dashboard card (Home) */
.impact-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sls-radius-lg); padding: 32px 28px;
}
.impact-card .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.impact-card .card-header h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; }
.impact-card .live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sls-green); }
.impact-card .live-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--sls-green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.impact-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--sls-radius);
  padding: 20px 16px; text-align: center;
}
.impact-stat .num { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 800; display: block; line-height: 1.1; }
.impact-stat .num.gold { color: var(--sls-gold); }
.impact-stat .label { font-size: 0.75rem; opacity: 0.55; margin-top: 4px; }
.impact-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.impact-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--sls-gold), var(--sls-green)); width: 72%; }

/* =============================================
   SIGNUP / CTA SECTION (Home)
   ============================================= */
.signup-section { background: var(--sls-off-white); }
.signup-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.signup-text h2 { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--sls-blue-dark); margin-bottom: 14px; letter-spacing: -0.02em; }
.signup-text p { font-size: 1rem; color: var(--sls-gray-500); line-height: 1.7; margin-bottom: 28px; }
.trust-badges { display: flex; flex-direction: column; gap: 14px; }
.trust-badge { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; color: var(--sls-gray-700); }
.trust-badge svg { flex-shrink: 0; }

/* =============================================
   FORM CARD (Home + Employers)
   ============================================= */
.form-card {
  background: var(--sls-white); border-radius: var(--sls-radius-lg); padding: 36px 32px;
  box-shadow: var(--sls-shadow-md); border: 1px solid var(--sls-gray-100);
}
.form-card h3 { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--sls-blue-dark); margin-bottom: 6px; }
.form-card .form-sub { font-size: 0.85rem; color: var(--sls-gray-500); margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--sls-gray-700); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--sls-gray-200); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--sls-gray-900);
  transition: border-color var(--sls-transition); background: var(--sls-white);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--sls-blue); box-shadow: 0 0 0 3px rgba(122, 49, 247,0.08); }
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; padding: 14px; border: none; border-radius: 10px; background: var(--sls-blue);
  color: var(--sls-white); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all var(--sls-transition); margin-top: 4px;
}
.btn-submit:hover { background: var(--sls-blue-light); transform: translateY(-1px); box-shadow: var(--sls-shadow-md); }
.form-footer { text-align: center; font-size: 0.75rem; color: var(--sls-gray-500); margin-top: 14px; }

/* =============================================
   STEP FLOW (How It Works)
   ============================================= */
.steps-section { background: var(--sls-off-white); }

.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
/* Vertical connecting line */
.step-flow::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, var(--sls-gold), var(--sls-blue-light), var(--sls-green));
  border-radius: 2px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}
.step-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sls-white);
  position: relative;
  z-index: 2;
  box-shadow: var(--sls-shadow-md);
}
.step-item:nth-child(1) .step-number { background: var(--sls-gold); color: var(--sls-blue-dark); }
.step-item:nth-child(2) .step-number { background: var(--sls-blue); }
.step-item:nth-child(3) .step-number { background: var(--sls-blue-light); }
.step-item:nth-child(4) .step-number { background: var(--sls-blue-dark); }
.step-item:nth-child(5) .step-number { background: var(--sls-green); }

.step-content {
  background: var(--sls-white);
  border-radius: var(--sls-radius);
  padding: 28px 32px;
  box-shadow: var(--sls-shadow-sm);
  flex: 1;
  border: 1px solid var(--sls-gray-100);
  transition: all var(--sls-transition);
}
.step-content:hover {
  box-shadow: var(--sls-shadow-md);
  transform: translateY(-2px);
}
.step-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sls-blue-dark);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--sls-gray-500);
  line-height: 1.7;
}
.step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.tag-instant { background: rgba(242,169,0,0.12); color: #b07800; }
.tag-explore { background: rgba(42,82,152,0.1); color: var(--sls-blue-light); }
.tag-learn { background: rgba(122, 49, 247,0.1); color: var(--sls-blue); }
.tag-earn { background: rgba(15,40,71,0.1); color: var(--sls-blue-dark); }
.tag-career { background: rgba(15,157,88,0.1); color: var(--sls-green); }

/* =============================================
   WHAT YOU GET — FEATURES GRID (How It Works)
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--sls-white);
  border-radius: var(--sls-radius);
  padding: 32px 28px;
  border: 1px solid var(--sls-gray-100);
  box-shadow: var(--sls-shadow-sm);
  transition: all var(--sls-transition);
  text-align: center;
}
.feature-card:hover {
  box-shadow: var(--sls-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--sls-gold);
}
.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.fi-blue { background: rgba(122, 49, 247,0.08); }
.fi-gold { background: rgba(242,169,0,0.1); }
.fi-green { background: rgba(15,157,88,0.08); }
.feature-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--sls-blue-dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--sls-gray-500);
  line-height: 1.65;
}

/* =============================================
   FAQ ACCORDION (How It Works)
   ============================================= */
.faq-section { background: var(--sls-off-white); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--sls-white);
  border-radius: var(--sls-radius);
  border: 1px solid var(--sls-gray-100);
  overflow: hidden;
  box-shadow: var(--sls-shadow-sm);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sls-blue-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--sls-transition);
}
.faq-q:hover { background: var(--sls-gray-50); }
.faq-q .chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform var(--sls-transition);
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--sls-gray-500);
  line-height: 1.7;
}

/* =============================================
   TRUST BAR (How It Works)
   ============================================= */
.trust-bar {
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--sls-gray-100);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sls-gray-500);
}
.trust-item svg { flex-shrink: 0; }

/* =============================================
   FEATURED PATHWAYS (Pathways)
   ============================================= */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featured-card {
  position: relative;
  border-radius: var(--sls-radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--sls-white);
  transition: all var(--sls-transition);
  cursor: pointer;
}
.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.featured-card > * { position: relative; z-index: 2; }
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--sls-shadow-xl); }

.fc-ai { background: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=800&q=80') center/cover no-repeat; }
.fc-ai::before { background: linear-gradient(to top, rgba(26, 14, 58,0.97) 0%, rgba(122, 49, 247,0.6) 50%, rgba(122, 49, 247,0.4) 100%); }
.fc-health { background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=800&q=80') center/cover no-repeat; }
.fc-health::before { background: linear-gradient(to top, rgba(6,77,42,0.97) 0%, rgba(15,157,88,0.55) 50%, rgba(15,157,88,0.35) 100%); }
.fc-geo { background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=800&q=80') center/cover no-repeat; }
.fc-geo::before { background: linear-gradient(to top, rgba(15,40,71,0.97) 0%, rgba(42,82,152,0.55) 50%, rgba(42,82,152,0.35) 100%); }

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.featured-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sls-gold); }
.featured-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.featured-card p { font-size: 0.88rem; opacity: 0.75; line-height: 1.6; margin-bottom: 16px; }
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sls-gold);
  transition: gap var(--sls-transition);
}
.featured-card:hover .featured-link { gap: 10px; }

/* =============================================
   PATHWAY CLUSTER CARDS (Pathways)
   ============================================= */
.clusters-section { background: var(--sls-off-white); }

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* Make last item span full if odd */
.cluster-grid .cluster-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 558px;
  justify-self: center;
}

.cluster-card {
  background: var(--sls-white);
  border-radius: var(--sls-radius-lg);
  border: 1px solid var(--sls-gray-100);
  overflow: hidden;
  box-shadow: var(--sls-shadow-sm);
  transition: all var(--sls-transition);
}
.cluster-card:hover { box-shadow: var(--sls-shadow-md); }

.cluster-header {
  padding: 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.cluster-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.ci-digital { background: rgba(42,82,152,0.1); }
.ci-health { background: rgba(15,157,88,0.1); }
.ci-mgmt { background: rgba(242,169,0,0.1); }
.ci-finance { background: rgba(92,61,143,0.1); }
.ci-supply { background: rgba(0,151,167,0.1); }

.cluster-meta { flex: 1; }
.cluster-meta h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sls-blue-dark);
  margin-bottom: 4px;
}
.cluster-meta .count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sls-gray-500);
}
.cluster-meta .count strong { color: var(--sls-blue); }
.cluster-desc {
  padding: 0 28px;
  font-size: 0.88rem;
  color: var(--sls-gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Toggle button */
.cluster-toggle {
  width: 100%;
  background: var(--sls-gray-50);
  border: none;
  border-top: 1px solid var(--sls-gray-100);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sls-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--sls-transition);
}
.cluster-toggle:hover { background: var(--sls-gray-100); }
.cluster-toggle svg { transition: transform var(--sls-transition); }
.cluster-card.open .cluster-toggle svg { transform: rotate(180deg); }
.cluster-toggle .toggle-text-show,
.cluster-card.open .cluster-toggle .toggle-text-hide { display: inline; }
.cluster-toggle .toggle-text-hide,
.cluster-card.open .cluster-toggle .toggle-text-show { display: none; }

/* Programs list (hidden by default) */
.cluster-programs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.cluster-card.open .cluster-programs { max-height: 2000px; }

.programs-list {
  padding: 8px 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.program-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--sls-gray-50);
  gap: 12px;
}
.program-item:last-child { border-bottom: none; }
.program-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sls-gray-700);
}
.program-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--sls-green-light);
  color: var(--sls-green);
}

/* =============================================
   VALUE PROPS (Employers)
   ============================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--sls-white);
  border-radius: var(--sls-radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--sls-gray-100);
  box-shadow: var(--sls-shadow-sm);
  transition: all var(--sls-transition);
}
.value-card:hover { box-shadow: var(--sls-shadow-lg); transform: translateY(-4px); border-color: var(--sls-gold); }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.vi-blue { background: rgba(122, 49, 247,0.08); }
.vi-gold { background: rgba(242,169,0,0.1); }
.vi-green { background: rgba(15,157,88,0.08); }
.value-card h4 { font-family: 'Inter', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--sls-blue-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--sls-gray-500); line-height: 1.65; }

/* =============================================
   EMPLOYER PROCESS ROWS (Employers)
   ============================================= */
.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.process-row:last-child { margin-bottom: 0; }
.process-row.reverse .process-visual { order: -1; }
.process-visual {
  border-radius: var(--sls-radius-lg);
  overflow: hidden;
  min-height: 300px;
  position: relative;
}
.process-visual img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 300px; }
.process-text .step-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sls-blue-light); margin-bottom: 14px;
}
.process-text .step-badge .num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--sls-blue); color: var(--sls-white);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800;
}
.process-text h3 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--sls-blue-dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.process-text p { font-size: 0.95rem; color: var(--sls-gray-500); line-height: 1.7; margin-bottom: 16px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--sls-gray-700); }
.check-item svg { flex-shrink: 0; margin-top: 2px; }

/* =============================================
   QUOTE BAND (Employers)
   ============================================= */
.quote-band {
  background: linear-gradient(135deg, rgba(15,40,71,0.92) 0%, rgba(26, 14, 58,0.95) 100%),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
  padding: 72px 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 20px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.quote-band blockquote::before { content: '\201C'; font-size: 3rem; color: var(--sls-gold); display: block; line-height: 1; margin-bottom: 8px; }
.quote-band cite { font-style: normal; font-size: 0.9rem; opacity: 0.6; }

/* =============================================
   PATHWAY CHIPS (Employers)
   ============================================= */
.pathway-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.pathway-chip {
  background: var(--sls-white);
  border: 1px solid var(--sls-gray-100);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sls-blue);
  box-shadow: var(--sls-shadow-sm);
  transition: all var(--sls-transition);
}
.pathway-chip:hover { border-color: var(--sls-gold); box-shadow: var(--sls-shadow-md); transform: translateY(-2px); }
.pathway-chip .count { color: var(--sls-gray-500); font-weight: 400; margin-left: 6px; }

/* =============================================
   PARTNER FORM SECTION (Employers)
   ============================================= */
.partner-section {
  background: var(--sls-off-white);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.partner-info h2 { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--sls-blue-dark); margin-bottom: 16px; letter-spacing: -0.02em; }
.partner-info p { font-size: 1rem; color: var(--sls-gray-500); line-height: 1.7; margin-bottom: 24px; }
.benefit-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--sls-white); padding: 18px 20px; border-radius: var(--sls-radius);
  border: 1px solid var(--sls-gray-100); box-shadow: var(--sls-shadow-sm);
}
.benefit-item .b-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.benefit-item h5 { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--sls-blue-dark); margin-bottom: 2px; }
.benefit-item p { font-size: 0.82rem; color: var(--sls-gray-500); line-height: 1.55; margin: 0; }

/* =============================================
   WORKSHOP CARDS (GIS Programs)
   ============================================= */
.workshops-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.workshop-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--sls-white);
  border-radius: var(--sls-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sls-gray-100);
  box-shadow: var(--sls-shadow-sm);
  transition: all var(--sls-transition);
}
.workshop-card:hover { box-shadow: var(--sls-shadow-lg); transform: translateY(-3px); }

.workshop-img {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.workshop-img img { width: 100%; height: 100%; object-fit: cover; }
.workshop-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sls-blue);
  color: var(--sls-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sls-shadow-md);
}

.workshop-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workshop-body .ws-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sls-blue-light);
  margin-bottom: 8px;
}
.workshop-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sls-blue-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.workshop-body p {
  font-size: 0.92rem;
  color: var(--sls-gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}
.ws-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sls-blue);
  transition: all var(--sls-transition);
}
.ws-link:hover { color: var(--sls-gold); gap: 10px; }
.ws-link svg { transition: transform var(--sls-transition); }
.ws-link:hover svg { transform: translateX(3px); }

/* =============================================
   AUTHOR SECTION (GIS Programs)
   ============================================= */
.author-section {
  background: linear-gradient(135deg, rgba(15,40,71,0.93) 0%, rgba(26, 14, 58,0.96) 100%),
              url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
}
.author-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}
.author-photo {
  width: 240px; height: 240px;
  border-radius: var(--sls-radius-lg);
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.12);
  box-shadow: var(--sls-shadow-xl);
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-text .section-kicker { color: var(--sls-gold); }
.author-text h2 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 500; opacity: 0.6; margin-bottom: 4px; }
.author-text h3 { font-family: 'Inter', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.01em; }
.author-text p { font-size: 0.95rem; opacity: 0.78; line-height: 1.75; margin-bottom: 20px; }
.author-text em { font-style: italic; }
.wiley-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sls-gold);
  transition: gap var(--sls-transition);
}
.wiley-link:hover { gap: 12px; }

/* =============================================
   CTA BANNER (shared) + CTA INNER (GIS)
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--sls-blue) 0%, var(--sls-blue-dark) 100%);
  color: var(--sls-white);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,169,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--sls-white);
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  display: inline-block;
  background: var(--sls-gold);
  color: var(--sls-blue-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 10px;
  transition: all var(--sls-transition);
  box-shadow: 0 4px 16px rgba(242,169,0,0.3);
}
.btn-cta:hover { background: var(--sls-gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(242,169,0,0.4); }

/* GIS CTA inner card */
.cta-inner {
  background: linear-gradient(135deg, var(--sls-blue) 0%, var(--sls-blue-dark) 100%);
  color: var(--sls-white);
  border-radius: var(--sls-radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before { content: ''; position: absolute; top: -50%; right: -15%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(242,169,0,0.1) 0%, transparent 70%); border-radius: 50%; }
.cta-inner h2 { font-family: 'Inter', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; position: relative; z-index: 2; }
.cta-inner p { font-size: 1rem; opacity: 0.78; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-cta-outline { display: inline-block; border: 2px solid rgba(255,255,255,0.3); color: var(--sls-white); font-weight: 600; font-size: 0.95rem; padding: 12px 28px; border-radius: 10px; transition: all var(--sls-transition); }
.btn-cta-outline:hover { border-color: var(--sls-white); background: rgba(255,255,255,0.08); }
.cta-footer { margin-top: 18px; font-size: 0.78rem; opacity: 0.45; position: relative; z-index: 2; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--sls-blue-dark); color: rgba(255,255,255,0.65); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer-col h5 { color: var(--sls-white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.85rem; padding: 4px 0; transition: color var(--sls-transition); }
.footer-col a:hover { color: var(--sls-gold); }
.footer-col .dial-link { color: var(--sls-gold); font-weight: 700; font-size: 1.1rem; margin-top: 4px; }
.footer-col .avail { font-size: 0.78rem; opacity: 0.5; margin-top: 2px; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.78rem; opacity: 0.45; }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
/* Entrance animation runs on load (animation-fill-mode: both) so cards are
   NEVER left blank if the IntersectionObserver script doesn't fire. The JS
   `.visible` class is now a harmless no-op; reduced-motion shortens it to ~0ms
   (see the a11y block near the top) so content still appears instantly. */
.fade-up { animation: uw-fade-up 0.6s ease both; }
.fade-up.visible { opacity: 1; transform: none; }
@keyframes uw-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   RESPONSIVE — shared
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
  .hero-stats-card { max-width: 420px; }
  .cert-status-card { max-width: 380px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .employers-inner { grid-template-columns: 1fr; }
  .signup-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .cluster-grid { grid-template-columns: 1fr; }
  .cluster-grid .cluster-card:last-child:nth-child(odd) { max-width: none; }
  .hero-stats { gap: 28px; }
  .value-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 28px; }
  .process-row.reverse .process-visual { order: 0; }
  .partner-grid { grid-template-columns: 1fr; }
  .workshop-card { grid-template-columns: 1fr; }
  .workshop-img { min-height: 180px; max-height: 220px; }
  .author-inner { grid-template-columns: 1fr; text-align: center; }
  .author-photo { margin: 0 auto; width: 180px; height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Collapse the primary nav into the hamburger from tablet width down. */
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sls-white); padding: 14px 24px 20px;
    box-shadow: var(--sls-shadow-lg); gap: 4px; z-index: 200;
    border-top: 1px solid var(--sls-gray-100);
  }
  .main-nav.open a { padding: 12px 2px; font-size: 1rem; }
  .main-nav.open a:not(.btn-login):not(.btn-enroll-nav) { border-bottom: 1px solid var(--sls-gray-50); }
  .main-nav.open a.active::after { display: none; }
  .main-nav.open .btn-login,
  .main-nav.open .btn-enroll-nav { display: block; text-align: center; margin-top: 12px; padding: 14px 22px; font-size: 0.95rem; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0 64px; }
  .page-hero { padding: 56px 0 64px; }
  .form-row-half { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; gap: 14px; }
  .step-flow::before { left: 20px; }
  .step-number { width: 40px; height: 40px; font-size: 1rem; }
  .step-content { padding: 20px; }
  .trust-items { gap: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .featured-card { min-height: 260px; }
  .pathway-chips { gap: 8px; }
  .pathway-chip { padding: 8px 16px; font-size: 0.82rem; }
  .workshop-body { padding: 22px 20px; }
  .cta-inner { padding: 40px 24px; }
}

/* =============================================
   PER-PAGE OVERRIDES (scoped conflicts)
   Rules whose declarations genuinely diverge between pages are scoped
   under each WordPress body.page-id-{N} class below. See report for list.
   ============================================= */

/* --- :root --sls-red (637 = #d93025, 639 = #DC2626) --- */
body.page-id-637 { --sls-red: #d93025; }
body.page-id-639 { --sls-red: #DC2626; }

/* --- .section-subtitle max-width (global 600px; 637 = 560px, 16 = 680px) --- */
body.page-id-637 .section-subtitle { font-size: 1.05rem; color: var(--sls-gray-500); max-width: 560px; line-height: 1.7; }
body.page-id-16 .section-subtitle { font-size: 1.05rem; color: var(--sls-gray-500); max-width: 680px; line-height: 1.7; }

/* --- .nav-toggle span transition (637 & 639 add a transition) --- */
body.page-id-637 .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--sls-gray-700); margin: 5px 0; border-radius: 1px; transition: var(--sls-transition); }
body.page-id-639 .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--sls-gray-700); margin: 5px 0; border-radius: 1px; transition: var(--sls-transition); }

/* --- .page-hero base (every page that uses it diverges) --- */
body.page-id-637 .page-hero {
  background: linear-gradient(135deg, var(--sls-blue) 0%, var(--sls-blue-dark) 60%, #0a1e3d 100%);
  color: var(--sls-white);
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.page-id-639 .page-hero {
  background: linear-gradient(135deg, rgba(15,40,71,0.88) 0%, rgba(26, 14, 58,0.92) 60%, rgba(10,20,40,0.95) 100%),
              url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.page-id-642 .page-hero {
  background: linear-gradient(135deg, rgba(15,40,71,0.9) 0%, rgba(26, 14, 58,0.93) 60%, rgba(10,20,40,0.96) 100%),
              url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
body.page-id-16 .page-hero {
  background: linear-gradient(135deg, rgba(15,40,71,0.9) 0%, rgba(26, 14, 58,0.93) 60%, rgba(10,20,40,0.96) 100%),
              url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80') center/cover no-repeat;
  color: var(--sls-white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

/* --- .page-hero p max-width (637 = 620px, 639 = 640px) --- */
body.page-id-637 .page-hero p { font-size: 1.12rem; max-width: 620px; margin: 0 auto; opacity: 0.85; line-height: 1.7; }
body.page-id-639 .page-hero p { font-size: 1.12rem; max-width: 640px; margin: 0 auto; opacity: 0.85; line-height: 1.7; }

/* --- .hero-inner (5 & 16 share base above; 642 has different ratio, no z-index) --- */
body.page-id-642 .hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }

/* --- .hero-text h1 (each page diverges) --- */
body.page-id-5 .hero-text h1 { font-family: 'Inter', sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.025em; }
body.page-id-642 .hero-text h1 { font-family: 'Inter', sans-serif; font-size: clamp(2rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.02em; }
/* (page-id-16 matches the global .hero-text h1) */

/* --- .hero-text p (5 uses 1.1rem vs global 1.08rem) --- */
body.page-id-5 .hero-text p { font-size: 1.1rem; opacity: 0.82; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }

/* --- .hero-actions (5 adds align-items: center) --- */
body.page-id-5 .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* --- .btn-primary (642 uses smaller size/padding vs global) --- */
body.page-id-642 .btn-primary { display: inline-block; background: var(--sls-gold); color: var(--sls-blue-dark); font-weight: 700; font-size: 0.95rem; padding: 14px 32px; border-radius: 10px; transition: all var(--sls-transition); box-shadow: 0 4px 16px rgba(242,169,0,0.3); }

/* --- .cta-banner (16 is a light wrapper, not the gradient banner) --- */
body.page-id-16 .cta-banner { background: var(--sls-off-white); text-align: center; color: var(--sls-gray-900); }
body.page-id-16 .cta-banner h2 { color: var(--sls-blue-dark); }

/* --- .cta-banner p (642 uses 520px vs global 500px) --- */
body.page-id-642 .cta-banner p { font-size: 1.05rem; opacity: 0.8; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* --- .btn-cta (16 uses 14px 34px padding vs global 14px 36px) --- */
body.page-id-16 .btn-cta { display: inline-block; background: var(--sls-gold); color: var(--sls-blue-dark); font-weight: 700; font-size: 1rem; padding: 14px 34px; border-radius: 10px; transition: all var(--sls-transition); box-shadow: 0 4px 16px rgba(242,169,0,0.3); }
