/* ============================================================
   BLUEWATCH TRAINING — bw.css
   Professional first aid training brand
   Version 1.0.0
============================================================ */

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

/* 2. CSS CUSTOM PROPERTIES */
:root {
  --navy:        #0C1F3D;
  --navy-mid:    #162d52;
  --navy-light:  #1e3a6e;
  --navy-deep:   #070f1e;
  --red:         #E63946;
  --red-dark:    #C1121F;
  --red-pale:    #FFF0F1;
  --steel:       #2563EB;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --grey-100:    #F1F3F5;
  --grey-200:    #E5E7EB;
  --grey-400:    #9CA3AF;
  --grey-600:    #4B5563;
  --grey-800:    #1F2937;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --text-xs:   clamp(0.8rem, 1.4vw, 0.875rem);
  --text-sm:   clamp(0.925rem, 1.6vw, 1rem);
  --text-base: clamp(1.0625rem, 1.8vw, 1.15rem);
  --text-lg:   clamp(1.1rem, 2vw, 1.25rem);
  --text-xl:   clamp(1.2rem, 2.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 3vw, 2rem);
  --text-3xl:  clamp(2rem, 4vw, 2.75rem);
  --text-4xl:  clamp(2.5rem, 5vw, 3.5rem);
  --text-hero: clamp(2.8rem, 7vw, 5.5rem);
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;
  --max-w:      1200px;
  --max-w-wide: 1400px;
  --nav-h:      72px;
  --r-sm: 6px;   --r-md: 12px;   --r-lg: 20px;
  --r-xl: 28px;  --r-2xl: 40px;  --r-full: 999px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.16);
  --shadow-xl:   0 16px 60px rgba(0,0,0,.22);
  --shadow-card: 0 2px 20px rgba(0,0,0,.10);
  --shadow-glow: 0 8px 24px rgba(230,57,70,.35);
  --t-fast:   150ms ease;
  --t-mid:    280ms ease;
  --t-slow:   450ms ease;
  --t-spring: 350ms cubic-bezier(.34,1.56,.64,1);
}

/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* 4. TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--navy); }
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
p { color: var(--grey-600); line-height: 1.75; }
.lead { font-size: var(--text-lg); color: var(--grey-600); line-height: 1.7; }
.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white p, .text-white .lead { color: var(--white); }
.text-navy h1, .text-navy h2, .text-navy h3, .text-navy p { color: var(--navy); }
.text-red { color: var(--red) !important; }

/* 5. LAYOUT UTILITIES */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-6); }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-lg { padding: var(--space-32) 0; }
.section-sm { padding: var(--space-16) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* 6. BACKGROUND UTILITIES */
.bg-navy { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-navy-deep { background: var(--navy-deep); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-red { background: var(--red); }
.bg-grey-100 { background: var(--grey-100); }

/* 7. NAVIGATION — always solid dark navy */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(7,15,30,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--t-mid);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4); }
.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.nav-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-subtitle {
  font-size: 0.7rem;
  color: var(--grey-400);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  display: block;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link.active { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown-toggle:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--t-mid); }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid), transform var(--t-mid);
  padding: var(--space-2) 0;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.8);
  transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast);
}
.nav-dropdown-item:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
  padding-left: calc(var(--space-5) + 4px);
}
.nav-cta { margin-left: var(--space-4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7,15,30,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--space-6);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-10px);
  opacity: 0;
  display: none;
  transition: opacity var(--t-mid), transform var(--t-mid);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  display: block;
}
.nav-mobile-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-mobile-section {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-3) var(--space-4) var(--space-1);
  margin-top: var(--space-2);
}
.nav-mobile-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-8);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  display: block;
}
.nav-mobile-sub:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-mobile-divider { height: 1px; background: rgba(255,255,255,.06); margin: var(--space-2) 0; }

/* 8. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--t-mid);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1rem 2.5rem; font-size: var(--text-base); }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 28px rgba(230,57,70,.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--grey-100);
  transform: translateY(-1px);
}

/* 9. BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-red { background: var(--red); color: var(--white); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-white { background: var(--white); color: var(--navy); }
.badge-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.badge-steel { background: var(--steel); color: var(--white); }
.badge-grey { background: var(--grey-200); color: var(--grey-800); }

/* 10. ACCREDITATION STRIP */
.accred-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: var(--space-5) 0;
  overflow: hidden;
}
.accred-inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  animation: scrollStrip 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.accred-inner:hover { animation-play-state: paused; }
.accred-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.accred-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scrollStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 11. HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-short {
  min-height: 50vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #040912 0%, #0C1F3D 60%, #162d52 100%);
  z-index: 0;
}
.hero-bg-short {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #040912 0%, #0C1F3D 70%, #162d52 100%);
  z-index: 0;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(230,57,70,0.08);
  top: -100px;
  right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(37,99,235,0.06);
  bottom: -100px;
  left: -100px;
  animation: orbFloat2 16s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-24) 0;
}
.hero-short .hero-content {
  padding: var(--space-16) 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--r-full);
  padding: 0.35rem 1rem;
  margin-bottom: var(--space-6);
}
.hero-eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  max-width: 16ch;
}
.hero-title em { font-style: normal; color: var(--red); }
.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.7);
  max-width: 55ch;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-page-title {
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.hero-page-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.7);
  max-width: 55ch;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

/* 12. SECTION HEADERS + EYEBROW */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.eyebrow-line {
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: var(--r-full);
}
.eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
}
.section-header { margin-bottom: var(--space-12); }
.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.section-lead {
  font-size: var(--text-lg);
  color: var(--grey-600);
  max-width: 60ch;
  line-height: 1.7;
}
.section-lead-white { color: rgba(255,255,255,.7); }

/* 13. COURSE CARDS */
/* Alias classes — HTML uses these, CSS defines the base equivalents above */
.course-card-header { display: flex; flex-direction: column; gap: var(--space-2); }
.course-card-title { font-size: var(--text-lg); font-weight: 700; color: var(--navy); line-height: 1.25; font-family: var(--font-heading); }
.course-card-body { flex: 1; }
.course-card-footer { margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--grey-200); }
.course-learn-more { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 700; color: var(--red); font-family: var(--font-heading); transition: gap var(--t-fast), color var(--t-fast); }
.course-learn-more:hover { gap: var(--space-3); color: var(--red-dark); }
.course-duration { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; background: var(--grey-100); color: var(--grey-600); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 600; font-family: var(--font-heading); }
.course-badge { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 600; font-family: var(--font-heading); }
.badge-hse { background: rgba(37,99,235,0.1); color: var(--steel); }
.badge-ofsted { background: rgba(230,57,70,0.1); color: var(--red-dark); }
.badge-awareness { background: rgba(12,31,61,0.08); color: var(--navy); }
.badge-practical { background: rgba(230,57,70,0.08); color: var(--red-dark); }

.course-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.course-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.course-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.course-card-desc {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.65;
  flex: 1;
}
.course-card-suitability {
  font-size: var(--text-xs);
  color: var(--grey-400);
  font-style: italic;
}
.course-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-heading);
  transition: gap var(--t-fast), color var(--t-fast);
  margin-top: auto;
}
.course-card-link:hover { gap: var(--space-3); color: var(--red-dark); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* 14. OFFER / WHY CARDS */
.offer-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.offer-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.offer-icon { font-size: 2.5rem; margin-bottom: var(--space-4); display: block; }
.offer-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
}
.offer-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* 15. FILTER BAR */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-600);
  transition: all var(--t-mid);
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--grey-100);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* 16. COURSE PAGE LAYOUT */
.course-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
}
.course-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.course-info-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.course-info-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.course-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--grey-100);
  gap: var(--space-4);
}
.course-info-row:last-child { border-bottom: none; }
.course-info-label {
  font-size: var(--text-sm);
  color: var(--grey-400);
  font-weight: 500;
  flex-shrink: 0;
}
.course-info-value {
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}
.course-section { margin-bottom: var(--space-10); }
.course-section-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--grey-200);
}
.course-outcomes { display: flex; flex-direction: column; gap: var(--space-3); }
.course-outcome {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--off-white);
  border-radius: var(--r-md);
}
.course-outcome-check {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.course-outcome-check svg { width: 12px; height: 12px; }
.course-outcome-text {
  font-size: var(--text-sm);
  color: var(--grey-800);
  font-weight: 500;
  line-height: 1.5;
}
.course-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.course-included-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
}
.course-included-icon { font-size: 1.25rem; flex-shrink: 0; }
.course-included-text { font-size: var(--text-sm); color: var(--grey-600); }
.course-audience { display: flex; flex-direction: column; gap: var(--space-3); }
.course-audience-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--grey-600);
}
.course-audience-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.related-links { display: flex; flex-direction: column; gap: var(--space-2); }
.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--grey-100);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  transition: background var(--t-fast), color var(--t-fast);
}
.related-link:hover { background: var(--navy); color: var(--white); }

/* 17. HOW TO BOOK STEPS */
.book-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.book-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.book-step-num {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.book-step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
}
.book-step-desc {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.6;
}

/* 18. FOUNDER CARD */
.founder-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: start;
  border: 1px solid var(--grey-200);
}
.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  border: 4px solid var(--red);
}
.founder-name {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-1);
  font-family: var(--font-heading);
}
.founder-title {
  font-size: var(--text-sm);
  color: var(--red);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}
.founder-bio {
  font-size: var(--text-base);
  color: var(--grey-600);
  line-height: 1.8;
}
.founder-creds {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

/* 19. EMPLOYER CTA STRIP */
.cta-strip-red {
  background: var(--red);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip-red h2 {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.cta-strip-red p {
  color: rgba(255,255,255,.85);
  font-size: var(--text-lg);
  max-width: 55ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.cta-strip-red .cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* 20. ENQUIRY FORM */
.form-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-16);
  align-items: start;
}
.form-group { margin-bottom: var(--space-6); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
}
.form-label .req { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
}
.form-control::placeholder { color: var(--grey-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
}
.radio-group { display: flex; flex-direction: column; gap: var(--space-3); }
.radio-item { display: flex; align-items: center; gap: var(--space-3); cursor: pointer; }
.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.radio-label { font-size: var(--text-sm); color: var(--grey-800); cursor: pointer; }
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}
.contact-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--white); margin-bottom: var(--space-4); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text { font-size: var(--text-sm); color: rgba(255,255,255,.75); }
.contact-item-text a { color: rgba(255,255,255,.9); }
.what-next {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.what-next h3 { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: var(--space-4); }
.what-next-step {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--grey-200);
}
.what-next-step:last-child { border-bottom: none; }
.what-next-num {
  width: 26px;
  height: 26px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xs);
  flex-shrink: 0;
}
.what-next-text { font-size: var(--text-sm); color: var(--grey-600); }

/* 21. SISTER BAR */
.sister-bar {
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: var(--space-3) 0;
}
.sister-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.sister-label {
  font-size: var(--text-xs);
  color: var(--grey-400);
  font-weight: 500;
  white-space: nowrap;
}
.sister-links { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.sister-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
  font-weight: 500;
  transition: color var(--t-fast);
}
.sister-link:hover { color: rgba(255,255,255,.9); }
.sister-link.sister-current { color: rgba(255,255,255,.9); font-weight: 700; }
.sister-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* 22. FOOTER */
.footer { background: var(--navy-deep); padding-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding: var(--space-16) 0 var(--space-12);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-1);
}
.footer-brand-sub {
  font-size: var(--text-xs);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 32ch;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-link:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* 23. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 24. ACCREDITATION BADGE CARDS (about page) */
.accred-badge-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
}
.accred-badge-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.accred-badge-icon { font-size: 3rem; margin-bottom: var(--space-4); }
.accred-badge-title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
}
.accred-badge-desc {
  font-size: var(--text-sm);
  color: var(--grey-600);
  line-height: 1.6;
}

/* 25. RESPONSIVE */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .course-layout { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-steps { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-creds { justify-content: center; }
  .founder-avatar { margin: 0 auto; }
  .form-section { grid-template-columns: 1fr; }
  .course-included { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .courses-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .book-steps { grid-template-columns: 1fr; }
  .cta-strip-red .cta-actions { flex-direction: column; }
  .cta-strip-red .cta-actions .btn { width: 100%; justify-content: center; }
  .sister-inner { gap: var(--space-3); }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero-content { padding: var(--space-16) 0; }
  .section { padding: var(--space-16) 0; }
  .founder-card { padding: var(--space-8); }
  .course-info-card { padding: var(--space-5); }
  .book-step { padding: var(--space-6); }
}

/* -------- MISSING CLASS ALIASES (HTML-to-CSS gaps fixed 22 Jun 2026) -------- */

/* what-next sidebar aliases */
.what-next-title { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: var(--space-4); font-family: var(--font-heading); }
.what-next-number { width: 26px; height: 26px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: var(--text-xs); flex-shrink: 0; }
.what-next-heading { font-size: var(--text-sm); font-weight: 600; color: var(--navy); font-family: var(--font-heading); }
.what-next-desc, .what-next-body { font-size: var(--text-sm); color: var(--grey-600); line-height: 1.55; }

/* Form inputs */
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.875rem 1.25rem; border: 2px solid var(--grey-200); border-radius: var(--r-md); font-size: var(--text-sm); font-family: var(--font-body); color: var(--navy); background: var(--white); transition: border-color var(--t-mid), box-shadow var(--t-mid); appearance: none; -webkit-appearance: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(230,57,70,.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-400); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input-short { max-width: 180px; }

/* Form structure */
.form-field { margin-bottom: var(--space-5); }
.form-required { color: var(--red); margin-left: 2px; }
.form-error { display: block; color: var(--red); font-size: var(--text-xs); margin-top: var(--space-1); min-height: 1.2em; }
.form-hint { font-size: var(--text-xs); color: var(--grey-400); margin-top: var(--space-1); }
.form-privacy { font-size: var(--text-xs); color: var(--grey-400); margin-top: var(--space-3); line-height: 1.5; }
.form-submit-row { margin-top: var(--space-6); }
.form-card { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: var(--space-10); }
.form-card-header { margin-bottom: var(--space-8); padding-bottom: var(--space-6); border-bottom: 1px solid var(--grey-200); }
.form-card-title { font-size: var(--text-2xl); font-weight: 800; color: var(--navy); margin-bottom: var(--space-2); font-family: var(--font-heading); }
.form-card-lead { color: var(--grey-600); font-size: var(--text-sm); line-height: 1.6; }
.form-col { min-width: 0; }
.form-sidebar { display: flex; flex-direction: column; gap: var(--space-6); }
.form-select-wrapper { position: relative; }
.form-select-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--grey-400); }
.form-fieldset { border: none; padding: 0; }
.form-legend { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy); margin-bottom: var(--space-3); font-family: var(--font-heading); }
.form-success { background: rgba(37,99,235,.05); border: 2px solid var(--steel); border-radius: var(--r-lg); padding: var(--space-8); text-align: center; }
.form-success-icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.form-success-title { font-size: var(--text-xl); font-weight: 700; color: var(--navy); margin-bottom: var(--space-2); font-family: var(--font-heading); }
.form-success-body { color: var(--grey-600); font-size: var(--text-sm); }

/* Contact item aliases */
.contact-item-body { display: flex; flex-direction: column; gap: 2px; }
.contact-item-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.5); font-weight: 600; }
.contact-item-value { font-size: var(--text-sm); color: rgba(255,255,255,.85); }
.contact-item-value a { color: rgba(255,255,255,.9); text-decoration: underline; text-underline-offset: 2px; }

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.eyebrow-light { opacity: 0.7; }
.section-eyebrow.eyebrow-light .eyebrow-text { color: rgba(255,255,255,.7); }

/* Founder */
.founder-badge { display: inline-flex; align-items: center; gap: var(--space-2); padding: 0.3rem 0.75rem; background: rgba(230,57,70,.08); color: var(--red-dark); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 600; font-family: var(--font-heading); border: 1px solid rgba(230,57,70,.15); }
.founder-badge-list { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.founder-section { background: var(--white); }
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: var(--space-10); align-items: start; }
.founder-portrait { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); }
.founder-role { font-size: var(--text-base); color: var(--red); font-weight: 600; font-family: var(--font-heading); margin-bottom: var(--space-3); }
.founder-credentials { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.credential-item { display: inline-flex; align-items: center; gap: var(--space-1); padding: 0.25rem 0.65rem; background: var(--grey-100); color: var(--grey-800); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 500; font-family: var(--font-heading); }

/* Nav supplementary */
.nav-brand-icon { display: flex; align-items: center; width: 32px; height: 32px; flex-shrink: 0; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-chevron { width: 12px; height: 12px; margin-left: var(--space-1); opacity: 0.6; transition: transform var(--t-fast); }
li.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-btn { background: none; border: none; cursor: pointer; font-family: inherit; }
.nav-mobile-links { list-style: none; }
.nav-mobile-cta { color: var(--red) !important; font-weight: 700 !important; }

/* btn-outline-navy */
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid rgba(12,31,61,.3); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* course-card-list */
.course-card-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-3); }
.course-card-list li { font-size: var(--text-sm); color: var(--grey-600); display: flex; align-items: flex-start; gap: var(--space-2); line-height: 1.5; }
.course-card-list li::before { content: 'x2192'; color: var(--red); flex-shrink: 0; font-family: var(--font-heading); font-weight: 700; }
