/* ============================================
   PRAXURA GROUP — HOMEPAGE STYLES
   Deep navy + teal accent + amber CTA
   Dimensional, credible, corporate-education
   ============================================ */

/* ---------- Reset & tokens ---------- */
:root {
  /* Palette */
  --navy-950: #0F2338;
  --navy-900: #142E48;
  --navy-800: #1B3A5C;
  --navy-700: #234670;
  --navy-600: #2C5484;
  --navy-500: #385F94;

  --teal-500: #2E8B8B;
  --teal-400: #4FA5A5;
  --teal-100: #C7E1E1;
  --teal-050: #E8F4F4;

  --amber-500: #E67E22;
  --amber-600: #CC6D1D;
  --amber-400: #F2A55C;

  --cream: #FCFAF6;
  --off-white: #F5F7FA;
  --white: #FFFFFF;

  --ink-900: #142E48;
  --ink-700: #2A3350;
  --ink-500: #5A6685;
  --ink-400: #7B8AAB;
  --ink-300: #B8C1D6;
  --ink-200: #D9DEEB;
  --ink-100: #EEF1F7;

  /* Type */
  --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 18, 36, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 18, 36, 0.10), 0 2px 4px rgba(11, 18, 36, 0.06);
  --shadow-lg: 0 12px 32px rgba(11, 18, 36, 0.14), 0 4px 8px rgba(11, 18, 36, 0.08);
  --shadow-xl: 0 24px 48px rgba(11, 18, 36, 0.22), 0 8px 16px rgba(11, 18, 36, 0.10);
  --shadow-dark: 0 12px 32px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-amber {
  background: linear-gradient(180deg, var(--amber-500) 0%, var(--amber-600) 100%);
  color: #1a1408;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.35), inset 0 -2px 0 rgba(120, 80, 20, 0.25);
}
.btn-amber:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.45), inset 0 -2px 0 rgba(120, 80, 20, 0.25);
}

.btn-teal {
  background: var(--teal-500);
  color: white;
  box-shadow: 0 4px 12px rgba(46, 139, 139, 0.30);
}
.btn-teal:hover {
  background: var(--teal-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(46, 139, 139, 0.40);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--ink-200);
}
.btn-outline:hover {
  border-color: var(--teal-500);
  color: var(--teal-500);
}

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.play-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 10px;
  padding-left: 2px;
}

/* ---------- Eyebrows / labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-teal { color: var(--teal-500); }
.eyebrow-amber { color: var(--amber-500); }
.eyebrow-white { color: rgba(255, 255, 255, 0.85); }
.eyebrow-pill {
  border: 1px solid rgba(46, 139, 139, 0.4);
  color: var(--teal-500);
  background: rgba(46, 139, 139, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10.5px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.section-h2.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 820px; }
.section-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }

.accent-amber { color: var(--amber-500); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.logo-mark {
  color: var(--teal-500);
  display: flex;
  align-items: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: white;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--teal-500);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover { color: white; }
.chev { font-size: 10px; opacity: 0.7; margin-left: 2px; }
.nav-cta { padding: 12px 22px; font-size: 14px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: white;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 139, 139, 0.10), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(230, 126, 34, 0.06), transparent 40%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px) 0 0 / 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-left { max-width: 560px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: white;
}
.hero-body {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-micro {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.cred-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
.cred-row li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(46, 139, 139, 0.15);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-row div strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.cred-row div span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

/* Hero photo (center) */
.hero-center { display: flex; justify-content: center; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  max-width: 380px;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(46, 139, 139, 0.35) 0%, transparent 60%);
  filter: blur(30px);
  z-index: -1;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
  position: relative;
}
.quote-mark {
  position: absolute;
  top: 8px; left: 14px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--teal-500);
  line-height: 1;
  opacity: 0.6;
}
.quote-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin: 20px 0 14px;
  font-style: italic;
}
.quote-attr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-mini {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--amber-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.q-name { font-size: 12.5px; font-weight: 600; color: white; }
.q-role { font-size: 11px; color: rgba(255,255,255,0.55); }

.metric-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.metric-mini-highlight {
  background: rgba(230, 126, 34, 0.06);
  border-color: rgba(230, 126, 34, 0.2);
}
.metric-icon {
  color: var(--teal-500);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mm-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.mm-num .stars {
  font-size: 12px;
  color: var(--amber-500);
  letter-spacing: 0.05em;
}
.mm-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
  margin-top: 3px;
}
.mm-label small { font-size: 10px; color: rgba(255,255,255,0.5); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--cream);
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-100);
}
.trust-intro {
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.trust-industries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.trust-industries li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}
.trust-industries .dot {
  width: 4px; height: 4px;
  background: var(--ink-300);
  border-radius: 50%;
}
.trust-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--ink-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================
   AI READINESS + BENEFITS ROW
   ============================================ */
.benefits-row {
  background: var(--navy-900);
  padding: 56px 0;
  color: white;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.assess-card {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-dark);
}
.assess-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: white;
}
.assess-body {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin-bottom: 16px;
}
.gauge-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}
.gauge { position: relative; }
.gauge-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.gauge-label {
  font-size: 8.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.gauge-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--teal-500);
  line-height: 1;
}
.gauge-num sup { font-size: 14px; margin-left: 2px; }
.gauge-band {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.assess-micro {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  text-align: center;
}

.benefit-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.2s, border-color 0.2s;
}
.benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 139, 139, 0.30);
}
.b-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(46, 139, 139, 0.12);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.benefit-card p strong { color: var(--amber-500); font-weight: 600; }

/* ============================================
   PROGRAM OVERVIEW
   ============================================ */
.overview {
  background: white;
  padding: 90px 0;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.overview-lede {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 22px;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px; height: 18px;
  background: var(--teal-500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.check-list li strong { color: var(--navy-900); }

.overview-center { position: relative; }
.video-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.video-preview:hover { transform: translateY(-2px); }
.video-preview img { width: 100%; display: block; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy-900);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  padding-left: 4px;
}
.play-btn.play-lg { width: 84px; height: 84px; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: white;
}
.video-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--teal-400);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.video-title { font-size: 15px; font-weight: 600; display: block; }

.details-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.details-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.detail-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  align-items: flex-start;
}
.d-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--teal-050);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.d-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 2px;
}
.d-val {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
}
.details-card .btn { margin-top: 18px; }

/* ============================================
   WHAT YOU'LL LEAVE WITH
   ============================================ */
.leave-with {
  background: var(--off-white);
  padding: 80px 0;
}
.leave-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.leave-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.leave-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.l-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--teal-050);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.leave-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.leave-card p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ============================================
   6 MODULES
   ============================================ */
.modules-section {
  background: var(--navy-900);
  padding: 80px 0;
  color: white;
}
.modules-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.modules-card {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-dark);
}
.module-list { display: flex; flex-direction: column; gap: 14px; }
.module-list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.module-list li:last-child { border-bottom: none; }
.mod-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--teal-500);
  min-width: 42px;
  line-height: 1;
}
.mod-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.mod-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.curriculum-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-500);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  border-bottom: 1px solid var(--teal-500);
  padding-bottom: 2px;
}
.curriculum-link:hover { color: var(--teal-400); }

.modules-side { display: flex; flex-direction: column; gap: 20px; }
.module-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.capstone-card {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(46, 139, 139, 0.08));
  border: 1px solid rgba(230, 126, 34, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.capstone-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.capstone-card > p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 14px;
}
.capstone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.capstone-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding-left: 22px;
  position: relative;
}
.capstone-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  padding: 80px 0;
  color: white;
}
.videos-section .section-h2 { color: white; }
.videos-section .section-sub { color: rgba(255,255,255,0.65); }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.video-card {
  cursor: pointer;
  transition: transform 0.2s;
}
.video-card:hover { transform: translateY(-3px); }
.video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  aspect-ratio: 16 / 9;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.duration {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(11, 18, 36, 0.85);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.video-num {
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  background: var(--teal-500);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
}
.video-info { margin-top: 16px; }
.video-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.video-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-works {
  background: white;
  padding: 90px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-100) 20%, var(--teal-100) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}
.step-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--teal-500);
  color: var(--teal-500);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(46, 139, 139, 0.15);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.55;
}
.support-note {
  margin-top: 40px;
  background: var(--teal-050);
  border-left: 3px solid var(--teal-500);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-700);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.support-note strong { color: var(--navy-900); }

/* ============================================
   WHO IT'S FOR
   ============================================ */
.who-for {
  background: var(--off-white);
  padding: 80px 0;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.who-yes { border-top: 4px solid var(--teal-500); }
.who-no { border-top: 4px solid var(--ink-300); }
.who-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-050);
  color: var(--teal-500);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.who-badge-alt {
  background: #F5EEEE;
  color: #A85555;
}
.who-card ul { display: flex; flex-direction: column; gap: 12px; }
.who-card ul li {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}
.who-yes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 800;
  font-size: 16px;
}
.who-no ul li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #A85555;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: white;
  padding: 90px 0;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: white;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-featured {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: white;
  border-color: var(--amber-500);
  box-shadow: 0 20px 40px rgba(11, 18, 36, 0.25);
  transform: scale(1.02);
}
.price-featured:hover { transform: scale(1.02) translateY(-3px); }
.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.price-head { margin-bottom: 24px; }
.price-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.price-featured .price-head h3 { color: white; }
.price-tag {
  font-size: 14px;
  color: var(--ink-500);
}
.price-featured .price-tag { color: rgba(255,255,255,0.7); }
.price-amount {
  padding: 20px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.price-featured .price-amount { border-color: rgba(255,255,255,0.10); }
.currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-500);
}
.price-featured .currency { color: rgba(255,255,255,0.6); }
.amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.price-featured .amount { color: white; }
.price-note {
  width: 100%;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 4px;
}
.price-featured .price-note { color: var(--amber-400); font-weight: 600; }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}
.price-featured .price-features li { color: rgba(255,255,255,0.85); }
.chk {
  color: var(--teal-500);
  font-weight: 800;
  flex-shrink: 0;
}
.price-featured .chk { color: var(--teal-400); }
.guarantee-line {
  margin-top: 32px;
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.guarantee-line svg { color: var(--teal-500); }
.guarantee-line strong { color: var(--navy-900); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--off-white);
  padding: 80px 0;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.test-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--ink-100);
}
.test-card .quote-mark {
  position: static;
  font-size: 44px;
  color: var(--teal-500);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
  opacity: 1;
}
.test-card p {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.test-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--amber-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.t-role {
  font-size: 12.5px;
  color: var(--ink-500);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.metric-item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid var(--ink-100);
}
.metric-item:last-child { border-right: none; }
.metric-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-sub { color: var(--teal-500); }
.metric-stars {
  color: var(--amber-500);
  font-size: 14px;
  margin: 4px 0;
  letter-spacing: 0.05em;
}
.metric-label {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 6px;
}

/* ============================================
   RESULTS + INSTRUCTOR
   ============================================ */
.results-section {
  background: white;
  padding: 90px 0;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.result-card {
  background: var(--off-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.2s;
}
.result-card:hover { transform: translateY(-3px); }
.r-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--teal-050);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}
.r-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.r-label {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}
.r-sub {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.4;
}

.speaker-card {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow-dark);
}
.speaker-card img {
  width: 100%; height: 240px;
  object-fit: cover;
  object-position: center 20%;
}
.speaker-body { padding: 18px; }
.speaker-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.speaker-role {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.speaker-card .btn-outline {
  color: var(--amber-500);
  border-color: rgba(230, 126, 34, 0.4);
}
.speaker-card .btn-outline:hover {
  color: var(--amber-400);
  border-color: var(--amber-500);
}

.instructor-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--ink-100);
}
.instructor-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
}
.instructor-intro {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 16px;
}
.instructor-bio {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.instructor-bio strong { color: var(--navy-900); }
.instructor-diff {
  font-size: 15px;
  color: var(--navy-900);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--ink-200);
}

/* ============================================
   CORPORATE
   ============================================ */
.corporate {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(230, 126, 34, 0.08), transparent 50%);
}
.corp-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.corporate .section-h2 { color: white; }
.corp-body {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 26px;
}
.corp-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.corp-capabilities {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.corp-capabilities li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.cap-dot {
  width: 6px; height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   RESOURCES
   ============================================ */
.resources {
  background: linear-gradient(135deg, var(--teal-500), #279b8f);
  padding: 60px 0;
  color: white;
}
.res-inner {
  display: grid;
  grid-template-columns: 200px 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.res-books {
  position: relative;
  height: 200px;
}
.book {
  position: absolute;
  width: 130px; height: 170px;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}
.book-1 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-700), var(--navy-800));
  left: 0;
  transform: rotate(-8deg);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.15), transparent 40%);
  background-color: var(--navy-800);
}
.book-1::before, .book-2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}
.book-1::after {
  content: 'AI PROMPT TOOLKIT';
  position: absolute;
  top: 30px; left: 12px; right: 12px;
  color: var(--teal-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.book-2 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15), transparent 40%),
    linear-gradient(135deg, var(--amber-500), var(--amber-600));
  left: 70px;
  transform: rotate(4deg);
}
.book-2::after {
  content: 'AI ROADMAP';
  position: absolute;
  top: 30px; left: 12px; right: 12px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.res-mid h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}
.res-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.res-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.9);
  align-items: center;
}
.res-list .chk { color: white; font-weight: 800; }
.res-form {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.res-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
}
.res-form input:focus { border-color: var(--teal-500); }
.res-form .btn { margin-top: 4px; }
.res-privacy {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 10px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: white;
  padding: 90px 0;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-500);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--teal-500);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.7;
}
.faq-item a { color: var(--teal-500); font-weight: 600; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  padding: 90px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(46, 139, 139, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(230, 126, 34, 0.10), transparent 50%);
}
.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.final-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
}
.final-body {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}
.final-body strong { color: var(--amber-500); }
.final-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-risk {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 300px; }
.logo-footer { margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover {
  background: var(--teal-500);
  color: white;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: white;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-500); }

.footer-contact h5 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.fc-tag { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-icon { color: var(--teal-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.footer-bottom p { margin-bottom: 6px; }
.trademark { font-size: 11px; max-width: 900px; margin: 0 auto; }

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.active {
  display: flex;
}
.modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}
.modal-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.modal-video {
  width: 100%;
  height: 100%;
  background: black;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-right { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .assess-card { grid-column: 1 / -1; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .leave-grid { grid-template-columns: repeat(3, 1fr); }
  .modules-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .footer-contact { grid-column: 1 / -1; }
  .res-inner { grid-template-columns: 1fr 1fr; }
  .res-books { display: none; }
}
@media (max-width: 780px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: 1fr; }
  .cred-row { grid-template-columns: 1fr; }
  .benefits-grid, .videos-grid, .who-grid, .price-grid, .test-grid, .metrics-row, .corp-inner, .res-inner { grid-template-columns: 1fr; }
  .leave-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-risk { flex-direction: column; gap: 8px; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-3px); }
  .hero { padding-top: 100px; }
  .metrics-row .metric-item { border-right: none; border-bottom: 1px solid var(--ink-100); padding-bottom: 20px; }
  .metrics-row .metric-item:last-child { border-bottom: none; }
}

/* ============================================
   MULTI-PAGE ADDITIONS
   Page hero, active-nav state, interior-page sections
   ============================================ */

/* ---------- Active nav state ---------- */
.nav-links a.is-active {
  color: var(--teal-400);
  position: relative;
}
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(46, 139, 139, 0.14), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(230, 126, 34, 0.08), transparent 55%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}
.page-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 20px 0 20px;
}
.page-hero-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-300);
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Instructor teaser (homepage) ---------- */
.instructor-teaser {
  background: var(--off-white);
  padding: 88px 0;
}
.instructor-teaser-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.teaser-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.teaser-body h2 {
  margin: 12px 0 20px;
}
.teaser-body p {
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}
.teaser-body p strong {
  color: var(--ink-900);
}
.teaser-body .btn {
  margin-top: 12px;
}

/* ---------- Corporate offerings ---------- */
.corp-offerings {
  background: var(--off-white);
  padding: 88px 0;
}
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.offering-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offering-featured {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border: 1px solid rgba(230, 126, 34, 0.3);
  box-shadow: var(--shadow-lg);
}
.offering-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--amber-500);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.offering-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--teal-500);
  margin-bottom: 12px;
}
.offering-featured .offering-eyebrow {
  color: var(--teal-400);
}
.offering-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.offering-featured h3 {
  color: var(--white);
}
.offering-card > p {
  color: var(--ink-500);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}
.offering-featured > p {
  color: var(--ink-300);
}
.offering-card ul {
  list-style: none;
  padding: 0;
}
.offering-card ul li {
  color: var(--ink-700);
  font-size: 14px;
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  border-top: 1px solid var(--ink-100);
}
.offering-featured ul li {
  color: var(--ink-300);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.offering-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
}

/* ---------- Corporate results grid ---------- */
.corp-results {
  padding: 88px 0;
}
.corp-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cr-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cr-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.cr-label {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.4;
}

/* ---------- Corporate CTA band ---------- */
.corp-cta {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}
.corp-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.corp-cta .final-headline {
  color: var(--white);
  margin: 16px 0 20px;
}
.corp-cta .final-body {
  color: var(--ink-300);
  margin-bottom: 32px;
}
.corp-cta .final-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Resource cards (Resources page) ---------- */
.resource-cards-section {
  padding: 88px 0;
  background: var(--white);
}
.resource-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.resource-card-visual {
  padding: 32px 24px;
  color: var(--white);
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.resource-visual-navy {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.resource-visual-amber {
  background: linear-gradient(135deg, var(--navy-800), var(--amber-600));
}
.resource-visual-teal {
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
}
.resource-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
}
.resource-card-visual h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.resource-visual-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.resource-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.resource-card-body p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

/* ---------- Blog teaser (Resources page) ---------- */
.blog-teaser {
  background: var(--off-white);
  padding: 72px 0;
}
.blog-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.blog-teaser h2 {
  margin: 12px 0;
}
.blog-teaser p {
  color: var(--ink-500);
  max-width: 520px;
}

/* ---------- Blog intro ---------- */
.blog-intro {
  background: var(--off-white);
  padding: 72px 0 32px;
}

/* ---------- Blog featured + grid ---------- */
.blog-posts {
  background: var(--off-white);
  padding: 32px 0 96px;
}
.blog-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}
.blog-featured-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.blog-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--amber-500);
  color: var(--navy-950);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 2;
}
.blog-featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-500);
  margin-bottom: 16px;
  display: inline-block;
}
.blog-featured-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.blog-featured-body p {
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.blog-read-link {
  color: var(--teal-500);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.blog-read-link:hover { color: var(--teal-400); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-visual {
  min-height: 160px;
  position: relative;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.35;
}
.blog-card-body p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.blog-read-link-sm {
  color: var(--teal-500);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.blog-read-link-sm:hover { color: var(--teal-400); }
.blog-note {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  margin-top: 24px;
}

/* ---------- Contact page ---------- */
.contact-main {
  background: var(--white);
  padding: 88px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-col h2 {
  margin: 12px 0 16px;
}
.contact-lede {
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 16px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.01em;
}
.form-optional {
  color: var(--ink-400);
  font-weight: 400;
  font-size: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(46, 139, 139, 0.15);
}
.contact-form textarea {
  font-family: var(--font-body);
  resize: vertical;
  min-height: 120px;
}
.contact-privacy {
  font-size: 13px;
  color: var(--ink-400);
  text-align: center;
  margin-top: -4px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-info-row {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--ink-100);
  align-items: flex-start;
}
.contact-info-row:first-of-type { border-top: none; padding-top: 0; }
.ci-icon {
  font-size: 16px;
  color: var(--teal-500);
  min-width: 24px;
  padding-top: 2px;
}
.ci-label {
  font-size: 12px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.ci-val {
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.ci-val:hover { color: var(--teal-500); }
.ci-follow {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 16px;
  line-height: 1.5;
}
.contact-info-card-dark {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}
.contact-info-card-dark h3 { color: var(--white); }
.contact-info-card-dark p {
  color: var(--ink-300);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.social-icons-dark a {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ---------- Responsive (multi-page additions) ---------- */
@media (max-width: 1100px) {
  .instructor-teaser-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .teaser-photo { max-width: 320px; margin: 0 auto; }
  .offering-grid { grid-template-columns: 1fr; }
  .corp-results-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-cards-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-visual { min-height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .page-hero { padding: 110px 0 60px; }
  .page-hero-headline { font-size: 32px; }
  .page-hero-body { font-size: 15px; }
  .blog-grid { grid-template-columns: 1fr; }
  .corp-results-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 28px 24px; }
  .blog-featured-body h3 { font-size: 22px; }
}

/* ---------- Real brand wordmark ---------- */
.logo-img {
  display: block;
  height: 34px;
  width: auto;
}
.logo-footer .logo-img { height: 30px; }
/* Hide the old text lockup on browsers that render the new img cleanly */
.logo-name, .logo-sub, .logo-mark { display: none; }


/* ============================================
   NAV DROPDOWNS + HOMEPAGE-LEAN ADDITIONS
   ============================================ */

/* ---------- Nav dropdown caret ---------- */
.nav-links .caret {
  font-size: 10px;
  opacity: 0.7;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-links .has-dropdown:hover .caret,
.nav-links .has-dropdown:focus-within .caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* ---------- Nav dropdown menu ---------- */
.nav-links li.has-dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 320px;
  max-width: 380px;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  list-style: none;
  margin: 0;
}
/* Invisible bridge so mouse can travel from nav item to dropdown without gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-links li.has-dropdown:hover .nav-dropdown,
.nav-links li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li {
  padding: 0;
  margin: 0;
}
.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-dropdown a::after { display: none; }  /* hide the active underline inside dropdowns */
.nav-dropdown a:hover {
  background: rgba(46, 139, 139, 0.14);
}
.dd-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal-400);
  margin-bottom: 3px;
  text-transform: uppercase;
}
.dd-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.nav-dropdown a:hover .dd-title { color: var(--teal-100); }

/* Dropdown doesn't display on the "Blog" and "Contact" and "Home" items — no change needed */

/* ---------- Lean homepage: instructor teaser adjustments ---------- */
.instructor-teaser-lean .teaser-lede {
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.instructor-teaser-lean .teaser-body p strong {
  color: var(--ink-900);
}
.instructor-teaser-lean {
  padding: 72px 0;
}

/* ---------- Lean homepage: overview trim ---------- */
.overview-lean {
  padding: 88px 0;
  background: var(--off-white);
}
.overview-lean-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.overview-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 20px 0 24px;
}
.overview-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.overview-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.5;
}
.oh-check {
  color: var(--teal-500);
  font-weight: 800;
  font-size: 16px;
  min-width: 18px;
}
.overview-lean-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.overview-lean-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-thumb-lean {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(20, 46, 72, 0.25);
  cursor: pointer;
  aspect-ratio: 16 / 10;
}
.video-thumb-lean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.video-play-lg:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-duration-lg {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 35, 56, 0.85);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.overview-video-caption {
  color: var(--ink-500);
  font-size: 14px;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  position: static;
}

/* ---------- Lean homepage: see-more testimonials link ---------- */
.see-more-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 24px;
}
.see-more-link {
  color: var(--teal-500);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.see-more-link:hover { color: var(--teal-400); }

/* ---------- Responsive: hide dropdowns on tablet/mobile ---------- */
@media (max-width: 1100px) {
  .overview-lean-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  /* Below 900px nav links are already hidden by earlier rules; nothing extra needed */
  .nav-dropdown { display: none; }
}
