/* ════════════════════════════════════════════════
   NOVARA — Course detail page (DARK hero, alternating sections, right form)
   ════════════════════════════════════════════════ */

:root {
  /* EXACT ORIGINAL NOVARA green/gold palette (active) */
  --cd-cream:    #f7f5f0;
  --cd-paper:    #fbf9f4;
  --cd-white:    #ffffff;
  --cd-ink:      #0a3e34;
  --cd-ink-2:    #1a2b27;
  --cd-mute:     #5b6d68;
  --cd-faint:    #94a39e;
  --cd-night:    #04140f;
  --cd-forest:   #0d4438;
  --cd-emerald:  #1f8772;
  --cd-emerald-2:#2ba88a;
  --cd-gold:     #c9a24a;
  --cd-gold-warm:#e0bf72;
  --cd-line:     rgba(13,68,56,0.10);
  --cd-line-d:   rgba(247,241,230,0.14);
  --cd-shadow:   0 18px 40px rgba(13,68,56,0.10);
  --cd-shadow-d: 0 24px 56px rgba(0,0,0,0.35);
  --cd-ease:     cubic-bezier(.4,0,.2,1);
  --cd-bounce:   cubic-bezier(.34,1.4,.64,1);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.cd-page {
  background: var(--cd-cream);
  color: var(--cd-ink-2);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;     /* prevents horizontal scroll caused by section bleed */
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
sup { font-size: 0.6em; vertical-align: super; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ════ HERO — dark forest + image overlay, full-width ════ */
.cd-hero {
  position: relative;
  min-height: 88vh;
  padding: 130px clamp(24px, 5vw, 80px) 80px;
  display: flex;
  align-items: center;
  color: #f7f1e6;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(31,135,114,0.30) 0%, transparent 65%),
    linear-gradient(180deg, var(--cd-night) 0%, var(--cd-forest) 40%, #14695a 90%, var(--cd-emerald) 100%);
}
.cd-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1554224155-1696413565d3?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  filter: contrast(1.05) brightness(0.85);
}
.cd-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(4,20,15,0.50) 0%, transparent 75%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(31,135,114,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.cd-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: cd-float 18s ease-in-out infinite;
}
.cd-hero-blob--a {
  width: 460px; height: 460px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(201,162,74,0.25) 0%, transparent 70%);
}
.cd-hero-blob--b {
  width: 380px; height: 380px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(31,135,114,0.32) 0%, transparent 70%);
  animation-delay: -9s;
}
@keyframes cd-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(24px,-30px) scale(1.06); }
}
.cd-hero-shell {
  position: relative;
  z-index: 3;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding-right: clamp(20px, 4vw, 380px);  /* leave room for the fixed contact form */
}
.cd-hero-main { max-width: 920px; }
.cd-pill {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--cd-gold-warm);
  background: rgba(201,162,74,0.10);
  border: 1px solid rgba(201,162,74,0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 30px;
  backdrop-filter: blur(6px);
}
.cd-hero-title {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: #f7f1e6;
  margin: 0 0 30px;
}
.cd-hero-title .em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--cd-gold-warm) 0%, #f7f1e6 50%, var(--cd-emerald-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cd-hero-prose {
  max-width: 820px;
  margin-bottom: 30px;
}
.cd-hero-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin: 0 0 16px;
}
.cd-hero-prose strong {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cd-gold-warm);
  display: block;
  margin-bottom: 4px;
}
.cd-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 36px;
}
.cd-chips li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--cd-ease), background 0.3s, border-color 0.3s;
}
.cd-chips li:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: rgba(201,162,74,0.50); }
.cd-chips li strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: #f7f1e6;
  line-height: 1.15;
  margin-bottom: 2px;
}
.cd-chips .ck {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-emerald) 0%, var(--cd-emerald-2) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.cd-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  background: linear-gradient(120deg, var(--cd-gold) 0%, var(--cd-gold-warm) 100%);
  color: var(--cd-forest);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s;
  box-shadow: 0 14px 32px rgba(201,162,74,0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(201,162,74,0.45); }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #f7f1e6;
  font-weight: 500;
  font-size: 0.96rem;
  transition: all 0.3s;
}
.btn-line:hover { border-color: var(--cd-gold-warm); color: var(--cd-gold-warm); }
.arrow { transition: transform 0.3s var(--cd-ease); }
/* Buttons too — the hero "Enquire now" is a <button>, not a link. */
a:hover .arrow,
button:hover .arrow { transform: translateX(4px); }


/* ════ LAYOUT — true 2-column grid (content + sticky form),
   sections paint FULL-BLEED backgrounds via ::before ════ */
/* ════ LAYOUT — Outline + Why-Choose with sticky right-column form ════ */
.cd-layout {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
.cd-main { min-width: 0; }
.cd-side {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 56px 0 32px;
  height: max-content;
}
/* Reset .cd-shell inside the grid — grid column handles the width constraint */
.cd-layout .cd-sec .cd-shell {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* FULL-BLEED background trick — paint the section colour with a giant box-shadow
   and clip vertically to the section's own bounds. Works regardless of how
   narrow the section column is. */
.cd-layout .cd-sec--light {
  background: var(--cd-cream);
  box-shadow: 0 0 0 100vmax var(--cd-cream);
  clip-path: inset(0 -100vmax);
}
.cd-layout .cd-sec--paper {
  background: var(--cd-white);
  box-shadow: 0 0 0 100vmax var(--cd-white);
  clip-path: inset(0 -100vmax);
}

@media (max-width: 1100px) {
  .cd-layout { grid-template-columns: 1fr; gap: 0; }
  .cd-side {
    position: static;
    padding: 24px 0 0;
  }
  .cd-side-card { max-width: 560px; margin: 0 auto; }
}

/* Section content sits in the LEFT column — already left-aligned naturally. */
.cd-sec { position: relative; padding: clamp(36px, 4.5vw, 60px) 0; }
.cd-sec .cd-shell {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
}
/* Inside .cd-layout the grid already handles the constraints, so reset */
.cd-layout .cd-sec .cd-shell {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Section backgrounds painted directly on .cd-sec (sections that live
   OUTSIDE .cd-layout are full-bleed naturally; sections INSIDE .cd-layout
   keep the ::before trick to bleed out of the grid column). */
.cd-sec--light { background: var(--cd-cream); }
.cd-sec--paper { background: var(--cd-white); }
.cd-sec--dark {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(31,135,114,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--cd-forest) 0%, var(--cd-night) 100%);
  color: rgba(255,255,255,0.92);
}
.cd-sec--enroll {
  text-align: center;
  grid-column: 1 / -1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201,162,74,0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--cd-night) 0%, var(--cd-forest) 100%);
  color: #f7f1e6;
}

/* Sections still inside .cd-layout (Outline + Why-Choose) keep the bleed trick */
.cd-layout .cd-sec::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  pointer-events: none;
}
.cd-layout .cd-sec--light::before { background: var(--cd-cream); }
.cd-layout .cd-sec--paper::before { background: var(--cd-white); }
.cd-layout .cd-sec--dark::before {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(31,135,114,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--cd-forest) 0%, var(--cd-night) 100%);
}
.cd-h2--center { text-align: center; }

@media (max-width: 1100px) {
  .cd-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cd-side {
    position: static;
    padding: 24px 0 0;
  }
  .cd-side-card { max-width: 560px; margin: 0 auto; }
}

/* ════ SECTIONS — alternating dark/light, full-width ════ */
.cd-sec {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
}
.cd-sec .cd-shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}
.cd-sec--light { background: var(--cd-cream); color: var(--cd-ink-2); }
.cd-sec--paper { background: var(--cd-white); color: var(--cd-ink-2); }
.cd-sec--light:nth-of-type(odd) { background: var(--cd-paper); }
.cd-sec--dark {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(31,135,114,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--cd-forest) 0%, var(--cd-night) 100%);
  color: rgba(255,255,255,0.92);
}
.cd-sec--enroll {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201,162,74,0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--cd-night) 0%, var(--cd-forest) 100%);
  color: #f7f1e6;
  text-align: center;
}

/* Section eyebrow / headings */
.cd-sec-head { margin-bottom: 26px; }
.cd-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  margin-bottom: 18px;
}
.cd-eyebrow--gold { color: var(--cd-gold-warm); }
.cd-h2 {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.04;
  color: var(--cd-ink);
  margin: 0 0 18px;
}
.cd-h2 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--cd-emerald), var(--cd-emerald-2), var(--cd-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cd-h2--white { color: #f7f1e6; }
.cd-h2--white em {
  background: linear-gradient(120deg, var(--cd-gold-warm), #f7f1e6, var(--cd-emerald-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-h2--center { text-align: center; }
.cd-h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 18px;
}
.cd-sec--dark .cd-h3 { color: #f7f1e6; }
.cd-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--cd-mute);
  max-width: 720px;
  margin: 0;
}
.cd-sub--mute { color: rgba(255,255,255,0.70); }
.cd-sub--center { text-align: center; margin: 0 auto 26px; }
.cd-sub-head {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  margin: 0 0 18px;
}
.cd-sub-head--gold { color: var(--cd-gold-warm); }
.cd-sub-head--space { margin-top: 44px; }

/* Section decorations */
.cd-deco-blob {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.cd-deco-blob--tl { top: -120px; left: -120px; background: radial-gradient(circle, rgba(31,135,114,0.45) 0%, transparent 70%); }
.cd-deco-blob--tr { top: -120px; right: -120px; background: radial-gradient(circle, rgba(201,162,74,0.40) 0%, transparent 70%); }
.cd-deco-blob--br { bottom: -140px; right: -120px; background: radial-gradient(circle, rgba(201,162,74,0.30) 0%, transparent 70%); }
.cd-deco-blob--bl-light { bottom: -120px; left: -120px; background: radial-gradient(circle, rgba(31,135,114,0.20) 0%, transparent 70%); }
.cd-sec--light .cd-deco-blob--tr { background: radial-gradient(circle, rgba(201,162,74,0.30) 0%, transparent 70%); }
.cd-deco-dots {
  position: absolute;
  width: 160px; height: 160px;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, currentColor 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.18;
  color: var(--cd-emerald);
}
.cd-sec--dark .cd-deco-dots { color: var(--cd-gold-warm); opacity: 0.20; }
.cd-deco-dots--tr { top: 60px; right: 40px; }
.cd-deco-dots--tl { top: 60px; left: 40px; }


/* ════ 01 · OUTLINE — vertical list, single-column bullets ════ */
.cd-ol {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.cd-ol::before {
  content: '';
  position: absolute;
  left: 10px; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg,
    #1f8772 0%, #7a9d8a 12%, #7a9d8a 24%,
    #c9a24a 36%, #d99a3d 48%, #1f8772 60%,
    #5a9fa3 72%, #8A5D80 84%, #c9a24a 100%);
  border-radius: 2px;
  opacity: 0.55;
}
.cd-out {
  position: relative;
  padding: 22px 0 22px 110px;
  border-bottom: 1px solid rgba(31,135,114,0.08);
  transition: background 0.4s var(--cd-ease);
}
.cd-out:last-child { border-bottom: none; }
.cd-out:hover { background: rgba(31,135,114,0.04); }
.cd-out-no {
  position: absolute;
  left: 30px; top: 18px;
  width: 60px;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  text-align: right;
  letter-spacing: -0.02em;
  color: var(--cd-emerald);
  transition: transform 0.4s var(--cd-ease);
}
.cd-out:hover .cd-out-no { transform: scale(1.08); }
.cd-out::after {
  /* Timeline dot — sits in its own column LEFT of the number, never overlapping */
  content: '';
  position: absolute;
  left: 4px; top: 28px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cd-emerald);
  box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(31,135,114,0.30);
  transition: transform 0.4s var(--cd-ease);
}
.cd-out:hover::after { transform: scale(1.30); }

/* Per-module colors */
.cd-out[data-c="emerald"] .cd-out-no { color: #1f8772; }
.cd-out[data-c="emerald"]::after { background: #1f8772; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(31,135,114,0.35); }
.cd-out[data-c="sage"]    .cd-out-no { color: #7a9d8a; }
.cd-out[data-c="sage"]::after    { background: #7a9d8a; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(122,157,138,0.35); }
.cd-out[data-c="olive"]   .cd-out-no { color: #7a9d8a; }
.cd-out[data-c="olive"]::after   { background: #7a9d8a; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(92,155,130,0.35); }
.cd-out[data-c="mustard"] .cd-out-no { color: #c9a24a; }
.cd-out[data-c="mustard"]::after { background: #c9a24a; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(201,162,74,0.35); }
.cd-out[data-c="amber"]   .cd-out-no { color: #d99a3d; }
.cd-out[data-c="amber"]::after   { background: #d99a3d; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(217,154,61,0.35); }
.cd-out[data-c="coral"]   .cd-out-no { color: #1f8772; }
.cd-out[data-c="coral"]::after   { background: #1f8772; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(31,135,114,0.35); }
.cd-out[data-c="sky"]     .cd-out-no { color: #5a9fa3; }
.cd-out[data-c="sky"]::after     { background: #5a9fa3; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(90,159,163,0.35); }
.cd-out[data-c="plum"]    .cd-out-no { color: #8A5D80; }
.cd-out[data-c="plum"]::after    { background: #8A5D80; box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(138,93,128,0.35); }
.cd-out[data-c="mastery"] .cd-out-no {
  background: linear-gradient(120deg, #c9a24a, #e0bf72);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cd-out[data-c="mastery"]::after {
  background: linear-gradient(135deg, #c9a24a, #e0bf72);
  box-shadow: 0 0 0 4px var(--cd-cream), 0 0 0 5px rgba(201,162,74,0.40);
}

.cd-out-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 14px;
  line-height: 1.5;       /* visually align with the big 01 number */
}
.cd-out:hover .cd-out-body h3 { color: var(--cd-emerald); }

/* Bullet list — single column, vertical */
.cd-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cd-bullets > li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--cd-ink-2);
}
.cd-bullets > li::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cd-emerald);
  box-shadow: 0 0 0 3px rgba(31,135,114,0.16);
}

@media (max-width: 760px) {
  .cd-out { padding-left: 84px; }
  .cd-out-no { left: 26px; width: 50px; font-size: 1.9rem; }
  .cd-out::after { left: 2px; }
  .cd-ol::before { left: 8px; }
}

/* ════ 02 · OBJECTIVES (DARK bg, glass cards) ════ */
.cd-obj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 cards per row -> 8 cards = 2 rows */
  gap: 18px;
}
@media (max-width: 1100px) { .cd-obj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .cd-obj-grid { grid-template-columns: 1fr; } }
.cd-obj {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px 26px;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--cd-ease), background 0.45s, border-color 0.45s;
  position: relative;
  overflow: hidden;
}
.cd-obj::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cd-emerald-2), var(--cd-gold-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--cd-ease);
}
.cd-obj:hover { transform: translateY(-5px); background: rgba(255,255,255,0.10); border-color: rgba(224,191,114,0.40); }
.cd-obj:hover::before { transform: scaleX(1); }
.cd-obj-no {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 500;
  background: linear-gradient(120deg, var(--cd-gold-warm), #f7f1e6);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.cd-obj p { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.90); margin: 0; }

/* ════ 03 · TARGET AUDIENCE (LIGHT bg, DARK GREEN cards) ════ */
.cd-aud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.cd-aud {
  text-align: center;
  background: linear-gradient(160deg, var(--cd-forest) 0%, var(--cd-night) 100%);
  border: 1px solid rgba(31,135,114,0.40);
  border-radius: 20px;
  padding: 28px 20px 24px;
  color: #f7f1e6;
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s, border-color 0.45s;
  position: relative;
  overflow: hidden;
}
.cd-aud::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(201,162,74,0.20), transparent 30%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.cd-aud:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 24px 50px rgba(31,135,114,0.30); border-color: var(--cd-gold-warm); }
.cd-aud:hover::after { opacity: 1; animation: cd-spin 4s linear infinite; }
@keyframes cd-spin { to { transform: rotate(360deg); } }
.cd-aud-ic {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-emerald) 0%, var(--cd-emerald-2) 100%);
  color: #f7f1e6;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 8px 18px rgba(0,0,0,0.30);
}
.cd-aud h4 {
  position: relative; z-index: 1;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #f7f1e6;
  margin: 0 0 4px;
}
.cd-aud p { position: relative; z-index: 1; font-size: 0.82rem; color: rgba(255,255,255,0.70); margin: 0; }


/* ════ 04 · PREREQUISITES (DARK bg, LIGHT cream cards) ════ */
.cd-prereq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cd-pre {
  position: relative;
  background: linear-gradient(180deg, #fbf9f4 0%, #f7f1e6 100%);
  border-radius: 22px;
  padding: 36px 28px 28px;
  color: var(--cd-ink-2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.20);
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s;
}
.cd-pre:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.30); }
.cd-pre-letter {
  position: absolute;
  top: -22px; left: 28px;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cd-emerald) 0%, var(--cd-forest) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #f7f1e6;
  box-shadow: 0 14px 28px rgba(0,0,0,0.30);
}
.cd-pre--highlight { background: linear-gradient(180deg, #f7f1e6 0%, #faf2dd 100%); box-shadow: 0 24px 50px rgba(201,162,74,0.25); }
.cd-pre--highlight .cd-pre-letter { background: linear-gradient(135deg, var(--cd-gold), var(--cd-gold-warm)); color: var(--cd-forest); }
.cd-pre-tag {
  display: inline-block;
  position: absolute;
  top: 22px; right: 22px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cd-gold);
  background: rgba(201,162,74,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}
.cd-pre h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 14px 0 2px;
}
.cd-pre-sub {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  margin: 0 0 18px;
}
.cd-pre ul { list-style: none; padding: 0; margin: 0; }
.cd-pre li {
  position: relative;
  padding-left: 24px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--cd-ink-2);
  margin-bottom: 8px;
}
.cd-pre li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--cd-emerald);
  font-weight: 700;
}

/* ════ 05 · SKILLS GAINED + LEARNING OUTCOMES (LIGHT) ════ */
.cd-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
}
.cd-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cd-tags span {
  padding: 9px 18px;
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--cd-ink);
  transition: all 0.35s var(--cd-bounce);
}
.cd-tags span:hover {
  background: linear-gradient(120deg, var(--cd-emerald), var(--cd-emerald-2));
  color: #fff; border-color: transparent;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 28px rgba(31,135,114,0.30);
}
.cd-outcomes-list { list-style: none; padding: 0; margin: 0; }
.cd-outcomes-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--cd-ink-2);
  border-bottom: 1px dashed rgba(31,135,114,0.10);
}
.cd-outcomes-list li:last-child { border-bottom: none; }
.cd-outcomes-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-emerald), var(--cd-emerald-2));
  box-shadow: 0 0 0 4px rgba(31,135,114,0.12);
}
.cd-outcomes-list li::after {
  content: '✓';
  position: absolute;
  left: 5px; top: 9px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ════ 06 · COURSE INCLUDES (DARK, shape cards) ════ */
.cd-inc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cd-inc {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 32px 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--cd-bounce), background 0.5s, border-color 0.5s, box-shadow 0.5s;
}
.cd-inc:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255,255,255,0.10);
  border-color: var(--cd-gold-warm);
  box-shadow: 0 30px 56px rgba(0,0,0,0.40);
}
.cd-inc-shape {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--cd-emerald) 0%, var(--cd-emerald-2) 100%);
  box-shadow: 0 14px 30px rgba(31,135,114,0.35);
  transition: transform 0.5s var(--cd-bounce);
}
.cd-inc:hover .cd-inc-shape { transform: rotate(-10deg) scale(1.10); }
.cd-shape-circle { border-radius: 50%; }
.cd-shape-square { border-radius: 16px; background: linear-gradient(135deg, var(--cd-gold), var(--cd-gold-warm)); }
.cd-shape-hex {
  border-radius: 16px;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  background: linear-gradient(135deg, #1f8772, #d99a3d);
}
.cd-shape-pent {
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: linear-gradient(135deg, #5a9fa3, #1f8772);
}
.cd-inc h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f7f1e6;
  margin: 0 0 6px;
}
.cd-inc p { font-size: 0.86rem; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.5; }

/* ════ 07 · DELIVERY TABS (LIGHT) ════ */
.cd-tabs {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--cd-shadow);
}
.cd-tab-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--cd-paper);
  border-bottom: 1px solid var(--cd-line);
}
.cd-tab {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cd-mute);
  background: transparent;
  border-right: 1px solid var(--cd-line);
  position: relative;
  transition: color 0.3s, background 0.3s;
}
.cd-tab:last-child { border-right: none; }
.cd-tab .ti { color: var(--cd-emerald); font-size: 1rem; transition: transform 0.3s; }
.cd-tab:hover { color: var(--cd-ink); background: rgba(31,135,114,0.04); }
.cd-tab:hover .ti { transform: scale(1.15); }
.cd-tab.is-active { color: var(--cd-forest); background: var(--cd-white); }
.cd-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 16px; right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--cd-emerald), var(--cd-emerald-2));
  border-radius: 3px 3px 0 0;
}
.cd-tab-panel { display: none; padding: 40px clamp(24px, 4vw, 44px); animation: cd-panel-in 0.25s var(--cd-ease) both; }
.cd-tab-panel.is-active { display: block; }
@keyframes cd-panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.cd-tp-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
@media (max-width: 760px) { .cd-tp-grid { grid-template-columns: 1fr; gap: 24px; } }
.cd-tp-meta {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cd-emerald);
  background: rgba(31,135,114,0.10);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.cd-tab-panel h3 { font-family: 'Fraunces', serif; font-size: 1.55rem; font-weight: 500; color: var(--cd-ink); margin: 0 0 14px; }
.cd-tab-panel p { font-size: 0.98rem; line-height: 1.7; color: var(--cd-mute); margin: 0 0 20px; }
.cd-tp-feat { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cd-tp-feat li {
  padding: 6px 14px;
  background: rgba(31,135,114,0.08);
  border: 1px solid rgba(31,135,114,0.20);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--cd-forest);
}
.cd-tp-side {
  background: linear-gradient(180deg, rgba(31,135,114,0.07) 0%, transparent 100%);
  border: 1px solid var(--cd-line);
  border-radius: 18px;
  padding: 26px 24px;
}
.cd-tp-side h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cd-emerald);
  margin: 0 0 14px;
}
.cd-check { list-style: none; padding: 0; margin: 0; }
.cd-check li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cd-ink-2);
  margin-bottom: 10px;
}
.cd-check li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 16px; height: 16px;
  background: var(--cd-emerald);
  border-radius: 50%;
}
.cd-check li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 1px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}


/* ════ 08 · CERTIFICATION (DARK, gradient cards) ════ */
.cd-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cd-cert {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.90);
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s, border-color 0.45s;
}
.cd-cert:hover { transform: translateY(-5px); box-shadow: 0 30px 56px rgba(0,0,0,0.40); border-color: var(--cd-gold-warm); }
.cd-cert--featured {
  background: linear-gradient(135deg, var(--cd-forest) 0%, var(--cd-emerald) 100%);
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(31,135,114,0.35);
}
.cd-cert-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cd-gold) 0%, var(--cd-gold-warm) 100%);
  color: var(--cd-forest);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.cd-cert h3 { font-family: 'Fraunces', serif; font-size: 1.45rem; font-weight: 500; color: #f7f1e6; margin: 0 0 6px; }
.cd-cert-name {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cd-gold-warm); margin: 0 0 16px;
}
.cd-cert-body { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.85); margin: 0; }
.cd-cert ul { list-style: none; padding: 0; margin: 0; }
.cd-cert li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 0.93rem;
  color: rgba(255,255,255,0.90);
}
.cd-cert li:last-child { border-bottom: none; }
.cd-cert li strong {
  display: inline-block;
  min-width: 110px;
  font-weight: 600;
  color: var(--cd-gold-warm);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ════ 09 · FAQ (LIGHT, animated accordion) ════ */
.cd-faq-wrap { max-width: 880px; margin: 0 auto; }
.cd-faq {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 18px;
  margin-bottom: 14px;
  padding: 22px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.4s var(--cd-ease);
}
.cd-faq:hover { border-color: rgba(31,135,114,0.30); box-shadow: var(--cd-shadow); }
.cd-faq[open] { border-color: var(--cd-emerald); box-shadow: 0 14px 32px rgba(31,135,114,0.12); }
.cd-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cd-ink);
  position: relative;
  padding-right: 44px;
  transition: color 0.3s;
}
.cd-faq summary::-webkit-details-marker { display: none; }
.cd-faq summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 28px; height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background: rgba(31,135,114,0.10);
  border: 1px solid rgba(31,135,114,0.30);
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--cd-ease);
}
.cd-faq summary::before {
  content: '+';
  position: absolute;
  right: 11px; top: 50%;
  margin-top: -12px;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cd-emerald);
  z-index: 2;
  transition: transform 0.4s var(--cd-ease);
}
.cd-faq[open] summary::after { background: var(--cd-emerald); border-color: var(--cd-emerald); }
.cd-faq[open] summary::before { color: #fff; transform: rotate(45deg); }
.cd-faq summary:hover { color: var(--cd-emerald); }
.cd-faq-body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.45s var(--cd-ease), opacity 0.45s, padding-top 0.45s;
}
.cd-faq[open] .cd-faq-body { max-height: 400px; opacity: 1; padding-top: 14px; }
.cd-faq-body p { font-size: 0.96rem; line-height: 1.7; color: var(--cd-mute); margin: 0; padding-right: 44px; }

/* ════ 10 · CAREER (DARK) ════ */
.cd-role-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cd-role-tags span {
  padding: 11px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f7f1e6;
  transition: transform 0.4s var(--cd-bounce), box-shadow 0.4s, background 0.4s, border-color 0.4s;
}
.cd-role-tags span:hover {
  background: linear-gradient(135deg, var(--cd-gold), var(--cd-gold-warm));
  color: var(--cd-forest);
  border-color: transparent;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 28px rgba(201,162,74,0.30);
}
.cd-opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cd-opp {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.92);
  transition: transform 0.45s var(--cd-ease), background 0.45s, border-color 0.45s;
}
.cd-opp::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cd-emerald-2), var(--cd-gold-warm));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--cd-ease);
}
.cd-opp:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); border-color: var(--cd-gold-warm); }
.cd-opp:hover::before { transform: scaleX(1); }
.cd-opp-no {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cd-gold-warm); margin-bottom: 10px; display: inline-block;
}
.cd-opp h4 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 500; color: #f7f1e6; margin: 0 0 10px; }
.cd-opp p { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0; }
.cd-opp em { color: var(--cd-gold-warm); font-style: italic; }

/* ════ 11 · CORPORATE (LIGHT cards) ════ */
.cd-corp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cd-corp {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 20px;
  padding: 30px 26px;
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s, border-color 0.45s;
}
.cd-corp:hover { transform: translateY(-4px); box-shadow: var(--cd-shadow); border-color: var(--cd-emerald); }
.cd-corp h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 500; color: var(--cd-ink); margin: 0 0 12px; }
.cd-corp p { font-size: 0.96rem; line-height: 1.65; color: var(--cd-mute); margin: 0; }

/* ════ 12 · ENROLL CTA ════ */
.cd-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ════ STICKY FORM (right side, short) ════ */
.cd-side-card {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 24px 48px rgba(31,135,114,0.18);
  position: relative;
  overflow: hidden;
}
.cd-side-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cd-emerald) 0%, var(--cd-gold) 100%);
}
.cd-side-eyebrow {
  display: block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  margin-bottom: 8px;
}
.cd-side-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.cd-side-sub {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--cd-mute);
  margin: 0 0 18px;
}
.cd-form { display: flex; flex-direction: column; gap: 10px; }
.cd-form input,
.cd-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cd-paper);
  border: 1px solid var(--cd-line);
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--cd-ink-2);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.cd-form input::placeholder,
.cd-form textarea::placeholder { color: var(--cd-faint); }
.cd-form input:focus,
.cd-form textarea:focus {
  outline: none;
  border-color: var(--cd-emerald);
  background: var(--cd-white);
  box-shadow: 0 0 0 4px rgba(31,135,114,0.10);
}
.cd-form-btn {
  margin-top: 4px;
  padding: 13px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cd-forest), var(--cd-emerald));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.4s var(--cd-ease), box-shadow 0.3s;
  box-shadow: 0 14px 26px rgba(31,135,114,0.25);
}
.cd-form-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(31,135,114,0.35); }
.cd-form-note {
  font-size: 0.72rem;
  color: var(--cd-faint);
  text-align: center;
  margin: 4px 0 0;
}
.cd-form-error {
  font-size: 0.74rem;
  color: #dc2626;
  margin: -6px 0 0;
}
.cd-form-success {
  margin-top: 10px;
  padding: 11px 13px;
  background: rgba(31,135,114,0.10);
  border: 1px solid rgba(31,135,114,0.30);
  border-radius: 10px;
  color: var(--cd-forest);
  font-size: 0.84rem;
  font-weight: 500;
  text-align: center;
}

/* ════ SCROLL ANIMATIONS ════ */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.4s var(--cd-ease),
    transform 0.4s var(--cd-ease);
  transition-delay: calc(var(--anim-i, 0) * 0.03s);
}
[data-anim="fade-up"]    { transform: translateY(34px); }
[data-anim="slide-left"] { transform: translateX(-34px); }
[data-anim="slide-right"]{ transform: translateX(34px); }
[data-anim="scale"]      { transform: scale(0.92); }
[data-anim="flip"]       { transform: perspective(900px) rotateY(36deg); transform-origin: left center; }
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) perspective(900px) rotateY(0);
}

/* Per-section stagger via nth-child */
.cd-ol > [data-anim]:nth-child(n+2) { --anim-i: 1; }
.cd-ol > [data-anim]:nth-child(n+3) { --anim-i: 2; }
.cd-ol > [data-anim]:nth-child(n+4) { --anim-i: 3; }
.cd-ol > [data-anim]:nth-child(n+5) { --anim-i: 4; }
.cd-ol > [data-anim]:nth-child(n+6) { --anim-i: 5; }
.cd-ol > [data-anim]:nth-child(n+7) { --anim-i: 6; }
.cd-ol > [data-anim]:nth-child(n+8) { --anim-i: 7; }
.cd-ol > [data-anim]:nth-child(n+9) { --anim-i: 8; }
.cd-obj-grid > [data-anim]:nth-child(n+2) { --anim-i: 1; }
.cd-obj-grid > [data-anim]:nth-child(n+3) { --anim-i: 2; }
.cd-obj-grid > [data-anim]:nth-child(n+4) { --anim-i: 3; }
.cd-obj-grid > [data-anim]:nth-child(n+5) { --anim-i: 4; }
.cd-obj-grid > [data-anim]:nth-child(n+6) { --anim-i: 5; }
.cd-obj-grid > [data-anim]:nth-child(n+7) { --anim-i: 6; }
.cd-obj-grid > [data-anim]:nth-child(n+8) { --anim-i: 7; }
.cd-aud-grid > [data-anim]:nth-child(n+2) { --anim-i: 1; }
.cd-aud-grid > [data-anim]:nth-child(n+3) { --anim-i: 2; }
.cd-aud-grid > [data-anim]:nth-child(n+4) { --anim-i: 3; }
.cd-aud-grid > [data-anim]:nth-child(n+5) { --anim-i: 4; }
.cd-aud-grid > [data-anim]:nth-child(n+6) { --anim-i: 5; }
.cd-aud-grid > [data-anim]:nth-child(n+7) { --anim-i: 6; }
.cd-aud-grid > [data-anim]:nth-child(n+8) { --anim-i: 7; }
.cd-aud-grid > [data-anim]:nth-child(n+9) { --anim-i: 8; }
.cd-inc-grid > [data-anim]:nth-child(n+2) { --anim-i: 1; }
.cd-inc-grid > [data-anim]:nth-child(n+3) { --anim-i: 2; }
.cd-inc-grid > [data-anim]:nth-child(n+4) { --anim-i: 3; }
.cd-inc-grid > [data-anim]:nth-child(n+5) { --anim-i: 4; }
.cd-inc-grid > [data-anim]:nth-child(n+6) { --anim-i: 5; }
.cd-inc-grid > [data-anim]:nth-child(n+7) { --anim-i: 6; }
.cd-inc-grid > [data-anim]:nth-child(n+8) { --anim-i: 7; }
.cd-faq-wrap > [data-anim]:nth-of-type(n+2) { --anim-i: 1; }
.cd-faq-wrap > [data-anim]:nth-of-type(n+3) { --anim-i: 2; }
.cd-faq-wrap > [data-anim]:nth-of-type(n+4) { --anim-i: 3; }
.cd-faq-wrap > [data-anim]:nth-of-type(n+5) { --anim-i: 4; }
.cd-faq-wrap > [data-anim]:nth-of-type(n+6) { --anim-i: 5; }
.cd-role-tags > [data-anim]:nth-child(n+2) { --anim-i: 1; }
.cd-role-tags > [data-anim]:nth-child(n+3) { --anim-i: 2; }
.cd-role-tags > [data-anim]:nth-child(n+4) { --anim-i: 3; }
.cd-role-tags > [data-anim]:nth-child(n+5) { --anim-i: 4; }
.cd-role-tags > [data-anim]:nth-child(n+6) { --anim-i: 5; }
.cd-role-tags > [data-anim]:nth-child(n+7) { --anim-i: 6; }
.cd-role-tags > [data-anim]:nth-child(n+8) { --anim-i: 7; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
  .cd-hero-blob, .cd-aud::after { animation: none; }
}

/* Responsive small tweaks */
@media (max-width: 760px) {
  .cd-hero { padding: 100px 24px 60px; min-height: auto; }
  .cd-sec { padding: 56px 0; }
  .cd-sec-head { margin-bottom: 26px; }
  .cd-tab { padding: 14px 10px; font-size: 0.82rem; }
  .cd-tab-panel { padding: 28px 20px; }
}

/* ════════════════════════════════════════════════
   SCHEDULE & BOOKING — tabs, date rows, self-paced packages
   ════════════════════════════════════════════════ */
.cd-sched {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--cd-shadow);
}
.cd-sched-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--cd-paper);
  border-bottom: 1px solid var(--cd-line);
}
.cd-stab {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cd-mute);
  background: transparent;
  border-right: 1px solid var(--cd-line);
  position: relative;
  transition: color 0.3s, background 0.3s;
}
.cd-stab:last-child { border-right: none; }
.cd-stab .ti { color: var(--cd-emerald); font-size: 0.95rem; transition: transform 0.3s; }
.cd-stab:hover { color: var(--cd-ink); background: rgba(31,135,114,0.04); }
.cd-stab:hover .ti { transform: scale(1.15); }
.cd-stab.is-active { color: var(--cd-forest); background: var(--cd-white); }
.cd-stab.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 14px; right: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--cd-emerald), var(--cd-gold));
  border-radius: 3px 3px 0 0;
}

.cd-spanel { display: none; padding: 30px clamp(20px, 3vw, 36px); animation: cd-panel-in 0.28s var(--cd-ease) both; }
.cd-spanel.is-active { display: block; }

/* Date table */
.cd-dates-table { display: flex; flex-direction: column; gap: 8px; }
.cd-dates-head {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr auto;
  gap: 18px;
  padding: 10px 18px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cd-emerald);
}
.cd-date-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  background: var(--cd-paper);
  border: 1px solid var(--cd-line);
  border-radius: 14px;
  transition: transform 0.4s var(--cd-ease), border-color 0.4s, box-shadow 0.4s;
}
.cd-date-row:hover {
  transform: translateY(-2px);
  border-color: var(--cd-emerald);
  box-shadow: var(--cd-shadow);
}
.cd-date-label strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cd-ink);
  line-height: 1.2;
}
.cd-date-label em {
  font-style: normal;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cd-faint);
  margin-top: 2px;
  display: inline-block;
}
.cd-date-venue { font-size: 0.92rem; color: var(--cd-mute); }
.cd-date-price strong {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--cd-ink);
  font-weight: 500;
}
.cd-date-price em { color: var(--cd-faint); font-style: normal; font-size: 0.78rem; }
.cd-date-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cd-forest), var(--cd-emerald));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s;
  box-shadow: 0 8px 18px rgba(31,135,114,0.20);
}
.cd-date-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 24px rgba(31,135,114,0.30); }
@media (max-width: 760px) {
  .cd-dates-head { display: none; }
  .cd-date-row { grid-template-columns: 1fr; gap: 8px; }
}

/* No-dates state (classroom / onsite when empty) */
.cd-no-dates {
  text-align: center;
  padding: 36px 20px 32px;
  background: linear-gradient(180deg, rgba(31,135,114,0.06) 0%, transparent 100%);
  border: 1px dashed rgba(31,135,114,0.30);
  border-radius: 16px;
}
.cd-no-dates-icon { font-size: 2.4rem; margin-bottom: 12px; }
.cd-no-dates h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 8px;
}
.cd-no-dates p { color: var(--cd-mute); margin: 0 0 22px; }

/* ─── Self-Paced panel — intro + balanced features + side-by-side packages ─── */
.cd-sp-intro {
  margin-bottom: 28px;
  max-width: 720px;
}
.cd-sp-intro h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 12px 0 10px;
}
.cd-sp-intro p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--cd-mute);
  margin: 0;
}
.cd-sp-subhead {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  margin: 30px 0 14px;
}

/* CSS columns auto-balance the items left-to-right with no row-height mismatch */
.cd-sp-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 32px;
}
@media (max-width: 600px) { .cd-sp-feats { columns: 1; } }
.cd-sp-feats li {
  break-inside: avoid;
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--cd-ink-2);
}
.cd-sp-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--cd-emerald), var(--cd-emerald-2));
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(31,135,114,0.20);
}
.cd-sp-feats li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 7px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Packages — side by side */
.cd-sp-packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.cd-pack {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 18px;
  padding: 22px 22px 20px;
  position: relative;
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s, border-color 0.45s;
}
.cd-pack:hover { transform: translateY(-4px); box-shadow: var(--cd-shadow); border-color: var(--cd-emerald); }
.cd-pack--highlight {
  background: linear-gradient(180deg, rgba(31,135,114,0.06) 0%, var(--cd-white) 100%);
  border-color: var(--cd-emerald);
  box-shadow: 0 14px 32px rgba(31,135,114,0.15);
}
.cd-pack-tag {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  background: rgba(31,135,114,0.10);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.cd-pack h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 4px;
}
.cd-pack-price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cd-forest);
  margin: 0 0 14px;
}
.cd-pack-price small { font-size: 0.7rem; font-weight: 400; color: var(--cd-mute); margin-left: 2px; }
.cd-pack-feats { list-style: none; padding: 0; margin: 0 0 18px; }
.cd-pack-feats li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--cd-ink-2);
  margin-bottom: 6px;
}
.cd-pack-feats li::before { content: '◆'; position: absolute; left: 0; top: 0; color: var(--cd-emerald); font-size: 0.7rem; }
.cd-pack-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cd-forest), var(--cd-emerald));
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s;
  box-shadow: 0 10px 20px rgba(31,135,114,0.20);
}
.cd-pack-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(31,135,114,0.30); }

/* ════════════════════════════════════════════════
   REQUEST-A-DATE MODAL
   ════════════════════════════════════════════════ */
.cd-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: cd-modal-in 0.2s var(--cd-ease) both;
}
.cd-modal[hidden] { display: none; }
@keyframes cd-modal-in { from { opacity: 0; } to { opacity: 1; } }
.cd-modal-back {
  position: absolute; inset: 0;
  background: rgba(4,20,15,0.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.cd-modal-card {
  position: relative;
  max-width: 540px;
  width: 100%;
  background: var(--cd-white);
  border-radius: 22px;
  padding: 36px clamp(24px, 4vw, 40px) 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.50);
  animation: cd-modal-pop 0.25s var(--cd-bounce) both;
  z-index: 1;
}
@keyframes cd-modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cd-modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cd-paper);
  font-size: 1.4rem;
  color: var(--cd-mute);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.cd-modal-x:hover { background: var(--cd-emerald); color: #fff; transform: rotate(90deg); }
.cd-modal-eyebrow {
  display: block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  margin-bottom: 10px;
}
.cd-modal-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 6px;
}
.cd-modal-card > p {
  font-size: 0.95rem;
  color: var(--cd-mute);
  margin: 0 0 22px;
}
.cd-modal-form { display: flex; flex-direction: column; gap: 10px; }
.cd-mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .cd-mf-row { grid-template-columns: 1fr; } }
.cd-modal-form input,
.cd-modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cd-paper);
  border: 1px solid var(--cd-line);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--cd-ink-2);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.cd-modal-form input:focus,
.cd-modal-form textarea:focus {
  outline: none;
  border-color: var(--cd-emerald);
  background: var(--cd-white);
  box-shadow: 0 0 0 4px rgba(31,135,114,0.10);
}
.cd-modal-form input::placeholder,
.cd-modal-form textarea::placeholder { color: var(--cd-faint); }
.cd-mf-btn {
  margin-top: 6px;
  padding: 14px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cd-forest), var(--cd-emerald));
  color: #fff;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s;
  box-shadow: 0 14px 28px rgba(31,135,114,0.25);
}
.cd-mf-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 36px rgba(31,135,114,0.35); }
.cd-mf-success {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(31,135,114,0.10);
  border: 1px solid rgba(31,135,114,0.30);
  border-radius: 10px;
  color: var(--cd-forest);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

/* ════════════════════════════════════════════════
   ACCREDITATION STRIP — sits between hero and main grid
   ════════════════════════════════════════════════ */
.cd-accred {
  position: relative;
  padding: 36px clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, #fbf9f4 0%, var(--cd-white) 60%, #f7f1e6 100%);
  border-bottom: 1px solid var(--cd-line);
  text-align: center;
}
.cd-accred-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cd-accred-lead {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--cd-ink);
  font-weight: 400;
  flex: 1 1 280px;
  text-align: left;
}
.cd-accred-lead strong {
  font-weight: 500;
  background: linear-gradient(120deg, var(--cd-emerald), var(--cd-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-accred-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.cd-accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(31,135,114,0.08);
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s, border-color 0.4s;
}
.cd-accred-badge:hover { transform: translateY(-2px); border-color: var(--cd-emerald); box-shadow: 0 14px 26px rgba(31,135,114,0.20); }
.cd-accred-badge .aba {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  background: linear-gradient(120deg, var(--cd-emerald), var(--cd-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-accred-badge .abb {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cd-mute);
}

/* ════════════════════════════════════════════════
   FLAT OUTLINE BULLETS — single level, no sub-topics
   ════════════════════════════════════════════════ */
.cd-bullets > li {
  font-weight: 400;
  color: var(--cd-ink-2);
  font-size: 0.96rem;
}

/* ════════════════════════════════════════════════
   DELIVERY FEATURE BLOCKS — icon + heading + p
   ════════════════════════════════════════════════ */
.cd-feat-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--cd-line);
}
.cd-fb {
  background: var(--cd-paper);
  border: 1px solid var(--cd-line);
  border-radius: 14px;
  padding: 18px 16px;
  transition: transform 0.4s var(--cd-ease), border-color 0.4s, box-shadow 0.4s;
}
.cd-fb:hover { transform: translateY(-3px); border-color: var(--cd-emerald); box-shadow: var(--cd-shadow); }
.cd-fb-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-emerald), var(--cd-emerald-2));
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(31,135,114,0.30);
}
.cd-fb h5 {
  font-family: 'Fraunces', serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 4px;
}
.cd-fb p { font-size: 0.82rem; line-height: 1.5; color: var(--cd-mute); margin: 0; }

/* ════════════════════════════════════════════════
   TRAIN YOUR WORKFORCE strip
   ════════════════════════════════════════════════ */
/* Train Your Workforce — full-bleed dark section, no rounded card */
.cd-sec--train {
  background:
    radial-gradient(ellipse 60% 80% at 95% 50%, rgba(201,162,74,0.20) 0%, transparent 60%),
    linear-gradient(120deg, var(--cd-forest) 0%, var(--cd-emerald) 100%);
  color: #f7f1e6;
}
.cd-train-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.cd-train-eyebrow {
  display: block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cd-gold-warm);
  margin-bottom: 12px;
}
.cd-train-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
  color: #f7f1e6;
  margin: 0 0 10px;
}
.cd-train-text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 640px;
}
@media (max-width: 760px) {
  .cd-train-row { grid-template-columns: 1fr; gap: 20px; }
  .cd-accred-inner { flex-direction: column; align-items: stretch; }
  .cd-accred-lead { text-align: center; }
  .cd-accred-badges { justify-content: center; }
}

/* ════════════════════════════════════════════════
   TRUST STATS STRIP — full-width row right under accreditation
   ════════════════════════════════════════════════ */
.cd-trust {
  background: linear-gradient(135deg, var(--cd-forest) 0%, var(--cd-emerald) 100%);
  color: #f7f1e6;
  padding: 22px clamp(24px, 5vw, 80px);
}
.cd-trust-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  align-items: center;
}
.cd-trust-item {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.cd-trust-item:last-child { border-right: none; }
.cd-trust-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 500;
  background: linear-gradient(120deg, var(--cd-gold-warm), #f7f1e6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-trust-item span {
  display: block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
}
.cd-trust-item--accent strong {
  background: linear-gradient(120deg, #1f8772, #d99a3d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cd-pulse-soft 2.4s ease-in-out infinite;
}
@keyframes cd-pulse-soft {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
@media (max-width: 760px) {
  .cd-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 14px; }
}

/* ════════════════════════════════════════════════
   WHY CHOOSE THIS COURSE — 6 colourful cards
   ════════════════════════════════════════════════ */
.cd-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cd-why {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s, border-color 0.45s;
}
.cd-why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c, var(--cd-emerald));
}
.cd-why:hover { transform: translateY(-4px); box-shadow: var(--cd-shadow); border-color: var(--c, var(--cd-emerald)); }
.cd-why[data-c="emerald"] { --c: #1f8772; }
.cd-why[data-c="gold"]    { --c: #c9a24a; }
.cd-why[data-c="coral"]   { --c: #1f8772; }
.cd-why[data-c="sage"]    { --c: #7a9d8a; }
.cd-why[data-c="sky"]     { --c: #5a9fa3; }
.cd-why[data-c="plum"]    { --c: #8A5D80; }
.cd-why-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.cd-why h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 6px;
}
.cd-why p { font-size: 0.88rem; line-height: 1.55; color: var(--cd-mute); margin: 0; }

/* ════════════════════════════════════════════════
   TESTIMONIALS — three reviewer cards
   ════════════════════════════════════════════════ */
.cd-revs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.cd-rev {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 20px;
  padding: 26px 24px;
  position: relative;
  transition: transform 0.45s var(--cd-ease), box-shadow 0.45s, border-color 0.45s;
}
.cd-rev::before {
  content: '"';
  position: absolute;
  top: -8px; right: 18px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(201,162,74,0.15);
  pointer-events: none;
}
.cd-rev:hover { transform: translateY(-4px); box-shadow: var(--cd-shadow); border-color: var(--cd-emerald); }
.cd-rev--feature {
  background: linear-gradient(180deg, rgba(31,135,114,0.06) 0%, var(--cd-white) 100%);
  border-color: var(--cd-emerald);
  box-shadow: 0 18px 36px rgba(31,135,114,0.12);
}
.cd-rev-stars {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: #e0bf72;
  margin-bottom: 12px;
}
.cd-rev-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--cd-ink);
  margin: 0 0 18px;
}
.cd-rev-by {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cd-rev-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-emerald), var(--cd-emerald-2));
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.92rem;
}
.cd-rev-by strong { display: block; font-size: 0.93rem; color: var(--cd-ink); }
.cd-rev-by em { display: block; font-style: normal; font-size: 0.78rem; color: var(--cd-mute); margin-top: 2px; }
.cd-revs-foot {
  margin: 22px 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--cd-mute);
}
.cd-revs-foot span {
  color: #c9a24a;
  font-weight: 600;
  margin-right: 6px;
}

/* ════════════════════════════════════════════════
   SIDEBAR MINI-CARDS — stack under the form
   ════════════════════════════════════════════════ */
.cd-side > * + * { margin-top: 14px; }
.cd-mini {
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 18px;
  padding: 16px 18px;
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s, border-color 0.4s;
  display: block;
  position: relative;
  overflow: hidden;
}
.cd-mini:hover { transform: translateY(-2px); box-shadow: var(--cd-shadow); border-color: var(--cd-emerald); }

/* Promo */
.cd-mini--promo {
  background: linear-gradient(135deg, #e0bf72 0%, #f7f1e6 50%, #f7f1e6 100%);
  border-color: rgba(31,135,114,0.30);
}
.cd-mini--promo .cd-mini-tag {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #1f8772;
  background: rgba(31,135,114,0.12);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.cd-mini--promo h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 6px;
}
.cd-mini--promo p { font-size: 0.84rem; color: var(--cd-mute); margin: 0; }
.cd-mini--promo strong { color: #14695a; font-weight: 600; }

/* Call */
.cd-mini--call {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--cd-forest), var(--cd-emerald));
  color: #f7f1e6;
  border-color: transparent;
}
.cd-mini--call:hover { transform: translateY(-2px); }
.cd-mini--call .cd-mini-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-mini--call strong { display: block; font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500; }
.cd-mini--call em { display: block; font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* Trust */
.cd-mini--trust { padding: 18px; }
.cd-mini-stars {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #c9a24a;
  margin-bottom: 6px;
}
.cd-mini--trust p { font-size: 0.8rem; color: var(--cd-mute); margin: 0 0 10px; line-height: 1.5; }
.cd-mini-bars { display: flex; flex-direction: column; gap: 6px; }
.cd-mini-bars span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--cd-paper);
  border-radius: 8px;
  font-size: 0.74rem;
  color: var(--cd-mute);
  overflow: hidden;
}
.cd-mini-bars span::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: var(--p, 0);
  background: linear-gradient(90deg, rgba(31,135,114,0.15), rgba(201,162,74,0.18));
  pointer-events: none;
}
.cd-mini-bars span em {
  font-style: normal;
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cd-emerald);
  z-index: 1;
  min-width: 40px;
}

/* New sidebar mini-cards */
.cd-mini-tag--em {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cd-emerald);
  background: rgba(31,135,114,0.12);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.cd-mini--list h4,
.cd-mini--kp h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 10px;
}
.cd-mini--list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cd-mini--list li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 0.85rem;
  color: var(--cd-ink-2);
  border-top: 1px dashed rgba(31,135,114,0.10);
}
.cd-mini--list li:first-child { border-top: none; }
.cd-mini--list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cd-emerald);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-mini--kp {
  background:
    radial-gradient(circle at 100% 0%, rgba(201,162,74,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--cd-white) 0%, #fbf9f4 100%);
  border-color: rgba(201,162,74,0.30);
}
.cd-mini--kp p { font-size: 0.84rem; color: var(--cd-mute); margin: 0 0 12px; line-height: 1.5; }
.cd-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cd-gold);
  transition: color 0.3s, gap 0.3s;
}
.cd-mini-link:hover { color: var(--cd-emerald); gap: 10px; }

/* ════════════════════════════════════════════════
   OUTLINE — Show-more collapse
   ════════════════════════════════════════════════ */
.cd-ol .cd-out--more {
  display: none;
}
.cd-ol.is-expanded .cd-out--more {
  display: block;
  animation: cd-out-in 0.3s var(--cd-ease) both;
}
@keyframes cd-out-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cd-show-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0 110px;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--cd-emerald);
  background: transparent;
  color: var(--cd-emerald);
  font-family: 'Space Grotesk', monospace;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--cd-ease), box-shadow 0.3s;
}
.cd-show-more:hover {
  background: var(--cd-emerald);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31,135,114,0.25);
}
.cd-show-more-icon { font-size: 1rem; transition: transform 0.3s; }
.cd-show-more.is-active .cd-show-more-icon { transform: rotate(0); }

@media (max-width: 760px) {
  .cd-show-more { margin-left: 0; }
}

/* ════════════════════════════════════════════════
   FULL-WIDTH CONTAINER for everything below outline
   ════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════
   EXIT / BOOK-NOW POPUP
   ════════════════════════════════════════════════ */
.cd-exit {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: cd-exit-fade 0.25s var(--cd-ease) both;
}
.cd-exit[hidden] { display: none; }
@keyframes cd-exit-fade { from { opacity: 0; } to { opacity: 1; } }
.cd-exit-back {
  position: absolute;
  inset: 0;
  background: rgba(4,20,15,0.70);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.cd-exit-card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  background: linear-gradient(180deg, var(--cd-white) 0%, #fbf9f4 100%);
  border-radius: 24px;
  padding: 40px clamp(28px, 4vw, 44px) 32px;
  box-shadow: 0 36px 80px rgba(0,0,0,0.45);
  animation: cd-exit-pop 0.3s var(--cd-bounce) both;
  text-align: center;
  overflow: hidden;
}
.cd-exit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cd-emerald), var(--cd-gold));
}
.cd-exit-card::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,0.20) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes cd-exit-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cd-exit-x {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cd-paper);
  font-size: 1.3rem;
  color: var(--cd-mute);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  z-index: 2;
}
.cd-exit-x:hover { background: var(--cd-emerald); color: #fff; transform: rotate(90deg); }
.cd-exit-tag {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1f8772;
  background: rgba(31,135,114,0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cd-exit-card h3 {
  position: relative; z-index: 1;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 400;
  color: var(--cd-ink);
  margin: 0 0 12px;
  line-height: 1.1;
}
.cd-exit-card h3 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(120deg, var(--cd-emerald), var(--cd-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-exit-card p {
  position: relative; z-index: 1;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════
   YOUR LEARNING PATH — clickable stage cards in a horizontal scroller
   ════════════════════════════════════════════════ */
.cd-lp {
  position: relative;
}
.cd-lp-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 26px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(31,135,114,0.40) rgba(31,135,114,0.06);
  position: relative;
}
.cd-lp-track::-webkit-scrollbar { height: 8px; }
.cd-lp-track::-webkit-scrollbar-track { background: rgba(31,135,114,0.05); border-radius: 4px; }
.cd-lp-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--cd-emerald), var(--cd-gold));
  border-radius: 4px;
}
.cd-lp-track::-webkit-scrollbar-thumb:hover { background: var(--cd-gold); }

/* Flowing connecting line behind the cards */
.cd-lp-track::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    #1f8772 0%, #7a9d8a 12%, #7a9d8a 24%,
    #c9a24a 36%, #d99a3d 48%, #1f8772 60%,
    #5a9fa3 72%, #8A5D80 84%, #c9a24a 100%);
  opacity: 0.30;
  pointer-events: none;
  margin-top: -1px;
}

.cd-lp-stage {
  position: relative;
  flex: 0 0 180px;
  background: var(--cd-white);
  border: 1px solid var(--cd-line);
  border-radius: 16px;
  padding: 18px 16px 16px;
  scroll-snap-align: start;
  color: var(--cd-ink-2);
  transition: transform 0.4s var(--cd-ease), box-shadow 0.4s, border-color 0.4s;
  text-align: left;
  overflow: hidden;
}
.cd-lp-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c, var(--cd-emerald));
}
.cd-lp-stage:hover {
  transform: translateY(-4px);
  box-shadow: var(--cd-shadow);
  border-color: var(--c, var(--cd-emerald));
}
.cd-lp-stage[data-c="emerald"] { --c: #1f8772; }
.cd-lp-stage[data-c="sage"]    { --c: #7a9d8a; }
.cd-lp-stage[data-c="olive"]   { --c: #7a9d8a; }
.cd-lp-stage[data-c="mustard"] { --c: #c9a24a; }
.cd-lp-stage[data-c="amber"]   { --c: #d99a3d; }
.cd-lp-stage[data-c="coral"]   { --c: #1f8772; }
.cd-lp-stage[data-c="sky"]     { --c: #5a9fa3; }
.cd-lp-stage[data-c="plum"]    { --c: #8A5D80; }
.cd-lp-stage[data-c="gold"]    { --c: #c9a24a; }
.cd-lp-stage[data-c="mastery"] { --c: linear-gradient(135deg, #c9a24a, #e0bf72); }

.cd-lp-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--c, var(--cd-emerald));
  line-height: 1;
  margin-bottom: 8px;
}
.cd-lp-band {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cd-mute);
  background: rgba(31,135,114,0.06);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.cd-lp-stage h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--cd-ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.cd-lp-stage p {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cd-faint);
  margin: 0;
}

/* "You are here" current stage */
.cd-lp-stage--current {
  background: linear-gradient(180deg, #fbf9f4 0%, var(--cd-white) 70%);
  border: 2px solid var(--cd-gold);
  box-shadow: 0 18px 36px rgba(201,162,74,0.25);
  transform: translateY(-6px);
  flex: 0 0 200px;
}
.cd-lp-stage--current::before { height: 0; }
.cd-lp-stage--current:hover { transform: translateY(-9px); }
.cd-lp-here {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cd-forest);
  background: linear-gradient(135deg, #e0bf72, #c9a24a);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  box-shadow: 0 6px 14px rgba(201,162,74,0.30);
}
.cd-lp-stage--current .cd-lp-num {
  background: linear-gradient(135deg, var(--cd-gold), #e0bf72);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Legend dots */
.cd-lp-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cd-mute);
}
.cd-lp-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cd-lp-legend .lp-d {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lp-d-emerald { background: #1f8772; }
.lp-d-mustard { background: #c9a24a; }
.lp-d-coral   { background: #1f8772; }
.lp-d-mastery { background: linear-gradient(135deg, #c9a24a, #e0bf72); }

/* ════════════════════════════════════════════════
   LEARNING PATH HOST — dark section that contains the home-page SVG graph
   (path.js renders into #path-svg, path.css does the heavy lifting)
   ════════════════════════════════════════════════ */
.cd-lp-sec { padding-bottom: 24px; }
.cd-lp-sec .cd-shell { margin-bottom: 12px; }

/* The lp-graph-wrap from path.css is built for the home page's dark
   background — works for us too. Just nudge a couple of properties. */
.lp-graph-wrap.lp-graph-wrap--inline {
  background: transparent;          /* let the cd-sec--dark gradient show through */
  padding: 0;
  position: relative;
  overflow-x: auto;                 /* horizontal scroll for the 15-stage PM track */
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,162,74,0.55) rgba(255,255,255,0.05);
}
.lp-graph-wrap--inline::-webkit-scrollbar { height: 8px; }
.lp-graph-wrap--inline::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(31,135,114,0.6), rgba(201,162,74,0.85));
  border-radius: 4px;
}
.lp-graph-wrap--inline #path-svg {
  display: block;
  margin: 0 auto;
}
.lp-graph-wrap--inline .path-legend {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0 clamp(20px, 4vw, 40px);
}
.lp-graph-wrap--inline .path-legend span { display: inline-flex; align-items: center; gap: 8px; }
.lp-graph-wrap--inline .path-legend .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lp-graph-wrap--inline .path-legend .d1 { background: #1f8772; }
.lp-graph-wrap--inline .path-legend .d2 { background: #c9a24a; }
.lp-graph-wrap--inline .path-legend .d3 { background: #e0bf72; }
.lp-graph-wrap--inline .path-legend .d4 { background: #f7f1e6; }

/* "You are here" — highlight the current node (PMP Preparation, index 4) */
.lp-node--current {
  filter: drop-shadow(0 0 18px rgba(224,191,114,0.55));
}
.lp-node--current circle:nth-of-type(3) {  /* inner filled dot */
  fill: url(#nodeGrad);
  stroke: #e0bf72;
  stroke-width: 3;
}
.lp-node--current circle:nth-of-type(1) {  /* halo */
  opacity: 0.55;
}
.lp-node--current text:nth-of-type(2) {    /* title */
  font-weight: 600;
  fill: #fff;
}

/* Nodes are clickable */
.lp-node:hover circle:nth-of-type(3) {
  filter: brightness(1.2);
}

/* ════════════════════════════════════════════════
   INTEGRATION — share the NOVARA custom cursor (gold dot + ring) like the rest
   of the site. main.css already sets cursor: none on body; we just need to
   make sure these page-specific elements use the right hoverable signals.
   ════════════════════════════════════════════════ */
body.cd-page .cd-stab,
body.cd-page .cd-tab,
body.cd-page .cd-faq summary,
body.cd-page .cd-show-more,
body.cd-page .lp-node,
body.cd-page [data-open-modal],
body.cd-page [data-exit-close] {
  cursor: none;        /* the custom cursor handles the visual signal */
}
/* Push the page down so the fixed NOVARA navigation doesn't overlap the hero */
body.cd-page { padding-top: 0; }

/* ════════════════════════════════════════════════
   DYNAMIC COURSE-DETAIL PAGE — moved from inline blade styles
   ════════════════════════════════════════════════ */

/* Let the course name use the full hero width (no fixed form overlaps it here). */
.cd-hero-shell{ padding-right:clamp(20px,4vw,80px); }
.cd-hero-main{ max-width:1240px; }

/* Rich-text blocks coming from the CMS (overview / audience). */
.cd-rte{ font-size:15.5px; line-height:1.7; color:var(--cd-ink-2); }
.cd-rte > *:first-child{ margin-top:0; }
.cd-rte > *:last-child{ margin-bottom:0; }
.cd-rte p{ margin:0 0 16px; }
.cd-rte ul, .cd-rte ol{ margin:0 0 16px; padding-left:22px; display:grid; gap:9px; }
.cd-rte h3, .cd-rte h4{ font-family:var(--f-display,serif); color:var(--cd-ink); margin:24px 0 12px; }
.cd-rte a{ color:var(--cd-emerald); }

/* Outline rich-text — styles the raw CMS content like the module timeline:
   self-counting 01/02 numbers, emerald dot, green bullets. The CMS content is
   pasted from Word (bare <h1-4> titles, <p> "bullets" with inline junk styles
   and empty <o:p> tags) rather than clean <h3>/<ul>/<li>, so every heading
   level and the <p> "list" are targeted directly and inline Word styling is
   forced back to the design via `!important`. */
.cd-outline{ position:relative; counter-reset:cd-mod; }
.cd-outline::before{
  content:''; position:absolute; left:10px; top:16px; bottom:16px; width:2px;
  background:linear-gradient(180deg,#1f8772 0%,#7a9d8a 25%,#c9a24a 50%,#5a9fa3 75%,#8A5D80 100%);
  border-radius:2px; opacity:.55;
}
.cd-outline o\:p{ display:none !important; }
.cd-outline h1, .cd-outline h2, .cd-outline h3, .cd-outline h4{
  counter-increment:cd-mod; position:relative;
  margin:0 !important; padding:22px 0 14px 110px !important;
  font-family:'Fraunces',serif !important; font-size:1.3rem !important; font-weight:500 !important;
  line-height:1.5 !important; color:var(--cd-emerald) !important;
}
.cd-outline h1 *, .cd-outline h2 *, .cd-outline h3 *, .cd-outline h4 *{
  font:inherit !important; color:inherit !important;
}
.cd-outline h1::before, .cd-outline h2::before, .cd-outline h3::before, .cd-outline h4::before{
  content:counter(cd-mod,decimal-leading-zero);
  position:absolute; left:30px; top:20px; width:60px;
  font-family:'Fraunces',serif; font-size:2.2rem; font-weight:300; line-height:1;
  text-align:right; letter-spacing:-.02em; color:var(--cd-emerald);
}
.cd-outline h1::after, .cd-outline h2::after, .cd-outline h3::after, .cd-outline h4::after{
  content:''; position:absolute; left:4px; top:30px; width:14px; height:14px;
  border-radius:50%; background:var(--cd-emerald);
  box-shadow:0 0 0 4px var(--cd-cream),0 0 0 5px rgba(31,135,114,.30);
}
.cd-outline ul{ list-style:none; margin:0; padding:0 0 14px 110px; }
.cd-outline ul li{
  position:relative; padding:6px 0 6px 24px;
  font-size:.96rem; line-height:1.6; color:var(--cd-ink-2);
}
.cd-outline ul li::before{
  content:''; position:absolute; left:4px; top:14px; width:7px; height:7px;
  border-radius:50%; background:var(--cd-emerald); box-shadow:0 0 0 3px rgba(31,135,114,.16);
}
/* Word-pasted "bullets" — bare <p> siblings of the module <h*>, not <ul><li>. */
.cd-outline > p{
  position:relative; margin:0 !important; text-indent:0 !important;
  padding:6px 0 6px 134px !important;
  font-family:var(--f-sans,inherit) !important; font-size:.96rem !important;
  line-height:1.6 !important; color:var(--cd-ink-2) !important;
}
.cd-outline > p *{ font:inherit !important; color:inherit !important; }
.cd-outline > p::before{
  content:''; position:absolute; left:114px; top:14px; width:7px; height:7px;
  border-radius:50%; background:var(--cd-emerald); box-shadow:0 0 0 3px rgba(31,135,114,.16);
}
@media (max-width:760px){
  .cd-outline h1, .cd-outline h2, .cd-outline h3, .cd-outline h4{ padding-left:84px !important; }
  .cd-outline h1::before, .cd-outline h2::before, .cd-outline h3::before, .cd-outline h4::before{ left:26px; width:50px; font-size:1.9rem; }
  .cd-outline ul{ padding-left:84px; }
  .cd-outline > p{ padding-left:84px !important; }
  .cd-outline > p::before{ left:64px; }
}

/* Outline "show more" — only the first N modules render by default;
   the rest fade in on click rather than the page loading one long list. */
@keyframes cd-outline-in{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }
.cd-outline-anim{ animation:cd-outline-in .5s ease both; }
.cd-outline-wrap{ position:relative; }
.cd-outline-wrap.is-collapsed{ padding-bottom:6px; }
.cd-outline-wrap.is-collapsed::after{
  content:''; position:absolute; left:0; right:0; bottom:52px; height:60px;
  background:linear-gradient(180deg, rgba(250,248,244,0) 0%, var(--cd-cream,#faf8f3) 90%);
  pointer-events:none;
}
.cd-outline-more{
  display:none; appearance:none; cursor:pointer; font:inherit;
  align-items:center; gap:10px; margin:8px auto 0; padding:14px 32px;
  width:fit-content; position:relative; z-index:1;
  border-radius:100px; background:#fff; color:var(--cd-emerald);
  border:1.5px solid var(--cd-emerald);
  font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.09em;
  transition:background .22s,color .22s,box-shadow .22s,transform .18s;
}
.cd-outline-more.is-visible{ display:flex; }
.cd-outline-more:hover{ background:var(--cd-emerald); color:#fff; box-shadow:0 8px 22px rgba(31,135,114,.28); transform:translateY(-1px); }
.cd-outline-more:active{ transform:translateY(0); }
.cd-outline-more svg{ transition:transform .3s ease; flex:none; }
.cd-outline-more.is-open svg{ transform:rotate(180deg); }

/* A duplicate later `.cd-sec` rule (see ~line 344) overrides the section's
   base padding up to 110px/side on wide screens. That's barely noticeable
   against a full 10-module list, but reads as a dead gap once the outline
   collapses to 2 modules by default — so pull just this section's bottom
   padding back in (#outline beats .cd-sec on specificity alone). */
#outline{ padding-bottom: clamp(36px, 4.5vw, 60px); }
#for-you{ padding-top: clamp(36px, 4.5vw, 60px); }

/* "Who it's for / what's included" tabs — keyed by delivery flag. */
.cdx-tabnav{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:0 auto 38px; max-width:920px; }
.cdx-tab{
  appearance:none; cursor:pointer; font:inherit;
  display:inline-flex; align-items:center; gap:9px;
  padding:12px 20px; border-radius:999px;
  background:var(--cd-white); color:var(--cd-ink);
  border:1px solid var(--cd-line); font-size:14px; font-weight:600;
}
.cdx-tab.is-active{ background:linear-gradient(135deg,var(--cd-forest),var(--cd-emerald)); color:#fff; border-color:transparent; }
.cdx-panel{ display:none; }
.cdx-panel.is-active{ display:block; }
.cdx-split{ display:grid; grid-template-columns:0.92fr 1.08fr; gap:24px; align-items:start; }
.cdx-card{ background:var(--cd-white); border:1px solid var(--cd-line); border-radius:20px; padding:30px; }
.cdx-card--who{ background:linear-gradient(170deg,var(--cd-forest) 0%,#0a3328 100%); color:var(--cd-cream); border-color:transparent; }
.cdx-card-eyebrow{ display:block; font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--cd-emerald); margin-bottom:14px; }
.cdx-card--who .cdx-card-eyebrow{ color:var(--cd-gold-warm); }
.cdx-card-title{ font-family:var(--f-display,serif); font-size:1.3rem; margin:0 0 14px; color:var(--cd-ink); }
.cdx-card--who .cdx-card-title{ color:#fff; }
.cdx-inc{ list-style:none; margin:0; padding:0; }
.cdx-inc li{ display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px dashed var(--cd-line); font-size:14.5px; color:var(--cd-ink-2); }
.cdx-inc li:last-child{ border-bottom:0; }
.cdx-inc li .tick{ flex:none; width:24px; height:24px; border-radius:50%; display:grid; place-items:center; font-size:13px; background:rgba(31,135,114,.12); color:var(--cd-emerald); }
@media (max-width:880px){ .cdx-split{ grid-template-columns:1fr; } }

/* Empty-state for a delivery method with no published dates yet. */
.cd-no-dates{ text-align:center; padding:46px 20px; }
.cd-no-dates-icon{ font-size:34px; margin-bottom:12px; }
