/* =====================================================================
   AI for Coaching Professionals — v2
   Visual rebuild. TESS brand. Bigger type, infographics, embedded forms.
   ===================================================================== */

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

:root {
  /* Brand */
  --pink:       #E5097F;
  --pink-dark:  #B81272;
  --pink-bg:    #FBE5EF;
  --blue:       #1B75BC;
  --blue-dark:  #145A91;
  --blue-bg:    #E3EDFB;
  --green:      #8BC53F;
  --green-dark: #5BA631;
  --green-bg:   #EEF7DC;
  --yellow:     #FFC20E;
  --yellow-dark:#D4920A;
  --yellow-bg:  #FFF6D8;
  --orange:     #F7941D;
  --orange-bg:  #FDECD3;
  --red:        #ED1C24;
  --navy:       #0A1A3A;

  /* Neutrals */
  --ink:        #14161B;
  --ink-soft:   #2A2E36;
  --ink-body:   #3A3F48;
  --slate:      #5B6068;
  --slate-2:    #8A8F98;
  --slate-3:    #B5B8BE;
  --line:       #E7E6DF;
  --line-soft:  #F1EFE9;
  --paper:      #FFFFFF;
  --cream:      #FAF8F3;
  --warm-grey:  #F4F2EC;
  --bg-soft:    #F9F8F3;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(20,22,27,.05), 0 1px 3px rgba(20,22,27,.06);
  --shadow:     0 4px 14px rgba(20,22,27,.06), 0 2px 4px rgba(20,22,27,.05);
  --shadow-lg:  0 24px 48px -12px rgba(20,22,27,.18), 0 8px 16px rgba(20,22,27,.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv01", "cv11";
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--pink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--pink-dark); }

/* =================== LAYOUT =================== */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.03em;
}
.serif.pink   { color: var(--pink); }
.serif.blue   { color: var(--blue); }
.serif.yellow { color: var(--yellow); }
.serif.green  { color: var(--green-dark); }
.serif.orange { color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: currentColor;
}
.eyebrow.blue   { color: var(--blue); }
.eyebrow.green  { color: var(--green-dark); }
.eyebrow.orange { color: var(--orange); }
.eyebrow.yellow { color: var(--yellow-dark); }
.eyebrow.white  { color: rgba(255,255,255,.85); }

.section-title {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.02;
  margin-bottom: 16px;
  max-width: 22ch;
  text-wrap: balance;
}
.section-title.light { color: #fff; }
.section-intro {
  font-size: 17px;
  color: var(--ink-body);
  max-width: 68ch;
  line-height: 1.6;
}
.section-intro.light { color: rgba(255,255,255,.82); }
.section-intro strong { color: var(--ink); font-weight: 700; }
.section-intro.light strong { color: #fff; }

.section-head { margin-bottom: 48px; max-width: 820px; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800; font-size: 14px; letter-spacing: -.005em;
  text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-xl { padding: 19px 34px; font-size: 16px; }

.btn-primary { background: var(--pink); color: #fff; border-color: var(--pink); }
.btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(229,9,127,.30); }

.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,.20); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--cream); color: var(--ink); }

.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--cream); color: var(--ink); transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn .arrow { transition: transform .2s; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* =================== RAINBOW =================== */
.rainbow-bar {
  height: 3px;
  background: linear-gradient(90deg,
    var(--pink) 0%, var(--pink) 20%,
    var(--orange) 20%, var(--orange) 40%,
    var(--yellow) 40%, var(--yellow) 60%,
    var(--green) 60%, var(--green) 80%,
    var(--blue) 80%, var(--blue) 100%);
}

/* =================== URGENCY BAR =================== */
.urgency-bar {
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600;
}
.urgency-inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 11px 28px; flex-wrap: wrap;
}
.urgency-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,194,14,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,194,14,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,194,14,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,194,14,0); }
}
.urgency-bar strong { color: var(--yellow); }
.urgency-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.urgency-bar a:hover { color: var(--yellow); }
.urgency-sep { color: var(--slate-2); }
.urgency-countdown { 
  display: inline-flex; gap: 6px; padding: 3px 10px;
  background: rgba(255,255,255,.1); border-radius: 6px;
  font-variant-numeric: tabular-nums; font-weight: 800;
}

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(20,22,27,.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 34px; width: auto; }

.primary-nav {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  position: relative;
  padding: 9px 14px; border-radius: 8px;
  font-weight: 600; font-size: 14px; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { background: var(--cream); color: var(--ink); }
.nav-link .caret {
  width: 10px; height: 10px;
  transition: transform .2s;
}

/* Mega menu — AI Apprenticeships */
.nav-item { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: -20px;
  min-width: 720px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 24px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover .caret { transform: rotate(180deg); }

.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mega-section-title {
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--slate-2);
  padding: 8px 12px 4px;
}
.mega-link {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start;
  padding: 10px 12px; border-radius: 10px;
  color: var(--ink); cursor: pointer;
}
.mega-link:hover { background: var(--cream); color: var(--ink); }
.mega-link.current { background: var(--pink-bg); }
.mega-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px; color: #fff;
  letter-spacing: -.02em;
}
.mega-icon.l4 { background: var(--blue); }
.mega-icon.l4-ops { background: var(--orange); }
.mega-icon.l4-coach { background: var(--pink); }
.mega-icon.l4-data { background: var(--green-dark); }
.mega-icon.l5 { background: var(--navy); }
.mega-icon.l6 { background: var(--yellow-dark); }
.mega-icon.l3 { background: var(--slate); }
.mega-icon.short { background: var(--pink); background-image: linear-gradient(135deg, var(--pink), var(--orange)); }
.mega-title {
  font-weight: 700; font-size: 13.5px; line-height: 1.2;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.mega-title .pill {
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em;
  padding: 2px 7px; border-radius: 999px;
  background: var(--yellow-bg); color: var(--yellow-dark);
  text-transform: uppercase;
}
.mega-title .pill.new { background: var(--green-bg); color: var(--green-dark); }
.mega-title .pill.hot { background: var(--pink-bg); color: var(--pink-dark); }
.mega-desc {
  font-size: 12px; color: var(--slate); margin-top: 2px;
}
.mega-foot {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13px;
}
.mega-foot strong { color: var(--ink); }

.header-cta {
  display: flex; align-items: center; gap: 12px;
}
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink); font-weight: 700; font-size: 13px;
}
.header-phone:hover { color: var(--pink); }

/* Mobile menu — basic */
.nav-toggle { display: none; }
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .header-phone { display: none; }
}

/* =================== SECTION PROGRESS NAV =================== */
.progress-nav {
  position: sticky; top: 60px; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.progress-inner {
  display: flex; align-items: center; gap: 22px;
  padding: 12px 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.progress-inner::-webkit-scrollbar { display: none; }
.progress-inner a {
  color: var(--slate); font-weight: 600;
  padding: 6px 2px; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.progress-inner a:hover { color: var(--ink); }
.progress-inner a.active {
  color: var(--ink); border-color: var(--pink);
}
.progress-bar {
  height: 2px; background: var(--line-soft); position: relative;
}
.progress-bar .fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  width: 0%; transition: width .15s linear;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--pink-bg), transparent 70%);
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-bg), transparent 70%);
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  align-items: start;
}
.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px 7px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-eyebrow-pill .tag {
  background: var(--pink); color: #fff;
  padding: 3px 9px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-eyebrow-pill .sep { color: var(--slate-2); }

.hero-title {
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: .98;
  letter-spacing: -.035em;
  margin-bottom: 22px;
  font-weight: 800;
}
.hero-title .strike {
  text-decoration: line-through;
  text-decoration-color: var(--slate-3);
  text-decoration-thickness: 3px;
  color: var(--slate);
}

.hero-sub {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-body);
  max-width: 56ch;
  margin-bottom: 24px;
}
.hero-sub strong { color: var(--ink); }

.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  margin-bottom: 28px;
}
.hero-bullets li {
  list-style: none;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
}
.hero-bullets .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 16px;
}
.hero-fineprint {
  font-size: 12.5px; color: var(--slate);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero-fineprint .dot-sep { color: var(--slate-3); }
.hero-fineprint .reviewers {
  display: inline-flex; align-items: center; gap: 5px;
}
.hero-fineprint .star { color: var(--yellow-dark); font-size: 13px; }

/* Hero right side — inline lead form + Coachy preview */
.hero-aside {
  display: flex; flex-direction: column; gap: 18px;
}
.lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lead-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.lead-card h3 {
  font-size: 18px; font-weight: 800; line-height: 1.15;
  display: flex; align-items: center; gap: 8px;
}
.lead-card h3 .bolt {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--pink-bg); color: var(--pink);
}
.lead-card .lead-sub {
  font-size: 13px; color: var(--slate);
  margin-bottom: 16px;
}
.lead-toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream); padding: 4px; border-radius: 999px;
  margin-bottom: 16px;
}
.lead-toggle button {
  border: 0; background: transparent;
  padding: 9px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13px; color: var(--slate);
  transition: all .15s;
}
.lead-toggle button.active {
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.lead-fields { display: flex; flex-direction: column; gap: 10px; }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lead-field { display: flex; flex-direction: column; gap: 4px; }
.lead-field label {
  font-size: 11.5px; font-weight: 700; color: var(--slate);
  letter-spacing: .02em;
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  font-family: inherit; font-size: 13.5px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: #fff;
  transition: border-color .15s;
  width: 100%;
}
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: 0; border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(229,9,127,.12);
}
.lead-card .btn-primary { width: 100%; }
.lead-fine {
  font-size: 11.5px; color: var(--slate);
  text-align: center; margin-top: 8px;
  display: flex; align-items: center; gap: 6px; justify-content: center; flex-wrap: wrap;
}
.lead-fine .sep { color: var(--slate-3); }

/* Visual badges floating beside lead card */
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.trust-badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.trust-badge.ofsted .dot { background: var(--green); }
.trust-badge.rating .dot { background: var(--yellow); }
.trust-badge.cmi .dot { background: var(--blue); }

/* Stats strip below hero */
.hero-stats-strip {
  position: relative; z-index: 1;
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.hero-stats-strip .container {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  align-items: center;
}
.hs-stat { display: flex; flex-direction: column; gap: 4px; }
.hs-stat strong {
  font-size: 32px; font-weight: 800; line-height: 1;
  letter-spacing: -.025em; color: var(--ink);
  font-feature-settings: "tnum" 1;
}
.hs-stat strong .unit { font-size: 18px; color: var(--slate); margin-left: 2px; }
.hs-stat .lbl {
  font-size: 12px; color: var(--slate); line-height: 1.35;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hs-stat:nth-child(5) { display: none; }
}

/* =================== SECTION SHELL =================== */
section { position: relative; }
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.dark { background: var(--ink); color: rgba(255,255,255,.85); }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.cream { background: var(--cream); }
.section.bg-soft { background: var(--bg-soft); }
.section.navy { background: var(--navy); color: rgba(255,255,255,.85); }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.pink { background: var(--pink-bg); }
.section.gradient-pink {
  background: linear-gradient(135deg, #fff 0%, var(--pink-bg) 100%);
}

/* =================== COACHY DEMO BLOCK =================== */
.coachy-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2c5a 60%, #2a4080 100%);
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.coachy-hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,9,127,.4), transparent 60%);
  border-radius: 50%;
}
.coachy-hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,117,188,.4), transparent 60%);
  border-radius: 50%;
}
.coachy-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.coachy-grid h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.02;
}
.coachy-grid h2 .serif { color: var(--yellow); }
.coachy-grid p { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: 24px; max-width: 50ch; }
.coachy-pill-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.coachy-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: #fff;
}
.coachy-pill .ck { color: var(--green); font-weight: 900; }

.coachy-claude-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 16px; border-radius: 12px;
  font-size: 13px; color: #fff;
}
.coachy-claude-badge .lbl { font-weight: 800; }
.coachy-claude-badge .sub { color: rgba(255,255,255,.7); font-size: 12px; }

/* Phone mockup */
.phone {
  position: relative;
  width: 320px; max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 36px;
  border: 12px solid #11141d;
  box-shadow: 0 36px 80px -16px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  padding: 16px 14px 14px;
  color: var(--ink);
}
.phone::before {
  content: ''; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; background: #11141d;
  border-radius: 0 0 14px 14px;
}
.phone-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 8px 12px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 8px;
}
.phone-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.phone-title { font-size: 14px; font-weight: 800; }
.phone-status {
  font-size: 11px; color: var(--green-dark); font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}
.phone-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.phone-chat { display: flex; flex-direction: column; gap: 10px; padding: 6px 4px 12px; min-height: 240px; }
.bubble {
  max-width: 86%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 12.5px; line-height: 1.45;
}
.bubble.you {
  background: var(--blue); color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble.ai {
  background: var(--cream); color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--line-soft);
}
.bubble.ai .ai-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 4px;
}
.bubble.ai .ai-tag .sparkle { font-size: 11px; }
.bubble.typing {
  display: inline-flex; gap: 4px; align-items: center;
  padding: 12px 14px;
}
.bubble.typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--slate-2);
  animation: typedot 1.2s infinite ease-in-out;
}
.bubble.typing span:nth-child(2) { animation-delay: .2s; }
.bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typedot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 980px) {
  .coachy-hero { padding: 36px 24px; }
  .coachy-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =================== DEFUNDING CALLOUT =================== */
.defund-callout {
  border-radius: 24px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FBE5EF 100%);
  border: 1px solid #f9d3dc;
  padding: 40px 44px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px;
  align-items: center;
}
.defund-icon {
  width: 64px; height: 64px;
  background: var(--red); color: #fff;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800;
  box-shadow: 0 8px 20px rgba(237,28,36,.3);
}
.defund-body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 8px;
}
.defund-body p {
  font-size: 15px; color: var(--ink-body);
  max-width: 60ch;
}
.defund-cta { text-align: right; }
.defund-cta strong { display: block; font-size: 12px; color: var(--slate); font-weight: 700; margin-bottom: 6px; }
@media (max-width: 880px) {
  .defund-callout { grid-template-columns: 1fr; padding: 28px 24px; gap: 18px; }
  .defund-cta { text-align: left; }
}

/* =================== STACK / QUALIFICATIONS VISUAL =================== */
.stack-visual {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
  margin-top: 40px;
}

.stack-tower {
  position: relative;
  width: 100%; max-width: 460px;
  margin: 0 auto;
}
.stack-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 16px;
  align-items: center;
  box-shadow: 0 12px 28px -8px rgba(20,22,27,.12);
  margin-bottom: 14px;
  border: 1px solid var(--line);
  transition: transform .2s;
}
.stack-card:hover { transform: translateY(-2px); }
.stack-card.flagship {
  background: linear-gradient(135deg, #fff, var(--yellow-bg));
  border: 1.5px solid var(--yellow);
  box-shadow: 0 16px 36px -8px rgba(255,194,14,.4);
}
.stack-card.flagship::before {
  content: '★ FLAGSHIP';
  position: absolute; top: -10px; right: 16px;
  background: var(--yellow-dark); color: #fff;
  padding: 3px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
}
.stack-card .quallogo {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
  border: 1px solid var(--line-soft);
}
.stack-card.flagship .quallogo { background: #fff; border-color: var(--yellow); }
.stack-card .quallogo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.stack-card .qualname {
  font-size: 15px; font-weight: 800; line-height: 1.2;
  color: var(--ink);
}
.stack-card .qualname .level {
  display: inline-block;
  background: var(--blue-bg); color: var(--blue-dark);
  padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.stack-card.flagship .qualname .level { background: var(--yellow); color: var(--ink); }
.stack-card .qualsub {
  font-size: 12px; color: var(--slate); margin-top: 2px;
}
.stack-card .qualfree {
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  background: var(--green-bg); color: var(--green-dark);
  padding: 5px 10px; border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.stack-foot {
  text-align: center;
  margin-top: 10px;
  padding: 16px;
  background: var(--ink); color: #fff;
  border-radius: 14px;
  font-size: 14px; font-weight: 700;
}
.stack-foot strong { color: var(--yellow); font-size: 16px; }

@media (max-width: 880px) {
  .stack-visual { grid-template-columns: 1fr; gap: 36px; }
  .stack-card { grid-template-columns: 48px 1fr; }
  .stack-card .qualfree { grid-column: 1 / -1; justify-self: start; }
}

/* =================== COMPARISON CARDS =================== */
.compare-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 40px;
  position: relative;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.compare-card.tess {
  background: linear-gradient(180deg, #fff, var(--pink-bg));
  border: 2px solid var(--pink);
  box-shadow: 0 22px 50px -8px rgba(229,9,127,.18);
  transform: translateY(-6px);
}
.compare-card.tess::before {
  content: '★ THE NATURAL SUCCESSOR';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  box-shadow: 0 6px 14px rgba(229,9,127,.3);
  white-space: nowrap;
}
.compare-card.defunded {
  background: var(--warm-grey);
  opacity: .92;
}
.cc-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.cc-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}
.cc-tag.live    { background: var(--green-bg); color: var(--green-dark); padding: 3px 9px; border-radius: 999px; }
.cc-tag.dead    { background: #f4d3d3; color: var(--red); padding: 3px 9px; border-radius: 999px; }
.cc-tag.generic { background: var(--warm-grey); color: var(--slate); padding: 3px 9px; border-radius: 999px; }
.cc-name {
  font-size: 18px; font-weight: 800; line-height: 1.15;
  margin-bottom: 4px;
}
.cc-sub { font-size: 12.5px; color: var(--slate); }
.cc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 18px;
  flex: 1;
}
.cc-list li {
  font-size: 13.5px; line-height: 1.4;
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  align-items: start;
  color: var(--ink-body);
}
.cc-list .mark {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}
.cc-list .mark.yes { background: var(--green); color: #fff; }
.cc-list .mark.no  { background: var(--warm-grey); color: var(--slate); }
.cc-list .mark.part{ background: var(--yellow-bg); color: var(--yellow-dark); }
.cc-foot {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 13px; color: var(--ink-soft);
}
.cc-price {
  font-size: 22px; font-weight: 800; color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.cc-price .strike { text-decoration: line-through; color: var(--slate-3); margin-right: 6px; }

@media (max-width: 880px) {
  .compare-cards { grid-template-columns: 1fr; }
  .compare-card.tess { transform: none; order: -1; margin-bottom: 14px; }
}

/* =================== FUNDING FLOW INFOGRAPHIC =================== */
.funding-flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  position: relative;
}
.flow-step::after {
  content: '→';
  position: absolute;
  right: -14px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 800; color: var(--slate-3);
  z-index: 1;
}
.flow-step:last-child::after { display: none; }
.flow-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pink-bg); color: var(--pink);
  font-size: 14px; font-weight: 800;
  margin-bottom: 12px;
}
.flow-step.green .flow-num { background: var(--green-bg); color: var(--green-dark); }
.flow-step.blue .flow-num { background: var(--blue-bg); color: var(--blue); }
.flow-step.yellow .flow-num { background: var(--yellow-bg); color: var(--yellow-dark); }
.flow-step h4 {
  font-size: 16px; line-height: 1.15; margin-bottom: 8px;
}
.flow-step p {
  font-size: 13px; color: var(--slate); line-height: 1.5;
}
.flow-step strong { color: var(--ink); }
@media (max-width: 880px) {
  .funding-flow { grid-template-columns: 1fr 1fr; }
  .flow-step::after { display: none; }
}
@media (max-width: 480px) {
  .funding-flow { grid-template-columns: 1fr; }
}

/* =================== WORKSHOPS — DAYS =================== */
.days-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 36px;
}
.day-card {
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.day-card.d1 { background: linear-gradient(135deg, var(--blue), #2a8fda); }
.day-card.d2 { background: linear-gradient(135deg, var(--orange), #fab050); }
.day-card.d3 { background: linear-gradient(135deg, var(--pink), #f04ba2); }
.day-card::before {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.day-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px; font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
  position: relative;
  color: #fff;
}
.day-tag {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
}
.day-title {
  font-size: 22px; line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.day-meta {
  font-size: 13px; color: rgba(255,255,255,.78);
  position: relative;
}
.day-meta strong { color: #fff; font-weight: 700; }

@media (max-width: 880px) {
  .days-strip { grid-template-columns: 1fr; }
}

/* Workshop list */
.ws-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ws-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
}
.ws-item.cmi {
  background: linear-gradient(135deg, #fff, var(--yellow-bg));
  border-color: var(--yellow);
}
.ws-marker {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  color: var(--ink);
}
.ws-item.cmi .ws-marker { background: var(--yellow); color: var(--ink); }
.ws-item h4 { font-size: 16px; margin-bottom: 4px; line-height: 1.2; }
.ws-item .ws-meta { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.ws-item .ws-meta.cmi-tag { color: var(--yellow-dark); }
.ws-item p { font-size: 13px; color: var(--ink-body); line-height: 1.5; }
@media (max-width: 880px) {
  .ws-list { grid-template-columns: 1fr; }
}

/* =================== AI MODULES VISUAL GRID =================== */
.modules-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.mod-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: all .2s;
  cursor: default;
}
.mod-tile:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.mod-tile.epa { background: linear-gradient(135deg, var(--ink), #2a2e36); color: #fff; border-color: transparent; }
.mod-tile.epa h4 { color: #fff; }
.mod-tile.epa p { color: rgba(255,255,255,.7); }
.mod-num {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 600;
  font-size: 24px; line-height: 1; color: var(--pink);
  margin-bottom: 8px;
  display: block;
}
.mod-tile.epa .mod-num { color: var(--yellow); }
.mod-tile h4 { font-size: 14.5px; margin-bottom: 6px; line-height: 1.2; }
.mod-tile p { font-size: 12px; color: var(--slate); line-height: 1.5; }
@media (max-width: 1080px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
}

/* =================== JOURNEY TIMELINE =================== */
.journey {
  position: relative;
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.journey::before {
  content: ''; position: absolute;
  left: 36px; top: 36px; bottom: 36px;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--orange) 25%, var(--pink) 60%, var(--yellow) 90%);
  border-radius: 4px;
  z-index: 0;
}
.j-step {
  display: grid; grid-template-columns: 76px 1fr auto; gap: 24px;
  padding: 22px 0;
  position: relative;
  z-index: 1;
  align-items: start;
}
.j-marker {
  width: 76px; height: 76px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(20,22,27,.08);
}
.j-step:nth-child(2) .j-marker { border-color: var(--blue); color: var(--blue); }
.j-step:nth-child(3) .j-marker { border-color: var(--orange); color: var(--orange); }
.j-step:nth-child(4) .j-marker { border-color: var(--pink); color: var(--pink); }
.j-step:nth-child(5) .j-marker { border-color: var(--pink); color: var(--pink); }
.j-step:nth-child(6) .j-marker { border-color: var(--green-dark); color: var(--green-dark); }
.j-step:nth-child(7) .j-marker { border-color: var(--yellow-dark); color: var(--yellow-dark); }
.j-step.epa .j-marker {
  background: var(--yellow); border-color: var(--yellow); color: var(--ink);
}
.j-body { padding-top: 12px; }
.j-when {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 6px;
}
.j-body h3 { font-size: 19px; margin-bottom: 6px; line-height: 1.2; }
.j-body p { font-size: 14px; color: var(--ink-body); line-height: 1.55; max-width: 60ch; }
.j-tags { padding-top: 16px; }
.j-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: var(--cream); color: var(--ink-soft);
  margin-left: 4px;
}
.j-tag.cmi { background: var(--yellow-bg); color: var(--yellow-dark); }
.j-tag.ai  { background: var(--blue-bg); color: var(--blue); }
.j-tag.epa { background: var(--pink-bg); color: var(--pink); }
@media (max-width: 880px) {
  .j-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .journey::before { left: 30px; }
  .j-marker { width: 60px; height: 60px; font-size: 18px; }
  .j-tags { grid-column: 2 / -1; padding-top: 8px; }
}

/* =================== REVIEW WIDGET (EMBEDDED) =================== */
.reviews-block {
  display: grid; grid-template-columns: 1fr 2fr; gap: 36px;
  align-items: start;
}
.reviews-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  position: sticky; top: 130px;
}
.rs-source {
  display: grid; grid-template-columns: 1fr auto; gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.rs-source:last-child { border-bottom: 0; }
.rs-name { font-size: 13.5px; font-weight: 700; }
.rs-name .logo {
  display: inline-block;
  width: 14px; height: 14px; border-radius: 3px;
  margin-right: 6px; vertical-align: -3px;
}
.rs-name .logo.google { background: linear-gradient(45deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%); }
.rs-name .logo.tp     { background: #00B67A; }
.rs-rating { display: flex; align-items: center; gap: 6px; }
.rs-stars { color: var(--yellow-dark); font-size: 13px; letter-spacing: 1px; }
.rs-count { font-size: 12px; color: var(--slate); }
.rs-bar {
  display: grid; grid-template-columns: 14px 1fr 32px; gap: 8px;
  align-items: center;
  font-size: 11.5px; color: var(--slate);
  margin-bottom: 4px;
}
.rs-bar-track { height: 6px; background: var(--line-soft); border-radius: 4px; overflow: hidden; }
.rs-bar-fill { height: 100%; background: var(--yellow); border-radius: 4px; }
.rs-headline {
  font-size: 44px; font-weight: 800; line-height: 1;
  letter-spacing: -.03em; color: var(--ink);
  margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 4px;
}
.rs-headline .max { font-size: 18px; color: var(--slate); font-weight: 700; }
.rs-stars-big { color: var(--yellow-dark); font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }
.rs-line { font-size: 13px; color: var(--slate); margin-bottom: 16px; }
.rs-line strong { color: var(--ink); }

.reviews-list {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  position: relative;
}
.review-head {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.r-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.r-avatar.b { background: var(--blue-bg); color: var(--blue); }
.r-avatar.g { background: var(--green-bg); color: var(--green-dark); }
.r-name { font-size: 14px; font-weight: 800; line-height: 1.2; }
.r-role { font-size: 12px; color: var(--slate); margin-top: 2px; }
.r-platform { font-size: 11px; font-weight: 700; color: var(--slate); display: flex; align-items: center; gap: 5px; }
.r-platform .logo { width: 13px; height: 13px; border-radius: 3px; }
.r-platform .logo.google { background: linear-gradient(45deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%); }
.r-platform .logo.tp     { background: #00B67A; }
.review .r-stars { color: var(--yellow-dark); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 8px; }
.review blockquote {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-body);
  border: 0; padding: 0;
}
.review blockquote strong { color: var(--ink); background: var(--yellow-bg); padding: 0 3px; border-radius: 3px; }
.review-date { font-size: 11px; color: var(--slate-2); margin-top: 8px; }

@media (max-width: 980px) {
  .reviews-block { grid-template-columns: 1fr; }
  .reviews-summary { position: relative; top: 0; }
}

/* =================== SECTOR PILLS =================== */
.sectors {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.sector {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.sector::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--pink);
}
.sector.b::before { background: var(--blue); }
.sector.g::before { background: var(--green-dark); }
.sector.o::before { background: var(--orange); }
.sector.p::before { background: var(--pink); }
.sector.y::before { background: var(--yellow-dark); }
.sector.v::before { background: #7B6FD4; }
.sector.r::before { background: var(--red); }
.sector.s::before { background: var(--slate); }
.sector .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pink-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: 14px;
}
.sector.b .ico { background: var(--blue-bg); color: var(--blue); }
.sector.g .ico { background: var(--green-bg); color: var(--green-dark); }
.sector.o .ico { background: var(--orange-bg); color: var(--orange); }
.sector.y .ico { background: var(--yellow-bg); color: var(--yellow-dark); }
.sector.v .ico { background: #ece8fa; color: #7B6FD4; }
.sector.r .ico { background: #fbe3e3; color: var(--red); }
.sector.s .ico { background: #ebeef1; color: var(--slate); }
.sector h4 { font-size: 15px; line-height: 1.2; margin-bottom: 6px; }
.sector p { font-size: 12.5px; color: var(--slate); line-height: 1.5; }
@media (max-width: 1080px) { .sectors { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .sectors { grid-template-columns: 1fr; } }

/* =================== FAQ =================== */
.faq {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  list-style: none;
  font-size: 16px; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: start;
  gap: 16px;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px; font-weight: 400; color: var(--slate);
  line-height: 1; flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-body {
  padding-top: 12px;
  font-size: 14.5px; color: var(--ink-body); line-height: 1.6;
}
.faq-body strong { color: var(--ink); }
@media (max-width: 880px) {
  .faq { grid-template-columns: 1fr; gap: 0; }
}

/* =================== FINAL CTA =================== */
.cta-final {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
  border-radius: 50%;
}
.cta-final h2 {
  font-size: clamp(32px, 4.6vw, 50px); color: #fff;
  margin-bottom: 16px; line-height: 1.02;
}
.cta-final h2 .serif { color: var(--yellow); }
.cta-final p { color: rgba(255,255,255,.92); font-size: 17px; margin-bottom: 24px; max-width: 50ch; }
.cta-final .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-quick {
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 24px;
  position: relative;
}
.cta-quick h4 {
  color: #fff; font-size: 17px;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.cta-quick p { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.cta-quick a.line {
  display: block;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 700; font-size: 14px;
  margin-bottom: 8px;
  display: grid; grid-template-columns: 28px 1fr auto; gap: 12px;
  align-items: center;
  transition: background .15s;
}
.cta-quick a.line:hover { background: rgba(255,255,255,.2); color: #fff; }
.cta-quick a.line .arrow { color: var(--yellow); }
.cta-quick a.line .ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 880px) {
  .cta-final { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 0 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding: 56px 32px 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 40ch; margin-bottom: 16px; }
.footer-contact a { display: block; color: #fff; font-size: 14px; margin-bottom: 4px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); font-size: 13.5px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-col a.current { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 12px;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =================== STICKY MOBILE CTA =================== */
.sticky-mobile {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  display: none;
  background: var(--pink); color: #fff;
  padding: 14px 18px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(229,9,127,.4);
}
@media (max-width: 768px) {
  .sticky-mobile { display: block; }
}

/* =================== UTILITY =================== */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.tag.green { background: var(--green-bg); color: var(--green-dark); }
.tag.pink  { background: var(--pink-bg); color: var(--pink); }
.tag.yellow{ background: var(--yellow-bg); color: var(--yellow-dark); }
.tag.blue  { background: var(--blue-bg); color: var(--blue); }
.tag.dark  { background: var(--ink); color: #fff; }

/* =====================================================================
   v3 — WIDE 3-COLUMN MEGA MENU (every unit listed)
   ===================================================================== */
.mega-menu.mega-wide {
  /* FIXED — viewport-centered, never overflows */
  position: fixed;
  top: 70px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  min-width: 880px;
  max-width: min(1100px, calc(100vw - 32px));
  padding: 22px;
}
/* Invisible bridge so hover doesn't break when mouse moves down to dropdown */
.nav-item:has(.mega-menu.mega-wide)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 24px;
  pointer-events: none;
}
.nav-item:hover:has(.mega-menu.mega-wide)::after { pointer-events: auto; }
@media (max-width: 920px) {
  .mega-menu.mega-wide {
    min-width: 0;
    width: calc(100vw - 16px);
    max-width: none;
    top: 60px;
  }
}

.mega-grid-3 {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 22px;
}
.mega-col {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line-soft);
  padding-right: 18px;
}
.mega-col:last-child { border-right: 0; padding-right: 0; }

.mega-section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--slate-2);
  padding: 4px 4px 10px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 10px;
}
.mega-section-pill {
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: var(--pink-bg); color: var(--pink-dark);
  letter-spacing: .04em;
}
.mega-section-pill.alt { background: var(--blue-bg); color: var(--blue-dark); }

.mega-sub {
  font-size: 10px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--slate);
  padding: 10px 4px 4px;
}
.mega-blurb {
  font-size: 12px; color: var(--slate);
  padding: 0 4px 8px; line-height: 1.45;
}

/* Mega-wide tightens the link rows */
.mega-wide .mega-link {
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 8px 10px;
}
.mega-wide .mega-icon {
  width: 32px; height: 32px; border-radius: 8px;
  font-size: 11px;
}
.mega-wide .mega-icon.short {
  flex-direction: column; gap: 0; line-height: 1;
  font-size: 10px; padding-top: 4px;
}
.mega-wide .mega-icon.short small {
  font-size: 11px; font-weight: 800; letter-spacing: 0;
  margin-top: 1px;
}
.mega-icon.l4-base { background: var(--blue-dark); }
.mega-wide .mega-title { font-size: 12.5px; }
.mega-wide .mega-desc { font-size: 11px; }

/* Featured bundle callout */
.mega-callout {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-bg), var(--yellow-bg));
  border: 1px solid var(--pink-bg);
}
.mc-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pink-dark);
  margin-bottom: 4px;
}
.mc-title { font-size: 14px; font-weight: 800; color: var(--ink); }
.mc-meta { font-size: 11px; color: var(--slate); margin: 4px 0 8px; }
.mc-link {
  font-size: 12px; font-weight: 800;
  color: var(--pink);
  display: inline-flex; align-items: center; gap: 4px;
}
.mc-link span { transition: transform .15s; }
.mc-link:hover span { transform: translateX(3px); }

/* AI Modules grid — Col 3 */
.mega-modules {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mod-link {
  display: grid; grid-template-columns: 26px 1fr;
  gap: 8px; align-items: center;
  padding: 7px 8px; border-radius: 7px;
  color: var(--ink-body);
  transition: background .12s, color .12s;
  min-height: 36px;
}
.mod-link:hover {
  background: var(--cream); color: var(--ink);
}
.mod-link .mn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 11px;
  background: var(--ink); color: #fff;
  width: 26px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
  letter-spacing: 0;
}
.mod-link .mt {
  font-size: 11.5px; font-weight: 700; line-height: 1.2;
}
.mod-link.epa { grid-column: 1 / -1; }
.mod-link.epa .mn { background: var(--pink); }

.mega-wide .mega-foot {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 1080px) {
  /* Stack columns vertically on narrow screens; mega-menu position handled above */
  .mega-grid-3 { grid-template-columns: 1fr; }
  .mega-col { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line-soft); padding-bottom: 14px; }
  .mega-col:last-child { border-bottom: 0; padding-bottom: 0; }
}


/* =====================================================================
   HUB — DEDICATED STYLES (overrides + new sections)
   ===================================================================== */

/* --- bigger section titles for hub --- */
.section-title.bigger {
  font-size: clamp(36px, 5vw, 64px);
}
.section-head-centered {
  text-align: center;
  margin-left: auto; margin-right: auto;
  max-width: 920px;
}
.section-head-centered .eyebrow { justify-content: center; }
.section-head-centered .eyebrow::before { display: none; }
.section-head-centered .section-title { margin-left: auto; margin-right: auto; max-width: 22ch; }
.section-intro.center { margin-left: auto; margin-right: auto; }
.section-head.light .eyebrow { color: rgba(255,194,14,.95); }

/* --- HUB HERO (deep navy w/ rays) --- */
.hub-hero {
  position: relative;
  background: linear-gradient(180deg, #0A1A3A 0%, #06122B 100%);
  color: #fff;
  padding: 78px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-rays {
  position: absolute; top: -20%; right: -20%;
  width: 70%; height: 140%;
  background:
    radial-gradient(circle at 60% 40%, rgba(229,9,127,.18) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255,194,14,.14) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(27,117,188,.16) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hub-hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
}
.hub-hero-content {
  padding-top: 8px;
}
.hub-hero .hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 7px 7px 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 13px; color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.hub-hero .hero-eyebrow-pill strong { color: #fff; }
.hub-hero-title {
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: .98;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hub-hero-title .serif { line-height: 1.05; }
.hub-hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 60ch;
  margin-bottom: 28px;
}
.hub-hero-sub strong { color: #fff; font-weight: 700; }
.hub-hero-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.hub-hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.92); font-size: 14.5px; font-weight: 600;
}
.hub-hero-bullets .bcheck {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #06122B;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 12px; flex-shrink: 0;
}
.hub-hero-bullets .muted { color: rgba(255,255,255,.55); font-weight: 500; }

.hub-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-ghost-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.4); }

.hub-hero-trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: 13px; font-weight: 600;
}
.th-item { display: inline-flex; align-items: center; gap: 8px; }
.th-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
}
.th-dot.ofsted { background: var(--green); }
.th-dot.rating { background: var(--yellow); }
.th-dot.levy { background: var(--pink); }
.th-dot.uk { background: var(--blue); }

.hub-hero-aside .lead-card {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 960px) {
  .hub-hero-grid { grid-template-columns: 1fr; }
  .hub-hero-bullets { grid-template-columns: 1fr; }
  .hub-hero-title { font-size: clamp(38px, 9vw, 60px); }
}

/* --- HUB STATS STRIP --- */
.hub-stats {
  background: var(--ink);
  color: #fff;
  padding: 32px 0;
}
.hub-stats .container {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
.hub-stats .hs-stat {
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  padding-left: 18px;
  border-left: 2px solid rgba(255,255,255,.14);
}
.hub-stats .hs-stat:first-child { border-left: 0; padding-left: 0; }
.hub-stats .hs-stat strong {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; letter-spacing: -.03em;
  color: #fff; line-height: 1;
}
.hub-stats .hs-stat .unit {
  font-size: .58em; color: rgba(255,255,255,.55); font-weight: 700;
}
.hub-stats .hs-stat .lbl {
  font-size: 12.5px; color: rgba(255,255,255,.7);
  line-height: 1.35; font-weight: 500;
}
@media (max-width: 900px) {
  .hub-stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hub-stats .hs-stat { border-left: 0; padding-left: 0; }
}

/* --- PROGRAMMES GRID --- */
.prog-row-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--slate);
  margin: 56px 0 22px;
}
.prog-row-eyebrow .prow-line {
  flex: 0 0 60px; height: 2px; background: var(--line);
}
.prog-row-eyebrow .prow-line + * {
  text-transform: none; letter-spacing: -.005em; font-weight: 500;
  color: var(--slate); font-size: 13px;
}

/* Flagship row */
.prog-flagship {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1B75BC 0%, #145A91 60%, #0A1A3A 100%);
  color: #fff;
  padding: 0;
  box-shadow: 0 30px 60px -20px rgba(20,90,145,.4);
}
.pf-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,194,14,.25) 0%, transparent 40%),
    radial-gradient(circle at 10% 100%, rgba(229,9,127,.18) 0%, transparent 45%);
  pointer-events: none;
}
.pf-content {
  position: relative;
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding: 44px 48px;
}
.pf-left { display: flex; flex-direction: column; }
.pf-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 6px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: #fff;
  align-self: flex-start;
  margin-bottom: 18px;
}
.pf-badge .lvl {
  background: var(--yellow); color: #0A1A3A;
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: -.005em;
}
.pf-name {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1; letter-spacing: -.03em;
  color: #fff; margin-bottom: 14px;
}
.pf-tag {
  font-size: 17px; color: rgba(255,255,255,.85);
  line-height: 1.55; max-width: 56ch; margin-bottom: 22px;
}
.pf-tag strong { color: #fff; }
.pf-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13.5px; color: rgba(255,255,255,.85);
}
.pf-meta strong { color: var(--yellow); font-weight: 800; margin-right: 4px; }
.pf-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

.pf-right {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
}
.pf-quals {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-content: flex-start;
}
.pf-quals .pq {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px; font-weight: 700;
}
.pf-quals .pq.epa { background: var(--pink); }
.pf-num {
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}
.pfn-big {
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 800; line-height: 1;
  color: var(--yellow);
  letter-spacing: -.04em;
}
.pfn-big span { font-size: .55em; color: rgba(255,255,255,.7); }
.pfn-lbl {
  margin-top: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}

@media (max-width: 880px) {
  .pf-content { grid-template-columns: 1fr; padding: 32px; }
}

/* Programme card grid */
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prog-grid.two-col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
  .prog-grid, .prog-grid.two-col { grid-template-columns: 1fr; }
}

.prog-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 22px;
  color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}
.prog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--slate);
}
.prog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.pc-blue::before { background: var(--blue); }
.pc-orange::before { background: var(--orange); }
.pc-pink::before { background: var(--pink); }
.pc-navy::before { background: var(--navy); }
.pc-gold::before { background: var(--yellow-dark); }
.pc-slate::before { background: var(--slate); }
.pc-finder::before { background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--blue)); }

.pc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.pc-lvl {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 26px;
  padding: 0 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800; font-size: 13px;
  border-radius: 7px;
  letter-spacing: -.005em;
}
.pc-blue .pc-lvl { background: var(--blue); }
.pc-orange .pc-lvl { background: var(--orange); }
.pc-pink .pc-lvl { background: var(--pink); }
.pc-navy .pc-lvl { background: var(--navy); }
.pc-gold .pc-lvl { background: var(--yellow-dark); }
.pc-slate .pc-lvl { background: var(--slate); }
.pc-finder .pc-lvl { background: var(--ink); }
.pc-pop {
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--slate);
}
.pc-pop.new-2026 { background: var(--green-bg); color: var(--green-dark); }
.pc-pop.tech { background: var(--yellow-bg); color: var(--yellow-dark); }

.pc-name {
  font-size: 24px; line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.pc-tag {
  font-size: 14px;
  color: var(--ink-body);
  line-height: 1.5;
  margin-bottom: 16px;
}
.pc-tag strong { color: var(--ink); }
.pc-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  font-size: 12.5px; color: var(--slate);
  font-weight: 600;
  margin-bottom: 14px;
}
.pc-quals {
  display: flex; flex-wrap: wrap; gap: 5px;
  padding: 12px 0;
  margin-bottom: 4px;
  border-top: 1px dashed var(--line);
}
.pc-quals span {
  font-size: 11px; font-weight: 700;
  background: var(--cream);
  color: var(--ink-body);
  padding: 4px 9px;
  border-radius: 6px;
}
.pc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; font-weight: 800;
  color: var(--ink);
}
.pc-blue .pc-foot { color: var(--blue); }
.pc-orange .pc-foot { color: var(--orange); }
.pc-pink .pc-foot { color: var(--pink); }
.pc-navy .pc-foot { color: var(--navy); }
.pc-gold .pc-foot { color: var(--yellow-dark); }
.pc-arrow {
  display: inline-block; transition: transform .2s;
  font-size: 16px;
}
.prog-card:hover .pc-arrow { transform: translateX(4px); }

/* Feature variant - L5 pathway + L6 fellowship */
.pc-feature {
  background: linear-gradient(180deg, var(--cream), #fff);
}
.pc-navy.pc-feature {
  background: linear-gradient(180deg, var(--navy), #06122B);
  color: #fff;
  border-color: transparent;
}
.pc-navy.pc-feature::before { background: var(--yellow); height: 6px; }
.pc-navy.pc-feature .pc-name,
.pc-navy.pc-feature .pc-foot { color: #fff; }
.pc-navy.pc-feature .pc-tag { color: rgba(255,255,255,.85); }
.pc-navy.pc-feature .pc-tag strong { color: var(--yellow); }
.pc-navy.pc-feature .pc-meta { color: rgba(255,255,255,.7); }
.pc-navy.pc-feature .pc-quals { border-top-color: rgba(255,255,255,.12); }
.pc-navy.pc-feature .pc-quals span {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.pc-navy.pc-feature .pc-foot {
  border-top-color: rgba(255,255,255,.12);
  color: var(--yellow);
}
.pc-navy.pc-feature .pc-lvl { background: var(--yellow); color: var(--navy); }
.pc-navy.pc-feature .pc-pop.new-2026 {
  background: rgba(139,197,63,.2); color: var(--green);
}

.pc-gold.pc-feature {
  background: linear-gradient(180deg, #FFF6D8 0%, #FFF 100%);
}
.pc-gold.pc-feature .pc-name { color: var(--ink); }

/* Thin variant for L3 + finder */
.pc-thin .pc-quals { display: none; }
.pc-finder {
  background: linear-gradient(180deg, #fff, var(--cream));
  display: flex; flex-direction: column;
}
.pc-finder .pc-foot-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: auto; padding-top: 14px;
}
.pc-finder .pc-phone { color: var(--slate); font-size: 13px; font-weight: 600; }

/* --- LEADERSHIP UNITS — dark premium --- */
.dark-section {
  position: relative;
  background: linear-gradient(180deg, #0A1A3A 0%, #06122B 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.dark-section-soft {
  background: linear-gradient(180deg, #14223F 0%, #0A1A3A 100%);
}
.dark-section .section-title.light { color: #fff; }
.dark-section .section-intro.light { color: rgba(255,255,255,.78); }
.dark-section .section-intro.light strong { color: #fff; }
.lu-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,194,14,.12) 0%, transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(27,117,188,.15) 0%, transparent 55%);
  pointer-events: none;
}
.dark-section .container { position: relative; z-index: 1; }

.lu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
@media (max-width: 980px) { .lu-grid { grid-template-columns: 1fr; } }

.lu-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s, border-color .2s, background .2s;
}
.lu-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}
.lu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,194,14,.4);
  background: rgba(255,255,255,.06);
}
.lu-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.lu-num strong {
  color: var(--yellow); font-weight: 800;
  font-size: 16px;
}
.lu-tag {
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 14px;
}
.lu-name {
  font-size: 26px; line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 10px;
}
.lu-tagline {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}
.lu-list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.lu-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.lu-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--yellow); font-weight: 800;
}
.lu-list li strong { color: #fff; }
.lu-who {
  font-size: 12.5px; color: rgba(255,255,255,.7);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 14px;
}
.lu-who strong { color: #fff; }
.lu-foot {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.lu-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.lu-price strong {
  font-size: 28px; font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.lu-price span { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 600; }

/* Bundle callout below the 3 units */
.lu-bundle {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--pink) 0%, #B81272 100%);
  border-radius: 22px;
  padding: 38px 42px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 30px 60px -20px rgba(229,9,127,.45);
}
.lub-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 10px;
}
.lu-bundle h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05; letter-spacing: -.025em;
  color: #fff; margin-bottom: 10px;
}
.lu-bundle p { color: rgba(255,255,255,.88); font-size: 15.5px; line-height: 1.55; }
.lu-bundle p strong { color: #fff; }
.lub-right {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
}
.lub-right .btn { grid-column: 1 / -1; margin-top: 6px; }
.lub-stat {
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.lub-stat strong {
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -.02em; line-height: 1;
}
.lub-stat span { font-size: 11px; color: rgba(255,255,255,.85); }

@media (max-width: 880px) {
  .lu-bundle { grid-template-columns: 1fr; padding: 28px; }
}

.lu-defund {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,194,14,.08);
  border: 1px solid rgba(255,194,14,.25);
  border-radius: 14px;
  padding: 18px 22px;
  color: rgba(255,255,255,.92);
  font-size: 14px; line-height: 1.5;
}
.lu-defund a { color: var(--yellow); font-weight: 800; }
.ldf-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; flex-shrink: 0;
}

/* --- COMPARE TABLE --- */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 880px;
}
.compare-table thead { background: var(--cream); }
.compare-table th {
  text-align: left;
  padding: 16px 18px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--line);
}
.compare-table th.th-prog { padding-left: 24px; }
.compare-table td {
  padding: 18px;
  vertical-align: middle;
  border-bottom: 1px solid var(--line-soft);
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--cream); }
.compare-table .td-prog { padding-left: 24px; }
.compare-table .td-prog a { color: var(--ink); }
.compare-table .td-prog strong { font-size: 15px; font-weight: 800; display: block; }
.compare-table .td-sub { font-size: 12px; color: var(--slate); }
.lvl-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 24px; padding: 0 8px;
  background: var(--slate);
  color: #fff;
  font-weight: 800; font-size: 12px;
  border-radius: 6px;
}
.lvl-pill.blue { background: var(--blue); }
.lvl-pill.orange { background: var(--orange); }
.lvl-pill.pink { background: var(--pink); }
.lvl-pill.navy { background: var(--navy); }
.lvl-pill.gold { background: var(--yellow-dark); }
.q-chip {
  display: inline-block;
  background: var(--cream);
  color: var(--ink-body);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11.5px; font-weight: 700;
  margin: 2px 4px 2px 0;
}
.t-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink); color: #fff;
  transition: background .15s, transform .15s;
  text-decoration: none;
}
.t-arrow:hover { background: var(--pink); color: #fff; transform: translateX(2px); }
.row-flag { background: linear-gradient(90deg, rgba(27,117,188,.05), transparent); }
.row-l5 { background: linear-gradient(90deg, rgba(10,26,58,.04), transparent); }

@media (max-width: 768px) {
  .compare-table .hide-md { display: none; }
}

/* --- QUALIFICATIONS STRIP --- */
.quals-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
@media (max-width: 880px) { .quals-strip { grid-template-columns: repeat(2, 1fr); } }

.qs-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, border-color .2s;
}
.qs-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.qs-logo {
  width: 84px; height: 56px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.01em;
}
.qs-logo.cmi { background: #003e7e; color: #fff; }
.qs-logo.ms { background: #fff; border: 2px solid #5E5E5E; color: #5E5E5E; }
.qs-logo.bcs { background: #B41C2A; color: #fff; }
.qs-logo.nvidia { background: #76b900; color: #fff; }
.qs-logo.ncfe { background: #003D6E; color: #fff; }
.qs-level {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pink);
}
.qs-name { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }

.quals-foot {
  text-align: center;
  font-size: 15px;
  color: var(--ink-body);
  max-width: 60ch;
  margin: 28px auto 0;
}

/* --- FUNDING SPLIT --- */
.fund-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .fund-split { grid-template-columns: 1fr; } }

.fund-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  position: relative;
  display: flex; flex-direction: column;
}
.fund-card-feature {
  background: linear-gradient(180deg, #FFF6D8 0%, #fff 50%);
  border-color: var(--yellow);
  box-shadow: 0 30px 60px -20px rgba(255,194,14,.3);
}
.fc-tag {
  display: inline-flex; align-self: flex-start;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--cream); color: var(--slate);
  margin-bottom: 14px;
}
.fc-tag-star { background: var(--ink); color: var(--yellow); }
.fund-card h3 {
  font-size: 24px; line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.fc-meta {
  font-size: 14px; color: var(--ink-body);
  margin-bottom: 20px;
  line-height: 1.5;
}
.fc-rule {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.fcr-name {
  font-size: 13px; font-weight: 800;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.fcr-tag {
  font-size: 10px; font-weight: 700;
  background: var(--slate); color: #fff;
  padding: 2px 7px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
}
.fcr-body { font-size: 13.5px; color: var(--ink-body); line-height: 1.55; }
.fcr-body strong { color: var(--ink); font-weight: 800; }
.fcr-hero .fcr-body strong { color: var(--pink); font-size: 1.05em; }

.fund-cta { text-align: center; }

/* --- BY FUNCTION --- */
.func-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .func-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .func-grid { grid-template-columns: 1fr; } }

.func-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform .2s, border-color .2s;
}
.func-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.func-card .fc-ico {
  font-size: 28px;
  margin-bottom: 10px;
}
.func-card h3 {
  font-size: 16px;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.func-card p {
  font-size: 13px; color: var(--ink-body); line-height: 1.5;
  margin-bottom: 12px;
}
.fc-metric {
  font-size: 12.5px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--orange);
  font-weight: 700;
}
.fc-metric strong { color: var(--ink); font-weight: 800; }

/* --- OUTCOMES --- */
.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
@media (max-width: 980px) { .outcomes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .outcomes-grid { grid-template-columns: 1fr; } }

.oc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 26px 24px;
}
.oc-big {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 8px;
}
.oc-big span { font-size: .45em; color: rgba(255,255,255,.6); }
.oc-name {
  font-size: 14px; font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.oc-card p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.trusted-logos {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tl-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  margin-right: 8px;
}
.tl-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12.5px; color: rgba(255,255,255,.85);
  font-weight: 600;
}

/* --- REGIONS --- */
.regions-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  background: var(--cream);
}
@media (max-width: 880px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
.regions-grid a {
  padding: 11px 14px;
  background: #fff;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.regions-grid a:hover { background: var(--ink); color: #fff; }

/* --- CTA bullets --- */
.cta-bullets {
  list-style: none; padding: 0; margin: 18px 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.cta-bullets li {
  font-size: 14.5px; color: rgba(255,255,255,.92);
  font-weight: 500;
}
.cta-rating {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink-body);
}
.cta-rating .rs-stars { color: var(--yellow-dark); }
.cta-rating strong { color: var(--ink); font-weight: 800; }


/* --- CURRICULUM GRID (ST1512 modules) --- */
.curric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .curric-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .curric-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .curric-grid { grid-template-columns: 1fr; } }

.cm-tile {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.cm-tile:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px -10px rgba(27,117,188,.25);
}
.cm-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 30px;
  background: var(--ink);
  color: #fff;
  font-weight: 800; font-size: 13px;
  border-radius: 7px;
  letter-spacing: -.005em;
  margin-bottom: 12px;
}
.cm-tile h4 {
  font-size: 16px;
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cm-tile p {
  font-size: 12.5px;
  color: var(--ink-body);
  line-height: 1.5;
}
/* Colour-cycle the module numbers for visual rhythm */
.cm-01 .cm-num, .cm-05 .cm-num, .cm-09 .cm-num { background: var(--blue); }
.cm-02 .cm-num, .cm-06 .cm-num, .cm-10 .cm-num { background: var(--green-dark); }
.cm-03 .cm-num, .cm-07 .cm-num, .cm-11 .cm-num { background: var(--orange); }
.cm-04 .cm-num, .cm-08 .cm-num             { background: var(--navy); }
.cm-epa {
  background: linear-gradient(180deg, var(--pink-bg), #fff 80%);
  border-color: var(--pink);
}
.cm-epa .cm-num {
  background: var(--pink);
  font-size: 17px;
}

.curric-foot {
  margin-top: 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.curric-foot p {
  font-size: 15px;
  color: var(--ink-body);
  max-width: 70ch;
  line-height: 1.6;
}
.curric-foot p strong { color: var(--ink); }
.curric-foot a { color: var(--blue); font-weight: 700; }
.curric-foot .btn { color: #fff; }


/* --- new pill variant for AI Units --- */
.pc-pop.apprenticeship-units {
  background: rgba(255,194,14,.16);
  color: var(--yellow);
  border: 1px solid rgba(255,194,14,.35);
}

/* --- quiet mega callout (replaces "bundle" callout) --- */
.mega-callout-quiet {
  background: rgba(10,26,58,.04);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 12px;
}
.mega-callout-quiet .mc-title {
  font-size: 12.5px; font-weight: 800; color: var(--ink);
  margin-bottom: 4px;
}
.mega-callout-quiet .mc-meta {
  font-size: 11.5px; line-height: 1.5; color: var(--slate);
  margin-bottom: 8px;
}
.mega-callout-quiet .mc-link {
  font-size: 11.5px; font-weight: 700; color: var(--pink);
}

/* --- "Why we offer units" footer for AI Units section --- */
.units-why {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 22px 26px;
  color: rgba(255,255,255,.85);
  font-size: 14.5px; line-height: 1.6;
  margin-top: 16px;
}
.units-why .uw-icon {
  width: 48px; height: 48px;
  background: var(--yellow); color: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800;
  align-self: flex-start;
}
.units-why strong { color: #fff; }
.units-why em { color: var(--yellow); font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 500; }
.units-why .uw-cta {
  margin-top: 14px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.units-why .uw-link {
  color: rgba(255,255,255,.7);
  font-size: 13px; font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.units-why .uw-link:hover { color: var(--yellow); }
@media (max-width: 720px) {
  .units-why { grid-template-columns: 1fr; }
}

/* =====================================================================
   HERO RAIL — programme picker + Calendly, sticky in hero on widescreen
   ===================================================================== */
.hero-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  width: 100%;
}
@media (min-width: 961px) {
  .hub-hero-aside { align-self: stretch; }
  .hero-rail {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 130px);
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.18) transparent;
    padding-right: 4px;
  }
  .hero-rail::-webkit-scrollbar { width: 6px; }
  .hero-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 4px; }
}

.rail-card {
  border-radius: 20px;
  padding: 20px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: #fff;
}

/* Programmes rail card */
.rail-programmes { padding: 18px 16px 16px; }
.rail-programmes .sp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.rail-programmes .sp-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.rail-programmes .sp-count {
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,194,14,.18), rgba(229,9,127,.18));
  color: var(--yellow);
  border: 1px solid rgba(255,194,14,.3);
}
.sp-list { display: flex; flex-direction: column; gap: 5px; }

.sp-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  color: #fff;
  transition: background .2s, border-color .2s, transform .15s;
  position: relative;
  overflow: hidden;
}
.sp-row:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: #fff;
  transform: translateX(-3px);
}
.sp-row-flag {
  border-color: rgba(27,117,188,.4);
  background: rgba(27,117,188,.14);
}
.sp-row-flag:hover {
  background: rgba(27,117,188,.22);
  border-color: var(--blue);
}
.sp-row-units {
  border-color: rgba(255,194,14,.4);
  background: rgba(255,194,14,.08);
}
.sp-row-units:hover {
  background: rgba(255,194,14,.16);
  border-color: var(--yellow);
}
.sp-lvl {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--slate);
  color: #fff;
  font-weight: 800; font-size: 12px;
  letter-spacing: -.005em;
}
.sp-l4 { background: linear-gradient(135deg, #1B75BC, #145A91); }
.sp-l4-fast { background: linear-gradient(135deg, var(--orange), #C97214); }
.sp-l5 {
  background: linear-gradient(135deg, #0A1A3A, #06122B);
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
}
.sp-l6 { background: linear-gradient(135deg, var(--yellow-dark), #A6700A); }
.sp-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sp-name {
  font-size: 12.5px; font-weight: 700; line-height: 1.2;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: -.005em;
}
.sp-sub {
  font-size: 10.5px; line-height: 1.3;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sp-tag {
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
}
.sp-tag.flag { background: var(--blue); color: #fff; }
.sp-tag.fast { background: var(--yellow); color: var(--navy); }
.sp-tag.units {
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(255,194,14,.45);
}
.sp-arrow {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color .15s, transform .15s;
}
.sp-row:hover .sp-arrow {
  color: var(--yellow);
  transform: translateX(3px);
}

/* Calendly rail card */
.rail-calendly {
  background: linear-gradient(135deg, var(--pink) 0%, #B81272 100%);
  border-color: transparent;
  padding: 18px 18px 14px;
  position: relative;
  overflow: hidden;
}
.rail-calendly::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,194,14,.5), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.spc-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 5px;
  position: relative;
}
.spc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,194,14,.6);
  animation: huPulse 1.8s infinite;
}
.spc-title {
  font-size: 13px; font-weight: 800; letter-spacing: -.005em;
  color: #fff;
}
.spc-sub {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
  margin-bottom: 12px;
  position: relative;
}
.spc-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 13px; font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  letter-spacing: -.005em;
  position: relative;
}
.spc-cta:hover {
  transform: translateY(-1px);
  color: var(--ink);
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.3);
}
.spc-arrow { font-size: 13px; font-weight: 800; }
.spc-foot {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
  position: relative;
}
.spc-rating {
  font-size: 11px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  letter-spacing: -.005em;
}
.spc-rating strong { color: var(--yellow); margin: 0 2px; }


}

}


/* --- Calendly primary button inside lead card --- */
.lead-calendly {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
  background: linear-gradient(135deg, var(--pink) 0%, #B81272 100%);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 16px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 10px 24px -8px rgba(229,9,127,.35);
}
.lead-calendly:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(229,9,127,.5);
}
.lead-calendly .lc-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.lead-calendly .lc-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lead-calendly .lc-title {
  font-size: 15px; font-weight: 800; line-height: 1.15;
  letter-spacing: -.01em;
}
.lead-calendly .lc-sub {
  font-size: 12px; color: rgba(255,255,255,.85);
  font-weight: 500;
}
.lead-calendly .lc-arrow {
  font-size: 18px; font-weight: 800;
  transition: transform .15s;
}
.lead-calendly:hover .lc-arrow { transform: translate(2px, -2px); }

.lead-or {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0 14px;
  color: var(--slate-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lead-or::before, .lead-or::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.lead-or span { padding: 0 2px; }


/* --- Image-based logo card (uses real asset files) --- */
.qs-logo-img {
  width: 100%;
  height: 64px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.qs-logo-img img {
  max-height: 100%;
  max-width: 80%;
  width: auto;
  object-fit: contain;
}
.qs-logo-nvidia {
  background: #76b900; color: #fff;
  width: 100px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  margin: 7px auto 12px;
  font-weight: 800; font-size: 14px;
  letter-spacing: -.005em;
}

/* --- Calendly embed wrapper for final CTA --- */
.cta-calendly {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 18px;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.3);
  overflow: hidden;
}
.ctc-head {
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 6px;
}
.ctc-eyebrow {
  display: block;
  font-size: 14px; font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.ctc-meta {
  font-size: 12px;
  color: var(--slate);
  font-weight: 600;
}
.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.calendly-inline-widget::before {
  content: 'Loading Calendly…';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-size: 13px; font-weight: 600;
  z-index: 0;
}
.calendly-inline-widget iframe { position: relative; z-index: 1; }
.ctc-foot {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 700;
}
.ctc-line {
  color: var(--pink);
  display: inline-flex; align-items: center; gap: 4px;
}
.ctc-line:hover { color: var(--pink-dark); }

@media (max-width: 880px) {
  .calendly-inline-widget { height: 580px !important; }
}


/* --- Hero eyebrow row bullets/dividers --- */
.hub-hero .hero-eyebrow-pill .hep-divider {
  width: 1px; height: 16px;
  background: rgba(255,255,255,.18);
}
.hub-hero .hero-eyebrow-pill .hep-bullet {
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.hub-hero .hero-eyebrow-pill .hep-bullet strong { color: #fff; }

/* --- Hero urgency line below CTAs --- */
.hub-hero-urgency {
  display: flex; align-items: center; gap: 10px;
  margin: -14px 0 30px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  line-height: 1.4;
}
.hub-hero-urgency strong { color: var(--yellow); font-weight: 800; }
.hu-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(139,197,63,.6);
  animation: huPulse 1.8s infinite;
}
@keyframes huPulse {
  0%   { box-shadow: 0 0 0 0 rgba(139,197,63,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(139,197,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,197,63,0); }
}

/* --- Stats strip footnote --- */
.hs-source {
  font-size: 8px;
  color: var(--yellow);
  vertical-align: super;
  font-weight: 800;
  margin-left: 1px;
}
.hs-footnote {
  max-width: 1280px;
  margin: 18px auto 0;
  padding: 0 32px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.hs-footnote a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hs-footnote a:hover { color: var(--yellow); }


/* =====================================================================
   PREMIUM POLISH — subtle elevation, scroll reveal, refined gradients
   ===================================================================== */

/* Premium card shadow rhythm — bigger, more diffuse, less harsh */
.prog-card,
.lu-card,
.qs-card,
.func-card,
.cm-tile {
  box-shadow:
    0 1px 2px rgba(20,22,27,.04),
    0 8px 16px -8px rgba(20,22,27,.06);
}
.prog-card:hover,
.func-card:hover,
.cm-tile:hover,
.qs-card:hover {
  box-shadow:
    0 1px 2px rgba(20,22,27,.04),
    0 24px 48px -12px rgba(20,22,27,.12),
    0 8px 16px -8px rgba(20,22,27,.06);
}

/* More refined hero rays */
.hub-hero .hero-rays {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(229,9,127,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(255,194,14,.16) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(27,117,188,.14) 0%, transparent 65%);
  filter: blur(60px);
}

/* Subtle noise texture on hero for premium feel */
.hub-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .015;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Scroll-reveal — applied via JS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a row when in view */
.prog-grid .reveal:nth-child(2) { transition-delay: .08s; }
.prog-grid .reveal:nth-child(3) { transition-delay: .16s; }
.lu-grid .reveal:nth-child(2) { transition-delay: .1s; }
.lu-grid .reveal:nth-child(3) { transition-delay: .2s; }

/* Section heads — more premium type */
.section-title.bigger {
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
}
.section-title.bigger .serif {
  font-weight: 500;
  letter-spacing: -.04em;
}
.eyebrow {
  font-size: 10.5px;
  letter-spacing: .22em;
}

/* Heavier hover lift for premium cards */
.prog-card:hover,
.func-card:hover,
.cm-tile:hover {
  transform: translateY(-6px);
}
.lu-card:hover { transform: translateY(-6px); }

/* Programme flagship — refined gradient & inner glow */
.prog-flagship {
  box-shadow:
    0 40px 80px -30px rgba(27,117,188,.45),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

/* Quals strip — make them feel like real product chips */
.qs-card {
  padding: 28px 22px;
}
.qs-logo-img {
  height: 56px;
}
.qs-logo-img img {
  filter: grayscale(0%);
  transition: transform .3s;
}
.qs-card:hover .qs-logo-img img { transform: scale(1.05); }

/* Compare table — soften rows */
.compare-table tbody tr { transition: background .15s; }
.compare-table tbody tr:hover { background: rgba(229,9,127,.04); }

/* Dark section refinement */
.dark-section {
  background:
    radial-gradient(ellipse at top right, rgba(229,9,127,.08), transparent 60%),
    linear-gradient(180deg, #0A1A3A 0%, #06122B 100%);
}
.dark-section .section-title {
  letter-spacing: -.035em;
}

/* Make body text slightly larger for premium feel */
@media (min-width: 1024px) {
  .hub-hero-sub { font-size: 19px; line-height: 1.55; }
  .section-intro { font-size: 18px; }
}

/* Smoother scroll-snap feel on the progress nav active state */
.progress-nav a.active {
  color: var(--pink);
  font-weight: 800;
}

/* Subtle dot grid on dark sections */
.dark-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 90%);
  pointer-events: none;
  opacity: .4;
  z-index: 0;
}


/* =====================================================================
   PREMIUM RESET — cohesive palette, refined type, less visual noise
   ===================================================================== */

/* Cohesive dark sections — single gradient family, single accent rhythm */
.hub-stats {
  background: linear-gradient(180deg, #0A1A3A 0%, #06122B 100%);
  padding: 44px 0;
  position: relative;
}
.hub-stats::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 80%; max-width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-50%);
}
.hub-stats .container { padding: 0 32px; }
.hub-stats .hs-stat strong {
  color: #fff;
  font-weight: 800;
}
.hub-stats .hs-stat .lbl { color: rgba(255,255,255,.65); }

.dark-section, .dark-section-soft {
  background: linear-gradient(180deg, #0A1A3A 0%, #06122B 100%);
}
.dark-section-soft { background: linear-gradient(180deg, #0E2148 0%, #0A1A3A 100%); }

/* Cream/soft sections — use a single warm cream tone */
.section.cream, .section.bg-soft {
  background: #FAF7F0;
}

/* More breathing room between sections */
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* Tighter section heads */
.section-head { margin-bottom: 56px; }
.section-head-centered { margin-bottom: 64px; }

/* Refined type hierarchy */
.section-title.bigger {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.section-intro {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 400;
  max-width: 64ch;
}
.section-intro strong { color: var(--ink); font-weight: 600; }
.section-intro.light { color: rgba(255,255,255,.72); }
.section-intro.light strong { color: #fff; font-weight: 500; }

/* Eyebrow refinement */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  margin-bottom: 20px;
}

/* Programme cards: cleaner, less colored noise */
.prog-card {
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
}
.prog-card::before { display: none; }
.prog-card:hover {
  border-color: var(--ink);
}
.prog-card .pc-lvl {
  background: rgba(10,26,58,.08);
  color: var(--navy);
  border-radius: 6px;
  font-size: 11px;
  min-width: 36px;
  height: 22px;
  letter-spacing: .04em;
}
.pc-blue .pc-lvl { background: rgba(27,117,188,.12); color: var(--blue); }
.pc-orange .pc-lvl { background: rgba(247,148,29,.12); color: var(--orange); }
.pc-pink .pc-lvl { background: rgba(229,9,127,.12); color: var(--pink); }
.pc-gold .pc-lvl { background: rgba(212,146,10,.15); color: var(--yellow-dark); }
.pc-slate .pc-lvl { background: rgba(91,96,104,.12); color: var(--slate); }

/* Restore featured navy variant for L5 with refined styling */
.pc-navy.pc-feature {
  background: linear-gradient(180deg, #0A1A3A 0%, #06122B 100%);
  border: 1px solid rgba(255,194,14,.25);
}
.pc-navy.pc-feature::before { display: none; }
.pc-navy.pc-feature .pc-lvl {
  background: rgba(255,194,14,.18);
  color: var(--yellow);
}
.pc-navy.pc-feature:hover { border-color: var(--yellow); }

/* Cleaner pop pills */
.pc-pop {
  font-size: 10.5px;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--slate);
}
.pc-blue .pc-pop { color: var(--blue); border-color: rgba(27,117,188,.3); }
.pc-orange .pc-pop { color: var(--orange); border-color: rgba(247,148,29,.3); }
.pc-pink .pc-pop { color: var(--pink); border-color: rgba(229,9,127,.3); }
.pc-pop.apprenticeship-units {
  color: var(--yellow); border-color: rgba(255,194,14,.4);
}
.pc-pop.tech { color: var(--yellow-dark); border-color: rgba(212,146,10,.3); background: transparent; }
.pc-pop.new-2026 { display: none; }

/* Programme name larger and tighter */
.pc-name {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.pc-tag {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 18px;
}
.pc-tag strong { color: var(--ink); font-weight: 600; }
.pc-meta {
  font-size: 12.5px;
  color: var(--slate-2);
  font-weight: 500;
}
.pc-meta span strong { color: var(--ink); }
.pc-quals span {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 4px 8px;
}

/* Flagship programme — refined gradient, less noisy */
.prog-flagship {
  background: linear-gradient(135deg, #0A1A3A 0%, #1B4173 100%);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(20,22,27,.04), 0 24px 48px -16px rgba(10,26,58,.3);
  margin-bottom: 16px;
}
.pf-bg {
  background:
    radial-gradient(ellipse at 95% 10%, rgba(255,194,14,.16) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 100%, rgba(229,9,127,.12) 0%, transparent 55%);
}
.pf-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.pf-badge .lvl {
  background: rgba(255,194,14,.18);
  color: var(--yellow);
  border-radius: 4px;
}
.pf-num {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

/* L5 Units cards — quieter, more refined */
.lu-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px 28px;
}
.lu-card::before { display: none; }
.lu-card:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,194,14,.35);
}
.lu-num {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  letter-spacing: .08em;
}
.lu-num strong {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: -.01em;
  font-weight: 800;
}
.lu-tag {
  color: rgba(255,255,255,.6);
  font-size: 10.5px;
  letter-spacing: .2em;
  margin: 4px 0 16px;
}
.lu-name {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.lu-tagline {
  font-size: 14.5px;
  font-style: normal;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}
.lu-list li {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  padding-left: 20px;
}
.lu-list li::before {
  color: var(--yellow);
  font-weight: 700;
  font-size: 11px;
}
.lu-list li strong { color: #fff; font-weight: 600; }
.lu-who {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.lu-who strong { color: rgba(255,255,255,.85); font-weight: 600; }
.lu-price strong {
  color: var(--yellow);
  font-size: 24px;
  letter-spacing: -.02em;
}
.lu-price span {
  color: rgba(255,255,255,.5);
  font-size: 11.5px;
}

/* Units-why card — cleaner */
.units-why {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 32px;
  margin-top: 24px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.units-why .uw-icon {
  display: none;
}
.units-why strong { color: #fff; font-weight: 600; }
.units-why em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--yellow);
  font-weight: 500;
}

/* Qualifications strip — premium minimal */
.qs-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
}
.qs-logo-img { height: 48px; }
.qs-level {
  color: var(--slate);
  font-size: 10.5px;
  letter-spacing: .16em;
  margin-bottom: 6px;
}
.qs-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

/* Outcomes cards — premium dark */
.oc-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px 28px;
}
.oc-big {
  color: #fff;
  font-weight: 800;
  letter-spacing: -.04em;
}
.oc-big span { color: var(--yellow); font-weight: 600; }
.oc-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.oc-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* Function cards — premium minimal */
.func-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
  background: #fff;
}
.func-card .fc-ico {
  width: 32px; height: 32px;
  color: var(--pink);
  margin-bottom: 18px;
  font-size: 0;
}
.func-card .fc-ico svg {
  width: 100%; height: 100%;
}
.func-card h3 {
  font-size: 17px;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  font-weight: 700;
}
.func-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 14px;
}
.fc-metric {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--slate-2);
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.fc-metric strong { color: var(--ink); }

/* Curriculum tiles — quieter */
.cm-tile {
  border: 1px solid var(--line);
  border-radius: 14px;
}
.cm-num {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--line);
  width: 32px;
  font-size: 12px;
  font-weight: 700;
}
.cm-01 .cm-num, .cm-05 .cm-num, .cm-09 .cm-num { color: var(--blue); border-color: rgba(27,117,188,.3); }
.cm-02 .cm-num, .cm-06 .cm-num, .cm-10 .cm-num { color: var(--green-dark); border-color: rgba(91,166,49,.3); }
.cm-03 .cm-num, .cm-07 .cm-num, .cm-11 .cm-num { color: var(--orange); border-color: rgba(247,148,29,.3); }
.cm-04 .cm-num, .cm-08 .cm-num { color: var(--navy); border-color: rgba(10,26,58,.3); }
.cm-epa {
  background: #fff;
  border-color: var(--pink);
}
.cm-epa .cm-num { background: var(--pink); color: #fff; border-color: var(--pink); }
.cm-tile h4 {
  font-size: 15px;
  letter-spacing: -.015em;
  font-weight: 700;
}
.cm-tile p { font-size: 12.5px; color: var(--slate); }

/* Trusted logos — cleaner row */
.trusted-logos {
  gap: 6px;
}
.tl-chip {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 500;
}

/* Reviews — premium minimal */
.review {
  padding: 28px;
  border-radius: 16px;
}
.review blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-body);
  margin: 16px 0;
  font-weight: 400;
}
.review blockquote strong { color: var(--ink); font-weight: 600; }

/* Side panel — tighter, less colour competition */
.sp-row { padding: 12px; }
.sp-name { font-size: 13px; }
.sp-tag { padding: 3px 8px; font-size: 9px; }


/* ====================================================================
   MOBILE AUDIT FIXES (18 May 2026)
   - safe-area-inset for sticky CTAs on iPhone X+
   - body padding-bottom on mobile so content doesn't hide behind sticky
   - 16px+ font on form inputs (prevents iOS auto-zoom on tap)
   - skip-link styling
   - card-stack table on narrow screens
   ==================================================================== */
.skip-link{position:absolute;top:-44px;left:8px;background:var(--ink,#0a1929);color:#fff;padding:10px 16px;border-radius:6px;font-weight:700;font-size:14px;text-decoration:none;z-index:99999;transition:top .15s ease}
.skip-link:focus{top:8px;outline:3px solid #fde68a}

@media (max-width: 900px){
  /* Make sticky CTAs respect iPhone X+ safe area */
  .sticky-cta,
  .sticky-cta-mobile,
  .mobile-sticky-cta{
    padding-bottom: max(14px, env(safe-area-inset-bottom)) !important;
  }
  /* Body padding so last content isn't hidden behind sticky bar */
  body{ padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  /* Form inputs ≥16px to prevent iOS auto-zoom on tap */
  input, select, textarea{ font-size: 16px !important; }
}

/* Card-stack tables on narrow screens (better than horizontal scroll) */
@media (max-width: 600px){
  table.ddtl-compare thead{ display:none; }
  table.ddtl-compare tr{
    display:block;
    border:1px solid var(--line,#e2e8f0);
    border-radius:10px;
    padding:12px;
    margin-bottom:12px;
    background:#fff;
  }
  table.ddtl-compare td{
    display:block;
    padding:6px 0;
    border:0;
    font-size:14px;
  }
  table.ddtl-compare td::before{
    content: attr(data-label);
    display:block;
    font-weight:700;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:var(--muted,#475569);
    margin-bottom:2px;
  }
}
